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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package raven

Laravel Raven

Build Status Coverage Status

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'.

rollbar

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:


All versions of raven with dependencies

PHP Build Version
Package Version
Requires php Version >=5.4
illuminate/support Version ^4.0|^5.0
sentry/sentry Version ^1.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package jenssegers/raven contains the following files

Loading the files please wait ....