Bundle for Symfony Framework (2.8.x, 3.x, 4.x) that integrates Rollbar tracker
Find more documentation here
- Add bundle as dependency
$ composer require oxcom/symfony-rollbar-bundle
- 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'
- Load bundle for 4.x:
or for 2.8.x and 3.x
\SymfonyRollbarBundle\SymfonyRollbarBundle::class => ['all' => true]
$bundles = [ // ... new \SymfonyRollbarBundle\SymfonyRollbarBundle(), // ... ];
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.