Skip to content

Commit

Permalink
v6
Browse files Browse the repository at this point in the history
  • Loading branch information
introwit committed Mar 3, 2020
1 parent b385711 commit 5ca77fb
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.2, 7.3, 7.4]
laravel: [5.8.*, 6.*]
php: [7.3, 7.4]
laravel: [6.*, 7.*]
dependency-version: [prefer-lowest, prefer-stable]

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
All notable changes to the Laravel Mail Viewer be documented in this file

## v6.0.0 (03-03-2020)
- Added Laravel v7.x support.
- Dropped PHP v7.2 support, now PHP v7.3 is the minimum requirement.

## v5.0.1 (14-01-2020)
- Added Github Action Workflow for tests

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@
}
},
"require": {
"php": "^7.2",
"illuminate/routing": "5.8.*|6.*",
"illuminate/support": "5.8.*|6.*",
"illuminate/database": "5.8.*|6.*"
"php": "^7.3",
"illuminate/routing": "6.*|7.*",
"illuminate/support": "6.*|7.*",
"illuminate/database": "6.*|7.*"
},
"require-dev": {
"mockery/mockery": "^1.1",
"orchestra/testbench": "~4.0",
"orchestra/testbench": "4.*|5.*",
"phpunit/phpunit": "^8.0"
},
"extra": {
Expand Down

0 comments on commit 5ca77fb

Please sign in to comment.