Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: symfony/recipes-contrib
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b1b442458a3092cbbcb3cfb4ff325ca49f465276
Choose a base ref
..
head repository: symfony/recipes-contrib
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 81b29face40c27b8c32d7caa16adbde2798a8f69
Choose a head ref
Showing with 25 additions and 0 deletions.
  1. +13 −0 nelmio/solarium-bundle/2.4/config/packages/nelmio_solarium.yaml
  2. +12 −0 nelmio/solarium-bundle/2.4/manifest.json
13 changes: 13 additions & 0 deletions nelmio/solarium-bundle/2.4/config/packages/nelmio_solarium.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
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
# timeout: 5
clients:
default:
endpoints: [default]
12 changes: 12 additions & 0 deletions nelmio/solarium-bundle/2.4/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"bundles": {
"Nelmio\\SolariumBundle\\NelmioSolariumBundle": ["all"]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"env": {
"SOLR_HOST": "localhost",
"SOLR_CORE": "example"
}
}