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 fcdcf4c commit 19c3137Copy full SHA for 19c3137
composer.json
@@ -32,6 +32,12 @@
32
"role": "Developer"
33
}
34
],
35
+ "minimum-stability": "beta",
36
+ "prefer-stable": true,
37
+ "scripts": {
38
+ "analyse:phpstan": "phpstan analyse",
39
+ "clear-cache:phpstan": "phpstan clear-result-cache"
40
+ },
41
"extra": {
42
"flarum-extension": {
43
"title": "Mobile tab",
@@ -62,5 +68,8 @@
62
68
"css": true
63
69
64
70
71
72
+ "require-dev": {
73
+ "flarum/phpstan": "^2.0@beta"
65
74
66
75
phpstan.neon
@@ -0,0 +1,12 @@
1
+includes:
2
+ - vendor/flarum/phpstan/extension.neon
3
+
4
+parameters:
5
+ level: 5
6
+ paths:
7
+ - src
8
+ - extend.php
9
+ excludePaths:
10
+ - *.blade.php
11
+ checkMissingIterableValueType: false
12
+ databaseMigrationsPath: ['migrations']
0 commit comments