php-code-style/composer.json

41 lines
929 B
JSON
Raw Normal View History

2018-04-17 23:58:51 +05:30
{
"name": "ely/php-code-style",
"description": "Set of PHP-CS-Fixer rules used in the development of Ely.by PHP projects",
"keywords": ["php-cs-fixer", "code style"],
"homepage": "https://github.com/elyby/php-code-style",
"authors": [
{
"name": "Ely.by team",
"email": "team@ely.by"
},
{
"name": "ErickSkrauch",
"email": "erickskrauch@ely.by"
}
],
"license": "Apache-2.0",
"type": "library",
"require": {
"php": "^7.0",
"friendsofphp/php-cs-fixer": "^2.13.0"
2018-04-17 23:58:51 +05:30
},
"require-dev": {
"phpunit/phpunit": "^6.5.1"
2018-04-17 23:58:51 +05:30
},
"autoload": {
"psr-4": {
"Ely\\CS\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ely\\CS\\Test\\": "tests/"
2018-08-06 12:37:29 +05:30
}
2019-02-22 23:13:39 +05:30
},
"config": {
"platform": {
"php": "7.0.8"
}
2018-04-17 23:58:51 +05:30
}
}