-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
45 lines (45 loc) · 1.32 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-symfony-bundle",
"description": "Integration bridge for Go! AOP framework",
"type": "symfony-bundle",
"require": {
"goaop/framework": "^2.1.2",
"symfony/framework-bundle": "^2.6|^3.0|^4.0|^5.0",
"symfony/console": "^2.6|^3.0|^4.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"symfony/phpunit-bridge": "^3.3.4|^4.0",
"symfony/debug": "^2.7|^3.0|^4.0",
"matthiasnoback/symfony-dependency-injection-test": "^1.1.0",
"doctrine/orm": "^2.5",
"symfony/filesystem": "^2.8|^3.0|^4.0",
"symfony/process": "^3.3|^4.0",
"symfony/expression-language": "^3.3|^4.0",
"roave/security-advisories": "dev-master"
},
"license": "MIT",
"authors": [
{
"name": "Lisachenko Alexander",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Go\\Symfony\\GoAopBundle\\": "./"
},
"exclude-from-classmap": [ "./Tests/" ]
},
"autoload-dev": {
"psr-4": {
"": "./Tests/Fixtures/project/app/",
"Go\\Symfony\\GoAopBundle\\Tests\\TestProject\\": "./Tests/Fixtures/project/src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}