Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Laravel 10.x Compatibility
  • Loading branch information
Jamesking56 authored Feb 15, 2023
commit 476dab79cbb0877a5b210a92d4a0428ca0d3a606
5 changes: 4 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
fail-fast: true
matrix:
php: [ 8.0, 8.1 ]
laravel: [ 8.*, 9.* ]
laravel: [ 8.*, 9.*, 10.* ]
dependency-version: [ prefer-stable ]
include:
- laravel: 5.7.*
Expand Down Expand Up @@ -37,6 +37,9 @@ jobs:
testbench: 6.*
- laravel: 9.*
testbench: 7.*
- laravel: 10.*
php: 8.1
testbench: 8.*

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

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
"require": {
"php": "^7.1|^8.0",
"codezero/dotenv-updater": "^1.1",
"illuminate/support": "^5.7|^6.0|^7.0|^8.0|^9.0"
"illuminate/support": "^5.7|^6.0|^7.0|^8.0|^9.0|^10.0"
},
"require-dev": {
"orchestra/testbench": "^3.7|^4.0|^5.0|^6.0|^7.0",
"orchestra/testbench": "^3.7|^4.0|^5.0|^6.0|^7.0|^8.0",
"phpunit/phpunit": "^7.0|^8.0|^9.0"
},
"scripts": {
Expand Down