initial commit

This commit is contained in:
2024-02-16 17:02:41 -06:00
parent 146f59e14f
commit 5ff8d1b1a5
10 changed files with 2122 additions and 0 deletions

10
rector.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
use Rector\Config\RectorConfig;
return RectorConfig::configure()
->withPaths([__DIR__ . '/src'])
->withPhpSets()
->withPreparedSets(codeQuality: true)
->withAttributesSets(symfony: true, doctrine: true)
->withImportNames(importShortClasses: false, removeUnusedImports: true);