Commit 11e75ee 1 parent 0516c1b commit 11e75ee Copy full SHA for 11e75ee
File tree 2 files changed +30
-0
lines changed
2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "aliases" : [],
3
+ "bundles" : {},
4
+ "copy-from-recipe" : {
5
+ "rector.php" : " rector.php"
6
+ }
7
+ }
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ /**
4
+ * @copyright Copyright (C) Ibexa AS. All rights reserved.
5
+ * @license For full copyright and license information view LICENSE file distributed with this source code.
6
+ */
7
+ declare (strict_types=1 );
8
+
9
+ use Ibexa \Contracts \Rector \Sets \IbexaSetList ;
10
+ use Rector \Config \RectorConfig ;
11
+
12
+ return RectorConfig::configure ()
13
+ ->withPaths (
14
+ [
15
+ __DIR__ . '/src ' , // see if it matches your project structure
16
+ __DIR__ . '/tests '
17
+ ]
18
+ )
19
+ ->withSets (
20
+ [
21
+ IbexaSetList::IBEXA_50 ->value // rule set for upgrading to Ibexa DXP 5.0
22
+ ]
23
+ );
You can’t perform that action at this time.
0 commit comments