Skip to content

Commit

Permalink
Laravel 6.x compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalybaev committed May 27, 2020
1 parent bda2258 commit c86687a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 8 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down

0 comments on commit c86687a

Please sign in to comment.