generated from ergebnis/php-package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rector.php
34 lines (26 loc) · 809 Bytes
/
rector.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
declare(strict_types=1);
use Rector\Config;
use Rector\Php81;
use Rector\PHPUnit;
use Rector\ValueObject;
return static function (Config\RectorConfig $rectorConfig): void {
$rectorConfig->cacheDirectory(__DIR__.'/.build/rector/');
$rectorConfig->import(__DIR__.'/vendor/fakerphp/faker/rector-migrate.php');
$rectorConfig->paths([
__DIR__.'/app/',
__DIR__.'/bootstrap/',
__DIR__.'/config/',
__DIR__.'/database/',
__DIR__.'/resources/',
__DIR__.'/routes/',
__DIR__.'/tests/',
]);
$rectorConfig->phpVersion(ValueObject\PhpVersion::PHP_83);
$rectorConfig->rules([
Php81\Rector\Property\ReadOnlyPropertyRector::class,
]);
$rectorConfig->sets([
PHPUnit\Set\PHPUnitSetList::PHPUNIT_100,
]);
};