Skip to content

Commit eef0f26

Browse files
author
Robert Allport
authored
Laravel 9 Support (#5)
* Laravel 9 Support * Update GitHub actions
1 parent efb60b3 commit eef0f26

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/run-tests-laravel-8.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,16 @@ jobs:
1010
matrix:
1111
os: [ubuntu-latest]
1212
php: [8.0, 7.4]
13-
laravel: [8.*]
13+
laravel: [8.*, 9.*]
1414
dependency-version: [prefer-stable]
1515
include:
1616
- laravel: 8.*
1717
testbench: 6.*
18+
- laravel: 9.*
19+
testbench: 7.*
20+
exclude:
21+
- laravel: 9.*
22+
php: 7.4
1823

1924
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2025

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
],
2020
"require": {
2121
"php": "^7.2|^8.0",
22-
"laravel/framework": "5.8.* || ^6.0 || ^7.0 || ^8.0"
22+
"laravel/framework": "5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0"
2323
},
2424
"require-dev": {
2525
"orchestra/testbench": ">=3.8",
26-
"phpunit/phpunit": "^7.0|^8.0"
26+
"phpunit/phpunit": "^7.0|^8.0|^9.3"
2727
},
2828
"autoload": {
2929
"psr-4": {

0 commit comments

Comments
 (0)