mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-03-24 00:32:17 +01:00
This is more correct and the way it is documented https://www.mongodb.com/docs/manual/reference/connection-string/#standard-connection-string-format
18 lines
391 B
JSON
18 lines
391 B
JSON
{
|
|
"bundles": {
|
|
"Doctrine\\Bundle\\MongoDBBundle\\DoctrineMongoDBBundle": ["all"]
|
|
},
|
|
"copy-from-recipe": {
|
|
"config/": "%CONFIG_DIR%/",
|
|
"src/": "%SRC_DIR%/"
|
|
},
|
|
"container": {
|
|
"env(MONGODB_URI)": "",
|
|
"env(MONGODB_DB)": ""
|
|
},
|
|
"env": {
|
|
"MONGODB_URI": "mongodb://localhost:27017",
|
|
"MONGODB_DB": "symfony"
|
|
}
|
|
}
|