| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-03 08:15:09 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  |  * debugbar.php | 
					
						
							|  |  |  |  * Copyright (c) 2025 james@firefly-iii.org. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This file is part of Firefly III (https://github.com/firefly-iii). | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU Affero General Public License as | 
					
						
							|  |  |  |  * published by the Free Software Foundation, either version 3 of the | 
					
						
							|  |  |  |  * License, or (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU Affero General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  |  * along with this program.  If not, see https://www.gnu.org/licenses/. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  | declare(strict_types=1); | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  | return [ | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  |     /* | 
					
						
							|  |  |  |      |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |      | Debugbar Settings | 
					
						
							|  |  |  |      |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |      | | 
					
						
							|  |  |  |      | Debugbar is enabled by default, when debug is set to true in app.php. | 
					
						
							|  |  |  |      | You can override the value by setting enable to true or false instead of null. | 
					
						
							|  |  |  |      | | 
					
						
							|  |  |  |      | You can provide an array of URI's that must be ignored (eg. 'api/*') | 
					
						
							|  |  |  |      | | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  |     'enabled'                 => env('DEBUGBAR_ENABLED', null), | 
					
						
							|  |  |  |     'except'                  => [ | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  |         'telescope*', | 
					
						
							|  |  |  |         'horizon*', | 
					
						
							|  |  |  |     ], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* | 
					
						
							|  |  |  |      |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |      | Storage settings | 
					
						
							|  |  |  |      |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |      | | 
					
						
							|  |  |  |      | DebugBar stores data for session/ajax requests. | 
					
						
							|  |  |  |      | You can disable this, so the debugbar stores data in headers/session, | 
					
						
							|  |  |  |      | but this can cause problems with large data collectors. | 
					
						
							|  |  |  |      | By default, file storage (in the storage folder) is used. Redis and PDO | 
					
						
							|  |  |  |      | can also be used. For PDO, run the package migrations first. | 
					
						
							|  |  |  |      | | 
					
						
							|  |  |  |      | Warning: Enabling storage.open will allow everyone to access previous | 
					
						
							|  |  |  |      | request, do not enable open storage in publicly available environments! | 
					
						
							|  |  |  |      | Specify a callback if you want to limit based on IP or authentication. | 
					
						
							|  |  |  |      | Leaving it to null will allow localhost only. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  |     'storage'                 => [ | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  |         'enabled'    => true, | 
					
						
							|  |  |  |         'open'       => env('DEBUGBAR_OPEN_STORAGE'), // bool/callback.
 | 
					
						
							|  |  |  |         'driver'     => 'file', // redis, file, pdo, socket, custom
 | 
					
						
							|  |  |  |         'path'       => storage_path('debugbar'), // For file driver
 | 
					
						
							|  |  |  |         'connection' => null,   // Leave null for default connection (Redis/PDO)
 | 
					
						
							|  |  |  |         'provider'   => '', // Instance of StorageInterface for custom driver
 | 
					
						
							|  |  |  |         'hostname'   => '127.0.0.1', // Hostname to use with the "socket" driver
 | 
					
						
							|  |  |  |         'port'       => 2304, // Port to use with the "socket" driver
 | 
					
						
							|  |  |  |     ], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* | 
					
						
							|  |  |  |     |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |     | Editor | 
					
						
							|  |  |  |     |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |     | | 
					
						
							|  |  |  |     | Choose your preferred editor to use when clicking file name. | 
					
						
							|  |  |  |     | | 
					
						
							|  |  |  |     | Supported: "phpstorm", "vscode", "vscode-insiders", "vscode-remote", | 
					
						
							|  |  |  |     |            "vscode-insiders-remote", "vscodium", "textmate", "emacs", | 
					
						
							|  |  |  |     |            "sublime", "atom", "nova", "macvim", "idea", "netbeans", | 
					
						
							|  |  |  |     |            "xdebug", "espresso" | 
					
						
							|  |  |  |     | | 
					
						
							|  |  |  |     */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-23 19:40:48 +02:00
										 |  |  |     'editor'                  => env('DEBUGBAR_EDITOR') ?? env('IGNITION_EDITOR', 'phpstorm'), | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* | 
					
						
							|  |  |  |     |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |     | Remote Path Mapping | 
					
						
							|  |  |  |     |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |     | | 
					
						
							|  |  |  |     | If you are using a remote dev server, like Laravel Homestead, Docker, or | 
					
						
							|  |  |  |     | even a remote VPS, it will be necessary to specify your path mapping. | 
					
						
							|  |  |  |     | | 
					
						
							|  |  |  |     | Leaving one, or both of these, empty or null will not trigger the remote | 
					
						
							|  |  |  |     | URL changes and Debugbar will treat your editor links as local files. | 
					
						
							|  |  |  |     | | 
					
						
							|  |  |  |     | "remote_sites_path" is an absolute base path for your sites or projects | 
					
						
							|  |  |  |     | in Homestead, Vagrant, Docker, or another remote development server. | 
					
						
							|  |  |  |     | | 
					
						
							|  |  |  |     | Example value: "/home/vagrant/Code" | 
					
						
							|  |  |  |     | | 
					
						
							|  |  |  |     | "local_sites_path" is an absolute base path for your sites or projects | 
					
						
							|  |  |  |     | on your local computer where your IDE or code editor is running on. | 
					
						
							|  |  |  |     | | 
					
						
							|  |  |  |     | Example values: "/Users/<name>/Code", "C:\Users\<name>\Documents\Code" | 
					
						
							|  |  |  |     | | 
					
						
							|  |  |  |     */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  |     'remote_sites_path'       => env('DEBUGBAR_REMOTE_SITES_PATH'), | 
					
						
							|  |  |  |     'local_sites_path'        => env('DEBUGBAR_LOCAL_SITES_PATH', env('IGNITION_LOCAL_SITES_PATH')), | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* | 
					
						
							|  |  |  |      |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |      | Vendors | 
					
						
							|  |  |  |      |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |      | | 
					
						
							|  |  |  |      | Vendor files are included by default, but can be set to false. | 
					
						
							|  |  |  |      | This can also be set to 'js' or 'css', to only include javascript or css vendor files. | 
					
						
							|  |  |  |      | Vendor files are for css: font-awesome (including fonts) and highlight.js (css files) | 
					
						
							|  |  |  |      | and for js: jquery and highlight.js | 
					
						
							|  |  |  |      | So if you want syntax highlighting, set it to true. | 
					
						
							|  |  |  |      | jQuery is set to not conflict with existing jQuery scripts. | 
					
						
							|  |  |  |      | | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  |     'include_vendors'         => true, | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* | 
					
						
							|  |  |  |      |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |      | Capture Ajax Requests | 
					
						
							|  |  |  |      |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |      | | 
					
						
							|  |  |  |      | The Debugbar can capture Ajax requests and display them. If you don't want this (ie. because of errors), | 
					
						
							|  |  |  |      | you can use this option to disable sending the data through the headers. | 
					
						
							|  |  |  |      | | 
					
						
							|  |  |  |      | Optionally, you can also send ServerTiming headers on ajax requests for the Chrome DevTools. | 
					
						
							|  |  |  |      | | 
					
						
							|  |  |  |      | Note for your request to be identified as ajax requests they must either send the header | 
					
						
							|  |  |  |      | X-Requested-With with the value XMLHttpRequest (most JS libraries send this), or have application/json as a Accept header. | 
					
						
							|  |  |  |      | | 
					
						
							|  |  |  |      | By default `ajax_handler_auto_show` is set to true allowing ajax requests to be shown automatically in the Debugbar. | 
					
						
							|  |  |  |      | Changing `ajax_handler_auto_show` to false will prevent the Debugbar from reloading. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  |     'capture_ajax'            => true, | 
					
						
							|  |  |  |     'add_ajax_timing'         => false, | 
					
						
							|  |  |  |     'ajax_handler_auto_show'  => true, | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  |     'ajax_handler_enable_tab' => true, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* | 
					
						
							|  |  |  |      |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |      | Custom Error Handler for Deprecated warnings | 
					
						
							|  |  |  |      |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |      | | 
					
						
							|  |  |  |      | When enabled, the Debugbar shows deprecated warnings for Symfony components | 
					
						
							|  |  |  |      | in the Messages tab. | 
					
						
							|  |  |  |      | | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  |     'error_handler'           => false, | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* | 
					
						
							|  |  |  |      |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |      | Clockwork integration | 
					
						
							|  |  |  |      |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |      | | 
					
						
							|  |  |  |      | The Debugbar can emulate the Clockwork headers, so you can use the Chrome | 
					
						
							|  |  |  |      | Extension, without the server-side code. It uses Debugbar collectors instead. | 
					
						
							|  |  |  |      | | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  |     'clockwork'               => false, | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* | 
					
						
							|  |  |  |      |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |      | DataCollectors | 
					
						
							|  |  |  |      |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |      | | 
					
						
							|  |  |  |      | Enable/disable DataCollectors | 
					
						
							|  |  |  |      | | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  |     'collectors'              => [ | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  |         'phpinfo'         => true,  // Php version
 | 
					
						
							|  |  |  |         'messages'        => true,  // Messages
 | 
					
						
							|  |  |  |         'time'            => true,  // Time Datalogger
 | 
					
						
							|  |  |  |         'memory'          => true,  // Memory usage
 | 
					
						
							|  |  |  |         'exceptions'      => true,  // Exception displayer
 | 
					
						
							|  |  |  |         'log'             => true,  // Logs from Monolog (merged in messages if enabled)
 | 
					
						
							|  |  |  |         'db'              => true,  // Show database (PDO) queries and bindings
 | 
					
						
							|  |  |  |         'views'           => true,  // Views with their data
 | 
					
						
							|  |  |  |         'route'           => true,  // Current route information
 | 
					
						
							|  |  |  |         'auth'            => false, // Display Laravel authentication status
 | 
					
						
							|  |  |  |         'gate'            => true,  // Display Laravel Gate checks
 | 
					
						
							|  |  |  |         'session'         => true,  // Display session data
 | 
					
						
							|  |  |  |         'symfony_request' => true,  // Only one can be enabled..
 | 
					
						
							|  |  |  |         'mail'            => true,  // Catch mail messages
 | 
					
						
							|  |  |  |         'laravel'         => false, // Laravel version and environment
 | 
					
						
							|  |  |  |         'events'          => false, // All events fired
 | 
					
						
							|  |  |  |         'default_request' => false, // Regular or special Symfony request logger
 | 
					
						
							|  |  |  |         'logs'            => false, // Add the latest log messages
 | 
					
						
							|  |  |  |         'files'           => false, // Show the included files
 | 
					
						
							|  |  |  |         'config'          => false, // Display config settings
 | 
					
						
							|  |  |  |         'cache'           => false, // Display cache events
 | 
					
						
							|  |  |  |         'models'          => true,  // Display models
 | 
					
						
							|  |  |  |         'livewire'        => true,  // Display Livewire (when available)
 | 
					
						
							|  |  |  |         'jobs'            => false, // Display dispatched jobs
 | 
					
						
							|  |  |  |     ], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* | 
					
						
							|  |  |  |      |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |      | Extra options | 
					
						
							|  |  |  |      |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |      | | 
					
						
							|  |  |  |      | Configure some DataCollectors | 
					
						
							|  |  |  |      | | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  |     'options'                 => [ | 
					
						
							|  |  |  |         'time'            => [ | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  |             'memory_usage' => false,  // Calculated by subtracting memory start and end, it may be inaccurate
 | 
					
						
							|  |  |  |         ], | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  |         'messages'        => [ | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  |             'trace' => true,   // Trace the origin of the debug message
 | 
					
						
							|  |  |  |         ], | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  |         'memory'          => [ | 
					
						
							|  |  |  |             'reset_peak'    => false,     // run memory_reset_peak_usage before collecting
 | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  |             'with_baseline' => false,  // Set boot memory usage as memory peak baseline
 | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  |             'precision'     => 0,          // Memory rounding precision
 | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  |         ], | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  |         'auth'            => [ | 
					
						
							|  |  |  |             'show_name'   => true,   // Also show the users name/email in the debugbar
 | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  |             'show_guards' => true, // Show the guards that are used
 | 
					
						
							|  |  |  |         ], | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  |         '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.
 | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  |             'backtrace_exclude_paths' => [],   // Paths to exclude from backtrace. (in addition to defaults)
 | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  |             'timeline'                => false,  // Add the queries to the timeline
 | 
					
						
							|  |  |  |             'duration_background'     => true,   // Show shaded background on each query relative to how long it took to execute.
 | 
					
						
							|  |  |  |             'explain'                 => [                 // Show EXPLAIN output on queries
 | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  |                 'enabled' => false, | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  |                 'types'   => ['SELECT'],     // Deprecated setting, is always only SELECT
 | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  |             ], | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  |             'hints'                   => false,    // Show hints for common mistakes
 | 
					
						
							|  |  |  |             'show_copy'               => false,    // Show copy button next to the query,
 | 
					
						
							|  |  |  |             'slow_threshold'          => false,   // Only track queries that last longer than this time in ms
 | 
					
						
							|  |  |  |             'memory_usage'            => false,   // Show queries memory usage
 | 
					
						
							| 
									
										
										
										
											2024-07-26 04:19:49 +02:00
										 |  |  |             'soft_limit'              => 250,      // After the soft limit, no parameters/backtrace are captured
 | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  |             'hard_limit'              => 500,      // After the hard limit, queries are ignored
 | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  |         ], | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  |         'mail'            => [ | 
					
						
							|  |  |  |             'timeline'  => false,  // Add mails to the timeline
 | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  |             'show_body' => true, | 
					
						
							|  |  |  |         ], | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  |         'views'           => [ | 
					
						
							|  |  |  |             'timeline'      => false,    // Add the views to the timeline (Experimental)
 | 
					
						
							|  |  |  |             'data'          => false,        // true for all data, 'keys' for only names, false for no parameters.
 | 
					
						
							|  |  |  |             'group'         => 50,          // Group duplicate views. Pass value to auto-group, or true/false to force
 | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  |             'exclude_paths' => [    // Add the paths which you don't want to appear in the views
 | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  |                 'vendor/filament',   // Exclude Filament components by default
 | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  |             ], | 
					
						
							|  |  |  |         ], | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  |         'route'           => [ | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  |             'label' => true,  // show complete route on bar
 | 
					
						
							|  |  |  |         ], | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  |         'session'         => [ | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  |             'hiddens' => [], // hides sensitive values using array paths
 | 
					
						
							|  |  |  |         ], | 
					
						
							|  |  |  |         'symfony_request' => [ | 
					
						
							|  |  |  |             'hiddens' => [], // hides sensitive values using array paths, example: request_request.password
 | 
					
						
							|  |  |  |         ], | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  |         'events'          => [ | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  |             'data' => false, // collect events data, listeners
 | 
					
						
							|  |  |  |         ], | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  |         'logs'            => [ | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  |             'file' => null, | 
					
						
							|  |  |  |         ], | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  |         'cache'           => [ | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  |             'values' => true, // collect cache values
 | 
					
						
							|  |  |  |         ], | 
					
						
							|  |  |  |     ], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* | 
					
						
							|  |  |  |      |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |      | Inject Debugbar in Response | 
					
						
							|  |  |  |      |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |      | | 
					
						
							|  |  |  |      | Usually, the debugbar is added just before </body>, by listening to the | 
					
						
							|  |  |  |      | Response after the App is done. If you disable this, you have to add them | 
					
						
							|  |  |  |      | in your template yourself. See http://phpdebugbar.com/docs/rendering.html | 
					
						
							|  |  |  |      | | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  |     'inject'                  => true, | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* | 
					
						
							|  |  |  |      |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |      | DebugBar route prefix | 
					
						
							|  |  |  |      |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |      | | 
					
						
							|  |  |  |      | Sometimes you want to set route prefix to be used by DebugBar to load | 
					
						
							|  |  |  |      | its resources from. Usually the need comes from misconfigured web server or | 
					
						
							|  |  |  |      | from trying to overcome bugs like this: http://trac.nginx.org/nginx/ticket/97 | 
					
						
							|  |  |  |      | | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  |     'route_prefix'            => '_debugbar', | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* | 
					
						
							|  |  |  |      |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |      | DebugBar route middleware | 
					
						
							|  |  |  |      |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |      | | 
					
						
							|  |  |  |      | Additional middleware to run on the Debugbar routes | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  |     'route_middleware'        => [], | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* | 
					
						
							|  |  |  |      |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |      | DebugBar route domain | 
					
						
							|  |  |  |      |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |      | | 
					
						
							|  |  |  |      | By default DebugBar route served from the same domain that request served. | 
					
						
							|  |  |  |      | To override default domain, specify it as a non-empty value. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  |     'route_domain'            => null, | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* | 
					
						
							|  |  |  |      |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |      | DebugBar theme | 
					
						
							|  |  |  |      |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |      | | 
					
						
							|  |  |  |      | Switches between light and dark theme. If set to auto it will respect system preferences | 
					
						
							|  |  |  |      | Possible values: auto, light, dark | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  |     'theme'                   => env('DEBUGBAR_THEME', 'auto'), | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* | 
					
						
							|  |  |  |      |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |      | Backtrace stack limit | 
					
						
							|  |  |  |      |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |      | | 
					
						
							|  |  |  |      | By default, the DebugBar limits the number of frames returned by the 'debug_backtrace()' function. | 
					
						
							|  |  |  |      | If you need larger stacktraces, you can increase this number. Setting it to 0 will result in no limit. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2024-04-21 17:23:16 +02:00
										 |  |  |     'debug_backtrace_limit'   => 50, | 
					
						
							| 
									
										
										
										
											2024-04-21 06:56:14 +02:00
										 |  |  | ]; |