-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
32 lines (32 loc) · 885 Bytes
/
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
{
"name": "davidepastore/slim-config",
"description": "A slim middleware to read configuration from different files based on hassankhan/config",
"keywords": ["slim","framework","middleware","config", "configuration", "php", "ini", "xml", "json", "yaml"],
"type": "library",
"authors": [
{
"name": "Davide Pastore",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.0",
"hassankhan/config": "^0.10.0"
},
"require-dev": {
"slim/slim": "~3.0",
"phpunit/phpunit": "^4.0",
"scrutinizer/ocular": "~1.1"
},
"autoload": {
"psr-4": {
"DavidePastore\\Slim\\Config\\": "src"
}
},
"license" : "GPL-2.0+",
"autoload-dev": {
"psr-4": {
"DavidePastore\\Slim\\Config\\Tests\\": "tests"
}
}
}