From b6941603c1e8b2e4ca2c44b1ebcd9132235d1d0a Mon Sep 17 00:00:00 2001 From: Fomin Vasyl Date: Thu, 21 Dec 2017 19:06:45 +0200 Subject: [PATCH] Update required --- CHANGELOG.md | 4 ++++ README.md | 6 ++++++ composer.json | 3 ++- src/VariableServiceProvider.php | 1 - 4 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 61867ce..4506088 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog LaravelVariables +## 1.0.1 - 2017-12-21 + +- Update required + ## 1.0.0 - 2017-12-12 - Initial release, make package diff --git a/README.md b/README.md index a572c4b..112a72e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,11 @@ # Laravel Variables +[![Latest Stable Version](https://poser.pugx.org/fomvasss/laravel-variables/v/stable)](https://packagist.org/packages/fomvasss/laravel-variables) +[![Total Downloads](https://poser.pugx.org/fomvasss/laravel-variables/downloads)](https://packagist.org/packages/fomvasss/laravel-variables) +[![Latest Unstable Version](https://poser.pugx.org/fomvasss/laravel-variables/v/unstable)](https://packagist.org/packages/fomvasss/laravel-variables) +[![License](https://poser.pugx.org/fomvasss/laravel-variables/license)](https://packagist.org/packages/fomvasss/laravel-variables) +[![Quality Score](https://img.shields.io/scrutinizer/g/fomvasss/laravel-variables.svg?style=flat-square)](https://scrutinizer-ci.com/g/fomvasss/laravel-variables) + ## Installation Run: ```bash diff --git a/composer.json b/composer.json index 25b6798..e5f2edf 100644 --- a/composer.json +++ b/composer.json @@ -20,7 +20,8 @@ "require": { "php" : ">=7.0.0", "illuminate/support": "5.3.*|5.4.*|5.5.*", - "illuminate/database": "5.3.*|5.4.*|5.5.*" + "illuminate/database": "5.3.*|5.4.*|5.5.*", + "illuminate/cache": "5.3.*|5.4.*|5.5.*" }, "autoload": { "files": [ diff --git a/src/VariableServiceProvider.php b/src/VariableServiceProvider.php index 55e427d..697293b 100644 --- a/src/VariableServiceProvider.php +++ b/src/VariableServiceProvider.php @@ -25,7 +25,6 @@ public function boot() ], 'variables-migrations'); } - if ($this->app->runningInConsole()) { $this->commands([ Commands\SetVariable::class,