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
|
{
"name": "aura/di",
"type": "library",
"description": "A serializable dependency injection container with constructor and setter injection, interface and trait awareness, configuration inheritance, and much more.",
"keywords": [
"container",
"dependency injection",
"di",
"di container",
"dependency injection container"
],
"homepage": "https://github.com/auraphp/Aura.Di",
"license": "MIT",
"authors": [
{
"name": "Aura.Di Contributors",
"homepage": "https://github.com/auraphp/Aura.Di/contributors"
}
],
"require": {
"php": ">=5.5.0",
"container-interop/container-interop": "~1.0"
},
"autoload": {
"psr-4": {
"Aura\\Di\\": "src/"
}
},
"require-dev": {
"mouf/picotainer": "~1.0",
"acclimate/container": "~1.0",
"phpunit/phpunit": "~5.7 || ~4.8"
},
"autoload-dev": {
"psr-4": {
"Aura\\Di\\": "tests/"
}
},
"provide": {
"container-interop/container-interop-implementation": "^1.0"
}
}
|