-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
51 lines (51 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
{
"name": "m1/vars",
"description": "Vars is a simple to use and easily extendable configuration loader with in built loaders for ini, json, PHP, toml, XML and yaml/yml file types. It also comes with in built support for Silex and more frameworks to come soon.",
"keywords": [
"miles", "croxford", "vars", "config", "configuration", "loader", "json", "yml", "xml", "toml", "php", "ini",
"silex", "service", "provider"
],
"homepage": "https://github.com/m1/vars",
"license": "MIT",
"authors": [
{
"name": "Miles Croxford",
"email": "[email protected]",
"homepage": "http://milescroxford.com",
"role": "Developer"
}
],
"require": {
"php" : ">=5.4.0",
"symfony/filesystem": "^2.8 | ^3.0"
},
"require-dev": {
"phpunit/phpunit" : "^4.8.36 || ^5.7 || ^6.5",
"scrutinizer/ocular": "~1.1",
"squizlabs/php_codesniffer": "^2.3",
"symfony/yaml": "~2.8",
"yosymfony/toml": "~0.3",
"silex/silex": "1.3.*",
"m1/env": "2.*"
},
"suggest": {
"m1/env": "For loading of Env files",
"symfony/yaml": "For loading of YAML files",
"yosymfony/toml": "For loading of Toml files"
},
"autoload": {
"psr-4": {
"M1\\Vars\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"M1\\Vars\\Test\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"check-codestyle": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-codestyle": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests"
}
}