-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathphpstan.neon
More file actions
22 lines (16 loc) · 663 Bytes
/
phpstan.neon
File metadata and controls
22 lines (16 loc) · 663 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
includes:
- %currentWorkingDirectory%/.build/vendor/phpstan/phpstan-strict-rules/rules.neon
- %currentWorkingDirectory%/.build/vendor/phpstan/phpstan-deprecation-rules/rules.neon
- %currentWorkingDirectory%/phpstan-baseline.neon
parameters:
# You can currently choose from 11 levels (0 is the loosest and 10 is the strictest).
level: max
# PHP Version to check against (PHP 8.3 as minimum target)
phpVersion: 80300
tmpDir: %currentWorkingDirectory%/.build/cache/.phpstan.cache
paths:
- %currentWorkingDirectory%/src/
fileExtensions:
- php
excludePaths:
- %currentWorkingDirectory%/.build/