Skip to content

Commit

Permalink
Merge pull request #98 from laravel-shift/l10-compatibility
Browse files Browse the repository at this point in the history
Laravel 10.x Compatibility
  • Loading branch information
freekmurze committed Jan 25, 2023
2 parents 406a293 + e866f8c commit 64618ca
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,18 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.2, 8.1, 8.0]
laravel: [8.*, 9.*]
laravel: [8.*, 9.*, 10.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench: ^8.0
- laravel: 8.*
testbench: ^6.6
- laravel: 9.*
testbench: 7.*
exclude
- laravel: 10.*
php: 8.0

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

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
],
"require": {
"php": "^8.0|^8.1",
"illuminate/support": "^8.71|^9.0"
"illuminate/support": "^8.71|^9.0|^10.0"
},
"require-dev": {
"orchestra/testbench": "^6.6|^7.0",
"orchestra/testbench": "^6.6|^7.0|^8.0",
"pestphp/pest": "^1.22",
"phpunit/phpunit": "^9.5"
},
Expand Down Expand Up @@ -59,4 +59,4 @@
},
"minimum-stability": "dev",
"prefer-stable": true
}
}

0 comments on commit 64618ca

Please sign in to comment.