php-code-style/composer.json

45 lines
1.1 KiB
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",
2022-09-20 06:05:44 +05:30
"license": "Apache-2.0",
"type": "library",
"keywords": [
"php-cs-fixer",
"code style"
],
2018-04-17 23:58:51 +05:30
"authors": [
{
"name": "Ely.by team",
"email": "team@ely.by"
},
{
"name": "ErickSkrauch",
"email": "erickskrauch@ely.by"
}
],
2022-09-20 06:05:44 +05:30
"homepage": "https://github.com/elyby/php-code-style",
2018-04-17 23:58:51 +05:30
"require": {
2022-09-20 06:05:44 +05:30
"php": "^7.4 || ^8.0",
2023-05-18 02:31:23 +05:30
"erickskrauch/php-cs-fixer-custom-fixers": "^1.0.1",
"friendsofphp/php-cs-fixer": "^3.47",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.13"
2018-04-17 23:58:51 +05:30
},
"require-dev": {
"ergebnis/composer-normalize": "^2.28"
2018-04-17 23:58:51 +05:30
},
"autoload": {
"psr-4": {
"Ely\\CS\\": "src/"
}
},
2022-09-20 06:05:44 +05:30
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"preferred-install": {
"friendsofphp/php-cs-fixer": "source"
},
"sort-packages": true
2018-04-17 23:58:51 +05:30
}
}