-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
43 lines (43 loc) · 1.27 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "noiselabs/zf-test-case-behat-extension",
"description": "Integration testing for ZF MVC applications in Behat by exposing Zend\\Test classes (originally built for PHPUnit)",
"type": "behat-extension",
"config": {
"sort-packages": true
},
"require": {
"php": "^5.5 || ^7.0",
"behat/behat": "^3.0",
"zendframework/zend-test": "~2.3|~3.0"
},
"require-dev": {
"phpunit/phpunit": "^4.0 || ^5.0 || ^6.0",
"symfony/process": "~2.1|~3.0",
"zendframework/zend-i18n": "~2.3|~3.0",
"zendframework/zend-log": "~2.3|~3.0",
"zendframework/zend-modulemanager": "~2.3|~3.0",
"zendframework/zend-mvc": "~2.3|~3.0",
"zendframework/zend-router": "~2.3|~3.0",
"zendframework/zend-serializer": "~2.3|~3.0"
},
"license": "MIT",
"authors": [
{
"name": "Vítor Brandão",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Noiselabs\\Behat\\ZfTestCaseExtension\\": "src"
}
},
"autoload-dev": {
"files": [
"tests/autoload/phpunit-class-aliases.php"
],
"psr-4": {
"Noiselabs\\Behat\\ZfTestCaseExtensionTest\\": "tests"
}
}
}