2017 © Pedro Peláez
 

library zf2tracy

Tracy PHP debugger for ZF2

image

jorgesierra/zf2tracy

Tracy PHP debugger for ZF2

  • Monday, May 26, 2014
  • by jorgesierra
  • Repository
  • 1 Watchers
  • 0 Stars
  • 11 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

ZF2Tracy

Tracy PHP debugger module for ZF2

http://nette.github.io/tracy/, (*1)

Installation

  1. Add to your composer.json and run 'php composer.phar install/update'
{
    "require": {
        "jorgesierra/zf2tracy": "dev-master"
    }
}
  1. Add 'ZF2Tracy' to the enabled modules list

Usage

\Tracy\Debugger::dump($var);, (*2)

Configuration

return array(
    'tracy_debug' => array(
        'enabled' => TRUE,
        'mode' => FALSE,    // true = production|false = development|null = autodetect|IP address(es) csv/array
        'log' => "",        // bool = enabled|Path to directory eg. data/logs
        'email' => "",      // in production mode notifies the recipient
        'strict' => TRUE,   // bool = cause immediate death|int = matched against error severity
        'max_depth' => 3,   // nested levels of array/object
        'max_len' => 150,   // max string display length
    ),
);

Inspired by https://github.com/webino/ZF2NetteDebug, (*3)

The Versions

26/05 2014

dev-master

9999999-dev https://github.com/jorgesierra/zf2tracy

Tracy PHP debugger for ZF2

  Sources   Download

MIT

The Requires

 

by Jorge Sierra

php zend debugger tracy