You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
412 B
18 lines
412 B
<?php |
|
|
|
declare(strict_types=1); |
|
|
|
use Rector\Config\RectorConfig; |
|
use Rector\Set\ValueObject\LevelSetList; |
|
|
|
return RectorConfig::configure() |
|
->withPaths([ |
|
__DIR__ . '/src', |
|
__DIR__ . '/tests', |
|
]) |
|
->withBootstrapFiles([ |
|
__DIR__ . '/vendor/bin/.phpunit/phpunit/vendor/autoload.php', |
|
__DIR__ . '/vendor/autoload.php', |
|
]) |
|
->withSets([LevelSetList::UP_TO_PHP_74]) |
|
;
|
|
|