File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed
Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 1515 "require-dev" : {
1616 "ibexa/code-style" : " ~2.0.0" ,
1717 "ibexa/doctrine-schema" : " ~5.0.x-dev" ,
18+ "ibexa/rector" : " ~5.0.x-dev" ,
1819 "matthiasnoback/symfony-dependency-injection-test" : " ^4.1" ,
1920 "phpunit/phpunit" : " ^9.6"
2021 },
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+ use Rector \Symfony \Set \SymfonySetList ;
12+
13+ return RectorConfig::configure ()
14+ ->withPaths ([
15+ __DIR__ . '/src ' ,
16+ __DIR__ . '/tests ' ,
17+ ])
18+ ->withSets ([
19+ IbexaSetList::IBEXA_50 ->value ,
20+ SymfonySetList::SYMFONY_60 ,
21+ SymfonySetList::SYMFONY_61 ,
22+ SymfonySetList::SYMFONY_62 ,
23+ SymfonySetList::SYMFONY_63 ,
24+ SymfonySetList::SYMFONY_64 ,
25+ ]);
You can’t perform that action at this time.
0 commit comments