We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f1058e8 + 2626eee commit 6abb147Copy full SHA for 6abb147
Symfony2.gitignore Symfony.gitignoreSymfony2.gitignore renamed to Symfony.gitignore
@@ -1,16 +1,25 @@
1
-# Cache and logs
+# Cache and logs (Symfony2)
2
/app/cache/*
3
/app/logs/*
4
!app/cache/.gitkeep
5
!app/logs/.gitkeep
6
7
+# Cache and logs (Symfony3)
8
+/var/cache/*
9
+/var/logs/*
10
+!var/cache/.gitkeep
11
+!var/logs/.gitkeep
12
+
13
# Parameters
14
/app/config/parameters.yml
15
/app/config/parameters.ini
16
17
# Managed by Composer
18
/app/bootstrap.php.cache
-/bin/
19
+/var/bootstrap.php.cache
20
+/bin/*
21
+!bin/console
22
+!bin/symfony_requirements
23
/vendor/
24
25
# Assets and user uploads
@@ -19,6 +28,7 @@
28
29
# PHPUnit
30
/app/phpunit.xml
31
+/phpunit.xml
32
33
# Composer PHAR
34
/composer.phar
0 commit comments