We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c09bcc7 commit 8cad2e1Copy full SHA for 8cad2e1
.gitignore
@@ -3,3 +3,4 @@
3
/build
4
.php_cs_cache
5
.phpunit.result.cache
6
+.phpstan-cache
composer.json
@@ -31,7 +31,7 @@
31
"doctrine/coding-standard": "^9.0"
32
},
33
"scripts": {
34
- "phpstan": "phpstan analyse src/ -c phpstan.neon --level=7 --no-progress",
+ "phpstan": "phpstan analyse --no-progress",
35
"cs-check": "phpcs",
36
"cs-fix": "phpcbf",
37
"test": ["@cs-check", "@phpstan", "phpunit"]
phpstan.neon
@@ -1,5 +1,7 @@
1
+includes:
2
+ - vendor/phpstan/phpstan/conf/bleedingEdge.neon
parameters:
- ignoreErrors:
-
-#includes:
-# - vendor/thecodingmachine/phpstan-strict-rules/phpstan-strict-rules.neon
+ tmpDir: .phpstan-cache
+ paths:
+ - src
7
+ level: max
0 commit comments