We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a89edb commit 1bea21eCopy full SHA for 1bea21e
composer.json
@@ -54,7 +54,7 @@
54
"scripts": {
55
"test": "vendor/bin/phpunit",
56
"phpcs": "vendor/bin/phpcs --standard=phpcs.xml src",
57
- "phpstan": "vendor/bin/phpstan --level=0 --no-progress analyse src"
+ "phpstan": "vendor/bin/phpstan --level=0 --no-progress analyse --configuration phpstan.neon --memory-limit 2G"
58
},
59
"extra": {
60
"branch-alias": {
phpstan.neon
@@ -1,8 +1,17 @@
1
parameters:
2
+ # The level 9 is the highest level
3
+ level: 9
4
+ reportUnmatchedIgnoredErrors: false
5
+
6
+ paths:
7
+ - src
8
+ - tests
9
10
excludePaths:
11
analyse:
12
- vendor
13
- resources
14
15
ignoreErrors:
16
- '#Function config_path not found#'
17
- '#Function config not found#'
0 commit comments