Download the PHP package jenssegers/raven without Composer
On this page you can find all versions of the php package jenssegers/raven. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download jenssegers/raven
More information about jenssegers/raven
Files in jenssegers/raven
Package raven
Short Description Sentry (Raven) error monitoring integration for Laravel projects
License MIT
Homepage https://github.com/jenssegers/laravel-raven
Informations about the package raven
Laravel Raven
Sentry (Raven) error monitoring integration for Laravel projects. This library adds a listener to Laravel's logging component. Laravel's auth and session information will be sent in to Sentry's user context, as well as some other helpful tags such as 'environment', 'server', 'php_version' and 'ip'.
Installation
Install using composer:
Add the service provider in app/config/app.php
:
If you only want to enable Sentry reporting for certain environments you can conditionally load the service provider in your AppServiceProvider
:
Optional: register the Raven alias:
Configuration
This package supports configuration through environment variables and/or the services configuration file located in app/config/services.php
:
The level variable defines the minimum log level at which log messages are sent to Sentry. For development you could set this either to debug
to send all log messages, or to none
to sent no messages at all. For production you could set this to error
so that all info and debug messages are ignored.
For more information about the possible configuration variables, check https://github.com/getsentry/raven-php
Usage in Laravel
In Laravel, the service provider will automatically hook into Laravel's logger and send all messages matching the log level to Sentry.
If you want to send exceptions to Sentry, simply use the Log
facade:
For logging messages or exceptions, you can any of these methods: debug
, notice
, warning
, error
, critical
, alert
or emergency
.
Alternative usage
If you prefer dependency injection rather than calling the Log
facade, you can typehint the Jenssegers\Raven\RavenHandler
class in your controller methods:
Context informaton
The included context builder will automatically collect information about the current logged in user and the session information. If can pass additional user context information like this:
Or pass additional tags:
Or pass some extra information:
Usage in Lumen
Because Lumen uses a different way of handling logging, the service provider is unable to intercept actual exceptions. Instead you can use the included Raven
facade. First add the following to your bootstrap/app.php
:
Then add this to your exception handler in app/Exceptions/Handler.php
:
And: