zf2-boiler-app/app-logger

ZF2 BoilerApp Logger module

dev-master / 1.0.x-dev 2013-08-19 16:29 UTC

This package is auto-updated.

Last update: 2024-03-24 03:40:17 UTC


README

Build Status Latest Stable Version Total Downloads Code coverage

NOTE : This module is in heavy development, it's not usable yet. If you want to contribute don't hesitate, I'll review any PR.

Introduction

ZF2 BoilerApp "Logger" module is a Zend Framework 2 module that provides loggers for ZF2 Boiler-App

Requirements

Installation

Main Setup

By cloning project

  1. Clone this project into your ./vendor/ directory.

With composer

  1. Add this project in your composer.json:

    "require": {
        "zf2-boiler-app/app-logger": "1.0.*"
    }
  2. Now tell composer to download ZF2 BoilerApp "Logger" module by running the command:

    $ php composer.phar update

Post installation

  1. Enabling BoilerAppLogger module in your application.config.php file.

    return array(
        'modules' => array(
            // ...
            'BoilerAppLogger',
        ),
        // ...
    );

Features