We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da184cc commit ed21bafCopy full SHA for ed21baf
composer.json
@@ -35,7 +35,8 @@
35
"guzzlehttp/psr7": "^2",
36
"php-mock/php-mock-phpunit": "^2.13",
37
"phpstan/phpstan": "^2.1",
38
- "phpunit/phpunit": "^9.5 || ^10.5 || ^11.2 || ^12.0.9"
+ "phpunit/phpunit": "^9.5 || ^10.5 || ^11.2 || ^12.0.9",
39
+ "rector/rector": "^2.0"
40
},
41
"autoload": {
42
"psr-4": {
rector.php
@@ -0,0 +1,15 @@
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
+ ->withPhpSets()
13
+ ->withTypeCoverageLevel(0)
14
+ ->withDeadCodeLevel(0)
15
+ ->withCodeQualityLevel(0);
0 commit comments