Download the PHP package maartenvr98/cakephp-bugsnag without Composer
On this page you can find all versions of the php package maartenvr98/cakephp-bugsnag. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download maartenvr98/cakephp-bugsnag
More information about maartenvr98/cakephp-bugsnag
Files in maartenvr98/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 4.x
- PHP 8.x
Installation
[Using Composer]
Enable plugin
Load the plugin in your app's src/Application
file:
Configuration
Configure the API-Key for Bugsnag in your app's config/app.php
file:
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.
Events
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: