Phalcon 3.x BB Debugger Strong and easy install.
The bb debugger, written for the phalcon framework, provides developers with lots of information, such as your sql queries, the amount of ram used on the page, and your page-opening speed.
composer require ismail0234/phalcon-bb-debugger
$loader = new \Phalcon\Loader();
/ BB DEBUGGER V1.0.2 /
if ($config->application->developerMode) {
$namespaces = array_merge($loader->getNamespaces(), array('BBDebugger'=> $config->application->libraryDir . 'BBDebugger'));
$loader->registerNamespaces($namespaces)->register();
$bbdebugger = new \BBDebugger\BBDebugger($di);
$bbdebugger->start();
}
```