forked from issei-m/sfDependencyInjectionPlugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
35 lines (35 loc) · 1 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
{
"name": "issei-m/sf-dependency-injection-plugin",
"description": "Supporing Symfony's DependencyInjection component for your symfony1 project",
"keywords": ["symfony1", "plugin", "dependency-injection", "service"],
"license": "MIT",
"type": "symfony1-plugin",
"authors": [
{
"name": "Issei Murasawa",
"email": "[email protected]"
}
],
"require": {
"symfony/dependency-injection": "~2.7",
"symfony/config": "~2.7",
"composer/installers": "~1.0.0"
},
"require-dev": {
"symfony/expression-language": "~2.7",
"symfony/http-kernel": "~2.7",
"lexpress/symfony1": "~1.5.0",
"phpunit/phpunit": "~4.4"
},
"suggest": {
"symfony/http-foundation": "Allows you to strip the comments in compiled container code."
},
"autoload-dev": {
"classmap": [ "lib", "config" ]
},
"extra": {
"branch-alias": {
"dev-master": "1.3-dev"
}
}
}