From f238c38d42d040006a3e832a821da9d52edeb8b7 Mon Sep 17 00:00:00 2001 From: Viktor Jarnheimer Date: Tue, 1 Nov 2016 12:34:38 +0100 Subject: [PATCH] Laravel 5 standards --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0f1a329..c61fa6a 100644 --- a/README.md +++ b/README.md @@ -30,10 +30,9 @@ composer require sngrl/string-blade-compiler:dev-master After updating composer, add the ServiceProvider to the "providers" array in app/config/app.php: ```php - 'providers' => array( - /*** Some others providers ***/ - 'sngrl\StringBladeCompiler\StringBladeCompilerServiceProvider', - ), + 'providers' => [ + sngrl\StringBladeCompiler\StringBladeCompilerServiceProvider::class, + ], ``` There is no need to add a Facade to the aliases array in the same file as the service provider, this is being included automatically in the ServiceProvider.