Skip to content

Commit 0845891

Browse files
committed
TASK: Remove autoload paths
1 parent ec5d5c6 commit 0845891

File tree

2 files changed

+0
-13
lines changed

2 files changed

+0
-13
lines changed

README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,19 +34,11 @@ Right now, we ship the following sets of Rector rules:
3434
- `\Neos\Rector\NeosRectorSets::CONTENTREPOSITORY_9_0`: all rules needed to migrate to the Event-Sourced Content
3535
Repository
3636

37-
Also you need to add the autoload paths, to allow rector to parse your code properly. By default we added `./Packages`
38-
and `./DistributionPackages` to the template.
39-
4037
```php
4138
$rectorConfig->sets([
4239
NeosRectorSets::CONTENTREPOSITORY_9_0,
4340
]);
4441

45-
$rectorConfig->autoloadPaths([
46-
__DIR__ . '/Packages',
47-
__DIR__ . '/DistributionPackages',
48-
]);
49-
5042
$rectorConfig->paths([
5143
// TODO: Start adding your paths here, like so:
5244
__DIR__ . '/DistributionPackages/'

rector.template.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,6 @@
1010
NeosRectorSets::CONTENTREPOSITORY_9_0,
1111
]);
1212

13-
$rectorConfig->autoloadPaths([
14-
__DIR__ . '/Packages',
15-
__DIR__ . '/DistributionPackages',
16-
]);
17-
1813
$rectorConfig->paths([
1914
// TODO: Start adding your paths here, like so:
2015
__DIR__ . '/DistributionPackages/'

0 commit comments

Comments
 (0)