Skip to content

Commit

Permalink
feat: Adds support for Laravel 11
Browse files Browse the repository at this point in the history
  • Loading branch information
joemugen committed Apr 4, 2024
1 parent 09230c4 commit 42c5ea8
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,19 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ "8.1", "8.2" ]
laravel: [ "^9.0", "^10.0" ]
php: [ "8.1", "8.2", "8.3" ]
laravel: [ "^9.0", "^10.0", "^11.0" ]
dependency-version: [ prefer-lowest, prefer-stable ]
exclude:
- php: "8.1"
laravel: "^11.0"
include:
- laravel: "^11.0"
testbench: "^9.0"
- laravel: "^10.0"
testbench: "^8.0"
- laravel: "^9.0"
testbench: "^7.0"

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 @@ -27,16 +27,16 @@
],
"require": {
"php": "^8.1",
"illuminate/database": "^9|^10",
"illuminate/support": "^9|^10",
"illuminate/database": "^9|^10|^11",
"illuminate/support": "^9|^10|^11",
"nesbot/carbon": ">=2.62.1"
},
"require-dev": {
"ciareis/bypass": "^1.0",
"dg/bypass-finals": "^1.4",
"guzzlehttp/guzzle": "^7.8",
"laravel/pint": "^1.3",
"orchestra/testbench": "7.*|8.*",
"orchestra/testbench": "^7.0|^8.0|^9.0",
"pestphp/pest": "^1.21",
"phpunit/phpunit": "^9.1"
},
Expand Down

0 comments on commit 42c5ea8

Please sign in to comment.