umuttaymaz/laravel-scout-aws-elastic

This package is abandoned and no longer maintained. No replacement package was suggested.
There is no license information available for the latest version (1.0.3) of this package.

AWS Elastic Driver for Laravel Scout

1.0.3 2018-03-23 21:26 UTC

This package is not auto-updated.

Last update: 2020-01-24 17:13:57 UTC


README

Software License

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

Contents

Installation

You can install the package via composer:

composer require umuttaymaz/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_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_DEFAULT_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).