Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 2 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 (12 months ago)
- Default Branch: master
- Last Pushed: 2024-03-12T05:17:01.000Z (10 months ago)
- Last Synced: 2024-11-13T14:03:26.743Z (2 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: 0
- 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
![Flight Bar](flight-tracy-bar.png)
And each panel displays very helpful information about your application!
![Flight Data](flight-var-data.png)
![Flight Database](flight-db.png)
![Flight Request](flight-request.png)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