PHP code example of weburnit / elasticsearch-bundle
1. Go to this page and download the library: Download weburnit/elasticsearch-bundle library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
weburnit / elasticsearch-bundle example snippets
// app/AppKernel.php
public function registerBundles()
{
$bundles = [
// ...
new ONGR\ElasticsearchBundle\ONGRElasticsearchBundle(),
];
// ...
}
// src/AppBundle/Document/Customer.php
namespace AppBundle\Document;
use ONGR\ElasticsearchBundle\Annotation as ES;
/**
* @ES\Document()
*/
class Customer
{
/**
* @var string
*
* @ES\Id()
*/
public $id;
/**
* @var string
*
* @ES\Property(name="name", type="string")
*/
public $name;
}
bash
php composer.phar