mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-17 21:38:22 +01:00
c4fafc51d3
fb18cc7970
[dx] Show loaded composer based sets in case of --debug (#6435)
16 lines
297 B
Plaintext
16 lines
297 B
Plaintext
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Rector\Config\RectorConfig;
|
|
|
|
return RectorConfig::configure()
|
|
->withPaths([
|
|
__PATHS__
|
|
])
|
|
// uncomment to reach your current PHP version
|
|
// ->withPhpSets()
|
|
->withTypeCoverageLevel(0)
|
|
->withDeadCodeLevel(0)
|
|
->withCodeQualityLevel(0);
|