https://github.com/glowieframework/debugger
Glowie debug bar plugin
https://github.com/glowieframework/debugger
debug-bar debugger glowie
Last synced: about 1 month ago
JSON representation
Glowie debug bar plugin
- Host: GitHub
- URL: https://github.com/glowieframework/debugger
- Owner: glowieframework
- License: mit
- Created: 2024-02-21T19:18:35.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-08-19T18:19:56.000Z (6 months ago)
- Last Synced: 2025-08-19T20:34:07.532Z (6 months ago)
- Topics: debug-bar, debugger, glowie
- Language: PHP
- Homepage: https://glowie.gabrielsilva.dev.br/debugger
- Size: 94.7 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Debugger for Glowie
Debugger is a plugin for [Glowie Framework](https://github.com/glowieframework/glowie) with a powerful debug bar for developers.

## Features
- Beautiful and simple debug bar with zero configuration
- Print and filter messages, warnings, errors and variables to a console window
- Catch and print exceptions and stack traces to the console
- Measure long operations to a timeline and improve your app performance
- Inspect Request and Response variables and headers
- Inspect Session and Cookies data
- Log SQL queries, bindings and query durations
- Inspect rendered views, layouts and all its parameters
- Inspect application info, routes, memory usage, software versions, request time and more
- Automatic light and night mode themes
## Installation
Install in your Glowie project using Composer:
```shell
composer require glowieframework/debugger
```
Then add the Debugger class to the `app/config/Config.php` file, into the `plugins` array:
```php
'plugins' => [
// ... other plugins here
\Glowie\Plugins\Debugger\Debugger::class,
],
```
Inside your application main layout or desired view, add the Skeltch directive to the bottom of the page, before the closing `
{ debugger }