mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
358f1b78a8
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.
19 lines
272 B
Plaintext
19 lines
272 B
Plaintext
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
|
|
|