From 89fed6adf17da7a46ff4a8ffef83eb414690e2ec Mon Sep 17 00:00:00 2001 From: erjanmx Date: Wed, 7 Mar 2018 12:26:30 +0300 Subject: [PATCH] Add instruction to get support of Laravel prior to 5.5 --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 2cbf87d..63759e1 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,16 @@ You can install the package via composer composer require erjanmx/laravel-live-tinker --dev ``` +If you're using Laravel prior to version 5.5 you have to configure by adding Service Provider in your `/config/app.php` + +``` +'providers' => [ + // other providers + + Erjanmx\LiveTinker\LiveTinkerServiceProvider::class, + ], +``` + Publish assets via following command ```bash