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.gitignore 748B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. /vendor/
  25. # Assets and user uploads
  26. /web/bundles/
  27. /web/uploads/
  28. # Assets managed by Bower
  29. /web/assets/vendor/
  30. # PHPUnit
  31. /app/phpunit.xml
  32. /phpunit.xml
  33. # Build data
  34. /build/
  35. # Composer PHAR
  36. /composer.phar
  37. # Backup entities generated with doctrine:generate:entities command
  38. */Entity/*~