Skip to content

Commit 202be24

Browse files
Merge pull request #5 from pimjansen/feature/php84
2 parents 8781a02 + 23c0f07 commit 202be24

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
- '8.1'
1919
- '8.2'
2020
- '8.3'
21+
- '8.4'
2122

2223
services:
2324
azurite:

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
"laravel/pint": "^1.16",
3333
"phpunit/phpunit": "^10.5",
3434
"phpstan/phpstan": "^1.11",
35-
"league/flysystem-adapter-test-utilities": "^3.28"
35+
"league/flysystem-adapter-test-utilities": "^3.28",
36+
"rector/rector": "^1.2"
3637
}
3738
}

rector.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)