Skip to content

Commit

Permalink
Merge pull request #50 from lukeraymonddowning/ShamarKellman/main
Browse files Browse the repository at this point in the history
Laravel 9 Support
  • Loading branch information
lukeraymonddowning authored Jan 25, 2022
2 parents 3b46c5a + c2b4dc5 commit 7fbc6bd
Show file tree
Hide file tree
Showing 3 changed files with 2,131 additions and 952 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,16 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
php: ['7.4', '8.0']

name: PHP ${{ matrix.php }} Test on ${{ matrix.os }}
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: PHP ${{ matrix.php }} Test on ${{ matrix.os }} with Laravel ${{ matrix.laravel }}
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
"test": "php vendor/bin/phpunit"
},
"require": {
"php": "^7.4|^8.0",
"illuminate/support": "^7.0|^8.0",
"php": "^8.0",
"illuminate/support": "^8.0|^9.0",
"guzzlehttp/guzzle": "^6.3|^7.2"
},
"require-dev": {
"orchestra/testbench": "^6.4",
"orchestra/testbench": "^6.4|^7.0",
"livewire/livewire": "^2.3"
},
"autoload": {
Expand Down
Loading

0 comments on commit 7fbc6bd

Please sign in to comment.