Skip to content

Commit

Permalink
add support for laravel 9 and 10 to V3
Browse files Browse the repository at this point in the history
  • Loading branch information
jheusinger committed May 27, 2024
1 parent d4410cd commit 023e0d4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,14 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [ 8.2, 8.3 ]
laravel: [ 11.* ]
php: [ 8.1, 8.2, 8.3 ]
laravel: [ 9.*, 10.*, 11.* ]
dependency-version: [ prefer-stable ]
exclude:
- php: 8.3
laravel: 9.*
- php: 8.1
laravel: 11.*
with:
PHP_VERSION: ${{ matrix.php }}
LARAVEL_VERSION: ${{ matrix.laravel }}
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,21 @@
}
],
"require": {
"php": "^8.2",
"php": "^8.1",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-sodium": "*",
"guzzlehttp/guzzle": "^7.4",
"illuminate/support": "^11.0",
"laravel/framework": "^11.0",
"laravel/sanctum": "^4.0"
"illuminate/support": "^9.0|^10.0|^11.0",
"laravel/framework": "^9.0|^10.0|^11.0",
"laravel/sanctum": "^3.2|^4.0"
},
"require-dev": {
"laravel/sail": "^1.26",
"orchestra/testbench": "^9.0",
"phpunit/phpunit": "^10.5"
"orchestra/testbench": "^7.0|^8.0|^9.0",
"phpunit/phpunit": "^9.5|^10.5"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 023e0d4

Please sign in to comment.