Skip to content

Commit 1606890

Browse files
committed
refactor: Drop LFW 7.x & start adding support for 9.x, 10.x & 11.x
1 parent 07a1ad7 commit 1606890

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

.github/workflows/run_tests.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,18 @@ jobs:
88

99
strategy:
1010
matrix:
11-
php: [7.3, 7.4, 8.0]
12-
laravel: [7.*, 8.*]
11+
php: [8.0,8.3]
12+
laravel: [8.*,9.*,10.*,11.*]
1313
dependency-version: [prefer-stable, prefer-lowest]
1414
include:
15-
- laravel: 7.*
16-
testbench: 5.*
1715
- laravel: 8.*
1816
testbench: 6.*
17+
- laravel: 9.*
18+
testbench: 7.*
19+
- laravel: 10.*
20+
testbench: 8.*
21+
- laravel: 11.*
22+
testbench: 9.*
1923

2024
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - Testbench ${{ matrix.testbench }} (${{ matrix.dependency-version }})
2125

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
],
2424
"require": {
2525
"php": "^7.3|^8.0",
26-
"illuminate/queue": "~7.0|~8.0",
26+
"illuminate/queue": "~8.0|~9.0|~10.0|~11.0",
2727
"ramsey/uuid": "^3.0|^4.0"
2828
},
2929
"require-dev": {
30-
"orchestra/testbench": "^5.0|^6.0",
31-
"phpunit/phpunit": "^8.0|^9.0",
30+
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
31+
"phpunit/phpunit": "^9.0",
3232
"scrutinizer/ocular": "^1.5"
3333
},
3434
"autoload": {

0 commit comments

Comments
 (0)