-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
73 lines (73 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
69
70
71
72
73
{
"name": "ergebnis/phpstan-rules",
"description": "Provides rules for phpstan/phpstan.",
"license": "MIT",
"type": "phpstan-extension",
"keywords": [
"phpstan",
"phpstan-rules"
],
"authors": [
{
"name": "Andreas Möller",
"email": "[email protected]",
"homepage": "https://localheinz.com"
}
],
"homepage": "https://github.com/ergebnis/phpstan-rules",
"support": {
"issues": "https://github.com/ergebnis/phpstan-rules/issues",
"source": "https://github.com/ergebnis/phpstan-rules",
"security": "https://github.com/ergebnis/phpstan-rules/blob/main/.github/SECURITY.md"
},
"require": {
"php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"ext-mbstring": "*",
"phpstan/phpstan": "^1.10.21"
},
"require-dev": {
"doctrine/orm": "^2.20.0 || ^3.3.0",
"ergebnis/composer-normalize": "^2.45.0",
"ergebnis/license": "^2.6.0",
"ergebnis/php-cs-fixer-config": "^6.39.0",
"ergebnis/phpunit-slow-test-detector": "^2.17.0",
"nette/di": "^3.1.10",
"nikic/php-parser": "^4.19.4",
"phpstan/phpstan-deprecation-rules": "^1.2.1",
"phpstan/phpstan-strict-rules": "^1.6.1",
"phpunit/phpunit": "^9.6.21",
"psr/container": "^2.0.2",
"symfony/process": "^5.4.47"
},
"autoload": {
"psr-4": {
"Ergebnis\\PHPStan\\Rules\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ergebnis\\PHPStan\\Rules\\Test\\": "test/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"infection/extension-installer": true
},
"audit": {
"abandoned": "report"
},
"platform": {
"php": "7.4.33"
},
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"phpstan": {
"includes": [
"rules.neon"
]
}
}
}