ZF2 module, integrated whoops
whoops is an error handler base/framework for PHP. Out-of-the-box, it provides a pretty error interface that helps you debug your web projects, but at heart it's a simple yet powerful stacked error handling system.
cd my/project/directory
create a composer.json
file with following contents:
{
"require": {
"ghislainf/zf2-whoops": "dev-master"
}
}
curl -s http://getcomposer.org/installer | php
(on windows, download
http://getcomposer.org/installer and execute it with PHP)php composer.phar install
open my/project/directory/configs/application.config.php
and add the following key to your modules
, :
'Zf2Whoops', // must be added as the first module
config/zf2-whoops.local.php
in my/project/directory/config/autoload
my/project/directory/config/autoload/zf2-whoops.local.php