An open API service indexing awesome lists of open source software.

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

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.

Debugger

## 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 }