mirror of
https://github.com/symfony/recipes.git
synced 2026-09-12 07:36:30 +03:00
19 lines
463 B
JSON
19 lines
463 B
JSON
{
|
|
"bundles": {
|
|
"Symfony\\Bundle\\FrameworkBundle\\FrameworkBundle": ["all"]
|
|
},
|
|
"copy-from-recipe": {
|
|
"etc/": "%ETC_DIR%/"
|
|
},
|
|
"composer-scripts": {
|
|
"cache:clear --no-warmup": "symfony-cmd",
|
|
"cache:warmup": "symfony-cmd",
|
|
"assets:install --symlink --relative %WEB_DIR%": "symfony-cmd"
|
|
},
|
|
"makefile": "
|
|
serve:
|
|
echo \"Started web server on http://127.0.0.1:8000\"
|
|
php -S 127.0.0.1:8000 -t web
|
|
"
|
|
}
|