gitignore/Symfony.gitignore

46 lines
702 B
Plaintext
Raw Normal View History

# Cache and logs (Symfony2)
2014-05-28 11:57:41 +02:00
/app/cache/*
2014-05-28 12:02:45 +02:00
/app/logs/*
2014-05-28 11:58:44 +02:00
!app/cache/.gitkeep
!app/logs/.gitkeep
2015-03-25 19:58:08 +01:00
# Email spool folder
/app/spool/*
2016-03-27 22:03:12 +02:00
# Cache, session files and logs (Symfony3)
/var/cache/*
/var/logs/*
2016-03-27 22:03:12 +02:00
/var/sessions/*
!var/cache/.gitkeep
!var/logs/.gitkeep
2016-03-27 22:03:12 +02:00
!var/sessions/.gitkeep
2014-05-28 12:02:45 +02:00
# Parameters
2014-05-28 11:57:41 +02:00
/app/config/parameters.yml
2014-05-28 12:02:45 +02:00
/app/config/parameters.ini
# Managed by Composer
/app/bootstrap.php.cache
/var/bootstrap.php.cache
/bin/*
!bin/console
!bin/symfony_requirements
2014-05-28 12:02:45 +02:00
/vendor/
2014-05-28 12:23:42 +02:00
# Assets and user uploads
2014-05-28 12:02:45 +02:00
/web/bundles/
/web/uploads/
# PHPUnit
2014-05-28 11:57:41 +02:00
/app/phpunit.xml
/phpunit.xml
2014-09-02 11:12:15 +02:00
# Build data
/build/
2014-05-28 12:22:34 +02:00
# Composer PHAR
2014-05-28 11:57:41 +02:00
/composer.phar
2016-03-25 19:02:38 +01:00
2016-03-25 22:28:27 +01:00
# Backup entities generated with doctrine:generate:entities command
**/Entity/*~