label305 / bugsnag-cakephp
Bugsnag Notifier for CakePHP applications
Installs: 30 465
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 10
Forks: 6
Type:cakephp-plugin
Requires
- bugsnag/bugsnag: 2.*
This package is not auto-updated.
Last update: 2020-01-24 15:24:57 UTC
README
This plugin allows you to use Bugsnag with CakePHP projects. Get notified when your application breaks and view detailed logs and stack traces on specific exceptions and errors.
The BugsnagErrorHandler
class extends the default CakePHP ErrorHandler
so the functions of the built in class continue to work.
Quick Start
Use one of the following methods to include this library in your project.
Once you've included this library you should modify: app/Config/core.php
. Make sure to enter your own API key.
Configure::write('BugsnagCakephp.apikey', '{yourbugsnagapikey}'); Configure::write('Exception', array( 'handler' => 'BugsnagErrorHandler::handleException', 'renderer' => 'ExceptionRenderer', 'log' => true )); Configure::write('Error', array( 'handler' => 'BugsnagErrorHandler::handleError', 'level' => E_ALL & ~E_DEPRECATED, 'trace' => true ));
And make sure the plugin is loaded by adding the following line to: app/Config/bootstrap.php
.
// place after the 'require' statement for the Bugsnag library. App::uses('BugsnagErrorHandler', 'BugsnagCakephp.Lib');
Install with Composer
-
Modify
composer.json
to include the following lines:"require": { "label305/bugsnag-cakephp": "0.1.*" }, ... "extra": { "installer-paths": { "app/Plugin/{$name}/": ["label305/bugsnag-cakephp"] } }
-
And run
composer update
. -
Require the Bugsnag PHP library in
app/Config/bootstrap.php
.require ROOT . DS . 'vendor' . DS . 'bugsnag' . DS . 'bugsnag' . DS . 'build' . DS . 'bugsnag.phar';
Install by placing
-
Place the files from this repository in
app/Plugin/BugsnagCakephp
-
Download the latest bugsnag.phar to your PHP project.
-
Require it in
app/Config/bootstrap.php
.require_once 'path' . DS . 'to' . DS . 'bugsnag.phar';
-
Make sure the php extention
mbstring
is installed.
License
Copyright 2014 Label305 B.V.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.