2017 © Pedro Peláez
 

library laravel-raygun

Laravel wrapper for raygun

image

davibennun/laravel-raygun

Laravel wrapper for raygun

  • Wednesday, July 8, 2015
  • by DaviBenNun
  • Repository
  • 2 Watchers
  • 4 Stars
  • 51,508 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 4 Forks
  • 3 Open issues
  • 2 Versions
  • 7 % Grown

The README.md

Installation

Update your composer.json file to include this package as a dependency, (*1)

Laravel 4, (*2)

"davibennun/laravel-raygun": "dev-master"

Laravel 5, (*3)

"davibennun/laravel-raygun": "dev-laravel5"

Register the Raygun service provider by adding it to the providers array., (*4)

Davibennun\LaravelRaygun\LaravelRaygunServiceProvider

Alias the Raygun facade by adding it to the aliases array., (*5)

'aliases' => array(
    'Raygun' => 'Davibennun\LaravelRaygun\Facades\Raygun'
)

Configuration

Copy the config file into your project by running, (*6)

Laravel 4, (*7)

php artisan config:publish davibennun/laravel-raygun

Laravel 5, (*8)

php artisan vendor:publish --provider="Davibennun\LaravelRaygun\LaravelRaygunServiceProvider" --tag="config"

Edit the config file to include your app ID and secret key., (*9)

Usage

This Raygun class extends the Raygun PHP, so all the methods listed here http://github.com/MindscapeHQ/raygun4php are available., (*10)

App::error(function(Exception $exception)
{
    Raygun::sendException($exception);
});

The Versions

08/07 2015

dev-master

9999999-dev

Laravel wrapper for raygun

  Sources   Download

The Requires

 

by Avatar DaviBenNun

laravel raygun

08/07 2015

dev-laravel5

dev-laravel5

Laravel wrapper for raygun

  Sources   Download

The Requires

 

by Avatar DaviBenNun

laravel raygun