From c86687a5f76eda91a1a3046ba77fb6887563a273 Mon Sep 17 00:00:00 2001 From: Vitaly Baev Date: Wed, 27 May 2020 13:37:25 +0300 Subject: [PATCH] Laravel 6.x compatibility --- README.md | 5 ++++- composer.json | 12 ++++++++---- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index d191f6b..38d5e5b 100644 --- a/README.md +++ b/README.md @@ -4,16 +4,19 @@ Package, that allows sign emails with DKIM. ## Installation 1. Install via Composer: ``` -composer require vitalybaev/laravel5-dkim +composer require vitalybaev/laravel-dkim ``` + 2. In `config/app.php` comment line with original service provider: ``` // Illuminate\Mail\MailServiceProvider::class, ``` + 3. In `config/app.php` add following line to provider's section: ``` Vitalybaev\LaravelDkim\DkimMailServiceProvider::class, ``` + 4. Fill your settings in `config/mail.php`: ``` 'dkim_selector' => env('MAIL_DKIM_SELECTOR'), // selector, required diff --git a/composer.json b/composer.json index 6f53e32..45c7518 100644 --- a/composer.json +++ b/composer.json @@ -1,15 +1,19 @@ { - "name": "vitalybaev/laravel5-dkim", - "description": "Laravel 5 package for signing outgoing messages with DKIM.", + "name": "vitalybaev/laravel-dkim", + "description": "Laravel 5/6 package for signing outgoing messages with DKIM.", "license": "MIT", "authors": [ { "name": "Vitaly Baev", - "email": "dj@vitalybaev.ru" + "email": "hello@vitalybaev.ru" + }, + { + "name": "Ricardo Boss", + "email": "contact@ricardoboss.de" } ], "require": { - "laravel/framework": "^5.2" + "laravel/framework": "^5.2|^6.0" }, "autoload": { "psr-4": {