Bugsnag Notifier for Laminas Framework
This package is a fork of nickurt/zf-bugsnag, which seemed to be inactive for some time. This is a port for Laminas project. Thank's to Nickurt for his job.
The Bugsnag Notifier for Laminas Framework gives you instant notifications of the errors in your application. You can create a free plan/account on the bugsnag website.
php composer.phar require itakademy/laminas-bugsnag
or with global composer install :
composer require itakademy/laminas-bugsnag
- PHP5.6+ or PHP7.0+
- Laminas
- Bugsnag PHP-API
Enable it in your ./config/modules.config.php
file
<?php
// modules.config.php
return [
'LaminasBugsnag', // Must be added as the first module
// ...
];
Copy the ./vendor/itakademy/laminas-bugsnag/config/laminasbugsnag.local.php.dist
file to ./config/autoload/laminasbugsnag.local.php
and customize the settings (IsEnabled, ApiKey, ...).