This commit is contained in:
2025-07-22 20:47:51 +03:00
parent 473246e2b7
commit f5a5824352
2 changed files with 13 additions and 19 deletions

View File

@@ -51,11 +51,19 @@ Just create a `phpcs.xml.dist` in your project's root directory with the followi
<!-- Exclude project specific files if you want -->
<!-- <exclude-pattern>WakkaFormatter</exclude-pattern> -->
<file>bin/</file>
<file>config/</file>
<file>public/</file>
<file>src/</file>
<file>tests/</file>
<exclude-pattern>./src/Migrations/*</exclude-pattern>
<exclude-pattern>./src/Kernel.php</exclude-pattern>
<exclude-pattern>./public/index.php</exclude-pattern>
<exclude-pattern>./config/bundles.php</exclude-pattern>
<exclude-pattern>./config/bootstrap.php</exclude-pattern>
<exclude-pattern>./config/preload.php</exclude-pattern>
<exclude-pattern>./tests/features/bootstrap/bootstrap.php</exclude-pattern>
<exclude-pattern>./tests/object-manager.php</exclude-pattern>
<exclude-pattern>./tests/symfony-container.php</exclude-pattern>
<exclude-pattern>./tests/bootstrap.php</exclude-pattern>
<file>./src</file>
<file>./tests</file>
</ruleset>
```