-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitignore
60 lines (47 loc) · 944 Bytes
/
.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
#
# .gitignore
#
# Ignore works for the dir the gitignore file resides in.
# To have a global effect affect to all repositories run this command:
# git config --global core.excludesfile ~/.gitignore
# removed .gitattributes and .gitignore when doing git export
.gitattributes export-ignore
.gitignore export-ignore
.travis.yml export-ignore
phpmd.xml export-ignore
phpunit.xml.dist export-ignore
/tests export-ignore
# Mac OS X Finder and whatnot
.DS_Store
# Windows crap
Thumbs.db
# Netbeans IDE related
nbproject
# Eclipse IDE related
.cache*
.project
.settings*
.buildpath
# PHPStorm IDE related
.idea
# Webserver
/.htaccess
# Scriptfiles
cache
*.log
# Subversion
.svn
.svn/entries
# PHPUnit
# phpunit.xml
# PHP composer related
composer.lock
vendor
# php-cs-fixer
php-cs-fixer*.txt
# build folders
build/api
build/code-browser
build/coverage
build/logs
build/pdepend