-
Notifications
You must be signed in to change notification settings - Fork 148
/
.gitignore
64 lines (51 loc) · 1.3 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
# Cache directories
Thumbs.db
*.DS_Store
*.empty
# sass cache files
*.sass-cache
# phpStorm project files
.idea
# Vagrant stuff
.vagrant
# Composer-installed binaries
bin/apigen*
bin/behat
bin/phing
bin/phploc
bin/pdepend
bin/phpmd
bin/phpcpd
bin/phpcs
bin/phpcb
bin/phpunit
bin/webunit
# Marker file for production mode
/PRODUCTION_MODE
# Netbeans project files
nbproject
# Eclipse, Zend studio, Aptana or other eclipse like project files
.buildpath
.project
.settings
# mac deployment helpers
switch
index
# Composer-installed libraries (install them manually using `php composer.phar install` command)
/vendor
# Local overrides (you have to write them manually
# after consulting with corresponding `local.example.php` scripts)
/common/config/overrides/local.php
/frontend/config/overrides/local.php
/console/config/overrides/local.php
/backend/config/overrides/local.php
# Environment overrides (they are generated by environment-changing commands
# and they are just copies from `config/environments` folders anyway)
/common/config/overrides/environment.php
/frontend/config/overrides/environment.php
/console/config/overrides/environment.php
/backend/config/overrides/environment.php
# Behat local config installed (leading slash matters)
/behat-local.yml
# Reports generated by static code checkers
/reports