We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0516c1b commit 11e75eeCopy full SHA for 11e75ee
ibexa/rector/4.6/manifest.json
@@ -0,0 +1,7 @@
1
+{
2
+ "aliases": [],
3
+ "bundles": {},
4
+ "copy-from-recipe": {
5
+ "rector.php": "rector.php"
6
+ }
7
+}
ibexa/rector/4.6/rector.php
@@ -0,0 +1,23 @@
+<?php
+
+/**
+ * @copyright Copyright (C) Ibexa AS. All rights reserved.
+ * @license For full copyright and license information view LICENSE file distributed with this source code.
+ */
+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
+ );
0 commit comments