ibanfirst/elasticrequestbundle

A bundle to help doing request on ElasticSearch database.

dev-master / 1.0.x-dev 2019-03-21 08:12 UTC

This package is not auto-updated.

Last update: 2024-03-15 22:17:40 UTC


README

https://img.shields.io/badge/Status-unstable-red.svg?style=flat https://img.shields.io/badge/PHP-^7.1-blue.svg?style=flat https://img.shields.io/badge/Symfony-^3.4-blue.svg?style=flat https://img.shields.io/badge/Licence-MIT-green.svg?style=flat

Installation

Step 1: Download the Bundle

Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:

$ composer require ibanfirst/elasticrequestbundle

This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.

Step 2: Enable the Bundle

Then, enable the bundle by adding it to the list of registered bundles in the app/AppKernel.php file of your project:

// app/AppKernel.php

// ...
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = [
            // ...
            new IbanFirst\ElasticRequestBundle\IbanFirstElasticRequestBundle(),
        ];

        // ...
    }

    // ...
}

Documentation

You can find the full documentation on the bundle here.

Licence

This bundle is under the MIT Licencing; you can find the licence file here.