Skip to content

Commit

Permalink
Add support for Laravel 11
Browse files Browse the repository at this point in the history
  • Loading branch information
dommer1 authored Mar 20, 2024
2 parents 48218e3 + 8c1d184 commit caf9dc9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,16 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.2, 8.1]
laravel: [10.*]
laravel: [10.*, 11.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*
exclude:
- laravel: 11.*
php: 8.1

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
}
],
"require": {
"php": "^8.1",
"illuminate/contracts": "^10.0",
"php": "^8.1|^8.2",
"illuminate/contracts": "^10.0|^11.0",
"larastan/larastan": "^2.0",
"pestphp/pest": "^2.6",
"pestphp/pest-plugin-laravel": "^2.0",
Expand All @@ -28,12 +28,12 @@
},
"require-dev": {
"laravel/pint": "^1.2",
"nunomaduro/collision": "^7.5",
"orchestra/testbench": "^8.0",
"nunomaduro/collision": "^7.5|^8.1",
"orchestra/testbench": "^8.0|^9.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^10.1",
"phpunit/phpunit": "^10.1|^11.0",
"spatie/laravel-ray": "^1.26"
},
"autoload": {
Expand Down

0 comments on commit caf9dc9

Please sign in to comment.