Skip to content

Commit

Permalink
Laravel 11 Support
Browse files Browse the repository at this point in the history
  • Loading branch information
erikn69 committed Feb 28, 2024
1 parent 13d5a23 commit d81f36e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 9 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,30 @@ jobs:
matrix:
os: [ubuntu-latest]
php: [7.4, 8.0, 8.1, 8.2]
laravel: [8.*, 9.*, 10.*]
laravel: [8.*, 9.*, 10.*, 11.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 8.*
testbench: ^6.24
- laravel: 9.*
testbench: 7.*
- laravel: 10.*
testbench: 8.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*
exclude:
- laravel: 9.*
php: 7.4
- laravel: 10.*
php: 7.4
- laravel: 10.*
php: 8.0
- laravel: 11.*
php: 8.0
- laravel: 11.*
php: 8.1
- laravel: 11.*
php: 7.4

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

Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"illuminate/console": "^8.0|^9.0|^10.0",
"illuminate/contracts": "^8.0|^9.0|^10.0",
"illuminate/database": "^8.0|^9.0|^10.0"
"illuminate/console": "^8.0|^9.0|^10.0|^11.0",
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0",
"illuminate/database": "^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"mockery/mockery": "^1.4",
"orchestra/testbench": "^6.24|^7.0|^8.0",
"pestphp/pest-plugin-laravel": "^1.3",
"phpunit/phpunit": "^9.5.13",
"orchestra/testbench": "^6.24|^7.0|^8.0|^9.0",
"pestphp/pest-plugin-laravel": "^1.3|^2.1",
"phpunit/phpunit": "^9.6|^10.5",
"spatie/temporary-directory": "^1.2",
"vimeo/psalm": "^4.2"
"vimeo/psalm": "^4.2|^5.20"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit d81f36e

Please sign in to comment.