Skip to content

Commit a76e328

Browse files
authored
Added L9 support (#4)
* Laravel 9 included * workflow updated with L9, PHP8.1 * testbench version update for L9
1 parent 3ce5bb3 commit a76e328

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

.github/workflows/standard-test-coverage.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,21 @@ jobs:
3434
fail-fast: false
3535
matrix:
3636
os: [ ubuntu-latest ]
37-
php: [ 7.2, 7.3, 7.4, 8.0 ]
38-
laravel: [ 6, 7, 8 ]
37+
php: [ 7.2, 7.3, 7.4, 8.0, 8.1 ]
38+
laravel: [ 6, 7, 8, 9 ]
3939
exclude:
40+
- php: 8.1
41+
laravel: 6
42+
- php: 8.1
43+
laravel: 7
4044
- php: 7.2
4145
laravel: 8
46+
- php: 7.2
47+
laravel: 9
48+
- php: 7.3
49+
laravel: 9
50+
- php: 7.4
51+
laravel: 9
4252

4353
steps:
4454
- name: Checkout code

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
"require": {
1414
"php": "^7.2|^8.0",
1515
"anik/amqp": "^2.0",
16-
"illuminate/support": "^6.0|^7.0|^8.0"
16+
"illuminate/support": "^6.0|^7.0|^8.0|^9.0"
1717
},
1818
"require-dev": {
1919
"phpunit/phpunit": "^8.0|^9.0",
20-
"orchestra/testbench": "^4.0|^5.0|^6.0"
20+
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0"
2121
},
2222
"autoload": {
2323
"psr-4": {

0 commit comments

Comments
 (0)