-
Notifications
You must be signed in to change notification settings - Fork 4
/
.gitignore
91 lines (72 loc) · 1.2 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# Cache and logs (Symfony2)
/app/cache/*
/app/logs/*
!app/cache/.gitkeep
!app/logs/.gitkeep
# Email spool folder
/app/spool/*
!/app/spool/.gitkeep
# Cache, session files and logs (Symfony3)
/var/cache/*
/var/logs/*
/var/sessions/*
!var/cache/.gitkeep
!var/logs/.gitkeep
!var/sessions/.gitkeep
# Parameters
/app/config/parameters.yml
/app/config/parameters.ini
# Managed by Composer
/app/bootstrap.php.cache
/var/bootstrap.php.cache
/bin/*
!bin/console
!bin/symfony_requirements
/vendor/
# Assets and user uploads
/web/bundles/
/web/uploads/
/public/build/
/public/bundles/
/public/css/
/public/js/
# PHPUnit
/app/phpunit.xml
/phpunit.xml
# Build data
/build/
# Composer PHAR
/composer.phar
# Backup entities generated with doctrine:generate:entities command
**/Entity/*~
# Embedded web-server pid file
/.web-server-pid
# Extensions
*.class
*.pyc
*.pyo
# OSX
.DS_Store
# IDE Stuff (This covers PHPStorm, IntelliJ IDEA, Aptana, and Eclipse)
.idea/
.idea-new
.settings
.jar
.ide_plugins/
# Logs
npm-debug.log*
# Dependency directories
node_modules
jspm_packages
bower_components
# PHP CS
.php_cs
.php_cs.cache
# NPM Packages
package-lock.json
yarn.lock
# Atom Sync
.remote-sync.json
*.log
# Database Backups
*.sql