From d7f288d825ae4c210b74d22634ea3e529a5f4d9b Mon Sep 17 00:00:00 2001 From: Harish Toshniwal Date: Wed, 4 Sep 2019 12:52:55 +0530 Subject: [PATCH] Laravel v6.0 support --- CHANGELOG.md | 5 +++++ composer.json | 10 +++++----- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b169740..5d41ab1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ All notable changes to the Laravel Mail Viewer be documented in this file +## v5.0.0 (04-09-2019) +- Now supports Laravel v6.0 +- Laravel v5.6.* & Laravel v5.7.* are no longer supported, min requirement is now v5.8.* +- Support for Laravel v5.8.* will be dropped in v5.1.* + ## v4.0.4 (06-03-2019) - The package now renders the correct mailable having similar class name as another mailable in different namespace. - Big thanks to [Thomas Kane](https://github.com/thomasjohnkane) for pointing out [this issue](https://github.com/JoggApp/laravel-mail-viewer/issues/18). diff --git a/composer.json b/composer.json index 9ab9ddc..dd11c42 100644 --- a/composer.json +++ b/composer.json @@ -20,14 +20,14 @@ }, "require": { "php": "^7.2", - "illuminate/routing": "5.6.*|5.7.*|5.8.*", - "illuminate/support": "5.6.*|5.7.*|5.8.*", - "illuminate/database": "5.6.*|5.7.*|5.8.*" + "illuminate/routing": "5.8.*|6.*", + "illuminate/support": "5.8.*|6.*", + "illuminate/database": "5.8.*|6.*" }, "require-dev": { "mockery/mockery": "^1.1", - "orchestra/testbench": "~3.0", - "phpunit/phpunit": "^7.3" + "orchestra/testbench": "~4.0", + "phpunit/phpunit": "^8.0" }, "extra": { "laravel": {