Skip to content

Commit 6abb147

Browse files
committed
Merge pull request #1117 from nicwortel/symfony3
Add .gitignore rules for Symfony3
2 parents f1058e8 + 2626eee commit 6abb147

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed
Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,25 @@
1-
# Cache and logs
1+
# Cache and logs (Symfony2)
22
/app/cache/*
33
/app/logs/*
44
!app/cache/.gitkeep
55
!app/logs/.gitkeep
66

7+
# Cache and logs (Symfony3)
8+
/var/cache/*
9+
/var/logs/*
10+
!var/cache/.gitkeep
11+
!var/logs/.gitkeep
12+
713
# Parameters
814
/app/config/parameters.yml
915
/app/config/parameters.ini
1016

1117
# Managed by Composer
1218
/app/bootstrap.php.cache
13-
/bin/
19+
/var/bootstrap.php.cache
20+
/bin/*
21+
!bin/console
22+
!bin/symfony_requirements
1423
/vendor/
1524

1625
# Assets and user uploads
@@ -19,6 +28,7 @@
1928

2029
# PHPUnit
2130
/app/phpunit.xml
31+
/phpunit.xml
2232

2333
# Composer PHAR
2434
/composer.phar

0 commit comments

Comments
 (0)