2017 © Pedro Peláez
 

library bugreporter

A php class for Laravel to send bug reports with data

image

webkid/bugreporter

A php class for Laravel to send bug reports with data

  • Monday, July 3, 2017
  • by _webkid
  • Repository
  • 1 Watchers
  • 2 Stars
  • 263 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

Installation (Laravel 5.x)

Run:, (*1)

composer require webkid/bugreporter

Add the service provider to config/app.php under providers:, (*2)

'providers' => [
    Webkid\BugReporter\BugReporterServiceProvider::class,
]

Publish Config, (*3)

php artisan vendor:publish --provider="Webkid\BugReporter\BugReporterServiceProvider"

Update config file:, (*4)

config/bugreports.php

Update app/Exceptions/Handler.php file:, (*5)

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:, (*6)

UKIE_REPORTS_ENABLE=true
UKIE_REPORTS_URL=
UKIE_REPORTS_TOKEN=

The Versions

03/07 2017

dev-master

9999999-dev

A php class for Laravel to send bug reports with data

  Sources   Download

MIT

The Requires

 

laravel report bug ukietech

03/07 2017

1.3

1.3.0.0

A php class for Laravel to send bug reports with data

  Sources   Download

MIT

The Requires

 

laravel report bug ukietech

10/05 2016

1.2

1.2.0.0

A php class for Laravel to send bug reports with data

  Sources   Download

MIT

The Requires

 

laravel report bug ukietech

07/05 2016

1.1

1.1.0.0

A php class for Laravel to send bug reports with data

  Sources   Download

MIT

The Requires

 

laravel report bug ukietech