-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
45 lines (45 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
44
45
{
"name": "goaop/goaop-zf2-module",
"description": "Integration module for Go! AOP Framework",
"type": "library",
"keywords": ["module", "zend", "zf2", "aop", "php", "aspect"],
"license": "MIT",
"require": {
"goaop/framework": "^1.0|^2.0",
"zendframework/zend-modulemanager": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^5.0 | ^6.0",
"zendframework/zend-mvc": "^2.0 | ^3.0",
"zendframework/zend-view": "^2.0",
"zendframework/zend-serializer": "^2.0",
"zendframework/zend-log": "^2.0",
"zendframework/zend-i18n": "^2.0",
"zendframework/zend-console": "^2.0",
"symfony/console": "^3.0 | ^4.0"
},
"suggest": {
"symfony/console": "Required to use goaop console warmup"
},
"authors": [
{
"name": "Lisachenko Alexander",
"email": "[email protected]"
},
{
"name": "Andreas Frömer",
"email": "[email protected]"
}
],
"bin": ["bin/goaop-zf2-warmup"],
"autoload": {
"psr-4": {
"Go\\Zend\\Framework\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"Go\\Zend\\Framework\\Tests\\" : "tests/"
}
}
}