mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-11 15:16:55 +03:00
* Added alms/cycle-bundle * Adjusted the indentation of the cycle-bundle.yaml file because it had 2 levels instead of 4. Added the migrations folder that I forgot. * Added the migrations folder that I forgot. * Added a new line at the end of the cycle.yaml file. * Fixed when@test config * Fixed when@test config * Update cycle.yaml --------- Co-authored-by: Fabien Potencier <fabien@potencier.org>
24 lines
536 B
JSON
24 lines
536 B
JSON
{
|
|
"bundles": {
|
|
"Alms\\Bundle\\CycleBundle\\CycleBundle": [
|
|
"all"
|
|
]
|
|
},
|
|
"copy-from-recipe": {
|
|
"config/": "%CONFIG_DIR%/",
|
|
"src/": "%SRC_DIR%/",
|
|
"migrations/": "migrations/"
|
|
},
|
|
"env": {
|
|
"DB_DRIVER": "mysql",
|
|
"DB_HOST": "localhost",
|
|
"DB_PORT": "3306",
|
|
"DB_NAME": "app",
|
|
"DB_USER": "root",
|
|
"DB_PASSWORD": "secret"
|
|
},
|
|
"post-install-output": [
|
|
" * Modify your database config in <fg=green>.env</>"
|
|
]
|
|
}
|