eye4web/zfc-user-rdt

Bridge between ZfcUser and RoaveDeveloperTools.

dev-master 2014-04-27 13:24 UTC

This package is not auto-updated.

Last update: 2024-04-09 04:33:22 UTC


README

Introduction

This module adds debug information from ZfcUser to RoaveDeveloperTools.

Dependencies

Installation

Main Setup

With composer

  1. Add this project in your composer.json:

    "require": {
        "eye4web/zfc-user-rdt": "dev-master"
    }
  2. Now tell composer to download ZfcUserRDT by running the command:

    $ php composer.phar update

Post installation

  1. Enable it in your application.config.php file after RoaveDeveloperTools

    <?php
    return array(
        'modules' => array(
            // ...
            'Roave\DeveloperTools',
            'Eye4web\ZfcUserRDT',
        ),
        // ...
    );