1. Installation

1.1. Download and Install ElasticSearch

https://www.elastic.co/downloads/elasticsearch?latest

1.2. Install package via composer :

composer require burhancelebi/elasticsearch

1.3. Lumen

Add provider to your bootstrap/app.php

$app->register(ElasticSearch\ElasticSearchServiceProvider::class);

1.4. Laravel

Add provider namespace to your config/app.php providers array

ElasticSearch\ElasticSearchServiceProvider::class,