dev-master
9999999-devRollbar integration for Laravel
MIT
The Requires
- rollbar/rollbar 0.9.*
- php >=5.3.0
- illuminate/support >=4.1,<4.4
The Development Requires
by TSUJITA shou
laravel debug log exception tracking error monitoring rollbar
Wallogit.com
2017 © Pedro Peláez
Rollbar integration for Laravel
Add atijust/laravel-rollbar to your composer.json:, (*2)
{
"require": {
"atijust/laravel-rollbar": "dev-master"
}
}
Add the service provider in app/config/app.php:, (*3)
'Atijust\LaravelRollbar\LaravelRollbarServiceProvider',
Publish the configuration file:, (*4)
php artisan config:publish atijust/laravel-rollbar
Add your rollbar access token in app/config/packages/atijust/laravel-rollbar/config.php:, (*5)
'access_token' => 'your rollbar access token',
// to report exceptions
Log::error($exception);
// to send log-like messages
Log::info('message', ['foo' => 'bar']);
Rollbar integration for Laravel
MIT
laravel debug log exception tracking error monitoring rollbar