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