-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.16 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.16 KB
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.3",
"friendsofphp/php-cs-fixer": "^3.89.1",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.30.2"
},
"require-dev": {
"jetbrains/phpstorm-attributes": "^1.2",
"phpunit/phpunit": "^11.5.43",
"symfony/console": "^7.3.5"
},
"authors": [
{
"name": "Krzysztof Rewak",
"email": "krzysztof.rewak@blumilk.pl"
}
],
"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 --verbose --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"
]
}