-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpstan.dist.neon
More file actions
23 lines (23 loc) · 926 Bytes
/
Copy pathphpstan.dist.neon
File metadata and controls
23 lines (23 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
parameters:
# used for cache. Useful for github action to reload a previous cache and speed up test
tmpDir: .github/cache/phpstan
level: 10
paths:
- bin/
- config/
- src/Kernel.php
###> phpstan/phpstan-strict-rules
strictRules:
allRules: true
###< phpstan/phpstan-strict-rules
###> phpstan/phpstan-symfony
symfony:
containerXmlPath: var/cache/dev/App_KernelDevDebugContainer.xml
# If you're using PHP config files for Symfony 5.3+, you also need this for auto-loading of `Symfony\Config`:
scanDirectories:
- var/cache/dev/Symfony/Config
# If you're using PHP config files (including the ones under packages/*.php) for Symfony 5.3+,
# you need this to load the helper functions (i.e. service(), env()):
scanFiles:
- vendor/symfony/dependency-injection/Loader/Configurator/ContainerConfigurator.php
###< phpstan/phpstan-symfony