-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlarvabug.php
44 lines (37 loc) · 984 Bytes
/
larvabug.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
34
35
36
37
38
39
40
41
42
43
44
<?php
return [
/*
* Id of project from larvabug.com
*
*/
'project_id' => env('LB_PROJECT_ID',''),
/*
* Project secret from larvabug.com
*
*/
'project_secret' => env('LB_SECRET',''),
/*
* Array of environments to enable error reporting
* If environment configured in the array will match with the laravel app environment
* then error will be reported to larvabug.com
*
*/
'environment' => ['production','local'],
/*
* Mention any error that should skip from reporting to laravbug
* Must be mentioned as a string
*
*/
'skip_errors' => [
'Symfony\Component\HttpKernel\Exception\NotFoundHttpException',
],
/*
* Add request parameters to be black listed
* any parameter defined here will not be reported to larvabug.com and
* all request, session and cookies will be filtered
*
*/
'blacklist' => [
'password'
]
];