dimabdc / yii2-debug-xhprof
xhprof panel for Yii2 debug module
Installs: 19
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 9
Type:yii2-extension
Requires
Suggests
- ext-xhprof: Xhprof PHP profiler
This package is auto-updated.
Last update: 2024-10-24 07:52:21 UTC
README
xhprof panel for Yii2 debug module
IMPORTANT
This is an early prototype, it is working, but pretty ugly. Contribute to it, to make it more pretty and awesome.
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist dimabdc/yii2-debug-xhprof "*"
or add
"dimabdc/yii2-debug-xhprof": "*"
to the require section of your composer.json
file.
add panel to your debug module configuration
'modules'=>[
...
'debug'=>[
...
'panels'=>[
...
'xhprof'=>[
'class'=>'\dimabdc\debug\xhprof\panels\XhprofPanel'
]
]
]
...
]
Usage
soon ;)