From a4c0380e6df68837ad306b32d7474349fff57dc6 Mon Sep 17 00:00:00 2001 From: Dave Roverts Date: Tue, 9 Nov 2021 20:18:01 +0100 Subject: [PATCH] Fix Breadcrumbs, Horizon and Telescope. Use night mode for last 2 --- app/Providers/HorizonServiceProvider.php | 2 +- app/Providers/TelescopeServiceProvider.php | 2 +- composer.lock | 32 +++++++++++----------- config/app.php | 4 ++- 4 files changed, 21 insertions(+), 19 deletions(-) diff --git a/app/Providers/HorizonServiceProvider.php b/app/Providers/HorizonServiceProvider.php index b7e82977..8e6c82a2 100644 --- a/app/Providers/HorizonServiceProvider.php +++ b/app/Providers/HorizonServiceProvider.php @@ -21,7 +21,7 @@ public function boot() // Horizon::routeMailNotificationsTo('example@example.com'); // Horizon::routeSlackNotificationsTo('slack-webhook-url', '#channel'); - // Horizon::night(); + Horizon::night(); } /** diff --git a/app/Providers/TelescopeServiceProvider.php b/app/Providers/TelescopeServiceProvider.php index 86f4a776..de97cfb7 100644 --- a/app/Providers/TelescopeServiceProvider.php +++ b/app/Providers/TelescopeServiceProvider.php @@ -16,7 +16,7 @@ class TelescopeServiceProvider extends TelescopeApplicationServiceProvider */ public function register() { - // Telescope::night(); + Telescope::night(); $this->hideSensitiveRequestDetails(); diff --git a/composer.lock b/composer.lock index 56e5bb9a..2c36f3a0 100644 --- a/composer.lock +++ b/composer.lock @@ -2755,16 +2755,16 @@ }, { "name": "laravel/framework", - "version": "v8.69.0", + "version": "v8.70.1", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "545181da688db64fed6d8427e55f630a90ca0d32" + "reference": "f4b69fac9292df1a8afd5eb93e77990444ad5077" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/545181da688db64fed6d8427e55f630a90ca0d32", - "reference": "545181da688db64fed6d8427e55f630a90ca0d32", + "url": "https://api.github.com/repos/laravel/framework/zipball/f4b69fac9292df1a8afd5eb93e77990444ad5077", + "reference": "f4b69fac9292df1a8afd5eb93e77990444ad5077", "shasum": "" }, "require": { @@ -2923,7 +2923,7 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2021-11-02T13:53:22+00:00" + "time": "2021-11-09T16:50:33+00:00" }, { "name": "laravel/horizon", @@ -9421,16 +9421,16 @@ }, { "name": "composer/composer", - "version": "2.1.11", + "version": "2.1.12", "source": { "type": "git", "url": "https://github.com/composer/composer.git", - "reference": "ddc81bb4718747cc93330ccf832e6be8a6c1d015" + "reference": "6e3c2b122e0ec41a7e885fcaf19fa15e2e0819a0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/composer/zipball/ddc81bb4718747cc93330ccf832e6be8a6c1d015", - "reference": "ddc81bb4718747cc93330ccf832e6be8a6c1d015", + "url": "https://api.github.com/repos/composer/composer/zipball/6e3c2b122e0ec41a7e885fcaf19fa15e2e0819a0", + "reference": "6e3c2b122e0ec41a7e885fcaf19fa15e2e0819a0", "shasum": "" }, "require": { @@ -9499,7 +9499,7 @@ "support": { "irc": "ircs://irc.libera.chat:6697/composer", "issues": "https://github.com/composer/composer/issues", - "source": "https://github.com/composer/composer/tree/2.1.11" + "source": "https://github.com/composer/composer/tree/2.1.12" }, "funding": [ { @@ -9515,7 +9515,7 @@ "type": "tidelift" } ], - "time": "2021-11-02T11:10:26+00:00" + "time": "2021-11-09T15:02:04+00:00" }, { "name": "composer/metadata-minifier", @@ -10134,16 +10134,16 @@ }, { "name": "laravel/sail", - "version": "v1.12.3", + "version": "v1.12.4", "source": { "type": "git", "url": "https://github.com/laravel/sail.git", - "reference": "f335277677188b79d12f4caad88577cf76e54dfa" + "reference": "a214b593d50ad4c581c922d5ee604ffe0fab4d01" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/sail/zipball/f335277677188b79d12f4caad88577cf76e54dfa", - "reference": "f335277677188b79d12f4caad88577cf76e54dfa", + "url": "https://api.github.com/repos/laravel/sail/zipball/a214b593d50ad4c581c922d5ee604ffe0fab4d01", + "reference": "a214b593d50ad4c581c922d5ee604ffe0fab4d01", "shasum": "" }, "require": { @@ -10190,7 +10190,7 @@ "issues": "https://github.com/laravel/sail/issues", "source": "https://github.com/laravel/sail" }, - "time": "2021-11-05T13:35:24+00:00" + "time": "2021-11-09T17:42:55+00:00" }, { "name": "maximebf/debugbar", diff --git a/config/app.php b/config/app.php index 97b98e87..319707a5 100644 --- a/config/app.php +++ b/config/app.php @@ -190,8 +190,10 @@ App\Providers\AuthServiceProvider::class, // App\Providers\BroadcastServiceProvider::class, App\Providers\EventServiceProvider::class, + App\Providers\HorizonServiceProvider::class, + App\Providers\TelescopeServiceProvider::class, App\Providers\RouteServiceProvider::class, - + App\Providers\BreadcrumbsServiceProvider::class, App\Providers\ViewServiceProvider::class, ],