-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
68 lines (68 loc) · 1.81 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
{
"name": "mimmi20/coding-standard",
"description": "The Coding Standard is a set of PHPCS rules.",
"license": "MIT",
"type": "phpcodesniffer-standard",
"keywords": [
"coding",
"standard",
"cs",
"code",
"style",
"sniffer",
"rules",
"sniffs",
"checks"
],
"authors": [
{
"name": "Thomas Müller",
"homepage": "https://github.com/mimmi20",
"role": "Developer"
},
{
"name": "Contributors",
"homepage": "https://github.com/mimmi20/coding-standard/graphs/contributors"
}
],
"homepage": "https://github.com/mimmi20/coding-standard",
"support": {
"issues": "https://github.com/mimmi20/coding-standard/issues",
"source": "https://github.com/mimmi20/coding-standard"
},
"require": {
"php": "~8.3.0 || ~8.4.0 || ~8.5.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"friendsofphp/php-cs-fixer": "^3.65.0",
"slevomat/coding-standard": "^8.15.0",
"squizlabs/php_codesniffer": "^3.11.2"
},
"require-dev": {
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^1.12.9",
"phpstan/phpstan-deprecation-rules": "^1.2.1",
"rector/rector": "^1.2.10",
"rector/type-perfect": "^1.0.0",
"symfony/process": "^7.2.0",
"symplify/phpstan-rules": "^13.0.1",
"tomasvotruba/cognitive-complexity": "^0.2.3",
"tomasvotruba/type-coverage": "^1.0.0",
"tomasvotruba/unused-public": "^1.1.0"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Mimmi20CodingStandard\\": "src/Mimmi20CodingStandard/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"lock": false,
"preferred-install": "dist",
"sort-packages": true
}
}