Skip to content

sjoorm/yii2-xhprof

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

yii2-xhprof

Simple Yii2 XHProf extension

Usage:

return [
    'components' => [
        // ...
        'xhprof' => [
            'class' => 'sjoorm\yii\extensions\XHProf',
            'namespace' => 'my-project-1',
            'host' => 'http://xhprof.local',
            'includeLibrary' => '/usr/local/Cellar/php56-xhprof/254eb24/xhprof_lib/utils/xhprof_lib.php',
            'includeRuns' => '/usr/local/Cellar/php56-xhprof/254eb24/xhprof_lib/utils/xhprof_runs.php',
        ],
        // ...
    ],
    'bootstrap' => [
        'xhprof',
    ],
];