Skip to content

Commit

Permalink
Merge pull request #32 from arondeparon/laravel-11
Browse files Browse the repository at this point in the history
Laravel 11 support
  • Loading branch information
arondeparon authored Jun 16, 2024
2 parents b3ac98a + 52c17e3 commit e292065
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 12 deletions.
25 changes: 16 additions & 9 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,23 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.0]
laravel: [9.*, 8.*]
dependency-version: [prefer-lowest, prefer-stable]
php: [8.3, 8.2, 8.1]
laravel: [^11.0, ^10.0, ^9.0, ^8.12]
dependency-version: [prefer-stable]
include:
- laravel: 9.*
testbench: 7.*
- laravel: 8.*
testbench: 6.*
- laravel: 8.*
testbench: 6.*
- laravel: ^11.0
testbench: ^9.0
- laravel: ^10.0
testbench: ^8.0
- laravel: ^9.0
testbench: ^7.0
- laravel: ^8.12
testbench: ^6.23
exclude:
- laravel: ^11.0
php: 8.1
- laravel: ^8.12
php: 8.3

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

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
}
],
"require": {
"php": "^7.3|^8.0",
"php": "^8.1",
"symfony/http-foundation": "^4.3.4|>=5.1.3|^6.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0 || ^9.0",
"orchestra/testbench": "^5.0|^6.0|^7.0",
"phpunit/phpunit": "^8.0|^9.0|^10.0",
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
"mockery/mockery": "^1.4"
},
"autoload": {
Expand Down

0 comments on commit e292065

Please sign in to comment.