mirror of
https://github.com/appwrite/appwrite
synced 2026-05-24 09:28:40 +00:00
Configure a project-local result cache directory so PHPStan only re-analyses files that changed. In CI, persist the cache across runs with actions/cache and suppress progress output.
18 lines
272 B
Text
18 lines
272 B
Text
includes:
|
|
- phpstan-baseline.neon
|
|
|
|
parameters:
|
|
level: 3
|
|
tmpDir: .phpstan-cache
|
|
paths:
|
|
- src
|
|
- app
|
|
- bin
|
|
- tests
|
|
bootstrapFiles:
|
|
- app/init/constants.php
|
|
scanDirectories:
|
|
- vendor/swoole/ide-helper
|
|
excludePaths:
|
|
- tests/resources
|
|
|