eye4web / zfc-user-rdt
Bridge between ZfcUser and RoaveDeveloperTools.
dev-master
2014-04-27 13:24 UTC
Requires
- roave/roave-developer-tools: dev-master
- zf-commons/zfc-user: 1.*
This package is not auto-updated.
Last update: 2024-11-05 07:28:34 UTC
README
Introduction
This module adds debug information from ZfcUser to RoaveDeveloperTools.
Dependencies
Installation
Main Setup
With composer
-
Add this project in your composer.json:
"require": { "eye4web/zfc-user-rdt": "dev-master" }
-
Now tell composer to download ZfcUserRDT by running the command:
$ php composer.phar update
Post installation
-
Enable it in your
application.config.php
file after RoaveDeveloperTools<?php return array( 'modules' => array( // ... 'Roave\DeveloperTools', 'Eye4web\ZfcUserRDT', ), // ... );