https://github.com/rainlab/debugbar-plugin
Integrates PHP Debugbar with October CMS
https://github.com/rainlab/debugbar-plugin
debugbar laravel octobercms
Last synced: 10 months ago
JSON representation
Integrates PHP Debugbar with October CMS
- Host: GitHub
- URL: https://github.com/rainlab/debugbar-plugin
- Owner: rainlab
- License: mit
- Created: 2015-03-04T00:55:50.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2024-09-04T00:09:43.000Z (over 1 year ago)
- Last Synced: 2025-04-09T22:18:27.969Z (10 months ago)
- Topics: debugbar, laravel, octobercms
- Language: PHP
- Homepage:
- Size: 727 KB
- Stars: 38
- Watchers: 10
- Forks: 20
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# Debugbar Plugin
Easily see what's going on under the hood of your October CMS application.
# Installation
To install with Composer, run from your project root
```sh
composer require rainlab/debugbar-plugin
```
# Usage
Set `debug` to `true` in `config/app.php` and the debugbar should appear on your site to all authenticated backend users with the `rainlab.debugbar.access_debugbar` permission.
If you would like to make the debugbar accessible to all users regardless of authentication and permissions, then set `allow_public_access` to `true` in the configuration (see below).
See [barryvdh/laravel-debugbar](https://github.com/barryvdh/laravel-debugbar) for more usage instructions and documentation.
# Configuration
All configuration for the plugin is found in the **plugins/rainlab/debugbar** directory. To override any of these settings, create an override file called **config/rainlab/debugbar/config.php** in your local system.
To include exceptions in the response header of ajax calls set `debug_ajax` to `true` in **config/app.php**.
Events are not captured by default since it can slow down the front-end when many events are fired, you may enable it with the `collectors.events` setting.