-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
59 lines (59 loc) · 1.58 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "kubawerlos/php-cs-fixer-custom-fixers",
"description": "A set of custom fixers for PHP CS Fixer",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Kuba Werłos",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-filter": "*",
"ext-tokenizer": "*",
"friendsofphp/php-cs-fixer": "^3.61.1"
},
"require-dev": {
"phpunit/phpunit": "^9.6.4 || ^10.5.29"
},
"autoload": {
"psr-4": {
"PhpCsFixerCustomFixers\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PhpCsFixerCustomFixersDev\\": ".dev-tools/src",
"Tests\\": "tests"
}
},
"scripts": {
"analyse": [
"@install-dev-tools",
"php-cs-fixer fix --ansi --show-progress=dots --diff --dry-run --verbose",
"@composer --no-interaction --working-dir=.dev-tools analyse"
],
"fix": [
"@install-dev-tools",
"php-cs-fixer fix --ansi --verbose || exit 0",
"@composer --no-interaction --working-dir=.dev-tools fix"
],
"infection": [
"@install-dev-tools",
"@composer --working-dir=.dev-tools infection"
],
"install-dev-tools": [
"@composer --working-dir=.dev-tools --quiet install --classmap-authoritative"
],
"test": [
"phpunit"
],
"verify": [
"@analyse",
"@test",
"@infection"
]
}
}