This repository has been archived by the owner on Mar 1, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
86 lines (86 loc) · 2.91 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "narrowspark/php-cs-fixer-config",
"type": "library",
"description": "Provides a configuration for friendsofphp/php-cs-fixer, used within Narrowspark and Anolilab.",
"keywords": [
"narrowspark",
"cs",
"cs-fixer",
"config",
"php-cs-fixer"
],
"homepage": "https://github.com/narrowspark/php-cs-fixer-config",
"license": "MIT",
"authors": [
{
"name": "Daniel Bannert",
"email": "[email protected]",
"homepage": "http://www.anolilab.de",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"ergebnis/license": "~1.1.0",
"friendsofphp/php-cs-fixer": "~2.18.2",
"kubawerlos/php-cs-fixer-custom-fixers": "~2.4.1",
"pedrotroller/php-cs-custom-fixer": "~2.24.0"
},
"require-dev": {
"ext-json": "*",
"infection/infection": "^0.21.3",
"phpstan/phpstan": "^0.12.80",
"phpstan/phpstan-deprecation-rules": "^0.12.6",
"phpstan/phpstan-mockery": "^0.12.12",
"phpstan/phpstan-phpunit": "^0.12.17",
"phpstan/phpstan-strict-rules": "^0.12.9",
"phpunit/phpunit": "^9.5.2",
"psalm/plugin-phpunit": "^0.15.1",
"rector/rector": "^0.10.6",
"rector/rector-phpunit": "^0.10.6",
"slam/phpstan-extensions": "^5.1.0",
"symplify/phpstan-rules": "^9.2",
"thecodingmachine/phpstan-strict-rules": "^0.12.1",
"vimeo/psalm": "^4.6.2"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "6.3-dev"
}
},
"autoload": {
"psr-4": {
"Narrowspark\\CS\\Config\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Narrowspark\\CS\\Config\\Tests\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"coverage": [
"phpunit --dump-xdebug-filter=./.build/phpunit/.xdebug-filter.php",
"phpunit --prepend=./.build/phpunit/.xdebug-filter.php --coverage-html=./.build/phpunit/coverage"
],
"cs": "php-cs-fixer fix --config=\"./.php_cs\" --ansi",
"cs:check": "php-cs-fixer fix --config=\"./.php_cs\" --ansi --dry-run",
"infection": "XDEBUG_MODE=coverage infection --configuration=\"./infection.json\" -j$(nproc) --ansi",
"phpstan": "phpstan analyse -c ./phpstan.neon --ansi",
"psalm": "psalm --threads=$(nproc)",
"psalm:fix": "psalm --alter --issues=all --threads=$(nproc) --ansi",
"rector": "rector process --ansi --dry-run",
"rector:fix": "rector process --ansi",
"test": "phpunit"
},
"support": {
"issues": "https://github.com/narrowspark/php-cs-fixer-config/issues",
"source": "https://github.com/narrowspark/php-cs-fixer-config"
}
}