-
Notifications
You must be signed in to change notification settings - Fork 3
/
.gitignore
60 lines (49 loc) · 1.09 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
# Usual suspects
.DS_STORE
# SVN
.svn
# Windows image file caches
Thumbs.db
# Folder config file
Desktop.ini
##############
# VCS
##############
# Mercurial
.hg
##############
# IDE
##############
# Eclipse/Aptana IDE
.buildpath
.project
.settings
# PHPStorm
.idea
.idea/*
# Netbeans
nbproject/*
# PSD/AI
assets
.assets
psd
.psd
# Everything that gets added by composer.
vendor
## Composer ##
# Do NOT ignore composer files. This is
# important because the install command checks if
# a lock file is present, and if it is,
# it downloads the versions specified there
# (regardless of what composer.json says).
# This means that anyone who sets up the project
# will download the exact same version of the dependencies.
# This means that if any of the dependencies get a
# new version, you won't get the updates automatically.
# To update to the new version, use update command.
# This will fetch the latest matching versions
#
# (according to your composer.json file)
# and also update the lock file with the new version.
composer.phar
composer.lock