-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
55 lines (55 loc) · 1.77 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
52
53
54
55
{
"name": "aztech/phinject",
"description": "PHP Dependency Injection Container",
"type": "library",
"homepage": "http://aztech-digital.github.io/phinject/",
"keywords": [ "di", "dependency-injection", "di-container", "container", "container-interop", "phinject", "dependency", "injection" ],
"time": "2014-12-26",
"license": "MIT",
"authors": [
{
"name": "Thibaud Fabre",
"email": "[email protected]",
"homepage": "http://aztech.io",
"role": "Author"
}
],
"autoload": {
"psr-4": {
"Aztech\\Phinject\\": "src/"
}
},
"require": {
"psr/log": "~1.0",
"symfony/yaml": "~2.5",
"container-interop/container-interop": "~1.1",
"symfony/console": "~2.6"
},
"require-dev": {
"behat/behat": "~3.0",
"guzzle/guzzle": "~3.8",
"ocramius/proxy-manager": "0.5.*",
"phpmd/phpmd": "~2.2",
"phpunit/phpunit": "~4.1",
"squizlabs/php_codesniffer": "~2",
"vektah/bugfree-dangerzone": "~0.3",
"zendframework/zend-json": "~2.2",
"zendframework/zend-soap": "~2.2",
"zendframework/zend-xmlrpc": "~2.2"
},
"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"
},
"bin": [
"bin/phinject"
],
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}