https://github.com/milankyncl/phalcon-debugbar
Phalcon Debugbar for PHP Phalcon 3.x.x is development tool for PhalconPHP applications. You can view 4 standard panels right now - execution timer, view renderering status, database profiler and router result. You can optionally enable specific remote addresses for Debug Mode.
https://github.com/milankyncl/phalcon-debugbar
debugbar debugging-tool phalcon phalcon-debugbar phalcon-framework phalcon3
Last synced: 7 months ago
JSON representation
Phalcon Debugbar for PHP Phalcon 3.x.x is development tool for PhalconPHP applications. You can view 4 standard panels right now - execution timer, view renderering status, database profiler and router result. You can optionally enable specific remote addresses for Debug Mode.
- Host: GitHub
- URL: https://github.com/milankyncl/phalcon-debugbar
- Owner: milankyncl
- License: mit
- Created: 2017-10-29T13:21:04.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-19T11:59:15.000Z (almost 8 years ago)
- Last Synced: 2025-05-01T05:05:18.341Z (9 months ago)
- Topics: debugbar, debugging-tool, phalcon, phalcon-debugbar, phalcon-framework, phalcon3
- Language: PHP
- Homepage:
- Size: 34.2 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Phalcon Debugbar
[](https://travis-ci.org/milankyncl/phalcon-debugbar)
[](https://packagist.org/packages/milankyncl/phalcon-debugbar)
[](https://packagist.org/packages/milankyncl/phalcon-debugbar)
[](https://packagist.org/packages/milankyncl/phalcon-debugbar)
Phalcon Debugbar for PHP Phalcon 3.x.x. You can view 4 standard panels right now - execution timer, view renderering status, database profiler and router result. You can optionally enable specific remote addresses, so you can view debugbar even in production mode.
## Installation
1. Include packagist repository into your project.
```
composer require milankyncl/phalcon-debugbar
```
2. Include this snippet into your bootstrap file, just before creating Application instance. Enable specific remote addresses.
```php
$phalconDebugbar = new \MilanKyncl\Debugbar\PhalconDebugbar();
// Your remote addresses or just bool (true|false)
$phalconDebugbar->setDebugMode([
'127.0.0.1', '::1'
]);
// listen to services
$phalconDebugbar->listen();
```
3. That's the magic!
Enjoy.