Skip to content

Mobasher-NetLinks/laravel5-elastic

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

laravel5-elastic

Join the chat at https://gitter.im/AlfredDobradi/laravel5-elastic

Simple Elastic wrapper for Laravel 5

This package was built on Elasticsearch/Elasticsearch. The only purpose of this package is to create a simpler way to use Elastic in Laravel 5.

Installation

First you'll have to add the package to your dependencies in your composer.json file.

{
    "require": {
        "adobradi/laravel5-elastic": "~1.0"
    }
}

Or just simply do composer require adobradi/laravel5-elastic ~1.0 in your project root.

Now you'll have to add the provider to the list in config/app.php:

    return [
        // ...
        'providers' => [
            // ...
            'Adobradi\Elastic\ElasticServiceProvider',
            // ...
        ]
        // ...
    ];

After this, the Elastic alias will be created and you'll be able to use the Elastic facade to make calls:

use Elastic;

class YourClass {
    function yourFunction()
    {
        $data = Elastic::search([
            'index' => 'your_index_name',
            'type' => 'article',
            'size' => 15
        ]);
    }
}

About

Simple Elastic wrapper for Laravel 5

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%