Skip to content

Commit

Permalink
Add Laravel 11 and PHP 8.2/8.3 support
Browse files Browse the repository at this point in the history
  • Loading branch information
bilfeldt authored Jun 7, 2024
1 parent 44f8d9c commit 3b8c126
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [8.1, 8.0, 7.4]
laravel: [7.*, 8.*, 9.*, 10.*]
php: [8.3, 8.2, 8.1, 8.0, 7.4]
laravel: [7.*, 8.*, 9.*, 10.*, 11.*]
dependency-version: [prefer-stable]
include:
- laravel: 11.*
testbench: 9.*
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
Expand All @@ -30,6 +32,12 @@ jobs:
php: 7.4
- laravel: 10.*
php: 8.0
- laravel: 11.*
php: 7.4
- laravel: 11.*
php: 8.0
- laravel: 11.*
php: 8.1

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

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
}
],
"require": {
"php": "^7.4 || ^8.0 || ^8.1",
"illuminate/support": "^7.0 || ^8.0 || ^9.0 || ^10.0"
"php": "^7.4 || ^8.0 || ^8.1 || ^8.2 || ^8.3",
"illuminate/support": "^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0"
},
"require-dev": {
"orchestra/testbench": "^6.0",
Expand Down

0 comments on commit 3b8c126

Please sign in to comment.