drewjoh/sentry

There is no license information available for the latest version (0.2.0) of this package.

A PHP wrapper for Sentry

0.2.0 2012-11-20 18:06 UTC

This package is not auto-updated.

Last update: 2024-03-16 11:36:11 UTC


README

This is a simple wrapper class for the raven-php experimental PHP client for Sentry.

I prefer the use of simple static methods throughout my app for things like logging. This wrapper makes that workable, instead of having to make an instance of the client when you need it.

Usage

// Setup our class, with optional persistent tags
Sentry::setDSN('{YOUR_DSN}', array('php_version' => phpversion()) );

// Capture a message
$event_id = Sentry::captureMessage('my log message');

// Capture an exception
$event_id = Sentry::captureException($exception);

// Capture with one time use tags
Sentry::tags(array('test_tag' => 'true'));
Sentry::captureMessage('Test message 3 from Sentry class');

// Give the user feedback
echo "Sorry, there was an error! Your reference ID is " . $event_id;

Installation

Install with Composer

If you're using Composer to manage dependencies, you can add Raven with it.

{
    "require": {
        "drewjoh/Sentry": ">=0.1.0"
    }
}