Skip to content

Commit

Permalink
Laravel 9 support (#6)
Browse files Browse the repository at this point in the history
* Add support for Laravel 9

* update dev dependencies

* update test suite
  • Loading branch information
pktharindu authored Feb 10, 2022
1 parent 9074e23 commit bf64554
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,14 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.0]
laravel: [8.*]
php: [8.1, 8.0]
laravel: [^8.71, 9.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 8.*
testbench: ^6.6
- laravel: 9.*
testbench: 7.*
- laravel: ^8.71
testbench: 6.*

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

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
"require": {
"php": "^8.0",
"spatie/laravel-package-tools": "^1.4.3",
"illuminate/contracts": "^8.37"
"illuminate/contracts": "^8.37|^9"
},
"require-dev": {
"nunomaduro/collision": "^5.3",
"orchestra/testbench": "^6.15",
"nunomaduro/collision": "^5.3|^6.1",
"orchestra/testbench": "^6.15|^7.0",
"pestphp/pest": "^1.18",
"pestphp/pest-plugin-laravel": "^1.1",
"spatie/laravel-ray": "^1.23",
Expand Down

0 comments on commit bf64554

Please sign in to comment.