Skip to content

Commit

Permalink
Merge pull request #43 from 21p-tb/main
Browse files Browse the repository at this point in the history
Add Support for Laravel 11.x
  • Loading branch information
freekmurze authored Mar 17, 2024
2 parents 820e3ca + 5d1c4f6 commit 74dbb28
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
matrix:
os: [ubuntu-latest]
php: [8.2, 8.1, 8.0]
laravel: [10.*, 9.*, 8.*]
laravel: [11.*, 10.*, 9.*, 8.*]
stability: [prefer-stable]
include:
- laravel: 8.*
Expand All @@ -23,9 +23,15 @@ jobs:
testbench: ^7.0
- laravel: 10.*
testbench: ^8.0
- laravel: 11.*
testbench: ^9.0
exclude:
- laravel: 10.*
php: 8.0
- laravel: 11.*
php: 8.0
- laravel: 11.*
php: 8.1

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

Expand Down
10 changes: 4 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,16 @@
"require": {
"php": "^8.0",
"spatie/laravel-package-tools": "^1.9.2",
"illuminate/contracts": "^8.73|^9.0|^10.0"
"illuminate/contracts": "^8.73|^9.0|^10.0|^11.0"
},
"require-dev": {
"nunomaduro/collision": "^5.10|^6.0|^7.0",
"nunomaduro/collision": "^5.10|^6.0|^7.0|^8.0",
"nunomaduro/larastan": "^1.0|^2.0",
"orchestra/testbench": "^6.22|^7.0|^8.0",
"pestphp/pest": "^1.21",
"orchestra/testbench": "^6.22|^7.0|^8.0|^9.0",
"pestphp/pest": "^1.21|^2.0|^3.0",
"pestphp/pest-plugin-laravel": "^1.1|^2.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9.5",
"spatie/laravel-ray": "^1.26"
},
"autoload": {
Expand Down

0 comments on commit 74dbb28

Please sign in to comment.