Initial commit

This commit is contained in:
2026-06-05 23:40:26 +02:00
commit ebf977cf48
11 changed files with 3131 additions and 0 deletions

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

@@ -0,0 +1,17 @@
<?php
declare(strict_types=1);
use PhpCsFixer\Config;
use PhpCsFixer\Finder;
return (new Config())
->setRiskyAllowed(false)
->setRules([
'@PER-CS' => true
])
->setFinder(
(new Finder())
->in(__DIR__)
)
;