mirror of
https://github.com/code-rhapsodie/ibexa-dataflow-bundle.git
synced 2026-03-23 22:22:08 +01:00
20 lines
481 B
PHP
20 lines
481 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Rector\Config\RectorConfig;
|
|
use Rector\ValueObject\PhpVersion;
|
|
|
|
return RectorConfig::configure()
|
|
->withPaths([
|
|
__DIR__ . '/src',
|
|
__DIR__ . '/tests',
|
|
])
|
|
->withPhpVersion(PhpVersion::PHP_81)
|
|
// uncomment to reach your current PHP version
|
|
->withPhpSets(php81: true)
|
|
->withTypeCoverageLevel(0)
|
|
->withDeadCodeLevel(0)
|
|
->withCodeQualityLevel(0)
|
|
->withAttributesSets(symfony: true, doctrine: true);
|