Files
hydra-sql/rector.php
Gauthier DUPONT d6723fb143
Some checks failed
Cadoles/hydra-sql/pipeline/pr-develop There was a failure building this commit
chore(symfony) #57 : bump symfony to version 6.4 and fix deprecations
2025-07-10 11:41:04 +02:00

21 lines
508 B
PHP

<?php
declare(strict_types=1);
use Rector\Config\RectorConfig;
use Rector\Symfony\Set\SymfonySetList;
return static function (RectorConfig $rectorConfig): void {
$rectorConfig->paths([
__DIR__ . '/src',
]);
$rectorConfig->sets([
SymfonySetList::SYMFONY_60,
SymfonySetList::SYMFONY_61,
SymfonySetList::SYMFONY_62,
SymfonySetList::SYMFONY_63,
SymfonySetList::SYMFONY_CODE_QUALITY,
SymfonySetList::SYMFONY_CONSTRUCTOR_INJECTION,
]);
};