webkid / bugreporter
A php class for Laravel to send bug reports with data
1.3
2017-07-03 13:55 UTC
Requires
- php: >=5.5.9
- jenssegers/agent: ^3.0@dev
- laravel/framework: 5.*
This package is auto-updated.
Last update: 2024-11-15 05:54:51 UTC
README
Run:
composer require webkid/bugreporter
Add the service provider to config/app.php
under providers
:
'providers' => [
Webkid\BugReporter\BugReporterServiceProvider::class,
]
Publish Config
php artisan vendor:publish --provider="Webkid\BugReporter\BugReporterServiceProvider"
Update config file:
config/bugreports.php
Update app/Exceptions/Handler.php file:
public function report(Exception $e)
{
//fire bug report here
$bugReport = new Reporter();
$bugReport->sendReport($e);
//old code
return parent::report($e);
}
Also provide environment variables:
UKIE_REPORTS_ENABLE=true
UKIE_REPORTS_URL=
UKIE_REPORTS_TOKEN=