Sylius/rector.php
2026-02-11 09:49:41 +01:00

16 lines
392 B
PHP

<?php
declare(strict_types=1);
use Rector\Config\RectorConfig;
use Rector\PHPUnit\Set\PHPUnitSetList;
use Rector\Set\ValueObject\LevelSetList;
return RectorConfig::configure()
->withImportNames(importShortClasses: false, removeUnusedImports: true)
->withAttributesSets(behat: true)
->withSets([
LevelSetList::UP_TO_PHP_82,
PHPUnitSetList::PHPUNIT_110,
])
;