Skip to content

Commit

Permalink
Merge pull request #5 from worksome/allow-laravel-9
Browse files Browse the repository at this point in the history
Allow laravel 9
  • Loading branch information
odinns authored May 9, 2022
2 parents 531b62e + b524b81 commit 2a70a90
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,14 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.0, 8.1]
laravel: [8.*]
php: [8.0,8.1]
laravel: [8.*,9.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 8.*
testbench: ^6.23
- laravel: 9.*
testbench: ^7.0

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

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,20 @@
}
],
"require": {
"php": "^8.0|^8.1",
"php": "^8.0",
"spatie/laravel-package-tools": "^1.9.2",
"illuminate/contracts": "^8.73"
"illuminate/contracts": "^8.73|^9.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.4",
"nunomaduro/collision": "^5.10",
"nunomaduro/larastan": "^1.0 || ^2.0",
"nunomaduro/collision": "^5.10|^6.1",
"nunomaduro/larastan": "^1.0|^2.0",
"orchestra/testbench": "^6.22",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.1",
"pestphp/pest-plugin-parallel": "^1.0",
"spatie/laravel-ray": "^1.26",
"worksome/coding-style": "0.6.2",
"worksome/coding-style": "0.17.0",
"worksome/pest-plugin-silence": "^0.1"
},
"autoload": {
Expand Down

0 comments on commit 2a70a90

Please sign in to comment.