File tree 3 files changed +717
-0
lines changed
3 files changed +717
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Cache and logs (Symfony2)
2
+ /app /cache /*
3
+ /app /logs /*
4
+ ! app /cache /.gitkeep
5
+ ! app /logs /.gitkeep
6
+
7
+ # Email spool folder
8
+ /app /spool /*
9
+
10
+ # Cache, session files and logs (Symfony3)
11
+ /var /cache /*
12
+ /var /logs /*
13
+ /var /sessions /*
14
+ ! var /cache /.gitkeep
15
+ ! var /logs /.gitkeep
16
+ ! var /sessions /.gitkeep
17
+
18
+ # Parameters
19
+ /app /config /parameters.yml
20
+ /app /config /parameters.ini
21
+
22
+ # Managed by Composer
23
+ /app /bootstrap.php.cache
24
+ /var /bootstrap.php.cache
25
+ /bin /*
26
+ ! bin /console
27
+ ! bin /symfony_requirements
28
+
29
+ # Assets and user uploads
30
+ /web /bundles /
31
+ /web /uploads /
32
+
33
+ # PHPUnit
34
+ /app /phpunit.xml
35
+ /phpunit.xml
36
+
37
+ # Build data
38
+ /build /
39
+
40
+ # Backup entities generated with doctrine:generate:entities command
41
+ ** /Entity /* ~
You can’t perform that action at this time.
0 commit comments