Skip to content

Latest commit

 

History

History
48 lines (30 loc) · 1.48 KB

README.md

File metadata and controls

48 lines (30 loc) · 1.48 KB

Laminas-Bugsnag

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.

Bugsnag?

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.

Install

Installation with composer

php composer.phar require diablomedia/laminas-bugsnag

or with global composer install :

composer require diablomedia/laminas-bugsnag

Requirements

Post Installation

Enable it in your ./config/modules.config.php file

<?php

// modules.config.php
return [
    'LaminasBugsnag', // Must be added as the first module

    // ...
];

Configuration

Copy the ./vendor/diablomedia/laminas-bugsnag/config/laminasbugsnag.local.php.dist file to ./config/autoload/laminasbugsnag.local.php and customize the settings (IsEnabled, ApiKey, ...).