mirror of
https://github.com/symfony/recipes.git
synced 2026-09-15 09:06:24 +03:00
38 lines
1.1 KiB
JSON
38 lines
1.1 KiB
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/"
|
|
],
|
|
"post-install-output": [
|
|
"<bg=blue;fg=white> </>",
|
|
"<bg=blue;fg=white> What's next? </>",
|
|
"<bg=blue;fg=white> </>",
|
|
"",
|
|
" * <fg=blue>Run</> your application:",
|
|
" 1. Change to the project directory",
|
|
" 2. Execute the <comment>make serve</comment> command;",
|
|
" 3. Browse to the <comment>http://localhost:8000/</comment> URL.",
|
|
"",
|
|
" * <fg=blue>Read</> the documentation at <comment>https://symfony.com/doc</comment>"
|
|
]
|
|
}
|