Skip to content

Commit

Permalink
chore: add support for Laravel 10 (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryangjchandler authored Feb 19, 2023
1 parent 02e3464 commit bb426d9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,17 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
php: ['8.0', 8.1]
laravel: [8.*, 9.*]
php: ['8.0', 8.1, 8.2]
laravel: [9.*, 10.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 8.*
testbench: ^6.6
- laravel: 9.*
testbench: ^7.0
testbench: ^7.22
- laravel: 10.*
testbench: ^8.0
exclude:
- laravel: 10.*
php: '8.0'

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

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
"require": {
"php": "^8.0",
"spatie/laravel-package-tools": "^1.4.3",
"illuminate/contracts": "^8.83|^9.0"
"illuminate/contracts": "^9.0|^10.0"
},
"require-dev": {
"brianium/paratest": "^6.2",
"nunomaduro/collision": "^5.3|^6.0",
"orchestra/testbench": "^6.15|^7.0",
"phpunit/phpunit": "^9.3",
"nunomaduro/collision": "^6.0|^7.0",
"orchestra/testbench": "^7.0|^8.0",
"phpunit/phpunit": "^9.3|^10.0",
"spatie/laravel-ray": "^1.9",
"vimeo/psalm": "^4.4"
},
Expand Down

0 comments on commit bb426d9

Please sign in to comment.