oxcom/symfony-rollbar-bundle

Bundle for Symfony that integrates Rollbar tracker

Installs: 92 171

Dependents: 0

Suggesters: 0

Security: 0

Stars: 9

Watchers: 3

Forks: 30

Open Issues: 0

Type:symfony-bundle

v2.3.0 2019-05-28 09:43 UTC

This package is auto-updated.

Last update: 2024-03-21 13:37:24 UTC


README

Latest Stable Version Total Downloads codecov Build Status Software License

Bundle for Symfony Framework (2.8.x, 3.x, 4.x) that integrates Rollbar tracker

Find more documentation here

Install

  1. Add bundle as dependency
    $ composer require oxcom/symfony-rollbar-bundle
  2. Provide configuration for it
    symfony_rollbar:
            enable: true
            exclude:
                - \AppBundle\Exceptions\MyAwesomeException
            rollbar:
                access_token: 'some-secret-token-here'
            rollbar_js:
                access_token: 'some-public-token-here'
  3. Load bundle for 4.x:
    \SymfonyRollbarBundle\SymfonyRollbarBundle::class => ['all' => true]
    or for 2.8.x and 3.x
    $bundles = [
        // ...
        new \SymfonyRollbarBundle\SymfonyRollbarBundle(),
        // ...
    ];

Bugs and Issues

Please, if You found a bug or something, that is not working properly, contact me and tell what's wrong. It's nice to have an example how to reproduce a bug, or any idea how to fix it in Your request. I'll take care about it ASAP.