forked from oliviermadre/dic-it
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
51 lines (51 loc) · 1.56 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
46
47
48
49
50
51
{
"name" : "evaneos/dic-it",
"description" : "Yet another dependency injection container",
"type" : "library",
"homepage" : "http://github.com/Evaneos/dic-it",
"time" : "2013-11-01",
"license" : "MIT",
"authors" : [{
"name" : "Olivier Madre",
"email" : "terenas@gmail.com",
"homepage" : "http://about.me/oliviermadre",
"role" : "Developer"
}
],
"autoload" : {
"psr-0" : {
"" : "src/"
}
},
"config": {
"platform": {
"php": "5.5.38"
},
"sort-packages": true
},
"require" : {
"symfony/yaml" : "~2.8|~3.0"
},
"require-dev" : {
"squizlabs/php_codesniffer" : "~2.9",
"league/phpunit-coverage-listener" : "~1.0",
"phpunit/phpunit" : "~4.0",
"ocramius/proxy-manager" : "~1.0",
"zendframework/zend-xmlrpc" : "~2.2",
"zendframework/zend-json" : "~2.2",
"zendframework/zend-soap" : "~2.2",
"guzzle/guzzle" : "~3.8"
},
"suggest" : {
"ocramius/proxy-manager" : "To support injection of runtime generated proxies",
"zendframework/zend-xmlrpc" : "To support XML-RPC remote object activation",
"zendframework/zend-json" : "To support JSON-RPC remote object activation",
"zendframework/zend-soap" : "To support SOAP remote object activation",
"guzzle/guzzle" : "To support RESTful remote object activation"
},
"extra": {
"branch-alias": {
"dev-master": "2.2.x-dev"
}
}
}