build: add Rector
This commit is contained in:
parent
e8e41c6c9d
commit
35745a7623
3 changed files with 2221 additions and 2709 deletions
30
rector.php
Normal file
30
rector.php
Normal file
|
@ -0,0 +1,30 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
use Rector\Core\Configuration\Option;
|
||||
use Rector\Set\ValueObject\SetList;
|
||||
use Rector\Set\ValueObject\DowngradeSetList;
|
||||
use Rector\Core\ValueObject\PhpVersion;
|
||||
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
|
||||
|
||||
return static function (ContainerConfigurator $containerConfigurator): void {
|
||||
// get parameters
|
||||
$parameters = $containerConfigurator->parameters();
|
||||
|
||||
$parameters->set(Option::PATHS, [
|
||||
__DIR__ . '/src',
|
||||
]);
|
||||
|
||||
// Define what rule sets will be applied
|
||||
$parameters->set(Option::SETS, [
|
||||
// SetList::CODE_QUALITY,
|
||||
SetList::DEAD_CODE,
|
||||
// DowngradeSetList::PHP_80,
|
||||
// DowngradeSetList::PHP_74,
|
||||
// DowngradeSetList::PHP_73,
|
||||
//DowngradeSetList::PHP_72,
|
||||
]);
|
||||
|
||||
$parameters->set(Option::PHP_VERSION_FEATURES, PhpVersion::PHP_71);
|
||||
};
|
Reference in a new issue