From 8042c4ffc15614a9180ecc5597c7c587ce51fbde Mon Sep 17 00:00:00 2001 From: Nabeel S Date: Thu, 5 Dec 2019 14:17:36 -0500 Subject: [PATCH] Avoid proc_open use #455 (#456) --- config/flare.php | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 config/flare.php diff --git a/config/flare.php b/config/flare.php new file mode 100644 index 00000000..af23d9f6 --- /dev/null +++ b/config/flare.php @@ -0,0 +1,48 @@ + env('FLARE_KEY'), + + /* + |-------------------------------------------------------------------------- + | Reporting Options + |-------------------------------------------------------------------------- + | + | These options determine which information will be transmitted to Flare. + | + */ + + 'reporting' => [ + 'anonymize_ips' => true, + 'collect_git_information' => false, + 'report_queries' => true, + 'maximum_number_of_collected_queries' => 200, + 'report_query_bindings' => true, + 'report_view_data' => true, + 'grouping_type' => null, + ], + + /* + |-------------------------------------------------------------------------- + | Reporting Log statements + |-------------------------------------------------------------------------- + | + | If this setting is `false` log statements won't be send as events to Flare, + | no matter which error level you specified in the Flare log channel. + | + */ + + 'send_logs_as_events' => true, +];