mirror of
https://github.com/symfony/recipes.git
synced 2026-09-12 07:36:30 +03:00
26 lines
597 B
JSON
26 lines
597 B
JSON
{
|
|
"bundles": {
|
|
"Symfony\\Bundle\\FrameworkBundle\\FrameworkBundle": ["all"]
|
|
},
|
|
"copy-from-recipe": {
|
|
"config/": "%CONFIG_DIR%/",
|
|
"public/": "%PUBLIC_DIR%/",
|
|
"src/": "%SRC_DIR%/"
|
|
},
|
|
"composer-scripts": {
|
|
"make cache-warmup": "script",
|
|
"assets:install --symlink --relative %PUBLIC_DIR%": "symfony-cmd"
|
|
},
|
|
"env": {
|
|
"APP_ENV": "dev",
|
|
"APP_DEBUG": "1",
|
|
"APP_SECRET": "%generate(secret)%"
|
|
},
|
|
"gitignore": [
|
|
".env",
|
|
"/public/bundles/",
|
|
"/var/",
|
|
"/vendor/"
|
|
]
|
|
}
|