rector/e2e/attributes/rector.php
Tomas Votruba a3f9df34d6 Updated Rector to commit 58e762435714586ac567a10daa808df5f4d8dfd0
58e7624357 [scoped] Run e2e parallel, suck in existing tests (#16)
2021-05-11 16:11:30 +00:00

17 lines
568 B
PHP

<?php
declare(strict_types=1);
use Rector\Core\Configuration\Option;
use Rector\Core\ValueObject\PhpVersion;
use Rector\Symfony\Set\SymfonySetList;
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
return static function (ContainerConfigurator $containerConfigurator): void {
$containerConfigurator->import(SymfonySetList::SYMFONY_52);
$parameters = $containerConfigurator->parameters();
$parameters->set(Option::PHP_VERSION_FEATURES, PhpVersion::PHP_80);
$parameters->set(Option::SOURCE, [__DIR__ . '/src']);
};