Symfony 531 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. # Cache and logs (Symfony2)
  2. /app/cache/*
  3. /app/logs/*
  4. !app/cache/.gitkeep
  5. !app/logs/.gitkeep
  6. # Cache and logs (Symfony3)
  7. /var/cache/*
  8. /var/logs/*
  9. !var/cache/.gitkeep
  10. !var/logs/.gitkeep
  11. # Parameters
  12. /app/config/parameters.yml
  13. /app/config/parameters.ini
  14. # Managed by Composer
  15. /app/bootstrap.php.cache
  16. /var/bootstrap.php.cache
  17. /bin/*
  18. !bin/console
  19. !bin/symfony_requirements
  20. /vendor/
  21. # Assets and user uploads
  22. /web/bundles/
  23. /web/uploads/
  24. # PHPUnit
  25. /app/phpunit.xml
  26. /phpunit.xml
  27. # Build data
  28. /build/
  29. # Composer PHAR
  30. /composer.phar