From 5ca77fba1ad036b2bd47d2b0c2cb0b5677a44108 Mon Sep 17 00:00:00 2001 From: Harish Toshniwal Date: Tue, 3 Mar 2020 14:28:57 +0530 Subject: [PATCH] v6 --- .github/workflows/run-tests.yml | 4 ++-- CHANGELOG.md | 4 ++++ composer.json | 10 +++++----- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 428e582..80ba950 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -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 }} diff --git a/CHANGELOG.md b/CHANGELOG.md index abe26bc..8dc927a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/composer.json b/composer.json index dd11c42..d0e4a68 100644 --- a/composer.json +++ b/composer.json @@ -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": {