d3jn/larelastic

Maintainers

Package info

github.com/d3jn/larelastic

pkg:composer/d3jn/larelastic

Statistics

Installs: 184

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v0.6.1 2019-09-23 08:29 UTC

This package is auto-updated.

Last update: 2026-04-28 23:12:41 UTC


README

This package will no longer be maintained. It's been used only in a few projects so far and is pretty simple at what it does for them, so no harm will come from archiving it.

Larelastic

Yet another take on integrating Elasticsearch into Laravel.

Getting Started

Prerequisites

This package was developed using Laravel 5.6. As of now older versions are not tested/supported. You will also need a running Elasticsearch service of version >6.0.

Installing

Use composer to install this package:

composer require d3jn/larelastic

Laravel Package Auto-Discovery should handle adding service provider for you automatically or you can manually add it to your providers list in app.php:

'providers' => [
    ...

    D3jn\Larelastic\LarelasticServiceProvider::class,

    ...
],

Lastly you should publish it's configuration file:

php artisan vendor:publish --provider="D3jn\Larelastic\LarelasticServiceProvider"

Now you can proceed with configuring this package for your needs.

Built With

Authors

  • Serhii Yaniuk - d3jn

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Acknowledgments