Skip to content

Commit

Permalink
add support laravel 11
Browse files Browse the repository at this point in the history
  • Loading branch information
mvanduijker committed Jan 26, 2024
1 parent 10f1c75 commit 87b328e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
10 changes: 8 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: false
matrix:
os: [ ubuntu-latest ]
php: [ 7.4, 8.0, 8.1, 8.2 ]
laravel: [ 6.*, 7.*, 8.*, 9.*, 10.* ]
php: [ 7.4, 8.0, 8.1, 8.2, 8.3 ]
laravel: [ 6.*, 7.*, 8.*, 9.*, 10.*, 11.* ]
dependency-version: [ prefer-stable ]
include:
- testbench: 9.*
laravel: 11.*
- testbench: 8.*
laravel: 10.*
- testbench: 7.*
Expand All @@ -36,8 +38,12 @@ jobs:
laravel: 9.*
- php: 7.4
laravel: 10.*
- php: 7.4
laravel: 11.*
- php: 8.0
laravel: 10.*
- php: 8.0
laravel: 11.*

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

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@
],
"require": {
"php": "^7.4|^8.0",
"illuminate/broadcasting": "~6.0|~7.0|~8.0|~9.0|~10.0",
"illuminate/broadcasting": "~6.0|~7.0|~8.0|~9.0|~10.0|~11.0",
"lcobucci/jwt": "~4.0",
"symfony/mercure": "~0.4"
},
"require-dev": {
"larapack/dd": "^1.0",
"orchestra/testbench": "~4.0|~5.0|~6.0|~7.0|~8.0",
"orchestra/testbench": "~4.0|~5.0|~6.0|~7.0|~8.0|~9.0",
"phpunit/phpunit": "^9.3",
"symfony/process": "~4.4|~5.0|~6.0"
"symfony/process": "~4.4|~5.0|~6.0|~7.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
Expand Down

0 comments on commit 87b328e

Please sign in to comment.