Skip to content

Commit

Permalink
readme file updates
Browse files Browse the repository at this point in the history
  • Loading branch information
vagrant committed Jul 14, 2018
1 parent 47bf0d4 commit 36d3277
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Laravel Email Database Log

A simple database logger for all outgoing emails sent by Laravel website.
Forked from ShvetsGroup\LaravelEmailDatabaseLog.

# Installation

Expand All @@ -9,7 +10,7 @@ A simple database logger for all outgoing emails sent by Laravel website.
Laravel Email Database Log can be installed via [composer](http://getcomposer.org) by running this line in terminal:

```bash
composer require shvetsgroup/laravel-email-database-log
composer require dmcbrn/laravel-email-database-log
```

## Step 2: Configuration
Expand All @@ -19,7 +20,7 @@ You can skip this step if your version of Laravel is 5.5 or above. Otherwise, yo
```php
'providers' => [
// ...
ShvetsGroup\LaravelEmailDatabaseLog\LaravelEmailDatabaseLogServiceProvider::class,
Dmcbrn\LaravelEmailDatabaseLog\LaravelEmailDatabaseLogServiceProvider::class,
],
```

Expand All @@ -36,7 +37,7 @@ php artisan migrate
To publish config file run this in terminal:

```bash
php artisan vendor:publish --provider="ShvetsGroup\LaravelEmailDatabaseLog\LaravelEmailDatabaseLogServiceProvider"
php artisan vendor:publish --provider="DmcBrn\LaravelEmailDatabaseLog\LaravelEmailDatabaseLogServiceProvider"
```

Config contains only one key at the moment `folder` and this is the name of the folder where the attachments will be saved.
Expand Down

0 comments on commit 36d3277

Please sign in to comment.