We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9abf985 commit 4d32e60Copy full SHA for 4d32e60
composer.json
@@ -17,7 +17,7 @@
17
"test": "vendor/bin/phpunit",
18
"lint": "./vendor/bin/pint --test",
19
"format": "./vendor/bin/pint",
20
- "check": "./vendor/bin/phpstan analyse --level 4 src tests",
+ "check": "./vendor/bin/phpstan analyse",
21
"import": "php import.php",
22
"import:all": "php import.php all --commit=true",
23
"import:disposable": "php import.php disposable --commit=true",
@@ -34,7 +34,7 @@
34
"require-dev": {
35
"phpunit/phpunit": "^9.3",
36
"laravel/pint": "1.25.*",
37
- "phpstan/phpstan": "1.9.x-dev"
+ "phpstan/phpstan": "^1.10"
38
},
39
"minimum-stability": "stable",
40
"config": {
phpstan.neon
@@ -0,0 +1,5 @@
1
+parameters:
2
+ level: 4
3
+ paths:
4
+ - src
5
+ - tests
0 commit comments