Skip to content

Instantly share code, notes, and snippets.

@Sharifur
Created March 6, 2020 08:46
Show Gist options
  • Save Sharifur/114a3e2b2473a6f2f77e5af7df02c727 to your computer and use it in GitHub Desktop.
Save Sharifur/114a3e2b2473a6f2f77e5af7df02c727 to your computer and use it in GitHub Desktop.
Process class relies on proc_open, which is not available on your PHP installation.
It is because of Flare error reporting service enabled in debug mode
There is a workaround for this.
Publish flare config file
php artisan vendor:publish --tag=flare-config
and in config/flare.php
Set
'collect_git_information' => false
'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,
],
Thanks you very much! ♥
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment