tonybogdanov / xhprof
Installs: 95
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/tonybogdanov/xhprof
Requires
- symfony/filesystem: 4.*
This package is auto-updated.
Last update: 2025-09-29 02:49:58 UTC
README
cd ~/ mkdir xhprof cd xhprof git clone https://github.com/tideways/php-xhprof-extension.git . phpize ./configure make sudo make install
echo "extension=tideways_xhprof.so" >> php.ini service apache2 restart
composer require --dev tonybogdanov/xhprof
\Profiler\Profiler::registerPublicPath( 'public/xhprof', 'http://localhost/xhprof' ); \Profiler\Profiler::start(); // Code being profiled. \Profiler\Profiler::stop(); exit;