I am trying to install ZendDeveloperToolsmodules for ZF2beta5. Here are the steps that I have completed so far:
- successfully installed ZendSkeletonApplication.
-Download the module in the directory ./vendor.
-Use the module in ./config/application.config.php:
<?php
return array(
'modules' => array(
'Application',
'ZendDeveloperTools',
),
'module_listener_options' => array(
'config_glob_paths' => array(
'config/autoload/{,*.}{global,local}.php',
),
'module_paths' => array(
'./module',
'./vendor',
),
),
);
-Copied ./vendor/ZendDeveloperTools/config/zenddevelopertools.local.php.distup ./config/autoload/zenddevelopertools.local.php.
-Edited zenddevelopertools.local.phpas follows:
<?php
return array(
'zdt' => array(
'profiler' => array(
'enabled' => true,
'strict' => true,
'verbose' => true,
'flush_early' => false,
'cache_dir' => 'data/cache',
'collectors' => array(),
'verbose_listeners' => array('application' => array(
'ZDT_TimeCollectorListener' => true,
'ZDT_MemoryCollectorListener' => true,
))
),
'toolbar' => array(
'enabled' => true,
'auto_hide' => false,
'position' => 'bottom',
'version_check' => false,
'entries' => array(),
),
),
);
-lobbed define('REQUEST_MICROTIME', microtime(true));in mine ./public/index.php
-I built mine ./composer.jsonusing a module ZendDeveloperTools.
-I understood ,at the end of line 29, which caused problems (should not be there):

-Specify composer update:
$ php composer.phar update
Updating dependencies
- Updating zendframework/zendframework (dev-master)
Checking out 9f4dd7f13c8e34362340072d0e2d13efe15e4b1f
Writing lock file
Generating autoload files
-Added error_reporting(E_ALL); ini_set('display_errors', '1');to ./public/index.phpto detect potential errors
, ( ), zend
, zend?