1.0.0
- Download package via composer
composer require asolopovas/scout-elasticsearch
- Add Scout service provider to ./config/app.php
'providers' => [
...
Laravel\Scout\ScoutServiceProvider::class,
ScoutEngines\Elasticsearch\ElasticsearchProvider::class,
...
],
- Setup Elasticsearch evnironment variablies in your .env file. (Note: Replace these variables according to your configuration)
...
ELASTICSEARCH_HOST=http://localhost
ELASTICSEARCH_INDEX=laravel
...
Scout-Elasticsearch engine require PHP version >=5.6.6. As well as Elasticsearch server up and running.
Bug reports and feature requests can be submitted on the Github Issue Tracker
Open-Sourced software licensed under the MIT license