File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change 3636 "require-dev" : {
3737 "facile-it/facile-coding-standard" : " ^1.2" ,
3838 "jangregor/phpstan-prophecy" : " 2.2.0" ,
39+ "phpspec/prophecy-phpunit" : " ^2.0" ,
3940 "phpstan/extension-installer" : " ^1.4" ,
4041 "phpstan/phpstan" : " 2.1.17" ,
4142 "phpstan/phpstan-phpunit" : " 2.0.6" ,
4243 "phpunit/phpunit" : " ^9.6.6" ,
43- "phpspec/prophecy-phpunit " : " ^ 2.0" ,
44+ "rector/rector " : " 2.0.17 " ,
4445 "symfony/phpunit-bridge" : " ^6.4 || ^7.0" ,
4546 "vimeo/psalm" : " ^4.6 || ^5.0"
4647 }
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ declare (strict_types=1 );
4+
5+ use Rector \Config \RectorConfig ;
6+
7+ return RectorConfig::configure ()
8+ ->withPaths ([
9+ __DIR__ . '/src ' ,
10+ __DIR__ . '/tests ' ,
11+ ])
12+ // uncomment to reach your current PHP version
13+ // ->withPhpSets()
14+ ->withTypeCoverageLevel (0 )
15+ ->withDeadCodeLevel (0 )
16+ ->withCodeQualityLevel (0 )
17+ ->withSets ([
18+ \Rector \PHPUnit \Set \PHPUnitSetList::PHPUNIT_100 ,
19+ ])
20+ ;
You can’t perform that action at this time.
0 commit comments