Skip to content

Commit

Permalink
Add Laravel 11 Support
Browse files Browse the repository at this point in the history
  • Loading branch information
Jubeki committed Feb 14, 2024
1 parent 368ef75 commit 7aab820
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@ jobs:
fail-fast: false
matrix:
php: [8.3, 8.2]
laravel: [10.*]
laravel: [10.*, 11.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench: ^8.0
- laravel: 11.*
testbench: ^9.0

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

Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,13 @@
"ext-exif": "*",
"ext-fileinfo": "*",
"ext-json": "*",
"illuminate/bus": "^10.0",
"illuminate/conditionable": "^10.0",
"illuminate/console": "^10.0",
"illuminate/database": "^10.0",
"illuminate/pipeline": "^10.0",
"illuminate/support": "^10.0",
"illuminate/bus": "^10.0|^11.0",
"illuminate/conditionable": "^10.0|^11.0",
"illuminate/console": "^10.0|^11.0",
"illuminate/database": "^10.0|^11.0",
"illuminate/pipeline": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0",
"laravel/framework": "^11.0",
"maennchen/zipstream-php": "^3.1",
"spatie/image": "^3.3.2",
"spatie/laravel-package-tools": "^1.16.1",
Expand All @@ -43,12 +44,11 @@
"ext-pdo_sqlite": "*",
"ext-zip": "*",
"aws/aws-sdk-php": "^3.293.10",
"doctrine/dbal": "^2.13.9",
"guzzlehttp/guzzle": "^7.8.1",
"league/flysystem-aws-s3-v3": "^3.22",
"mockery/mockery": "^1.6.7",
"larastan/larastan": "^2.7",
"orchestra/testbench": "^7.0|^8.17",
"orchestra/testbench": "^7.0|^8.17|^9.0",
"pestphp/pest": "^2.28",
"phpstan/extension-installer": "^1.3.1",
"spatie/laravel-ray": "^1.33",
Expand Down

0 comments on commit 7aab820

Please sign in to comment.