gitignore/Symfony.gitignore

53 lines
799 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
# Logs (Symfony4)
/var/log/*
!var/log/.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
/vendor/
2014-05-28 12:02:45 +02:00
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/
# Composer PHAR
/composer.phar
2016-03-25 22:28:27 +01:00
# Backup entities generated with doctrine:generate:entities command
**/Entity/*~
# Embedded web-server pid file
/.web-server-pid