sygytyr / yii2-elasticsearch
Elasticsearch integration and ActiveRecord for the Yii framework
Package info
github.com/Sygytyr/yii2-elasticsearch
Type:yii2-extension
pkg:composer/sygytyr/yii2-elasticsearch
dev-master / 2.1.x-dev
2025-11-04 10:14 UTC
Requires
- php: >=7.3
- ext-curl: *
- ext-json: *
- ext-mbstring: *
- yiisoft/yii2: ~2.0.14
Requires (Dev)
- phpunit/phpunit: ^9.6
This package is auto-updated.
Last update: 2026-03-04 10:59:09 UTC
README
return [ //.... 'components' => [ 'elasticsearch' => [ 'class' => 'yii\elasticsearch\Connection', 'nodes' => [ ['http_address' => '127.0.0.1:9200'], // configure more hosts if you have a cluster ], 'dslVersion' => 7, // default is 5 ], ] ];