fix recipe for nelmio/solarium-bundle ^5.0 (#1568)

This commit is contained in:
David Maicher
2024-01-01 22:12:41 +01:00
committed by GitHub
parent 209c667e5a
commit c439704651
2 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
nelmio_solarium:
endpoints:
default:
host: "%env(SOLR_HOST)%"
core: "%env(SOLR_CORE)%"
# The following are the default parameters for Solarium client:
# scheme: http
# port: 8983
# path: /solr
clients:
default:
endpoints: [default]
# You can customize the http timeout (in seconds) here. The default is 5sec.
# adapter_timeout: 5

View File

@@ -0,0 +1,12 @@
{
"bundles": {
"Nelmio\\SolariumBundle\\NelmioSolariumBundle": ["all"]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"env": {
"SOLR_HOST": "localhost",
"SOLR_CORE": "example"
}
}