Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 611 Bytes

README.md

File metadata and controls

25 lines (21 loc) · 611 Bytes

yii2-elasticsearch-debug

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',
            ],
        ],
    ];
}
];