** Forked version of https://packagist.org/packages/burdapraha/oc_tracy. Reuploaded since the original repository is not available anymore. **
"Tracy: the addictive tool to ease debugging PHP code for cool developers. Friendly design, logging, profiler, advanced features like debugging AJAX calls or CLI support. You will love it." For more information see official Tracy repository
- Requiring installed Vqmod because VqMod doesn't support installing via composer itself.
composer require burdapraha/oc_tracy dev-master
- Add this code to your composer.json project file:
"scripts": {
"post-install-cmd": [
"php -r \"copy('vendor/burdapraha/oc_tracy/vqmod/xml/tracy.xml', 'upload/vqmod/xml/tracy.xml');\""
],
"post-update-cmd": [
"php -r \"copy('vendor/burdapraha/oc_tracy/vqmod/xml/tracy.xml', 'upload/vqmod/xml/tracy.xml');\""
]
}
It will move vqmod xml file to correct folder.
- add constant
define('DEV', true);
to your config.php, /admin/config.php - optionally you can add row to your
.gitignore
file with path to tracy.xml (example: upload/vqmod/xml/tracy.xml) - celebrate!