nickurt / zf-bugsnag
ZfBugsnag
Installs: 11 491
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 5
Open Issues: 0
Requires
- php: >=5.5.0
- bugsnag/bugsnag: 2.*
This package is not auto-updated.
Last update: 2020-01-24 15:24:42 UTC
README
Bugsnag?
The Bugsnag Notifier for Zend Framework 2.3 and 3.0 gives you instant notifications of the errors in your application. You can create a free plan/account on the bugsnag website.
Install
Installation with the composer
php composer.phar require nickurt/zf-bugsnag:1.*
Requirements
- PHP5.5+
- Zend Framework 2.3 or Zend Framework 3.0
- Bugsnag PHP-API
Post Installation
Enable it in your application.config.php
(or modules.config.php
) file
<?php // application.config.php return array( 'modules' => array( 'ZfBugsnag', // Must be added as the first module // ... ), // ... ); // modules.config.php return [ 'ZfBugsnag', // Must be added as the first module // ... ];
Configuration
Copy the config/zfbugsnag.local.php
file to your config/autoload
folder and change the settings (IsEnabled/ApiKey)