Skip to content

Commit

Permalink
Support Laravel 10
Browse files Browse the repository at this point in the history
  • Loading branch information
JurianArie authored Mar 15, 2024
1 parent 79b4614 commit 37be80b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,19 @@ jobs:
strategy:
fail-fast: true
matrix:
laravel: [ 9.*, 10.* ]
php: [ 8.0, 8.1 ]
laravel: [ 9.*, 10.*, 11.* ]
php: [ 8.0, 8.1, 8.2, 8.3 ]
exclude:
- laravel: 9.*
php: 8.2
- laravel: 9.*
php: 8.3
- laravel: 10.*
php: 8.0
- laravel: 11.*
php: 8.0
- laravel: 11.*
php: 8.1
name: Laravel ${{ matrix.laravel }} on PHP ${{ matrix.php }}
steps:
- name: Checkout code
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
"ext-json": "*",
"guzzlehttp/guzzle": "^6.2 || ^7.0",
"guzzlehttp/psr7": "^1.0 || ^2.0",
"laravel/framework": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0"
"laravel/framework": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0"
},
"require-dev": {
"mockery/mockery": "^1.3.1",
"orchestra/testbench": "^3.5 || ^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0",
"orchestra/testbench": "^3.5 || ^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
"phpunit/phpunit": "^7.5 || ^8.0 || ^9.0"
},
"autoload": {
Expand Down

0 comments on commit 37be80b

Please sign in to comment.