oxcom / symfony-rollbar-bundle
Bundle for Symfony that integrates Rollbar tracker
Installs: 93 348
Dependents: 0
Suggesters: 0
Security: 0
Stars: 9
Watchers: 3
Forks: 30
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.6
- guzzlehttp/guzzle: ^6.3
- monolog/monolog: ^1.23
- rollbar/rollbar: ^1.8
- symfony/config: ^2.8|~3.0|~4.0|~4.1|~4.2
- symfony/console: ^2.8|~3.0|~4.0|~4.1|~4.2
- symfony/dependency-injection: ^2.8|~3.0|~4.0|~4.1|~4.2
- symfony/http-kernel: ^2.8|~3.0|~4.0|~4.1|~4.2
- symfony/polyfill-mbstring: ^1.7
Requires (Dev)
- doctrine/doctrine-fixtures-bundle: ^2.3
- matthiasnoback/symfony-dependency-injection-test: ^1.2||^2.3
- phpunit/phpunit: ^5.7 || ^6.5
- squizlabs/php_codesniffer: ^3.2
- symfony/phpunit-bridge: ^4.0
- twig/twig: ^1.38||^2.7
README
Bundle for Symfony Framework (2.8.x, 3.x, 4.x) that integrates Rollbar tracker
Find more documentation here
Install
- 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:
\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.