You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
1.9 KiB

3 years ago
  1. <?php
  2. return [
  3. /*
  4. |
  5. |--------------------------------------------------------------------------
  6. | Flare API key
  7. |--------------------------------------------------------------------------
  8. |
  9. | Specify Flare's API key below to enable error reporting to the service.
  10. |
  11. | More info: https://flareapp.io/docs/general/projects
  12. |
  13. */
  14. 'key' => env('FLARE_KEY'),
  15. /*
  16. |--------------------------------------------------------------------------
  17. | Reporting Options
  18. |--------------------------------------------------------------------------
  19. |
  20. | These options determine which information will be transmitted to Flare.
  21. |
  22. */
  23. 'reporting' => [
  24. 'anonymize_ips' => true,
  25. 'collect_git_information' => false,
  26. 'report_queries' => true,
  27. 'maximum_number_of_collected_queries' => 200,
  28. 'report_query_bindings' => true,
  29. 'report_view_data' => true,
  30. 'grouping_type' => null,
  31. 'report_logs' => true,
  32. 'maximum_number_of_collected_logs' => 200,
  33. 'censor_request_body_fields' => ['password'],
  34. ],
  35. /*
  36. |--------------------------------------------------------------------------
  37. | Reporting Log statements
  38. |--------------------------------------------------------------------------
  39. |
  40. | If this setting is `false` log statements won't be sent as events to Flare,
  41. | no matter which error level you specified in the Flare log channel.
  42. |
  43. */
  44. 'send_logs_as_events' => true,
  45. /*
  46. |--------------------------------------------------------------------------
  47. | Censor request body fields
  48. |--------------------------------------------------------------------------
  49. |
  50. | These fields will be censored from your request when sent to Flare.
  51. |
  52. */
  53. 'censor_request_body_fields' => ['password'],
  54. ];