Clean up config.

This commit is contained in:
James Cole
2020-03-20 17:31:54 +01:00
parent 7b216543fa
commit 5a7152ceec
11 changed files with 327 additions and 209 deletions

View File

@@ -99,7 +99,7 @@ return [
| in the Messages tab.
|
*/
'error_handler' => true,
'error_handler' => true,
/*
|--------------------------------------------------------------------------
@@ -110,7 +110,7 @@ return [
| Extension, without the server-side code. It uses Debugbar collectors instead.
|
*/
'clockwork' => false,
'clockwork' => false,
/*
|--------------------------------------------------------------------------
@@ -156,20 +156,21 @@ return [
*/
'options' => [
'auth' => [
'auth' => [
'show_name' => true, // Also show the users name/email in the debugbar
],
'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.
'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+
'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.
'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+
],
'hints' => true, // Show hints for common mistakes
'hints' => true, // Show hints for common mistakes
],
'mail' => [
'mail' => [
'full_log' => false,
],
'views' => [
@@ -178,7 +179,7 @@ return [
'route' => [
'label' => true, // show complete route on bar
],
'logs' => [
'logs' => [
'file' => null,
],
'cache' => [
@@ -197,7 +198,7 @@ return [
|
*/
'inject' => true,
'inject' => true,
/*
|--------------------------------------------------------------------------