Skip to content

Commit

Permalink
Laravel 8 support (#8)
Browse files Browse the repository at this point in the history
* Laravel 8 support

* Update .styleci.yml

* Update run-tests.yml

* Laravel 8 support

Co-authored-by: Ognjen <[email protected]>
Co-authored-by: Chrysanthos <[email protected]>
  • Loading branch information
3 people authored Oct 4, 2020
1 parent 32f6e0e commit 1ca0bea
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,15 @@ jobs:
fail-fast: true
matrix:
php: [7.3, 7.4]
laravel: [6.*, 7.*]
laravel: [6.*, 7.*, 8.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 6.*
testbench: 4.*
- laravel: 7.*
testbench: 5.*
- laravel: 8.*
testbench: 6.*

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}

Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 2.1.0 - 03-10-2020
- Laravel 8 support

## 2.0.0 - 11-01-2020
- Laravel 7 support

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
],
"require": {
"php": "^7.3",
"illuminate/support": "^6.5 | ^7.0"
"illuminate/support": "^6.5 | ^7.0 | ^8.0 "
},
"require-dev": {
"mockery/mockery": "^1.0",
Expand Down

0 comments on commit 1ca0bea

Please sign in to comment.