chore: add code quality tools

This commit is contained in:
2022-09-21 12:16:27 +02:00
parent af5c6f9626
commit 44e6e012fd
14 changed files with 3425 additions and 7702 deletions

12
.php-cs-fixer.dist.php Normal file
View File

@ -0,0 +1,12 @@
<?php
$finder = PhpCsFixer\Finder::create()
->in(__DIR__.'/src');
$config = new PhpCsFixer\Config();
return $config->setRules([
'@Symfony' => true,
'full_opening_tag' => false,
])
->setFinder($finder)
;