alexbrin / laravel-tideways-xhprof
Library for profiling queries in Laravel with Tideways
Installs: 183
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 1
Forks: 0
Open Issues: 2
pkg:composer/alexbrin/laravel-tideways-xhprof
Requires
- php: >=7.3
- laravel/framework: >=5.6
This package is auto-updated.
Last update: 2025-11-29 02:44:12 UTC
README
Library for profiling queries in Laravel with Tideways
Install:
composer require alexbrin/laravel-tideways-xhprof
Settings
Create file tiedways.php in config path with content:
<?php return [ 'enabled' => true, 'global_middleware' => true, ];
Params description
| Name | Default | Description |
|---|---|---|
| enabled | true |
Enabling or disabling the profiler |
| global_middleware | true |
The inclusion the global middleware for profiling at any route |