Skip to content

Commit

Permalink
Merge pull request #8 from kielabokkie/hotfix/laravel-8-support
Browse files Browse the repository at this point in the history
Add support for Laravel 8
  • Loading branch information
kielabokkie authored Nov 11, 2020
2 parents 6880290 + 5cbcc1a commit b37a150
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,19 @@ jobs:
fail-fast: true
matrix:
php: [7.2, 7.3, 7.4]
laravel: [5.7.*, 6.*, 7.*]
laravel: [5.7.*, 6.*, 7.*, 8.*]
include:
- laravel: 8.*
testbench: 6.*
- laravel: 7.*
testbench: 5.*
- laravel: 6.*
testbench: 4.*
- laravel: 5.7.*
testbench: 3.7.*
exclude:
- laravel: 8.*
php: 7.2

name: PHP ${{ matrix.php }} / L ${{ matrix.laravel }}

Expand All @@ -33,7 +38,7 @@ jobs:
key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}

- name: Setup PHP
uses: shivammathur/setup-php@v1
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ print_r($output);

## Requirements

* PHP >= 7.1
* Laravel 5.7+ | 6 | 7
* PHP >= 7.2
* Laravel 5.7+ | 6 | 7 | 8

## Installation

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
}
],
"require": {
"illuminate/support": "^5.7|^6.0|^7.0",
"php": "^7.1"
"illuminate/support": "^5.7|^6.0|^7.0|^8.0",
"php": "^7.2"
},
"require-dev": {
"orchestra/testbench": "^3.7|^4.0"
Expand Down

0 comments on commit b37a150

Please sign in to comment.