jeylabs / laravel-scout-elastic
There is no license information available for the latest version (1.0.0) of this package.
Elastic Driver for Laravel Scout
1.0.0
2016-08-23 14:25 UTC
Requires
- php: >=5.6.4
- elasticsearch/elasticsearch: ^2.2
- illuminate/database: ^5.3
- illuminate/support: ^5.3
- laravel/scout: ^1.0
Requires (Dev)
- fzaninotto/faker: ~1.4
- mockery/mockery: 0.9.*
- phpunit/phpunit: ~5.0
This package is auto-updated.
Last update: 2024-10-29 04:42:03 UTC
README
This package makes is the Elasticsearch driver for Laravel Scout.
Contents
Installation
You can install the package via composer:
composer require tamayo/laravel-scout-elastic
You must install the service provider:
// config/app.php 'providers' => [ ... ScoutEngines\Elasticsearch\ElasticsearchProvider::class, ],
Setting up Elasticsearch configuration
You must have a Elasticsearch server up and running with the index you want to use created
If you need help with this please refer to the Elasticsearch documentation
After you've published the Laravel Scout package configuration:
// config/scout.php // Set your driver to elasticsearch 'driver' => env('SCOUT_DRIVER', 'elasticsearch'), ... 'elasticsearch' => [ 'index' => env('ELASTICSEARCH_INDEX', 'laravel'), 'hosts' => [ env('ELASTICSEARCH_HOST', 'http://localhost'), ], ], ...
Usage
Now you can use Laravel Scout as described here
Credits
License
The MIT License (MIT).