-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
52 lines (52 loc) · 1.3 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
{
"name": "wieni/wmcodestyle",
"type": "application",
"description": "A set of Wieni best practices, coding standards and tools to enforce them.",
"license": "MIT",
"authors": [
{
"name": "Wieni",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1 || ^8.0",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"rector/rector": "^0.13",
"symfony/console": "^2.8 || ^3 || ^4 || ^5 || ^6",
"symfony/filesystem": "^3 || ^4 || ^5 || ^6"
},
"require-dev": {
"composer-runtime-api": "^2.0",
"ergebnis/composer-normalize": "^2.0"
},
"config": {
"sort-packages": true
},
"extra": {
"phpstan": {
"includes": [
"phpstan/custom-rules.neon"
]
}
},
"autoload": {
"psr-4": {
"Wieni\\wmcodestyle\\": "src/"
}
},
"bin": [
"wmcodestyle"
],
"scripts": {
"coding-standards": [
"@composer normalize",
"rector process",
"php-cs-fixer fix --config=.php_cs.php",
"phpstan analyse"
]
}
}