Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/piotrplenik/datacollector-algolia-search-bundle
- Owner: piotrplenik
- License: mit
- Created: 2017-03-29T14:45:00.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-16T22:32:20.000Z (almost 7 years ago)
- Last Synced: 2024-04-18T04:44:03.632Z (8 months ago)
- Language: PHP
- Size: 87.9 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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 bundleAdd ``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();
}
}
}