php-code-style/composer.json

55 lines
1.5 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",
"friendsofphp/php-cs-fixer": "^3.13"
2018-04-17 23:58:51 +05:30
},
"require-dev": {
2022-09-20 06:05:44 +05:30
"ergebnis/composer-normalize": "^2.28",
"php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.2",
"phpspec/prophecy": "^1.15",
"phpspec/prophecy-phpunit": "^2.0",
2022-09-20 06:05:44 +05:30
"phpunit/phpunit": "^9.5",
"phpunitgoodpractices/polyfill": "^1.5",
2022-09-20 06:05:44 +05:30
"phpunitgoodpractices/traits": "^1.9.1",
"symfony/phpunit-bridge": "^6.0"
2018-04-17 23:58:51 +05:30
},
"autoload": {
"psr-4": {
"Ely\\CS\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ely\\CS\\Test\\": "tests/",
"PhpCsFixer\\Tests\\": "vendor/friendsofphp/php-cs-fixer/tests/"
2019-02-22 23:13:39 +05:30
}
2022-09-20 06:05:44 +05:30
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"preferred-install": {
"friendsofphp/php-cs-fixer": "source"
}
2018-04-17 23:58:51 +05:30
}
}