-
Notifications
You must be signed in to change notification settings - Fork 566
Expand file tree
/
Copy pathapp.example.php
More file actions
73 lines (66 loc) · 2.17 KB
/
app.example.php
File metadata and controls
73 lines (66 loc) · 2.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
/**
* DebugKit configuration options.
*
* Copy this file to your application's config directory and include it
* in your bootstrap or application configuration.
*
* All options shown below use their default values.
*/
return [
'DebugKit' => [
/**
* Enable or disable panels for DebugKit. You can disable any of the
* standard panels by setting them to false.
*
* Example: ['DebugKit.Packages' => false]
*/
// 'panels' => [],
/**
* Set to true to enable logging of schema reflection queries.
* Disabled by default.
*/
// 'includeSchemaReflection' => false,
/**
* Set an array of whitelisted TLDs for local development.
* This can be used to make sure DebugKit displays on hosts
* it otherwise determines unsafe.
*
* Example: ['test', 'local', 'example']
*/
// 'safeTld' => [],
/**
* Force DebugKit to display. Careful with this, it is usually
* safer to simply whitelist your local TLDs.
*
* Can also be set to a callable that returns a boolean.
* Example: function() { return $_SERVER['REMOTE_ADDR'] === '192.168.2.182'; }
*/
// 'forceEnable' => false,
/**
* Regex pattern (including delimiter) to ignore paths.
* DebugKit won't save data for request URLs that match this regex.
*
* Example: '/\.(jpg|png|gif)$/'
*/
// 'ignorePathsPattern' => null,
/**
* Defines how many levels of nested data should be shown in general
* for debug output.
*
* WARNING: Increasing the max depth level can lead to an out of memory error.
*/
// 'maxDepth' => 5,
/**
* Defines how many levels of nested data should be shown in the
* variables tab.
*
* WARNING: Increasing the max depth level can lead to an out of memory error.
*/
// 'variablesPanelMaxDepth' => 5,
/**
* Number of requests to keep in history panel.
*/
// 'requestCount' => 20,
],
];