https://github.com/flightphp/tracy-extensions
A set of panels in Tracy's debug tool specifically for Flight
https://github.com/flightphp/tracy-extensions
debug debugging flight-framework flightphp tracy tracy-debugger tracy-panel
Last synced: 3 months ago
JSON representation
A set of panels in Tracy's debug tool specifically for Flight
- Host: GitHub
- URL: https://github.com/flightphp/tracy-extensions
- Owner: flightphp
- Created: 2024-01-21T06:26:26.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-04-09T14:24:47.000Z (3 months ago)
- Last Synced: 2025-04-09T14:34:57.764Z (3 months ago)
- Topics: debug, debugging, flight-framework, flightphp, tracy, tracy-debugger, tracy-panel
- Language: PHP
- Homepage: https://docs.flightphp.com
- Size: 188 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Tracy Flight Panel Extensions
------This is a set of extensions to make working with Flight a little richer.
- Flight - Analyze all Flight variables.
- Database - Analyze all queries that have run on the page (if you correctly initiate the database connection)
- Request - Analyze all `$_SERVER` variables and examine all global payloads (`$_GET`, `$_POST`, `$_FILES`)
- Session - Analyze all `$_SESSION` variables if sessions are active.This is the Panel

And each panel displays very helpful information about your application!


Installation
-------
Run `composer require flightphp/tracy-extensions --dev` and you're on your way!Configuration
-------
There is very little configuration you need to do to get this started. You will need to initiate the Tracy debugger prior to using this [https://tracy.nette.org/en/guide](https://tracy.nette.org/en/guide):```php