dot-config/composer.json

52 lines
1.4 KiB
JSON
Raw Normal View History

2017-11-04 14:09:22 -07:00
{
"name": "sikofitt/dot-config",
"description": "Yet another config library, using dflydev's great Dot Access Data library.",
"type": "project",
"require": {
"php": ">=7.1",
2017-11-07 13:30:35 -08:00
"dflydev/dot-access-data": "^1.1",
"symfony/filesystem": "^3.3"
2017-11-04 14:09:22 -07:00
},
"autoload": {
"psr-4": {
2017-11-07 13:30:35 -08:00
"Sikofitt\\Config\\": "src/Sikofitt/Config"
2017-11-04 14:09:22 -07:00
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.6",
2017-11-07 13:30:35 -08:00
"nette/neon": "^2.4",
2017-11-04 14:09:22 -07:00
"phpro/grumphp": "^0.12.0",
"phpstan/phpstan": "^0.8.5",
"phpunit/phpunit": "~5.7|~6.3",
"sensiolabs/security-checker": "^4.1",
"squizlabs/php_codesniffer": "^3.1",
2017-11-07 13:30:35 -08:00
"symfony/var-dumper": "^3.3",
"symfony/yaml": "^3.3",
"webmozart/json": "^1.2"
2017-11-04 14:09:22 -07:00
},
"autoload-dev": {
"psr-4": {
"Sikofitt\\Tests\\": "tests/Sikofitt/Tests"
}
},
2017-11-07 13:30:35 -08:00
"suggest": {
"webmozart/json": "For using the webmozart json parser. Instead of the default php one.",
"nette/neon": "For parsing .neon files.",
"symfony/yaml": "For parsing yaml files."
},
2017-11-04 14:09:22 -07:00
"license": "GPL-3.0",
"authors": [
{
"name": "R. Eric Wheeler",
"email": "sikofitt@gmail.com",
"homepage": "https://sikofitt.com",
"role": "developer"
}
],
"config": {
"sort-packages": true
}
}