This repository was archived by the owner on Nov 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 1.69 KB
/
composer.json
File metadata and controls
70 lines (70 loc) · 1.69 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
{
"name": "matla/phpstancs",
"type": "phpstan-extension",
"description": "Allows you to fob off the phpStan report into phpStorm",
"prefer-stable": true,
"license": "GPL-3.0",
"keywords": [
"phpStan",
"phpStorm"
],
"authors": [
{
"name": "Adam Mátl",
"email": "code@matla.cz"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"matla\\phpstancs\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"matla\\phpstancs\\": "tests/"
}
},
"scripts": {
"check": [
"@phpunit",
"@phpcs",
"@phpstan",
"@phpmd"
],
"phpunit": "vendor/bin/phpunit",
"phpcs": "vendor/bin/phpcs --standard=PSR2 src tests",
"phpstan": "vendor/bin/phpstan analyse --level=max src tests",
"phpmd": "vendor/bin/phpmd src,tests text codesize, controversial, design, naming, unusedcode",
"check-win": [
"@phpunit-win",
"@phpcs-win",
"@phpstan-win",
"@phpmd-win"
],
"phpunit-win": "vendor\\bin\\phpunit.bat",
"phpcs-win": "vendor\\bin\\phpcs.bat --standard=PSR2 src tests",
"phpstan-win": "vendor\\bin\\phpstan.bat analyse --level=max src tests",
"phpmd-win": "vendor\\bin\\phpmd.bat src,tests text codesize, controversial, design, naming, unusedcode",
"fix-win": "vendor\\bin\\phpcbf.bat --standard=PSR2 src tests"
},
"require": {
"php": "^7.1",
"nette/neon": "> 2.4",
"phpstan/phpstan": ">= 0.12.0",
"squizlabs/php_codesniffer": "^3.4"
},
"require-dev": {
"pepakriz/phpstan-exception-rules": "^0.10.1"
},
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
}
},
"config": {
"sort-packages": true
}
}