sabercoding / yii2-ots
This extension provides the OTS integration for the Yii2.
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 1
Open Issues: 0
Type:yii2-extension
Requires
- sabercoding/php-ots: *
- yiisoft/yii2: ~2.0.4
This package is not auto-updated.
Last update: 2025-04-26 23:31:29 UTC
README
This extension provides the ots integration for the Yii framework 2.0.
It includes basic querying/search support and also implements the ActiveRecord
pattern that allows you to store active
records in elasticsearch.
For license information check the LICENSE-file.
Documentation is at docs/guide/README.md.
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist sabercoding/yii2-ots
to the require section of your composer.json.
Configuration
To use this extension, you have to configure the Connection class in your application configuration:
return [ //.... 'components' => [ 'ots' => [ 'EndPoint' => '', 'AccessKeyID' => '', 'AccessKeySecret' => '', 'InstanceName' => '', 'DebugLogHandler' => '', 'ConnectionTimeout' => '', 'SocketTimeout' => '', 'ErrorLogHandler' => '', ], ] ];