-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrector.php
More file actions
33 lines (26 loc) · 772 Bytes
/
rector.php
File metadata and controls
33 lines (26 loc) · 772 Bytes
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
<?php
declare(strict_types=1);
/**
* Copyright (c) 2018-2026 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/clock
*/
use Rector\Config;
use Rector\PHPUnit;
use Rector\ValueObject;
return static function (Config\RectorConfig $rectorConfig): void {
$rectorConfig->cacheDirectory(__DIR__ . '/.build/rector/');
$rectorConfig->paths([
__DIR__ . '/src/',
__DIR__ . '/test/',
__DIR__ . '/.php-cs-fixer.php',
__DIR__ . '/rector.php',
]);
$rectorConfig->phpVersion(ValueObject\PhpVersion::PHP_74);
$rectorConfig->sets([
PHPUnit\Set\PHPUnitSetList::PHPUNIT_70,
]);
};