Skip to content

Commit

Permalink
Add Support for Laravel 11 (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanzweifel authored Mar 21, 2024
1 parent 4e14a2a commit b8cca2d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,13 @@ jobs:
matrix:
os: [ubuntu-latest]
php: [8.2, 8.3]
laravel: [10.*]
laravel: [10.*, 11.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench: ^8.0
- laravel: 11.*
testbench: ^9.0

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ 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,7 +21,7 @@
"require": {
"php": "^8.2",
"hammerstone/sidecar": "^0.4.0",
"illuminate/contracts": "^10.0",
"illuminate/contracts": "^10.0 || ^11.0",
"spatie/browsershot": "^4.0",
"spatie/laravel-package-tools": "^1.9.2"
},
Expand All @@ -31,13 +31,13 @@
"laravel/pint": "^1.13",
"league/flysystem-aws-s3-v3": "^1.0|^2.0|^3.0",
"nunomaduro/collision": "^7.0|^8.0",
"orchestra/testbench": "^8.0",
"orchestra/testbench": "^8.0|^9.0",
"pestphp/pest": "^2.0",
"pestphp/pest-plugin-laravel": "^2.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^10",
"phpunit/phpunit": "^10 | ^11.0",
"spatie/image": "^3.3",
"spatie/pixelmatch-php": "^1.0"
},
Expand Down

0 comments on commit b8cca2d

Please sign in to comment.