We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dafe4b2 commit 2c3a2f3Copy full SHA for 2c3a2f3
2 files changed
composer.json
@@ -22,7 +22,7 @@
22
}
23
},
24
"require-dev": {
25
- "assoconnect/php-quality-config": "^1.11"
+ "assoconnect/php-quality-config": "^1.2"
26
27
"require": {
28
"php": "^8.2"
rector.php
@@ -0,0 +1,17 @@
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
+ ->withSets([
16
+ __DIR__ . '/vendor/assoconnect/php-quality-config/src/Rector/rules.php',
17
+ ]);
0 commit comments