Skip to content

Commit

Permalink
Merge pull request #20 from shuvroroy/main
Browse files Browse the repository at this point in the history
Add support for laravel 11
  • Loading branch information
freekmurze authored Feb 20, 2024
2 parents 02ab0ca + 3b89258 commit bd1ea5d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,19 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.2, 8.1]
laravel: [10.*, 9.*]
php: [8.3, 8.2, 8.1]
laravel: [11.*, 10.*, 9.*]
stability: [prefer-stable]
include:
- laravel: 11.*
testbench: 9.*
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: 7.*
exclude:
- laravel: 11.*
php: 8.1

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

Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,21 @@
],
"require": {
"php": "^8.1",
"illuminate/contracts": "^9.0|^10.0",
"illuminate/contracts": "^9.0|^10.0|^11.0",
"spatie/backtrace": "^1.2",
"spatie/invade": "^1.1|^2.0",
"spatie/laravel-package-tools": "^1.12"
},
"require-dev": {
"nunomaduro/collision": "^6.2",
"nunomaduro/larastan": "^2.1",
"orchestra/testbench": "^7.6|^8.0",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.2",
"nunomaduro/collision": "^6.2|^8.0",
"larastan/larastan": "^2.1",
"orchestra/testbench": "^7.6|^8.0|^9.0",
"pestphp/pest": "^1.21|^2.0",
"pestphp/pest-plugin-laravel": "^1.2|^2.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.1",
"phpunit/phpunit": "^9.5",
"phpunit/phpunit": "^9.5|^10.0",
"spatie/laravel-ray": "^1.29"
},
"autoload": {
Expand Down

0 comments on commit bd1ea5d

Please sign in to comment.