dzv3r0 / laravel-scout-elastic by dzv3r0
forked from Pashtunzoy/laravel-scout-elastic

Elastic Driver for Laravel Scout
4,122
3
2
Package Data
Maintainer Username: dzv3r0
Package Create Date: 2017-08-31
Package Last Update: 2018-09-13
Language: PHP
License: Unknown
Last Refreshed: 2024-04-26 03:07:36
Package Statistics
Total Downloads: 4,122
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 3
Total Watchers: 2
Total Forks: 2
Total Open Issues: 0

Laravel Scout Elasticsearch Driver

Software License

This package makes is the Elasticsearch driver for Laravel Scout with AWS support.

Contents

Installation

You can install the package via composer:

composer require dzv3r0/laravel-scout-aws-elastic

You must add the Scout service provider and the package service provider in your app.php config:

// config/app.php
'providers' => [
    ...
    Laravel\Scout\ScoutServiceProvider::class,
    ...
    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

If you want to use AWS Elasticsearh make sure you have setup the credentials

AWS_KEY=
AWS_SECRET=
AWS_REGION=

and set

ELASTICSERACH_DRIVER=aws

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 in the official documentation

Credits

License

The MIT License (MIT).