generated from ergebnis/php-package-template
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathrector.php
More file actions
28 lines (22 loc) · 690 Bytes
/
rector.php
File metadata and controls
28 lines (22 loc) · 690 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
<?php
declare(strict_types=1);
/**
* Copyright (c) 2021-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/phpunit-slow-test-detector
*/
use Rector\Config;
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_70);
};