You've already forked Atomcms-edit
Initial commit
This commit is contained in:
Executable
+25
@@ -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',
|
||||
]);
|
||||
Reference in New Issue
Block a user