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 95820f0 commit 1fe4eefCopy full SHA for 1fe4eef
2 files changed
composer.json
@@ -26,7 +26,8 @@
26
"squizlabs/php_codesniffer": "^3.0",
27
"brick/varexporter": "^0.3.5",
28
"friendsofphp/php-cs-fixer": "^3.2",
29
- "oscarotero/php-cs-fixer-config": "^2.0"
+ "oscarotero/php-cs-fixer-config": "^2.0",
30
+ "phpstan/phpstan": "^2.1"
31
},
32
"autoload": {
33
"psr-4": {
@@ -41,7 +42,8 @@
41
42
"scripts": {
43
"test": [
44
"phpunit",
- "phpcs"
45
+ "phpcs",
46
+ "phpstan"
47
],
48
"cs-fix": "php-cs-fixer fix"
49
}
phpstan.dist.neon
@@ -0,0 +1,5 @@
1
+parameters:
2
+ level: 0
3
+ paths:
4
+ - src
5
+ - tests
0 commit comments