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 799B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. # Logs (Symfony4)
  16. /var/log/*
  17. !var/log/.gitkeep
  18. # Parameters
  19. /app/config/parameters.yml
  20. /app/config/parameters.ini
  21. # Managed by Composer
  22. /app/bootstrap.php.cache
  23. /var/bootstrap.php.cache
  24. /bin/*
  25. !bin/console
  26. !bin/symfony_requirements
  27. /vendor/
  28. # Assets and user uploads
  29. /web/bundles/
  30. /web/uploads/
  31. # PHPUnit
  32. /app/phpunit.xml
  33. /phpunit.xml
  34. # Build data
  35. /build/
  36. # Composer PHAR
  37. /composer.phar
  38. # Backup entities generated with doctrine:generate:entities command
  39. **/Entity/*~
  40. # Embedded web-server pid file
  41. /.web-server-pid