brighttalk/acs-query-builder-bundle

Integration of Amazon Cloud Search Query Builder library into the symfony2 framework

v0.1.1 2014-05-15 07:15 UTC

This package is not auto-updated.

Last update: 2024-04-08 12:20:14 UTC


README

Description

This bundle integrates Amazon Cloud Search Query Builder into Symfony2

##Installation

Add to your composer.json:

"require": {
    ...
    "brighttalk/acs-query-builder": "dev-master",
    "brighttalk/acs-query-builder-bundle": "dev-master"
}

add the bundle to the AppKernel

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new BrightTALK\Bundle\ACSQueryBuilderBundle\BrightTALKACSQueryBuilderBundle()
    );
}

The service id brighttalk_acs_query_builder.query_builder_factory is now available to be used, and will create a new query builder by calling the method createQueryBuilder()