fortis / silex-bugsnag
Bugsnag error reporting integration for Silex 2
Installs: 165
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/fortis/silex-bugsnag
Requires
- php: >=5.5.9
- bugsnag/bugsnag: ^3.0
- silex/silex: ^2.0
This package is auto-updated.
Last update: 2021-02-13 14:27:33 UTC
README
#Silex 2 Service Provider for Bugsnag
Bugsnag captures errors in real-time from your web, mobile and desktop applications, helping you to understand and resolve them as fast as possible. Create a free account to start capturing errors from your applications.
Usage
Register
$app->register(new \Bugsnag\Silex\Provider\BugsnagServiceProvider, array( 'bugsnag.options' => array( 'apiKey' => '06615ad354054619aa3d601ea89af945' ) ));
Thats it, all exceptions will be sent to Bugsnag dashboard.
If you want to access the bugsnag client directly (for example, to configure it
or to send a crash report manually), you can use $app['bugsnag']
.