https://github.com/netgen/ibexa-search-filter
https://github.com/netgen/ibexa-search-filter
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/netgen/ibexa-search-filter
- Owner: netgen
- Created: 2024-08-07T12:04:41.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-08-09T16:50:04.000Z (almost 2 years ago)
- Last Synced: 2025-02-14T13:38:26.669Z (over 1 year ago)
- Language: PHP
- Size: 7.81 KB
- Stars: 1
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Netgen Ibexa Search and Filter module
Installation steps
------------------
### Use Composer
Run the following from your website root folder to install Netgen Ibexa Search Filter:
```shell
$ 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
['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:
```yml
netgen_ibexa_search_filter:
resource: "@NetgenIbexaSearchFilterBundle/Resources/config/routing.yaml"
```
### Clear app caches
```shell
$ php bin/console cache:clear
```