2017 © Pedro Peláez
 

project lumberjack-sentry-service-provider

A Service Provider for the Lumberjack framework that adds a Sentry integration.

image

iceagency/lumberjack-sentry-service-provider

A Service Provider for the Lumberjack framework that adds a Sentry integration.

  • Friday, July 27, 2018
  • by theiceagency
  • Repository
  • 0 Watchers
  • 0 Stars
  • 8 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Sentry Service Provider for Lumberjack

Latest Stable Version CI Coveralls Total Downloads License, (*1)

A Service Provider for the Lumberjack framework that allows simple integration to Sentry., (*2)

Written & maintained by the team at The ICE Agency, (*3)

Requirements

Installing

  1. Install Lumberjack, see the guide here.
  2. Install via Composer: composer require iceagency/lumberjack-sentry-service-provider

Getting Started

  1. Create a config file called config/sentry.php
  2. Add the following:
<?php
return [
    'enabled' => getenv('SENTRY_ENABLED'),
    'dsn' => getenv('SENTRY_DSN')
];
  1. Add your Sentry DSN to your .env
SENTRY_DSN=https://public:secret@sentry.example.com/1
  1. Add the Service Provider to the Providers array in config/app.php as follows:
'providers' => [
    ...
    IceAgency\Lumberjack\Providers\SentryServiceProvider::class,
    ...
],

Usage

By default, Sentry will automatically be sent exceptions, to disable Sentry for a specific environment, add this following to your .env, (*4)

SENTRY_ENABLED=false

The Versions

27/07 2018

dev-master

9999999-dev https://github.com/ICEAgency/lumberjack-sentry-service-provider

A Service Provider for the Lumberjack framework that adds a Sentry integration.

  Sources   Download

MIT

The Requires

 

27/07 2018

1.0.7

1.0.7.0 https://github.com/ICEAgency/lumberjack-sentry-service-provider

A Service Provider for the Lumberjack framework that adds a Sentry integration.

  Sources   Download

MIT

The Requires