We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f14b223 commit bfbb852Copy full SHA for bfbb852
composer.json
@@ -27,7 +27,9 @@
27
},
28
"require-dev": {
29
"phpunit/phpunit": "^9.6|^10.0",
30
- "vimeo/psalm": "^5.22"
+ "phpstan/extension-installer": "^1.4",
31
+ "phpstan/phpstan": "^1.11",
32
+ "phpstan/phpstan-strict-rules": "^1.6"
33
34
"autoload-dev": {
35
"psr-4": {
phpstan.neon
@@ -0,0 +1,12 @@
1
+includes:
2
+ - phar://phpstan.phar/conf/bleedingEdge.neon
3
+parameters:
4
+ level: 1
5
+ strictRules:
6
+ allRules: true
7
+ fileExtensions:
8
+ - php
9
+ paths:
10
+ - src
11
+ tmpDir: vendor/.cache.phpstan
12
+ reportUnmatchedIgnoredErrors: false
psalm.xml
0 commit comments