mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-05 20:57:12 +00:00
15 lines
354 B
PHP
15 lines
354 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)
|
|
->withSets([
|
|
LevelSetList::UP_TO_PHP_82,
|
|
PHPUnitSetList::PHPUNIT_100,
|
|
])
|
|
;
|