mirocow / yii2-elasticsearch-debug
Yii2 elasticsearch debug panel
Installs: 4 677
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 2
Forks: 3
Type:yii2-extension
Requires
- php: >=5.4.0
- mirocow/yii2-elasticsearch: ^1.0.15
- yiisoft/yii2: >=2.0
- yiisoft/yii2-debug: ^2.0
README
Install
$ composer require --prefer-dist mirocow/yii2-elasticsearch-debug
if (YII_DEBUG) { // configuration adjustments for 'dev' environment $config['bootstrap'][] = 'debug'; $config['modules']['debug'] = [ 'class' => 'yii\debug\Module', 'allowedIPs' => ['127.0.0.1', '::1'], 'panels' => [ 'elasticsearch' => [ 'class' => 'mirocow\\elasticsearch\\debug\\DebugPanel', ], ], ]; } ];