ismail0234 / phalcon-bb-debugger
Phalcon BB Debugger Strong and easy install.
Installs: 74
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 4
Forks: 1
Open Issues: 0
Language:HTML
Requires
- php: >=5.5
- ext-phalcon: ^3
This package is auto-updated.
Last update: 2024-10-29 05:40:42 UTC
README
Phalcon BB Debugger
- Phalcon Version: 3.x
- BB Debugger Version: 1.0.3
Change Log
- See ChangeLog
What is BB Debugger ?
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 Install Files
composer require ismail0234/phalcon-bb-debugger
How to Install BB Debugger ?
- You should download the latest version from the Releases section. (or install composer files)
- $config->application->libraryDir discard the folder where your library files are located.
- In the config/config.php file, define 'developerMode' => true into the application array.
- The following code into the config/loader.php file is $loader = new\Phalcon\Loader(); add after.
<?php $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(); }
- Enjoy the fun!