Initial commit

This commit is contained in:
root
2026-05-09 17:28:23 +02:00
commit 9d73f82529
5575 changed files with 281989 additions and 0 deletions
Executable
+25
View File
@@ -0,0 +1,25 @@
<?php
declare(strict_types=1);
use Rector\Config\RectorConfig;
use Rector\Set\ValueObject\LevelSetList;
use Rector\Set\ValueObject\SetList;
use Rector\ValueObject\PhpVersion;
return RectorConfig::configure()
->withPaths([
__DIR__ . '/app',
__DIR__ . '/bootstrap',
__DIR__ . '/config',
__DIR__ . '/routes',
])
->withPhpVersion(PhpVersion::PHP_85)
->withSets([
LevelSetList::UP_TO_PHP_85,
SetList::CODE_QUALITY,
SetList::DEAD_CODE,
])
->withSkip([
__DIR__ . '/app/Providers/FortifyServiceProvider.php',
]);