Skip to content

Commit

Permalink
Merge pull request #101 from erikn69/patch-4
Browse files Browse the repository at this point in the history
Laravel 10.x Support
  • Loading branch information
freekmurze authored Jan 14, 2023
2 parents c4e67c8 + b5388b8 commit ae19842
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,18 @@ jobs:
fail-fast: false
matrix:
php: [8.2, 8.1, 8.0]
laravel: [9.*, 8.*]
laravel: [10.*, 9.*, 8.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: 7.*
- laravel: 8.*
testbench: ^6.23
exclude:
- laravel: 10.*
php: 8.0

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

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@
],
"require": {
"php": "^8.0",
"illuminate/database": "^7.0|^8.0|^9.0",
"illuminate/support": "^7.0|^8.0|^9.0",
"illuminate/database": "^7.0|^8.0|^9.0|^10.0",
"illuminate/support": "^7.0|^8.0|^9.0|^10.0",
"spatie/laravel-package-tools": "^1.4.3",
"illuminate/contracts": "^7.0|^8.0|^9.0"
"illuminate/contracts": "^7.0|^8.0|^9.0|^10.0"
},
"require-dev": {
"brianium/paratest": "^6.2",
"mockery/mockery": "^1.4",
"nunomaduro/collision": "^5.3|^6.0",
"orchestra/testbench": "^6.15|^7.0",
"orchestra/testbench": "^6.15|^7.0|^8.0",
"pestphp/pest-plugin-laravel": "^1.3",
"phpunit/phpunit": "^9.5.4"
},
Expand Down Expand Up @@ -60,4 +60,4 @@
},
"minimum-stability": "dev",
"prefer-stable": true
}
}

0 comments on commit ae19842

Please sign in to comment.