-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1.09 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "realodix/relax",
"description": "Shared php-cs-fixer rules & finders preset",
"license": "MIT",
"keywords": ["code style","codestyle","coding standards","coding style","php-cs-fixer ","php-cs-fixer-config"],
"authors": [{"name": "Budi Hermawan", "role": "Developer"}],
"homepage": "https://github.com/realodix/relax",
"require": {
"php": "^7.4 || ^8.0",
"friendsofphp/php-cs-fixer": "^3.63",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.21",
"symfony/console": "^5.4.41 || ^6.0 || ^7.0"
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^9.6"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Realodix\\Relax\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Realodix\\Relax\\Tests\\": "tests"
},
"exclude-from-classmap": [
"tests/Fixtures/Ruleset/**"
]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"bin": "bin/relax"
}