42e05f2cf5
Signed-off-by: provokateurin <kate@provokateurin.de>
31 lines
565 B
PHP
31 lines
565 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Rector\Config\RectorConfig;
|
|
|
|
return RectorConfig::configure()
|
|
->withPaths([
|
|
__DIR__ . '/lib',
|
|
__DIR__ . '/tests',
|
|
])
|
|
->withPhpSets(php80: true)
|
|
->withPreparedSets(
|
|
deadCode: true,
|
|
codeQuality: true,
|
|
codingStyle: true,
|
|
typeDeclarations: true,
|
|
privatization: true,
|
|
instanceOf: true,
|
|
earlyReturn: true,
|
|
strictBooleans: true,
|
|
carbon: true,
|
|
rectorPreset: true,
|
|
phpunitCodeQuality: true,
|
|
doctrineCodeQuality: true,
|
|
symfonyCodeQuality: true,
|
|
symfonyConfigs: true,
|
|
twig: true,
|
|
phpunit: true,
|
|
);
|