chinpei215 / cakephp-pretty-debug
CakePHP 2.x plugin to make debug toolbar pretty
Package info
github.com/chinpei215/cakephp-pretty-debug
Language:CSS
Type:cakephp-plugin
pkg:composer/chinpei215/cakephp-pretty-debug
0.1.1
2018-06-03 22:25 UTC
Requires
- composer/installers: ^1.0.23
This package is not auto-updated.
Last update: 2026-03-04 13:57:16 UTC
README
PrettyDebug Plugin for CakePHP 2.x
Requirements
- CakePHP 2.x
- CakePHP DebugKit plugin
Installation
See the How to Install Plugins in the CakePHP documentation for general help.
- Put the
PrettyDebugdirectory into your plugin directory or install the plugin with Composer from the directory where your composer.json file is located:
php composer.phar require chinpei215/cakephp-pretty-debug
- Load the plugin in your app/Config/bootstrap.php file:
CakePlugin::load('PrettyDebug');
- And enable the component in your controllers or in your app/Controller/AppController.php:
class AppController extends Controller { public $components = array( 'DebugKit.Toolbar', 'PrettyDebug.PrettyDebug', ); }
