Modifying README

This commit is contained in:
Loann 2020-04-09 16:00:19 +02:00
parent 8dfc4d6038
commit dfd4d18c46
1 changed files with 19 additions and 6 deletions

View File

@ -7,11 +7,24 @@ The BMail package allows you to send email templates on Laravel to the Bluescale
In your composer.json, add : In your composer.json, add :
```bash ```bash
"extra": { "require": {
"laravel": { "bluescale/laravel-bmail": "dev-master"
"providers": [
"BMail\\BMailServiceProvider"
]
} }
} ````
and
```bash
"repositories": [
{
"type": "vcs",
"url": "git@git.bluesquare.io:bluescale/laravel-bmail.git"
}
]
```
Then update your file :
```bash
composer update
``` ```