Update paths to include packages directory in PHP-CS-Fixer and PHPStan configurations

- Added `packages/` directory to `.php-cs-fixer.dist.php` finder paths.
- Added `packages/` directory to `phpstan.dist.neon` paths.
This commit is contained in:
2025-11-25 17:00:25 +01:00
parent 09d81d8025
commit b2a6a2170a
2 changed files with 2 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ $finder = PhpCsFixer\Finder::create();
$finder
->in(__DIR__.'/src')
->in(__DIR__.'/utils')
->in(__DIR__.'/packages')
->append([__FILE__])
->exclude(['docs/', 'tests/app'])
->notPath('tests/app')

View File

@@ -3,6 +3,7 @@ parameters:
paths:
- src/
- utils/
- packages/
tmpDir: var/cache/phpstan
reportUnmatchedIgnoredErrors: false
excludePaths: