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

v0.1 2016-12-22 09:50 UTC

This package is not auto-updated.

Last update: 2024-05-25 18:15:22 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' => '',
        ],
    ]
];