From 007c0190a383ea2e5c152db075c68332a858ff90 Mon Sep 17 00:00:00 2001 From: crynobone Date: Tue, 2 Aug 2016 08:09:41 +0800 Subject: [PATCH 1/2] [5.2] Remove default APP_KEY value Signed-off-by: crynobone --- .env.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env.example b/.env.example index 67a51b4c..b77c8442 100644 --- a/.env.example +++ b/.env.example @@ -1,5 +1,5 @@ APP_ENV=local -APP_KEY=SomeRandomString +APP_KEY= APP_DEBUG=true APP_LOG_LEVEL=debug APP_URL=http://localhost From 936addceefec2093bc8d010d2cba9a361dae2a0e Mon Sep 17 00:00:00 2001 From: "Bart Huisman (also known as VolgensBartjes)" Date: Thu, 4 Aug 2016 11:55:08 +0200 Subject: [PATCH 2/2] give newbees a package service providers section, preventing adding after application when i started, i ended up putting all package specific service providers just at the bottom of the application service providers. But when making a route group like domain.com/{keyword}, the packages that are registering its own url's, not work anymore (like now when i installed the translations manager from barryvdh). When putting them above the app specific, everything works. So just give it to the user as a default place? --- config/app.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config/app.php b/config/app.php index 7c1987c5..332cac7d 100644 --- a/config/app.php +++ b/config/app.php @@ -149,6 +149,11 @@ return [ Illuminate\Translation\TranslationServiceProvider::class, Illuminate\Validation\ValidationServiceProvider::class, Illuminate\View\ViewServiceProvider::class, + + /* + * Package Service Providers... + */ + /* * Application Service Providers...