forked from PHP-DI/ZF2-Bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (30 loc) · 822 Bytes
/
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
{
"name": "php-di/zf2-bridge",
"type": "library",
"description": "Integrates PHP-DI to Zend Framework 2",
"homepage": "https://github.com/PHP-DI/ZF2-Bridge",
"license": "MIT",
"require": {
"php": ">=5.5",
"php-di/php-di": "~5.0",
"acclimate/container": "~1.0 || ~2.0",
"doctrine/annotations": "~1.0",
"doctrine/cache": "~1.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "~2.0",
"phpmd/phpmd" : "~2.0",
"phpunit/phpunit": "~4.8.35",
"zendframework/zendframework": "^2.5"
},
"autoload": {
"psr-4": {
"DI\\ZendFramework2\\": "src/DI/ZendFramework2"
}
},
"autoload-dev": {
"psr-4": {
"Test\\DI\\ZendFramework2\\": "tests/DI/ZendFramework2"
}
}
}