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.
2 parents 8781a02 + 23c0f07 commit 202be24Copy full SHA for 202be24
.github/workflows/tests.yml
@@ -18,6 +18,7 @@ jobs:
18
- '8.1'
19
- '8.2'
20
- '8.3'
21
+ - '8.4'
22
23
services:
24
azurite:
composer.json
@@ -32,6 +32,7 @@
32
"laravel/pint": "^1.16",
33
"phpunit/phpunit": "^10.5",
34
"phpstan/phpstan": "^1.11",
35
- "league/flysystem-adapter-test-utilities": "^3.28"
+ "league/flysystem-adapter-test-utilities": "^3.28",
36
+ "rector/rector": "^1.2"
37
}
38
rector.php
@@ -0,0 +1,16 @@
1
+<?php
2
+
3
+declare(strict_types=1);
4
5
+use Rector\Config\RectorConfig;
6
+use Rector\Set\ValueObject\SetList;
7
8
+return RectorConfig::configure()
9
+ ->withPaths([
10
+ __DIR__ . '/src',
11
+ ])
12
+ ->withSets([
13
+ SetList::PHP_82,
14
+ SetList::PHP_83,
15
+ SetList::PHP_84,
16
+ ]);
0 commit comments