gitignore/Symfony.gitignore

47 lines
694 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/*
# Cache and logs (Symfony3)
/var/cache/*
/var/logs/*
!var/cache/.gitkeep
!var/logs/.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
2014-05-28 06:02:45 -04:00
/vendor/
2014-05-28 06:23:42 -04:00
# Assets and user uploads
2014-05-28 06:02:45 -04:00
/web/bundles/
/web/uploads/
# Assets managed by Bower
/web/assets/vendor/
# 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/
2014-05-28 06:22:34 -04:00
# Composer PHAR
2014-05-28 05:57:41 -04:00
/composer.phar
2016-03-25 14:02:38 -04:00
2016-03-25 17:28:27 -04:00
# Backup entities generated with doctrine:generate:entities command
2016-03-25 14:02:38 -04:00
*/Entity/*~