eye4web/zfc-user-rdt

Bridge between ZfcUser and RoaveDeveloperTools.

Installs: 7

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 0

Open Issues: 0

pkg:composer/eye4web/zfc-user-rdt

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

This package is not auto-updated.

Last update: 2025-09-23 11:45:12 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',
        ),
        // ...
    );