-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
74 lines (74 loc) · 1.83 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
{
"name": "ikvasnica/phpstan-clean-test",
"description": "PHPStan extension with opinionated strict rules for better code in tests.",
"keywords": [
"phpstan",
"phpstan-rules",
"phpstan-strict-rules",
"tests"
],
"type": "phpstan-extension",
"license": "MIT",
"homepage": "https://github.com/ikvasnica/phpstan-clean-test",
"authors": [
{
"name": "Ivan Kvasnica",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"nette/utils": "~3.0",
"nikic/php-parser": "^4.3",
"phpstan/phpstan": "^1.10"
},
"require-dev": {
"ergebnis/phpstan-rules": "^2.1.0",
"php-coveralls/php-coveralls": "2.*",
"phpstan/phpstan-strict-rules": "^1.5.1",
"phpunit/phpunit": "^9.0.0",
"symplify/easy-coding-standard": "^12.0.6"
},
"suggest": {
"phpstan/phpstan-deprecation-rules": "Rules for disallowing deprecation code.",
"phpstan/phpstan-strict-rules": "Strict and opinionated PHPStan rules.",
"phpstan/phpstan-phpunit": "PHPStan extension and rules to integrate with PHPUnit testing framework.",
"ergebnis/phpstan-rules": "Even more PHPStan strict and opinionated rules."
},
"scripts": {
"check-all": [
"@cs",
"@phpstan",
"phpunit"
],
"cs": "ecs check --ansi",
"cs-fix": "ecs check --fix --ansi",
"phpstan": "phpstan analyse --ansi"
},
"autoload": {
"psr-4": {
"ikvasnica\\PHPStan\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"phpstan": {
"includes": [
"rules.neon"
]
}
},
"support": {
"issues": "https://github.com/ikvasnica/phpstan-clean-test/issues",
"source": "https://github.com/ikvasnica/phpstan-clean-test"
}
}