flare.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. ],
  32. /*
  33. |--------------------------------------------------------------------------
  34. | Reporting Log statements
  35. |--------------------------------------------------------------------------
  36. |
  37. | If this setting is `false` log statements won't be send as events to Flare,
  38. | no matter which error level you specified in the Flare log channel.
  39. |
  40. */
  41. 'send_logs_as_events' => true,
  42. ];