manifest.json 501 B

12345678910111213141516171819202122232425
  1. {
  2. "bundles": {
  3. "Dechef\\Bundle\\TestBundle": ["all"]
  4. },
  5. "copy-from-recipe": {
  6. "config/": "%CONFIG_DIR%/",
  7. "public/": "%PUBLIC_DIR%/",
  8. "src/": "%SRC_DIR%/"
  9. },
  10. "composer-scripts": {
  11. "make cache-warmup": "script",
  12. "assets:install --symlink --relative %PUBLIC_DIR%": "symfony-cmd"
  13. },
  14. "env": {
  15. "APP_ENV": "dev",
  16. "APP_DEBUG": "1",
  17. "APP_SECRET": "%generate(secret)%"
  18. },
  19. "gitignore": [
  20. ".env",
  21. "/public/bundles/",
  22. "/var/",
  23. "/vendor/"
  24. ]
  25. }