From 4eab0670c433158f7d15ca2a432c62e3a8405c28 Mon Sep 17 00:00:00 2001 From: Samuel Georges Date: Wed, 24 Jan 2018 18:08:55 +1100 Subject: [PATCH] Proxy ConsoleSupportServiceProvider properly Refs https://github.com/octobercms/october/pull/3353 Refs https://github.com/octobercms/october/issues/3321 Refs https://github.com/octobercms/october/pull/3328 Refs https://github.com/octobercms/october/issues/3359 --- composer.json | 1 - modules/system/providers.php | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/composer.json b/composer.json index f67f7636a..75108b4c4 100644 --- a/composer.json +++ b/composer.json @@ -48,7 +48,6 @@ }, "scripts": { "post-create-project-cmd": [ - "php artisan october:env", "php artisan key:generate" ], "post-update-cmd": [ diff --git a/modules/system/providers.php b/modules/system/providers.php index bb395888e..7b63edb43 100644 --- a/modules/system/providers.php +++ b/modules/system/providers.php @@ -8,7 +8,6 @@ return [ Illuminate\Broadcasting\BroadcastServiceProvider::class, Illuminate\Bus\BusServiceProvider::class, Illuminate\Cache\CacheServiceProvider::class, - Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class, Illuminate\Cookie\CookieServiceProvider::class, Illuminate\Encryption\EncryptionServiceProvider::class, Illuminate\Foundation\Providers\FoundationServiceProvider::class, @@ -25,6 +24,7 @@ return [ /* * October Rain providers */ + October\Rain\Foundation\Providers\ConsoleSupportServiceProvider::class, October\Rain\Database\DatabaseServiceProvider::class, October\Rain\Halcyon\HalcyonServiceProvider::class, October\Rain\Filesystem\FilesystemServiceProvider::class,