|
33 | 33 | |
|
34 | 34 | */
|
35 | 35 | 'storage' => [
|
36 |
| - 'enabled' => true, |
37 |
| - 'driver' => 'file', // redis, file, pdo, socket, custom |
38 |
| - 'path' => storage_path('debugbar'), // For file driver |
| 36 | + 'enabled' => true, |
| 37 | + 'driver' => 'file', // redis, file, pdo, socket, custom |
| 38 | + 'path' => storage_path('debugbar'), // For file driver |
39 | 39 | 'connection' => null, // Leave null for default connection (Redis/PDO)
|
40 |
| - 'provider' => '', // Instance of StorageInterface for custom driver |
41 |
| - 'hostname' => '127.0.0.1', // Hostname to use with the "socket" driver |
42 |
| - 'port' => 2304, // Port to use with the "socket" driver |
| 40 | + 'provider' => '', // Instance of StorageInterface for custom driver |
| 41 | + 'hostname' => '127.0.0.1', // Hostname to use with the "socket" driver |
| 42 | + 'port' => 2304, // Port to use with the "socket" driver |
43 | 43 | ],
|
44 | 44 |
|
45 | 45 | /*
|
|
149 | 149 | */
|
150 | 150 |
|
151 | 151 | 'collectors' => [
|
152 |
| - 'phpinfo' => true, // Php version |
153 |
| - 'messages' => true, // Messages |
154 |
| - 'time' => true, // Time Datalogger |
155 |
| - 'memory' => true, // Memory usage |
156 |
| - 'exceptions' => true, // Exception displayer |
157 |
| - 'log' => true, // Logs from Monolog (merged in messages if enabled) |
158 |
| - 'db' => true, // Show database (PDO) queries and bindings |
159 |
| - 'views' => true, // Views with their data |
160 |
| - 'route' => true, // Current route information |
161 |
| - 'auth' => false, // Display Laravel authentication status |
162 |
| - 'gate' => true, // Display Laravel Gate checks |
163 |
| - 'session' => true, // Display session data |
| 152 | + 'phpinfo' => true, // Php version |
| 153 | + 'messages' => true, // Messages |
| 154 | + 'time' => true, // Time Datalogger |
| 155 | + 'memory' => true, // Memory usage |
| 156 | + 'exceptions' => true, // Exception displayer |
| 157 | + 'log' => true, // Logs from Monolog (merged in messages if enabled) |
| 158 | + 'db' => true, // Show database (PDO) queries and bindings |
| 159 | + 'views' => true, // Views with their data |
| 160 | + 'route' => true, // Current route information |
| 161 | + 'auth' => false, // Display Laravel authentication status |
| 162 | + 'gate' => true, // Display Laravel Gate checks |
| 163 | + 'session' => true, // Display session data |
164 | 164 | 'symfony_request' => true, // Only one can be enabled..
|
165 |
| - 'mail' => true, // Catch mail messages |
166 |
| - 'laravel' => false, // Laravel version and environment |
167 |
| - 'events' => false, // All events fired |
| 165 | + 'mail' => true, // Catch mail messages |
| 166 | + 'laravel' => false, // Laravel version and environment |
| 167 | + 'events' => false, // All events fired |
168 | 168 | 'default_request' => false, // Regular or special Symfony request logger
|
169 |
| - 'logs' => false, // Add the latest log messages |
170 |
| - 'files' => false, // Show the included files |
171 |
| - 'config' => false, // Display config settings |
172 |
| - 'cache' => false, // Display cache events |
173 |
| - 'models' => true, // Display models |
174 |
| - 'livewire' => true, // Display Livewire (when available) |
| 169 | + 'logs' => false, // Add the latest log messages |
| 170 | + 'files' => false, // Show the included files |
| 171 | + 'config' => false, // Display config settings |
| 172 | + 'cache' => false, // Display cache events |
| 173 | + 'models' => true, // Display models |
| 174 | + 'livewire' => true, // Display Livewire (when available) |
175 | 175 | ],
|
176 | 176 |
|
177 | 177 | /*
|
|
188 | 188 | 'show_name' => true, // Also show the users name/email in the debugbar
|
189 | 189 | ],
|
190 | 190 | 'db' => [
|
191 |
| - 'with_params' => true, // Render SQL with the parameters substituted |
192 |
| - 'backtrace' => true, // Use a backtrace to find the origin of the query in your files. |
| 191 | + 'with_params' => true, // Render SQL with the parameters substituted |
| 192 | + 'backtrace' => true, // Use a backtrace to find the origin of the query in your files. |
193 | 193 | 'backtrace_exclude_paths' => [], // Paths to exclude from backtrace. (in addition to defaults)
|
194 |
| - 'timeline' => false, // Add the queries to the timeline |
195 |
| - 'duration_background' => true, // Show shaded background on each query relative to how long it took to execute. |
| 194 | + 'timeline' => false, // Add the queries to the timeline |
| 195 | + 'duration_background' => true, // Show shaded background on each query relative to how long it took to execute. |
196 | 196 | 'explain' => [ // Show EXPLAIN output on queries
|
197 | 197 | 'enabled' => false,
|
198 | 198 | 'types' => ['SELECT'], // Deprecated setting, is always only SELECT
|
199 | 199 | ],
|
200 |
| - 'hints' => false, // Show hints for common mistakes |
201 |
| - 'show_copy' => false, // Show copy button next to the query |
| 200 | + 'hints' => false, // Show hints for common mistakes |
| 201 | + 'show_copy' => false, // Show copy button next to the query |
202 | 202 | ],
|
203 | 203 | 'mail' => [
|
204 | 204 | 'full_log' => false,
|
|
0 commit comments