netgen / ibexa-search-filter
Netgen Ibexa Search Filter
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 6
Forks: 0
Open Issues: 0
Type:ibexa-bundle
Requires
- php: ^8.0
- ext-pdo: *
- ibexa/core: ^4.2
- pagerfanta/pagerfanta: ^2.7
This package is auto-updated.
Last update: 2024-10-09 17:20:51 UTC
README
Installation steps
Use Composer
Run the following from your website root folder to install Netgen Ibexa Search Filter:
$ composer require netgen/ibexa-search-filter
Once the added dependency is installed, activate the bundle in config/bundles.php
file by adding it to the returned array, together with other required bundles:
<?php return [ //... Netgen\Bundle\IbexaSearchFilter\NetgenIbexaSearchFilterBundle::class => ['all' => true], }
Add routing configuration
Add the file config/routes/netgen_ibexa_search_filter.yaml
with the following content to activate Netgen Ibexa Search Filter routes:
netgen_ibexa_search_filter: resource: "@NetgenIbexaSearchFilterBundle/Resources/config/routing.yaml"
Clear app caches
$ php bin/console cache:clear