Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ismail0234/Phalcon-BB-Debugger
Phalcon 3.x BB Debugger Strong and easy install.
https://github.com/ismail0234/Phalcon-BB-Debugger
bbdebugger debugger phalcon php-debug webdebug
Last synced: about 1 month ago
JSON representation
Phalcon 3.x BB Debugger Strong and easy install.
- Host: GitHub
- URL: https://github.com/ismail0234/Phalcon-BB-Debugger
- Owner: ismail0234
- License: mit
- Created: 2019-03-24T18:33:45.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-28T17:43:01.000Z (almost 6 years ago)
- Last Synced: 2024-11-10T18:47:41.914Z (about 2 months ago)
- Topics: bbdebugger, debugger, phalcon, php-debug, webdebug
- Language: HTML
- Homepage:
- Size: 50.8 KB
- Stars: 5
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-phalcon - Phalcon BB Debugger - Phalcon BB Debugger Strong and easy install. (Debug)
README
[![Latest Stable Version](https://poser.pugx.org/ismail0234/phalcon-bb-debugger/v/stable)](https://packagist.org/packages/ismail0234/phalcon-bb-debugger)
[![Total Downloads](https://poser.pugx.org/ismail0234/phalcon-bb-debugger/downloads)](https://packagist.org/packages/ismail0234/phalcon-bb-debugger)
[![Monthly Downloads](https://poser.pugx.org/ismail0234/phalcon-bb-debugger/d/monthly)](https://packagist.org/packages/ismail0234/phalcon-bb-debugger)
[![License](https://poser.pugx.org/ismail0234/phalcon-bb-debugger/license)](https://packagist.org/packages/ismail0234/phalcon-bb-debugger)# Phalcon BB Debugger
* Phalcon Version: **3.x**
* BB Debugger Version: **1.0.3**### Change Log
- See [ChangeLog](https://github.com/ismail0234/phalcon-bb-debugger/blob/master/CHANGELOG.md)### 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
```php
composer require ismail0234/phalcon-bb-debugger
```### How to Install BB Debugger ?
1. You should download the latest version from the [Releases](https://github.com/ismail0234/Phalcon-BB-Debugger/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
application->developerMode) {$namespaces = array_merge($loader->getNamespaces(), array('BBDebugger'=> $config->application->libraryDir . 'BBDebugger'));
$loader->registerNamespaces($namespaces)->register();
$bbdebugger = new \BBDebugger\BBDebugger($di);
$bbdebugger->start();
}
```
5. Enjoy the fun!### ScreenShot (v1.0.0)
#### Sql Querys
![BB Debugger Phalcon Querys](https://i.imgur.com/MxvT9tr.png)#### Server Variables
![BB Debugger Phalcon Servers](https://i.imgur.com/EbhTlIw.png)#### Cookies
![BB Debugger Phalcon Cookies](https://i.imgur.com/p0HQSB3.png)