You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Symfony 661B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # Cache and logs (Symfony2)
  2. /app/cache/*
  3. /app/logs/*
  4. !app/cache/.gitkeep
  5. !app/logs/.gitkeep
  6. # Email spool folder
  7. /app/spool/*
  8. # Cache, session files and logs (Symfony3)
  9. /var/cache/*
  10. /var/logs/*
  11. /var/sessions/*
  12. !var/cache/.gitkeep
  13. !var/logs/.gitkeep
  14. !var/sessions/.gitkeep
  15. # Parameters
  16. /app/config/parameters.yml
  17. /app/config/parameters.ini
  18. # Managed by Composer
  19. /app/bootstrap.php.cache
  20. /var/bootstrap.php.cache
  21. /bin/*
  22. !bin/console
  23. !bin/symfony_requirements
  24. # Assets and user uploads
  25. /web/bundles/
  26. /web/uploads/
  27. # PHPUnit
  28. /app/phpunit.xml
  29. /phpunit.xml
  30. # Build data
  31. /build/
  32. # Backup entities generated with doctrine:generate:entities command
  33. **/Entity/*~