staffim / rollbar-bundle
Bundle for Symfony2 that reports errors to Rollbar
Installs: 147 412
Dependents: 0
Suggesters: 0
Security: 0
Stars: 9
Watchers: 3
Forks: 10
Open Issues: 6
Type:bundle
Requires
- rollbar/rollbar: ~0.15
- symfony/debug: ~2.6|~3.0
- symfony/event-dispatcher: ~2.6|~3.0
- symfony/http-kernel: ~2.6|~3.0
- symfony/security-core: ~2.6|~3.0
Requires (Dev)
- phpspec/phpspec: ~2.3
- phpunit/phpunit: ~4.8
- symfony/framework-bundle: ~2.6|~3.0
- symfony/security-bundle: ~2.6|~3.0
README
About
Integrates Rollbar with your Symfony2 application.
Installation
Require the staffim/rollbar-bundle
package in your composer.json and update your dependencies.
$ composer require staffim/rollbar-bundle:*
Add the StaffimRollbarBundle to your application's kernel:
public function registerBundles() { $bundles = array( ... new Staffim\RollbarBundle\StaffimRollbarBundle(), ... ); ... }
Configuration
staffim_rollbar: # Rollbar access token access_token: ### # PHP error level (see http://php.net/manual/en/function.error-reporting.php) error_level: -1 # Values from scrub.parameters are replaced by the key for specified exceptions scrub: exceptions: - PDOException parameters: key: %key%