forked from a-r-m-i-n/pw_teaser
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrector.php
More file actions
27 lines (24 loc) · 674 Bytes
/
Copy pathrector.php
File metadata and controls
27 lines (24 loc) · 674 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
<?php
declare(strict_types=1);
use Rector\Config\RectorConfig;
use Rector\Set\ValueObject\LevelSetList;
use Rector\ValueObject\PhpVersion;
use Ssch\TYPO3Rector\Set\Typo3LevelSetList;
use Ssch\TYPO3Rector\Set\Typo3SetList;
return RectorConfig::configure()
->withPaths([
__DIR__ . '/Classes',
__DIR__ . '/Configuration',
__DIR__ . '/ext_localconf.php',
])
->withSkip([
__DIR__ . '/Resources',
__DIR__ . '/Tests',
])
->withPhpVersion(PhpVersion::PHP_83)
->withSets([
LevelSetList::UP_TO_PHP_83,
Typo3LevelSetList::UP_TO_TYPO3_13,
Typo3SetList::TYPO3_13,
])
->withImportNames();