generated from ergebnis/symfony-application-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rector.php
35 lines (27 loc) · 870 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
35
<?php
declare(strict_types=1);
/**
* Copyright (c) 2020-2024 Andreas Möller
*
* For the full copyright and license information, please view
* the LICENSE.md file that was distributed with this source code.
*
* @see https://github.com/ergebnis/factory-bot-example
*/
use Rector\Config;
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__ . '/src/',
__DIR__ . '/test/',
__DIR__ . '/.php-cs-fixer.php',
__DIR__ . '/rector.php',
]);
$rectorConfig->phpVersion(ValueObject\PhpVersion::PHP_83);
$rectorConfig->sets([
PHPUnit\Set\PHPUnitSetList::PHPUNIT_100,
]);
};