Skip to content

Commit

Permalink
Laravel 10.x Compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalbaljet authored Feb 6, 2023
2 parents d957436 + b2114b2 commit 8529aae
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,17 @@ jobs:
fail-fast: true
matrix:
php: [8.2, 8.1, 8.0]
laravel: [9.*]
laravel: [10.*, 9.*]
os: [ubuntu-latest, windows-latest]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: 7.*
exclude:
- laravel: 10.*
php: 8.0

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

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,20 @@
],
"require": {
"php": "^8.0|^8.1|^8.2",
"illuminate/contracts": "^9.0",
"illuminate/contracts": "^9.0|^10.0",
"laravel/dusk": "^7.0"
},
"conflict": {
"laravel/framework": "<9.15.0"
},
"require-dev": {
"laravel/pint": "^1.0",
"nesbot/carbon": "^2.63",
"nesbot/carbon": "^2.66",
"nunomaduro/collision": "^6.0",
"orchestra/testbench": "^7.0",
"orchestra/testbench": "^7.0|^8.0",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.1",
"phpunit/phpunit": "^9.5"
"phpunit/phpunit": "^9.5|^10.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 8529aae

Please sign in to comment.