2017 © Pedro Peláez
 

library lumen-elasticsearch

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

image

nordsoftware/lumen-elasticsearch

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  • Monday, June 18, 2018
  • by crisu83
  • Repository
  • 8 Watchers
  • 42 Stars
  • 13,949 Installations
  • PHP
  • 2 Dependents
  • 1 Suggesters
  • 12 Forks
  • 0 Open issues
  • 54 Versions
  • 26 % Grown

The README.md

Lumen Elasticsearch

Build Status Coverage Status Code Climate Scrutinizer Code Quality StyleCI Latest Stable Version Total Downloads License, (*1)

Simple wrapper of Elasticsearch-PHP for the Lumen PHP framework., (*2)

Version support

Lumen Elasticsearch PHP Library
>= 6.0 5.x >= 7.1 3.8 - 3.x
>= 5.4, <= 6.0 5.x >= 7.1 3.0 - 3.7
5.4.x 5.x >= 5.6 2.x
5.4.x 2.x >= 5.6 1.x
5.2.x 2.x >= 5.6 0.7.x

Requirements

  • 3.x requires PHP 7.1 or newer
  • 2.x requires PHP 5.6 or newer

Usage

Installation

Run the following command to install the package through Composer:, (*3)

composer require nordsoftware/lumen-elasticsearch

Copy the configuration template in config/elasticsearch.php to your application's config directory and modify it to suit your needs., (*4)

Add the following line to bootstrap/app.php:, (*5)

$app->register(Nord\Lumen\Elasticsearch\ElasticsearchServiceProvider::class);

You can now get the service instance using app(ElasticsearchServiceContract::class) or inject the ElasticsearchServiceContract where needed., (*6)

Configuring your indices

You can create and delete indices using the provided console commands. Start by adding the commands to your console kernel:, (*7)

protected $commands = [
    ...
    CreateCommand::class,
    DeleteCommand::class,
];

To create an index you need a configuration file that describes how the index should look. To create an index called my-index, create a file named my-index.php in the config/elasticsearch directory (create the directory if it doesn't exist) with the following contents:, (*8)

<?php

return [
    'index' => 'my-index',
    'body' => [
        'mappings' => [
            'my-model' => [
                'properties' => [
                    'id' => ['type' => 'string', 'index' => 'not_analyzed'],
                    'name' => ['type' => 'string'],
                ],
            ],
        ],
        'settings' => [
            'analysis' => [
                'filter' => [
                    'finnish_stop' => [
                        'type' => 'stop',
                        'stopwords' => '_finnish_',
                    ],
                    'finnish_stemmer' => [
                        'type' => 'stemmer',
                        'language' => 'finnish',
                    ],
                ],
                'analyzer' => [
                    'finnish' => [
                        'tokenizer' => 'standard',
                        'filter' => [
                            'lowercase',
                            'finnish_stop',
                            'finnish_stemmer',
                        ],
                    ],
                ],
            ],
        ],
    ],
];

Please refer to the official Elasticsearch documentation for more information on how to define indices., (*9)

Now that you have a configuration file for your index, create it by running php artisan elastic:index:create config/elasticsearch/my-index.php., (*10)

To delete the index, run php artisan elastic:index:delete my-index., (*11)

Indexing your data

To index data into your newly created indices you need to create a new console command that extends Nord\Lumen\Elasticsearch\Console\IndexCommand, then register that command in your console kernel. A sample implementation can look like this:, (*12)

<?php

use Nord\Lumen\Elasticsearch\Console\IndexCommand;

class IndexPersonsCommand extends IndexCommand
{

    protected $signature = 'app:index:persons';

    protected $description = 'Indexes all persons into the search index';

    public function getData()
    {
        return [
            new Person('Joe'),
            new Person('Jane'),
        ];
    }

    public function getIndex()
    {
        return 'persons';
    }

    public function getType()
    {
        return 'person';
    }

    public function getItemBody($item)
    {
        // Item is an instance of Person in this case
        return $item->getName();
    }

    public function getItemId($item)
    {
        // Item is an instance of Person in this case
        return $item->getId();
    }

    public function getItemParent($item)
    {
        // Return null if your objects don't have any parent/child relationship
        return $item->getParent();
    }

}

Now, run php artisan app:index:persons to index the data. You can now create additional commands for your other data types that need to be indexed., (*13)

In addition to IndexCommand there is an AbstractMultiIndexCommand that can be used if you need to index the same data into multiple indices. This can be useful if you're migrating Elasticsearch 5.x indices to Elasticsearch 6.x, which doesn't support indices with multiple different document types., (*14)

Indexing single items

The console commands are useful when you want to index all items of a particular type, e.g. all persons in your database. However, if you update a single person you probably want to reindex just that person., (*15)

Here's an example:, (*16)

$service = app(ElasticsearchServiceContract::class);

$service->index([
    'index' => 'persons',
    'type'  => 'person',
    'id'    => $person->getId(),
    'body'  => $person->getName(),
]);

Running queries

Queries against the search index are run by creating a query, then creating a search using the query and finally executing the query using the provided service., (*17)

Here's an example:, (*18)

// Get an instance of ElasticSearchService
$service = app(ElasticsearchServiceContract::class);

// Create the query
$query = (new BoolQuery())
    ->addMust(
        (new TermQuery())
            ->setField('user')
            ->setValue('kimchy'))
    ->addFilter(
        (new TermQuery())
            ->setField('tag')
            ->setValue('tech'))
    ->addMustNot(
        (new RangeQuery())
            ->setField('age')
            ->setGreaterThanOrEquals(18)
            ->setLessThanOrEquals(40))
    ->addShould(
        (new TermQuery())
            ->setField('tag')
            ->setValue('wow'))
    ->addShould(
        (new TermQuery())
            ->setField('tag')
            ->setValue('elasticsearch'));

// Create the search
$search = $service->createSearch()
    ->setIndex('index')
    ->setType('document')
    ->setQuery($query)
    ->setSize(50)
    ->setPage(1);

// Execute the search to retrieve the results
$result = $service->execute($search);

You can also perform raw queries:, (*19)

$service = app(ElasticsearchServiceContract::class);

$result = $service->search([
    'index' => 'index',
    'type'  => 'document',
    'body'  => [
        'query' => [
            'bool' => [
                'must' => [
                    'term' => ['user' => 'kimchy']
                ],
                'filter' => [
                    'term' => ['tag' => 'tech']
                ],
                'must_not' => [
                    'range' => [
                        'age' => ['gte' => 10, 'lte' => 20]
                    ]
                ],
                'should' => [
                    [
                        'term' => ['tag' => 'wow']
                    ],
                    [
                        'term' => ['tag' => 'elasticsearch']
                    ]
                ],
            ]
        ],
        'size' => 50,
        'from' => 0
    ],
]);

Creating and applying index migrations

Sometimes you need to make a change to an index mapping that requires data to be re-indexed. However, most of the time you don't need to actually index everything into Elasticsearch again, instead it is enough to just copy the data internally from your original index to a new one. This process can be performed seamlessly without downtime., (*20)

Requirements

  • You must add the CreateMigrationCommand and ApplyMigrationCommand commands to your console kernel
  • Your Elasticsearch instance must support the /_reindex API. This is normally the case, however, Amazon Elasticsearch Service doesn't support it if you're using Elasticsearch 2.3 or older.

Creating a migration

  • Change your index definition (e.g. config/search/your-index.php) according to your needs
  • Run php artisan elastic:migrations:create config/search/your-index.php)

This will create a directory named versions as well as a timestamped copy of your index definition file., (*21)

Applying a migration

  • Run php artisan elastic:migrations:migrate config/search/your-index.php

If you haven't run migrations before, your index will be replaced by an alias of the same name once the new index has been created. The next time you apply a migration, the alias will simply be updated., (*22)

If your documents are very large you may want to decrease the batch size used during re-indexing to prevent Elasticsearch from running out of memory. You can do so by passing --batchSize=X to the elastic:migrations:migrate command. If the option is omitted, the default value of 1000 is used., (*23)

Updating dynamic index settings

There is a console command (elastic:index:settings:update) that you can use to update certain dynamic index settings such as the refresh interval or the number of replicas. Simply register it in your console kernel to start using it., (*24)

Using index prefixes

This library supports specifying a prefix for index names, similarly to how many frameworks support cache prefixes in order to allow multiple applications to share the same cache. This means you can use a single Elasticsearch cluster for multiple projects (or for example a shared one for the "dev" and "staging" environment)., (*25)

The prefix used is specified by the configuration file (config/elasticsearch.php). The default behavior is to read the prefix from the ELASTICSEARCH_INDEX_PREFIX environment variable., (*26)

If you have an index named content and you specify foo as a prefix, the index will be named foo_content. If you need custom logic you can override getPrefixedIndexName() in ElasticsearchService., (*27)

Prefixing is supported for index migrations too, in which case the both the indices and the aliases created are prefixed., (*28)

Pagerfanta integration

There is a Pagerfanta adapter included for easy pagination. However, it is optional, so if you intend to use it you must require the pagerfanta/pagerfanta package explicitly., (*29)

Contributing

Please read the guidelines., (*30)

Running tests

Clone the project and install its dependencies by running:, (*31)

composer install

Run the following command to run the test suite:, (*32)

composer test

License

See LICENSE., (*33)

The Versions

18/06 2018

dev-develop

dev-develop

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

18/06 2018

3.2.0

3.2.0.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

22/05 2018

dev-master

9999999-dev

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

22/05 2018

3.1.0

3.1.0.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

22/05 2018

dev-release/3.1.0

dev-release/3.1.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

22/05 2018

dev-count-and-size

dev-count-and-size

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

22/05 2018

dev-analysis-XNaNMp

dev-analysis-XNaNMp

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

18/05 2018

3.0.3

3.0.3.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

18/05 2018

3.0.2

3.0.2.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

18/05 2018

3.0.1

3.0.1.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

17/05 2018

3.0.0

3.0.0.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

17/05 2018

2.3.11

2.3.11.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

02/05 2018

2.3.10

2.3.10.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

15/03 2018

2.3.9

2.3.9.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

15/03 2018

dev-feature/function-score-features

dev-feature/function-score-features

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

15/03 2018

2.3.8

2.3.8.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

15/03 2018

dev-php71

dev-php71

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

15/03 2018

dev-analysis-XW0G65

dev-analysis-XW0G65

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

15/03 2018

dev-fix-apply-migration-options

dev-fix-apply-migration-options

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

15/03 2018

dev-feature/dismax

dev-feature/dismax

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

15/03 2018

dev-analysis-87l2v6

dev-analysis-87l2v6

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

15/03 2018

2.3.7

2.3.7.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

19/01 2018

2.3.6

2.3.6.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

19/01 2018

dev-support-source-control

dev-support-source-control

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

08/12 2017

dev-add-option-to-force-update-all-types

dev-add-option-to-force-update-all-types

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

07/12 2017

2.3.5

2.3.5.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

29/11 2017

2.3.4

2.3.4.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

28/11 2017

2.3.3

2.3.3.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

27/11 2017

dev-analysis-q5gn92

dev-analysis-q5gn92

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

27/11 2017

2.3.2

2.3.2.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

18/11 2017

dev-60-print-info-from-reindex-cmd

dev-60-print-info-from-reindex-cmd

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

14/11 2017

2.3.1

2.3.1.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

07/11 2017

2.3.0

2.3.0.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

02/11 2017

2.2.1

2.2.1.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

01/11 2017

2.2.0

2.2.0.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

07/10 2017

2.1.1

2.1.1.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

07/10 2017

2.1.0

2.1.0.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Sam Stenvall
by Christoffer Lindqvist

laravel lumen elasticsearch

03/10 2017

2.0.0

2.0.0.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Christoffer Lindqvist

laravel lumen elasticsearch

13/09 2017

1.3.0

1.3.0.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Christoffer Lindqvist

laravel lumen elasticsearch

21/06 2017

1.2.0

1.2.0.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Christoffer Lindqvist

laravel lumen elasticsearch

16/06 2017

1.1.2

1.1.2.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Christoffer Lindqvist

laravel lumen elasticsearch

16/06 2017

1.1.1

1.1.1.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Christoffer Lindqvist

laravel lumen elasticsearch

16/06 2017

1.1.0

1.1.0.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Christoffer Lindqvist

laravel lumen elasticsearch

09/02 2017

1.0.1

1.0.1.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Christoffer Lindqvist

laravel lumen elasticsearch

09/02 2017

1.0.0

1.0.0.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Christoffer Lindqvist

laravel lumen elasticsearch

09/02 2017

5.2.x-dev

5.2.9999999.9999999-dev

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Christoffer Lindqvist

laravel lumen elasticsearch

09/02 2017

0.7.0

0.7.0.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Christoffer Lindqvist

laravel lumen elasticsearch

10/06 2016

0.6.0

0.6.0.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Christoffer Lindqvist

laravel lumen elasticsearch

29/04 2016

0.5.0

0.5.0.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Christoffer Lindqvist

laravel lumen elasticsearch

25/04 2016

0.4.0

0.4.0.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Christoffer Lindqvist

laravel lumen elasticsearch

20/04 2016

0.3.1

0.3.1.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Christoffer Lindqvist

laravel lumen elasticsearch

20/04 2016

0.3.0

0.3.0.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Christoffer Lindqvist

laravel lumen elasticsearch

15/04 2016

0.2.0

0.2.0.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Christoffer Lindqvist

laravel lumen elasticsearch

26/11 2015

0.1.0

0.1.0.0

Simple wrapper of https://github.com/elastic/elasticsearch-php for the Lumen PHP framework.

  Sources   Download

MIT

The Requires

 

laravel lumen elasticsearch