webkid/bugreporter

A php class for Laravel to send bug reports with data
269 1
Install
composer require webkid/bugreporter
Latest Version:1.3
PHP:>=5.5.9
License:MIT
Last Updated:Jul 3, 2017
Links: GitHub  ·  Packagist
Maintainer: _webkid

Installation (Laravel 5.x)

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=

Related Packages

alikhosravidev/laravel-verbose-validator

Adds a verbose/trace mode to the Laravel Validator for easier debugging of compl...

2 4
djereg/error-report

Detailed error report via e-mail for Laravel 4.

44 0
coliving/reportable

Reportable polymorphic Eloquent models for Laravel 8 through 13

28,725 1
rigor789/airbrake-laravel

Laravel package for the Airbrake API, which supports Errbit

36,514 16