kunstmaan/search-bundle

The KunstmaanSearchBundle works with ElasticSearch and supports different search providers. The bundle currently supports Elastica as a provider. Add your own objects to index using a tagged service which implements the SearchConfigurationInterface

Maintainers

👁 Kunstmaan

Package info

github.com/Kunstmaan/KunstmaanSearchBundle

Type:symfony-bundle

pkg:composer/kunstmaan/search-bundle

Statistics

Installs: 86 838

Dependents: 1

Suggesters: 1

Stars: 18

7.3.0 2025-02-08 19:03 UTC

Suggests

Provides

None

Conflicts

None

Replaces

None

MIT 48fab38d76acd636a36394c1e1c7c74ee6f3fd6a

searchelasticsearchkunstmaan

This package is auto-updated.

Last update: 2026-06-15 20:24:45 UTC


README

👁 Build Status
👁 Total Downloads
👁 Latest Stable Version
👁 Analytics

The KunstmaanSearchBundle works with ElasticSearch and supports different search providers.

More about these features can be found in our bundle documentation

Make sure you run ElasticSearch. You can download it here and extract the files. Then run the executable 'elasticsearch' in the bin directory.

Installation

composer.json

 "require": {
 "kunstmaan/search-bundle": "*"
 },

AppKernel.php:

 public function registerBundles()
 {
 $bundles = array(
 // ...
 new Kunstmaan\SearchBundle\KunstmaanSearchBundle(),
 // ...
 );

Configuration

Parameter

Add the following parameter to your parameters file (ini, yml, ...), the prefix will be automatically used before each indexname you specify.

 searchindexprefix: prefix_

Documentation

Further documentation on how to use and extend this bundle can be found here.

Reporting an issue or a feature request

Issues and feature requests are tracked in the Github issue tracker.

When reporting a bug, it may be a good idea to reproduce it in a basic project built using the Symfony Standard Edition to allow developers of the bundle to reproduce the issue by simply cloning it and following some steps.