Skip to content

Commit

Permalink
Merge pull request #3 from neopheus/laravel-9
Browse files Browse the repository at this point in the history
Fix for Laravel 9
  • Loading branch information
alexstewartja authored Jun 19, 2022
2 parents e3c114a + 27dc730 commit 4c5f49e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.0]
laravel: [8.*]
laravel: [9.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 8.*
testbench: ^6.6
- laravel: 9.*
testbench: ^7.5

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

Expand Down
13 changes: 8 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
],
"require": {
"php": "^7.4|^8.0",
"spatie/laravel-package-tools": "^1.4.3",
"illuminate/contracts": "^7.0|^8.0"
"spatie/laravel-package-tools": "^1.11.3",
"illuminate/contracts": "^7.0|^8.0|^9.0"
},
"require-dev": {
"nunomaduro/collision": "^5.3",
"orchestra/testbench": "^6.15",
"nunomaduro/collision": "^6.1",
"orchestra/testbench": "^7.5",
"pestphp/pest": "^1.18",
"pestphp/pest-plugin-laravel": "^1.1",
"spatie/laravel-ray": "^1.23",
Expand All @@ -43,7 +43,10 @@
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
Expand Down

0 comments on commit 4c5f49e

Please sign in to comment.