forked from Respect/Config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.31 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
{
"name": "respect/config",
"type": "library",
"homepage": "https://github.com/Respect/Config",
"description": "A powerful, small, deadly simple configurator and dependency injection container made to be easy.",
"keywords": ["respect", "config", "dic", "dependency injection"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Alexandre Gomes Gaigalas",
"email": "[email protected]"
},
{
"name": "Augusto Pascutti",
"email": "[email protected]"
},
{
"name": "Henrique Moody",
"email": "[email protected]"
},
{
"name": "Ivo Nascimento",
"email": "[email protected]"
},
{
"name": "Nick Lombard",
"email": "[email protected]"
},
{
"name": "Rogerio Prado de Jesus",
"email": "[email protected]"
},
{
"name": "Thiago Rigo",
"email": "[email protected]"
}
],
"autoload": {
"psr-0": {
"Respect\\Config": "library"
}
},
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit": "@stable",
"respect/test": "dev-master"
}
}