Skip to content

Latest commit

 

History

History
45 lines (30 loc) · 1.35 KB

README.md

File metadata and controls

45 lines (30 loc) · 1.35 KB

Laminas-Bugsnag

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.

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 the composer

php composer.phar require itakademy/laminas-bugsnag

or with global composer install :

composer require itakademy/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/itakademy/laminas-bugsnag/config/laminasbugsnag.local.php.dist file to ./config/autoload/laminasbugsnag.local.php and customize the settings (IsEnabled, ApiKey, ...).