Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/piotrplenik/datacollector-algolia-search-bundle

Symfony DataCollector for AlgoliaSearchBundle
https://github.com/piotrplenik/datacollector-algolia-search-bundle

Last synced: about 2 months ago
JSON representation

Symfony DataCollector for AlgoliaSearchBundle

Awesome Lists containing this project

README

        

# Data Collector for Algolia Search Bundle

![Data Collector for Algolia Search Bundle](https://raw.githubusercontent.com/jupeter/datacollector-algolia-search-bundle/master/docs/profiler.png)

## Install using composer

composer require --dev jupeter/datacollector-algolia-search-bundle

## Register the bundle

Add ``Jupeter\DataCollectorAlgoliaSearchBundle\DataCollectorAlgoliaSearchBundle()`` to your application Kernel:

class AppKernel extends Kernel
{
public function registerBundles()
{
// all bundles
if (in_array($this->getEnvironment(), ['dev', 'test'], true)) {
// all test/dev bundles
$bundles[] = new Jupeter\DataCollectorAlgoliaSearchBundle\DataCollectorAlgoliaSearchBundle();
}
}
}