-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (71 loc) · 2.05 KB
/
Copy pathcomposer.json
File metadata and controls
71 lines (71 loc) · 2.05 KB
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
{
"name": "shipmonk/phpstan-dev",
"description": "Development utilities for PHPStan rules testing, extracted from shipmonk/phpstan-rules",
"license": [
"MIT"
],
"type": "library",
"keywords": [
"phpstan",
"testing",
"static analysis"
],
"require": {
"php": "^7.4 || ^8.0",
"phpstan/phpstan": "^2.1.8"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.45.0",
"phpstan/phpstan-deprecation-rules": "^2.0.1",
"phpstan/phpstan-phpunit": "^2.0.4",
"phpstan/phpstan-strict-rules": "^2.0.3",
"phpunit/phpunit": "^9.6.22",
"shipmonk/coding-standard": "^0.2.0",
"shipmonk/composer-dependency-analyser": "^1.8.1",
"shipmonk/dead-code-detector": "^0.9.0",
"shipmonk/name-collision-detector": "^2.1.1"
},
"suggest": {
"phpunit/phpunit": "^9.6.22 for running tests that use RuleTestCase"
},
"autoload": {
"psr-4": {
"ShipMonk\\PHPStanDev\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ShipMonkTests\\PHPStanDev\\": "tests/"
},
"classmap": [
"tests/Rule/Data"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false,
"ergebnis/composer-normalize": true
},
"sort-packages": true
},
"scripts": {
"check": [
"@check:composer",
"@check:cs",
"@check:types",
"@check:tests",
"@check:dependencies",
"@check:collisions"
],
"check:collisions": "detect-collisions src",
"check:composer": [
"composer normalize --dry-run --no-check-lock --no-update-lock",
"composer validate --strict"
],
"check:cs": "phpcs",
"check:dependencies": "composer-dependency-analyser",
"check:tests": "phpunit -vvv tests",
"check:types": "phpstan analyse -vv --ansi",
"fix:cs": "phpcbf"
}
}