Skip to content

Commit 58a9779

Browse files
authored
Merge pull request #554 from lonnieezell/update-gitignore
Better gitignore file
2 parents cf21770 + f42856b commit 58a9779

File tree

1 file changed

+104
-6
lines changed

1 file changed

+104
-6
lines changed

.gitignore

Lines changed: 104 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,107 @@
1-
vendor/
2-
build/
3-
phpunit*.xml
1+
#-------------------------
2+
# Operating Specific Junk Files
3+
#-------------------------
4+
5+
# OS X
6+
.DS_Store
7+
.AppleDouble
8+
.LSOverride
9+
10+
# OS X Thumbnails
11+
._*
12+
13+
# Windows image file caches
14+
Thumbs.db
15+
ehthumbs.db
16+
Desktop.ini
17+
18+
# Recycle Bin used on file shares
19+
$RECYCLE.BIN/
20+
21+
# Windows Installer files
22+
*.cab
23+
*.msi
24+
*.msm
25+
*.msp
26+
27+
# Windows shortcuts
28+
*.lnk
29+
30+
# Linux
31+
*~
32+
33+
# KDE directory preferences
34+
.directory
35+
36+
# Linux trash folder which might appear on any partition or disk
37+
.Trash-*
38+
39+
#-------------------------
40+
# Environment Files
41+
#-------------------------
42+
# These should never be under version control,
43+
# as it poses a security risk.
44+
.env
45+
.vagrant
46+
Vagrantfile
47+
48+
#-------------------------
49+
# Temporary Files
50+
#-------------------------
51+
php_errors.log
52+
53+
#-------------------------
54+
# Test Files
55+
#-------------------------
56+
tests/coverage*
57+
58+
# Don't save phpunit under version control.
459
phpunit
5-
*.cache
60+
61+
#-------------------------
62+
# Composer
63+
#-------------------------
64+
vendor/
665
composer.lock
7-
.DS_Store
66+
67+
#-------------------------
68+
# IDE / Development Files
69+
#-------------------------
70+
71+
# Modules Testing
72+
_modules/*
73+
74+
# phpenv local config
75+
.php-version
76+
77+
# Jetbrains editors (PHPStorm, etc)
878
.idea/
9-
site
79+
*.iml
80+
81+
# Netbeans
82+
nbproject/
83+
build/
84+
nbbuild/
85+
dist/
86+
nbdist/
87+
nbactions.xml
88+
nb-configuration.xml
89+
.nb-gradle/
90+
91+
# Sublime Text
92+
*.tmlanguage.cache
93+
*.tmPreferences.cache
94+
*.stTheme.cache
95+
*.sublime-workspace
96+
*.sublime-project
97+
.phpintel
98+
/api/
99+
100+
# Visual Studio Code
101+
.vscode/
102+
103+
/results/
104+
/phpunit*.xml
105+
/.phpunit.*.cache
106+
107+
/.php-cs-fixer.php

0 commit comments

Comments
 (0)