gitignore/Symfony.gitignore

53 lines
799 B
Plaintext
Raw Normal View History

# Cache and logs (Symfony2)
2014-05-28 05:57:41 -04:00
/app/cache/*
2014-05-28 06:02:45 -04:00
/app/logs/*
2014-05-28 05:58:44 -04:00
!app/cache/.gitkeep
!app/logs/.gitkeep
2015-03-25 14:58:08 -04:00
# Email spool folder
/app/spool/*
2016-03-27 16:03:12 -04:00
# Cache, session files and logs (Symfony3)
/var/cache/*
/var/logs/*
2016-03-27 16:03:12 -04:00
/var/sessions/*
!var/cache/.gitkeep
!var/logs/.gitkeep
2016-03-27 16:03:12 -04:00
!var/sessions/.gitkeep
# Logs (Symfony4)
/var/log/*
!var/log/.gitkeep
2014-05-28 06:02:45 -04:00
# Parameters
2014-05-28 05:57:41 -04:00
/app/config/parameters.yml
2014-05-28 06:02:45 -04: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 06:02:45 -04:00
2014-05-28 06:23:42 -04:00
# Assets and user uploads
2014-05-28 06:02:45 -04:00
/web/bundles/
/web/uploads/
# PHPUnit
2014-05-28 05:57:41 -04:00
/app/phpunit.xml
/phpunit.xml
2014-09-02 05:12:15 -04:00
# Build data
/build/
# Composer PHAR
/composer.phar
2016-03-25 17:28:27 -04:00
# Backup entities generated with doctrine:generate:entities command
**/Entity/*~
# Embedded web-server pid file
/.web-server-pid