bodeezy/laravel-elastica

Laravel 4 Service Provider for Elastica

0.1 2014-10-09 23:07 UTC

This package is not auto-updated.

Last update: 2024-05-03 18:09:06 UTC


README

Build Status

This is a Laravel 4 Service Provider for the Elastica Elasticsearch Client

Installation

Require laravel-elastica in composer.

composer require srtfisher/laravel-elastica:0.*

Add it to your providers in config/app.php

'bodeezy\LaravelElastica\LaravelElasticaServiceProvider'

Add it to your aliases:

'Ef' => 'bodeezy\LaravelElastica\LaravelElasticaFacade'

Okay, you would be good to go.

Configuration

You can use the default configuration to connect to your localhost:9200 server. Or you could publish the configuration and change the server.

$ php artisan config:publish bodeezy/laravel-elastica

The configuration will be passed to the client constructor. Information on Elastica configuration can be found at http://elastica.io/getting-started/installation.html.