netpromotion / tracy-wrapper
Tracy wrapper
Installs: 138
Dependents: 1
Suggesters: 0
Security: 0
Stars: 3
Watchers: 3
Forks: 2
Open Issues: 0
pkg:composer/netpromotion/tracy-wrapper
Requires
- php: >=5.4
- tracy/tracy: 2.7.*
Requires (Dev)
- phpunit/phpunit: ^4.8
This package is not auto-updated.
Last update: 2020-02-13 16:06:55 UTC
README
Helper which helps you with Tracy injection into your project.
Usage
<?php // index.php $panels = [new BarPanelA(), new BarPanelB()]; // or $panels = function () { // will be called only if Tracy detects development mode return [new BarPanelA(), new BarPanelB()]; }; tracy_wrap(function() { app()->run(); }, $panels /* optional */);
How to install
Run composer require netpromotion/tracy-wrapper
in your project directory.