Download the PHP package steefaan/cakephp-bugsnag without Composer
On this page you can find all versions of the php package steefaan/cakephp-bugsnag. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download steefaan/cakephp-bugsnag
More information about steefaan/cakephp-bugsnag
Files in steefaan/cakephp-bugsnag
Package cakephp-bugsnag
Short Description Bugsnag log engine for CakePHP.
License MIT
Homepage http://github.com/steefaan/cakephp-bugsnag
Informations about the package cakephp-bugsnag
Bugsnag Plugin
Provides as custom log engine for Bugsnag.
Requirements
- CakePHP 3.x
- PHP 5.4.16 or greater
Installation
[Using Composer]
Enable plugin
Load the plugin in your app's config/bootstrap.php
file:
Configuration
Configure the API-Key for Bugsnag in your app's config/app.php
file:
Usage
Straight forward API usage for Bugsnag and a custom log engine for CakePHP makes it surprisingly easy to implement the plugin to a new or even to an existing project. As usual and described in CakePHP's documentation you can configure the log engine as follows:
For a complete list of all available options, please refer to Bugsnag's documentation. This plugin doesn't know any limitation, you can use all configuration settings which are listed in Bugsnag's documentation. Please keep in mind that you need to remove the set
prefix for each Bugsnag option. setFilters
becomes filters
, setReleaseStage
becomes releaseStage
and so on.
If you want to modify the Bugsnag notification before you send it to the their API, you can do this easily with an event listener. You only need to listen to the following event:
How you can listen to events is detailed described in Cake's documentation. This plugin comes with a ready to use Listener to provide you the best Bugsnag experience. I suggest to load this listener even if you write your own. You can configure the built in listener in your app's config/bootstrap.php
as follows: