sygytyr / yii2-elasticsearch
Elasticsearch integration and ActiveRecord for the Yii framework
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:yii2-extension
pkg:composer/sygytyr/yii2-elasticsearch
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: 2025-11-04 10:18:49 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 ], ] ];