-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
34 lines (34 loc) · 1.05 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
{
"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": "alex.oleshkevich@gmail.com",
"homepage": "http://github.com/alex-oleshkevich"
}
],
"require": {
"php": ">=7.0.0",
"zendframework/zend-filter": "~2.5 || ~3.0",
"zendframework/zend-servicemanager": "^2.6 || ~3.0",
"zendframework/zend-eventmanager": "^2.6 || ~3.0",
"zendframework/zend-modulemanager": "~2.6 || ~3.0",
"doctrine/common": "^2.6 || ~3.0",
"doctrine/annotations": "^1.2",
"alex-oleshkevich/classnames": "^1.0",
"zendframework/zend-mvc": "^2.6 | ^3.0"
},
"autoload": {
"psr-0": {
"ZfAnnotation\\": "src/",
"ZfAnnotationTest\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit" : "*"
}
}