Files
symfony-flex-recipes/recipes/symfony/framework-bundle/manifest.json
T
2017-02-02 17:14:49 -08:00

27 lines
823 B
JSON

{
"bundles": {
"Symfony\\Bundle\\FrameworkBundle\\FrameworkBundle": ["all"]
},
"copy-from-recipe": {
"etc/": "%ETC_DIR%/",
"web/": "%WEB_DIR%/"
},
"composer-scripts": {
"cache:clear --no-warmup": "symfony-cmd",
"cache:warmup": "symfony-cmd",
"assets:install --symlink --relative %WEB_DIR%": "symfony-cmd"
},
"env": {
"APP_ENV": "dev",
"APP_DEBUG": 1,
"APP_SECRET": "Ju$tChang3it!"
},
"makefile": [
"serve:",
"\t@echo \"\\033[32;49mServer listening on http://127.0.0.1:8000\\033[39m\"",
"\t@echo \"Quit the server with CTRL-C.\"",
"\t@echo \"Run \\033[32mcomposer require symfony/web-server-bundle\\033[39m for a better web server\"",
"\tphp -S 127.0.0.1:8000 -t web"
]
}