forked from WangNingkai/OLAINDEX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtracy.php
33 lines (32 loc) · 773 Bytes
/
tracy.php
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
<?php
return [
'enabled' => env('APP_DEBUG') === true,
'showBar' => env('APP_ENV') !== 'production',
'showException' => true,
'route' => [
'prefix' => 'tracy',
'as' => 'tracy.',
],
'accepts' => [
'text/html',
],
'appendTo' => 'body',
'editor' => 'subl://open?url=file://%file&line=%line',
'maxDepth' => 4,
'maxLength' => 1000,
'scream' => true,
'showLocation' => true,
'strictMode' => true,
'editorMapping' => [],
'panels' => [
'routing' => true,
'database' => true,
'view' => true,
'event' => false,
'session' => true,
'request' => true,
'auth' => true,
'html-validator' => false,
'terminal' => true,
],
];