From ee8cbf3dfe09f7f3a950ffe8eac32ddaa1c2a098 Mon Sep 17 00:00:00 2001 From: Anton Komarev <1849174+antonkomarev@users.noreply.github.com> Date: Wed, 9 Sep 2020 02:13:55 +0300 Subject: [PATCH] Add Laravel 8 support (#17) Add Laravel 8 support --- .gitignore | 1 + CHANGELOG.md | 18 +++++++++++++----- composer.json | 8 ++++---- 3 files changed, 18 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index 34eb2c3..b1a8d51 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ /vendor /build /.idea +.phpunit.result.cache composer.phar composer.lock diff --git a/CHANGELOG.md b/CHANGELOG.md index a1c84c1..d6609b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,17 @@ All notable changes to `laravel-notification-channels/rocket-chat` will be docum ## [Unreleased] +## [0.3.0] - 2020-09-09 + +### Added + +- ([#17]) Added Laravel 8 support + ## [0.2.0] - 2020-04-26 ### Added -- ([#14]) Added Laravel 7.x support +- ([#14]) Added Laravel 7 support - ([#7]) Method `getChannel` added to `NotificationChannels\RocketChat\RocketChatMessage` class - ([#7]) Method `getFrom` added to `NotificationChannels\RocketChat\RocketChatMessage` class @@ -31,10 +37,12 @@ All notable changes to `laravel-notification-channels/rocket-chat` will be docum - Initial release -[Unreleased]: https://github.com/laravel-notification-channels/rocket-chat/compare/v0.2.0...master +[Unreleased]: https://github.com/laravel-notification-channels/rocket-chat/compare/v0.3.0...master +[0.3.0]: https://github.com/cybercog/laravel-love/compare/v0.2.0...v0.3.0 [0.2.0]: https://github.com/cybercog/laravel-love/compare/v0.1.0...v0.2.0 -[#7]: https://github.com/laravel-notification-channels/rocket-chat/pull/7 -[#9]: https://github.com/laravel-notification-channels/rocket-chat/pull/9 +[#17]: https://github.com/laravel-notification-channels/rocket-chat/pull/17 +[#14]: https://github.com/laravel-notification-channels/rocket-chat/pull/14 [#10]: https://github.com/laravel-notification-channels/rocket-chat/pull/10 -[#14]: https://github.com/laravel-notification-channels/rocket-chat/pull/10 +[#9]: https://github.com/laravel-notification-channels/rocket-chat/pull/9 +[#7]: https://github.com/laravel-notification-channels/rocket-chat/pull/7 diff --git a/composer.json b/composer.json index 29c4fa9..58c3cd5 100644 --- a/composer.json +++ b/composer.json @@ -21,10 +21,10 @@ ], "require": { "php": "^7.2.0", - "guzzlehttp/guzzle": "^6.2", - "illuminate/notifications": "^5.6|^6.0|^7.0", - "illuminate/queue": "^5.6|^6.0|^7.0", - "illuminate/support": "^5.6|^6.0|^7.0" + "guzzlehttp/guzzle": "^6.2|^7.0", + "illuminate/notifications": "^5.6|^6.0|^7.0|^8.0", + "illuminate/queue": "^5.6|^6.0|^7.0|^8.0", + "illuminate/support": "^5.6|^6.0|^7.0|^8.0" }, "require-dev": { "mockery/mockery": "^1.3",