forked from alex-oleshkevich/zf-annotations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 960 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
{
"name": "alex-oleshkevich/zf-annotations",
"description": "ZF2 module for annotated configuration.",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/alex-oleshkevich/zf-annotations",
"authors": [
{
"name": "Alex Oleshkevich",
"email": "[email protected]",
"homepage": "http://github.com/alex-oleshkevich"
}
],
"require": {
"php": ">=5.5",
"zendframework/zend-code": "~3.0",
"zendframework/zend-filter": "~2.5",
"zendframework/zend-servicemanager": "^2.6 || ~3.0",
"zendframework/zend-eventmanager": "^2.6 || ~3.0",
"zendframework/zend-modulemanager": "~2.6",
"doctrine/common": "~2.6"
},
"autoload": {
"psr-0": {
"ZfAnnotation\\": "src/",
"ZfAnnotationTest\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit" : "*"
}
}