Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fortis/silex-bugsnag
Silex 2 🌶 Service Provider for 🐞 bugsnag-php ^3.0 - OBSOLETE. Use official service provider https://github.com/bugsnag/bugsnag-silex
https://github.com/fortis/silex-bugsnag
Last synced: about 2 months ago
JSON representation
Silex 2 🌶 Service Provider for 🐞 bugsnag-php ^3.0 - OBSOLETE. Use official service provider https://github.com/bugsnag/bugsnag-silex
- Host: GitHub
- URL: https://github.com/fortis/silex-bugsnag
- Owner: fortis
- Created: 2016-08-03T19:11:23.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-08-05T09:45:13.000Z (over 8 years ago)
- Last Synced: 2024-10-16T08:41:22.747Z (2 months ago)
- Language: PHP
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
#Silex 2 Service Provider for Bugsnag
[Bugsnag](https://bugsnag.com) 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](https://bugsnag.com) to start
capturing errors from your applications.## Usage
### Register```php
$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']`.