mirror of
https://github.com/elyby/php-code-style.git
synced 2024-11-06 08:11:08 +05:30
55 lines
1.5 KiB
JSON
55 lines
1.5 KiB
JSON
{
|
|
"name": "ely/php-code-style",
|
|
"description": "Set of PHP-CS-Fixer rules used in the development of Ely.by PHP projects",
|
|
"license": "Apache-2.0",
|
|
"type": "library",
|
|
"keywords": [
|
|
"php-cs-fixer",
|
|
"code style"
|
|
],
|
|
"authors": [
|
|
{
|
|
"name": "Ely.by team",
|
|
"email": "team@ely.by"
|
|
},
|
|
{
|
|
"name": "ErickSkrauch",
|
|
"email": "erickskrauch@ely.by"
|
|
}
|
|
],
|
|
"homepage": "https://github.com/elyby/php-code-style",
|
|
"require": {
|
|
"php": "^7.4 || ^8.0",
|
|
"friendsofphp/php-cs-fixer": "^3.13"
|
|
},
|
|
"require-dev": {
|
|
"ergebnis/composer-normalize": "^2.28",
|
|
"php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.2",
|
|
"phpspec/prophecy": "^1.15",
|
|
"phpspec/prophecy-phpunit": "^2.0",
|
|
"phpunit/phpunit": "^9.5",
|
|
"phpunitgoodpractices/polyfill": "^1.5",
|
|
"phpunitgoodpractices/traits": "^1.9.1",
|
|
"symfony/phpunit-bridge": "^6.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Ely\\CS\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Ely\\CS\\Test\\": "tests/",
|
|
"PhpCsFixer\\Tests\\": "vendor/friendsofphp/php-cs-fixer/tests/"
|
|
}
|
|
},
|
|
"config": {
|
|
"allow-plugins": {
|
|
"ergebnis/composer-normalize": true
|
|
},
|
|
"preferred-install": {
|
|
"friendsofphp/php-cs-fixer": "source"
|
|
}
|
|
}
|
|
}
|