Bugsnag Notifier for Laminas Framework
This package is a fork of itakademy/laminas-bugsnag which is a fork of nickurt/zf-bugsnag. We forked it to our own organization to remove older compatibility that makes it easier to update dependencies and code. Thanks to both of these projects for the foundation work.
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 diablomedia/laminas-bugsnag
or with global composer install :
composer require diablomedia/laminas-bugsnag
- PHP 8.1.0 to 8.3.x
- Laminas
- Bugsnag PHP-API (version 3.23.1 minimum)
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/diablomedia/laminas-bugsnag/config/laminasbugsnag.local.php.dist
file to ./config/autoload/laminasbugsnag.local.php
and customize the settings (IsEnabled, ApiKey, ...).