]> BookStack Code Mirror - bookstack/blob - phpstan.neon.dist
Licensing: Updated license gen scripts to share logic
[bookstack] / phpstan.neon.dist
1 includes:
2     - ./vendor/larastan/larastan/extension.neon
3
4 parameters:
5
6     paths:
7         - app
8
9     # The level 8 is the highest level
10     level: 1
11
12     phpVersion: 80200
13
14     bootstrapFiles:
15       - bootstrap/phpstan.php
16
17     ignoreErrors:
18     #  - '#PHPDoc tag @throws with type .*?Psr\\SimpleCache\\InvalidArgumentException.*? is not subtype of Throwable#'
19
20     excludePaths:
21         - ./Config/**/*.php
22         - ./dev/**/*.php
23
24     checkMissingIterableValueType: false