-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
46 lines (46 loc) · 1.15 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
39
40
41
42
43
44
45
46
{
"name": "blumilksoftware/codestyle",
"description": "Blumilk codestyle configurator",
"license": "MIT",
"type": "library",
"require": {
"php": "^8.2",
"friendsofphp/php-cs-fixer": "^3.59",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.21"
},
"require-dev": {
"jetbrains/phpstorm-attributes": "^1.1",
"phpunit/phpunit": "^10.0|^11.2",
"symfony/console": "^6.0|^7.0"
},
"authors": [
{
"name": "Krzysztof Rewak",
"email": "[email protected]"
}
],
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"Blumilk\\Codestyle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Blumilk\\Codestyle\\Tests\\": "tests/codestyle/"
}
},
"scripts": {
"cs": "./vendor/bin/php-cs-fixer fix --dry-run --diff --config codestyle.php",
"csf": "./vendor/bin/php-cs-fixer fix --diff --config codestyle.php",
"test": "./vendor/bin/phpunit tests --colors=always",
"unit": "./vendor/bin/phpunit tests/unit --colors=always",
"e2e": "./vendor/bin/phpunit tests/codestyle --colors=always"
},
"bin": [
"bin/codestyle"
]
}