File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010 ],
1111 "require" : {
1212 "php" : " ^8.2" ,
13- "darkwebdesign/symfony-addon-pack" : " 7.3.*" ,
13+ "darkwebdesign/symfony-addon-pack" : " 7.3.*-dev " ,
1414 "doctrine/doctrine-bundle" : " *" ,
15- "doctrine/orm" : " *" ,
1615 "symfony/config" : " 7.3.*" ,
1716 "symfony/dependency-injection" : " 7.3.*" ,
1817 "symfony/http-kernel" : " 7.3.*"
1918 },
2019 "require-dev" : {
21- "friendsofphp/php-cs-fixer" : " ^3.58 " ,
20+ "friendsofphp/php-cs-fixer" : " ^3.93 " ,
2221 "maglnet/composer-require-checker" : " ^4.17" ,
23- "phpstan/extension-installer" : " ^1.3 " ,
24- "phpstan/phpstan" : " ^1.11 " ,
25- "phpstan/phpstan-symfony" : " ^1.4 " ,
26- "rector/rector" : " ^1.1 "
22+ "phpstan/extension-installer" : " ^1.4 " ,
23+ "phpstan/phpstan" : " ^2.1 " ,
24+ "phpstan/phpstan-symfony" : " ^2.0 " ,
25+ "rector/rector" : " ^2.3 "
2726 },
2827 "autoload" : {
2928 "psr-4" : {
Original file line number Diff line number Diff line change 33declare (strict_types=1 );
44
55use Rector \Config \RectorConfig ;
6- use Rector \Set \ValueObject \LevelSetList ;
76
87return RectorConfig::configure ()
98 ->withPaths ([
109 __DIR__ . '/src ' ,
1110 ])
12- ->withSets ([
13- LevelSetList::UP_TO_PHP_82 ,
14- ])
15- ->withImportNames (
16- importShortClasses: false ,
17- );
11+ ->withPhpSets ()
12+ ->withAttributesSets ()
13+ ->withPreparedSets (symfonyCodeQuality: true , symfonyConfigs: true )
14+ ->withComposerBased (symfony: true )
15+ ->withImportNames (importShortClasses: false , removeUnusedImports: true )
16+ ->withTypeCoverageLevel (0 )
17+ ->withDeadCodeLevel (0 )
18+ ->withCodeQualityLevel (0 );
You can’t perform that action at this time.
0 commit comments