Skip to content

Commit c86687a

Browse files
committed
Laravel 6.x compatibility
1 parent bda2258 commit c86687a

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,19 @@ Package, that allows sign emails with DKIM.
44
## Installation
55
1. Install via Composer:
66
```
7-
composer require vitalybaev/laravel5-dkim
7+
composer require vitalybaev/laravel-dkim
88
```
9+
910
2. In `config/app.php` comment line with original service provider:
1011
```
1112
// Illuminate\Mail\MailServiceProvider::class,
1213
```
14+
1315
3. In `config/app.php` add following line to provider's section:
1416
```
1517
Vitalybaev\LaravelDkim\DkimMailServiceProvider::class,
1618
```
19+
1720
4. Fill your settings in `config/mail.php`:
1821
```
1922
'dkim_selector' => env('MAIL_DKIM_SELECTOR'), // selector, required

composer.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
{
2-
"name": "vitalybaev/laravel5-dkim",
3-
"description": "Laravel 5 package for signing outgoing messages with DKIM.",
2+
"name": "vitalybaev/laravel-dkim",
3+
"description": "Laravel 5/6 package for signing outgoing messages with DKIM.",
44
"license": "MIT",
55
"authors": [
66
{
77
"name": "Vitaly Baev",
8-
"email": "dj@vitalybaev.ru"
8+
"email": "hello@vitalybaev.ru"
9+
},
10+
{
11+
"name": "Ricardo Boss",
12+
"email": "contact@ricardoboss.de"
913
}
1014
],
1115
"require": {
12-
"laravel/framework": "^5.2"
16+
"laravel/framework": "^5.2|^6.0"
1317
},
1418
"autoload": {
1519
"psr-4": {

0 commit comments

Comments
 (0)