ismail0234/phalcon-bb-debugger

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Latest Stable VersionTotal DownloadsMonthly DownloadsLicense

  • Phalcon Version: 3.x
  • BB Debugger Version: 1.0.3

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
  1. You should download the latest version from the Releases section. (or install composer files)
  2. $config->application->libraryDir discard the folder where your library files are located.
  3. In the config/config.php file, define 'developerMode' => true into the application array.
  4. 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();
    
}
  1. Enjoy the fun!

BB Debugger Phalcon Querys

BB Debugger Phalcon Servers

BB Debugger Phalcon Cookies

About

Phalcon 3.x BB Debugger Strong and easy install.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published