gitignore/Symfony.gitignore

53 строки
799 B
Plaintext
Исходник Обычный вид История

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