BookStack/phpstan.neon.dist
Dan Brown 5116d83d38
PHP: Updated min version to 8.2
PHPStan config not yet compatible, but should work after moving to Laravel
11, which would allow using larastan 3.x.
2025-01-09 16:46:13 +00:00

26 lines
507 B
Plaintext

includes:
- ./vendor/larastan/larastan/extension.neon
parameters:
paths:
- app
# The level 8 is the highest level
level: 1
phpVersion:
min: 80200
max: 80400
bootstrapFiles:
- bootstrap/phpstan.php
ignoreErrors:
# - '#PHPDoc tag @throws with type .*?Psr\\SimpleCache\\InvalidArgumentException.*? is not subtype of Throwable#'
excludePaths:
- ./Config/**/*.php
- ./dev/**/*.php
checkMissingIterableValueType: false