https://github.com/trntv/yii2-debug-xhprof
https://github.com/trntv/yii2-debug-xhprof
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/trntv/yii2-debug-xhprof
- Owner: trntv
- Created: 2014-10-14T18:33:19.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2016-02-02T11:12:26.000Z (over 10 years ago)
- Last Synced: 2025-03-18T06:11:39.018Z (over 1 year ago)
- Language: PHP
- Homepage: http://github.com/trntv/yii2-starter-kit
- Size: 106 KB
- Stars: 16
- Watchers: 5
- Forks: 9
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Yii2 debug xhprof panel
=======================
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](http://getcomposer.org/download/).
Either run
```
php composer.phar require --prefer-dist trntv/yii2-debug-xhprof "*"
```
or add
```
"trntv/yii2-debug-xhprof": "*"
```
to the require section of your `composer.json` file.
add panel to your debug module configuration
```
'modules'=>[
...
'debug'=>[
...
'panels'=>[
...
'xhprof'=>[
'class'=>'\trntv\debug\xhprof\panels\XhprofPanel'
]
]
]
...
]
```
Usage
-----
soon ;)