From 7c182f0aa48cbb844ab3e7653d6efd6aa9c790af Mon Sep 17 00:00:00 2001 From: devansh bawari Date: Thu, 19 Nov 2020 17:40:43 +0530 Subject: [PATCH] New Published According To Composer JSON --- config/debugbar.php | 30 ++++++++++++++++++++++-------- config/elastic.client.php | 2 +- config/elastic.scout_driver.php | 4 ++-- config/tinker.php | 4 ++-- 4 files changed, 27 insertions(+), 13 deletions(-) diff --git a/config/debugbar.php b/config/debugbar.php index d1fcc58b0..ada83c6d3 100755 --- a/config/debugbar.php +++ b/config/debugbar.php @@ -16,7 +16,8 @@ return [ 'enabled' => env('DEBUGBAR_ENABLED', null), 'except' => [ - 'telescope*' + 'telescope*', + 'horizon*', ], /* @@ -36,7 +37,7 @@ return [ 'driver' => 'file', // redis, file, pdo, custom 'path' => storage_path('debugbar'), // For file driver 'connection' => null, // Leave null for default connection (Redis/PDO) - 'provider' => '' // Instance of StorageInterface for custom driver + 'provider' => '', // Instance of StorageInterface for custom driver ], /* @@ -123,6 +124,7 @@ return [ 'config' => false, // Display config settings 'cache' => false, // Display cache events 'models' => true, // Display models + 'livewire' => true, // Display Livewire (when available) ], /* @@ -141,27 +143,29 @@ return [ 'db' => [ 'with_params' => true, // Render SQL with the parameters substituted 'backtrace' => true, // Use a backtrace to find the origin of the query in your files. + 'backtrace_exclude_paths' => [], // Paths to exclude from backtrace. (in addition to defaults) 'timeline' => false, // Add the queries to the timeline 'explain' => [ // Show EXPLAIN output on queries 'enabled' => false, - 'types' => ['SELECT'], // // workaround ['SELECT'] only. https://github.com/barryvdh/laravel-debugbar/issues/888 ['SELECT', 'INSERT', 'UPDATE', 'DELETE']; for MySQL 5.6.3+ + 'types' => ['SELECT'], // Deprecated setting, is always only SELECT ], - 'hints' => true, // Show hints for common mistakes + 'hints' => false, // Show hints for common mistakes + 'show_copy' => false, // Show copy button next to the query ], 'mail' => [ - 'full_log' => false + 'full_log' => false, ], 'views' => [ 'data' => false, //Note: Can slow down the application, because the data can be quite large.. ], 'route' => [ - 'label' => true // show complete route on bar + 'label' => true, // show complete route on bar ], 'logs' => [ - 'file' => null + 'file' => null, ], 'cache' => [ - 'values' => true // collect cache values + 'values' => true, // collect cache values ], ], @@ -199,4 +203,14 @@ return [ | To override default domain, specify it as a non-empty value. */ 'route_domain' => null, + + /* + |-------------------------------------------------------------------------- + | DebugBar theme + |-------------------------------------------------------------------------- + | + | Switches between light and dark theme. If set to auto it will respect system preferences + | Possible values: auto, light, dark + */ + 'theme' => 'auto', ]; diff --git a/config/elastic.client.php b/config/elastic.client.php index 13fb60386..f627ebab8 100644 --- a/config/elastic.client.php +++ b/config/elastic.client.php @@ -1,4 +1,4 @@ - [ diff --git a/config/elastic.scout_driver.php b/config/elastic.scout_driver.php index b28fe35a3..a5d123aa8 100644 --- a/config/elastic.scout_driver.php +++ b/config/elastic.scout_driver.php @@ -1,5 +1,5 @@ - env('ELASTIC_SCOUT_DRIVER_REFRESH_DOCUMENTS', false) + 'refresh_documents' => env('ELASTIC_SCOUT_DRIVER_REFRESH_DOCUMENTS', false), ]; diff --git a/config/tinker.php b/config/tinker.php index 0fdd538d6..c187942d0 100755 --- a/config/tinker.php +++ b/config/tinker.php @@ -19,7 +19,7 @@ return [ /* |-------------------------------------------------------------------------- - | Alias Whitelist + | Auto Aliased Classes |-------------------------------------------------------------------------- | | Tinker will not automatically alias classes in your vendor namespaces @@ -34,7 +34,7 @@ return [ /* |-------------------------------------------------------------------------- - | Alias Blacklist + | Classes That Should Not Be Aliased |-------------------------------------------------------------------------- | | Typically, Tinker automatically aliases classes as you require them in