mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-01 18:57:11 +00:00
16 lines
392 B
PHP
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,
|
|
])
|
|
;
|