From dfd4d18c468dbde847f3274ea2f7ddeb82aac7e0 Mon Sep 17 00:00:00 2001 From: Loann Meignant Date: Thu, 9 Apr 2020 16:00:19 +0200 Subject: [PATCH] Modifying README --- README.md | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 3acd7c8..34bded7 100644 --- a/README.md +++ b/README.md @@ -7,11 +7,24 @@ The BMail package allows you to send email templates on Laravel to the Bluescale In your composer.json, add : ```bash -"extra": { - "laravel": { - "providers": [ - "BMail\\BMailServiceProvider" - ] +"require": { + "bluescale/laravel-bmail": "dev-master" } -} +```` + +and + +```bash +"repositories": [ + { + "type": "vcs", + "url": "git@git.bluesquare.io:bluescale/laravel-bmail.git" + } + ] +``` + +Then update your file : + +```bash +composer update ```