Skip to content

Commit 91938ba

Browse files
committed
update gitignore
1 parent 613215b commit 91938ba

File tree

1 file changed

+127
-5
lines changed

1 file changed

+127
-5
lines changed

.gitignore

Lines changed: 127 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,129 @@
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+
writable/cache/*
52+
!writable/cache/index.html
53+
54+
writable/logs/*
55+
!writable/logs/index.html
56+
57+
writable/session/*
58+
!writable/session/index.html
59+
60+
writable/uploads/*
61+
!writable/uploads/index.html
62+
63+
writable/debugbar/*
64+
!writable/debugbar/index.html
65+
66+
writable/**/*.db
67+
writable/**/*.sqlite
68+
69+
php_errors.log
70+
71+
#-------------------------
72+
# User Guide Temp Files
73+
#-------------------------
74+
user_guide_src/build/*
75+
76+
#-------------------------
77+
# Test Files
78+
#-------------------------
79+
tests/coverage*
80+
81+
# Don't save phpunit under version control.
482
phpunit
5-
*.cache
83+
84+
#-------------------------
85+
# Composer
86+
#-------------------------
87+
vendor/
688
composer.lock
7-
.DS_Store
89+
90+
#-------------------------
91+
# IDE / Development Files
92+
#-------------------------
93+
94+
# Modules Testing
95+
_modules/*
96+
97+
# phpenv local config
98+
.php-version
99+
100+
# Jetbrains editors (PHPStorm, etc)
101+
.idea/
102+
*.iml
103+
104+
# Netbeans
105+
nbproject/
106+
build/
107+
nbbuild/
108+
dist/
109+
nbdist/
110+
nbactions.xml
111+
nb-configuration.xml
112+
.nb-gradle/
113+
114+
# Sublime Text
115+
*.tmlanguage.cache
116+
*.tmPreferences.cache
117+
*.stTheme.cache
118+
*.sublime-workspace
119+
*.sublime-project
120+
.phpintel
121+
/api/
122+
123+
# Visual Studio Code
124+
.vscode/
125+
126+
/results/
127+
/phpunit*.xml
128+
129+
/.php-cs-fixer.php

0 commit comments

Comments
 (0)