-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 748 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 748 Bytes
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
{
"name": "macfja/chain-config",
"license": "MIT",
"keywords": ["Configuration", "Chain", "Load Priority", "YAML", "Json", "Ini", "Neon", "XML"],
"description": "A configuration loader, where order matters.",
"authors": [
{
"name": "MacFJA"
}
],
"autoload": {
"psr-4": {"MacFJA\\ChainConfig\\": "lib/"}
},
"autoload-dev": {
"psr-4": {"MacFJA\\ChainConfig\\Test\\": "tests/"}
},
"require": {
"php": ">=5.3"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"symfony/yaml": "^2.8",
"squizlabs/php_codesniffer": "^2.5",
"nette/neon": "^2.3"
},
"suggest": {
"symfony/yaml": "For reading Yaml configuration format",
"nette/neon": "For reading Neon configuration format"
}
}