-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
43 lines (43 loc) · 888 Bytes
/
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
{
"name": "signpostmarv/php-cs-fixer-config",
"description": "PHP-CS-Fixer Config",
"license": "ISC",
"authors": [
{
"name": "SignpostMarv",
"email": "me@signpostmarv.name"
}
],
"autoload": {
"psr-4": {
"SignpostMarv\\CS\\": "src/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"scripts": {
"tests": [
"psalm --show-info=false --shepherd",
"@static-analysis"
],
"static-analysis": [
"phpcpd src",
"phpmnd src",
"php-cs-fixer fix --verbose --allow-risky=yes --dry-run --diff",
"composer-require-checker check ./composer.json"
]
},
"require": {
"php": "^7.4|^8.0",
"friendsofphp/php-cs-fixer": "^3.48"
},
"require-dev": {
"maglnet/composer-require-checker": "^3.8",
"povils/phpmnd": "^3.4",
"roave/security-advisories": "dev-latest",
"sebastian/phpcpd": "^6.0",
"vimeo/psalm": "^5.20"
}
}