Skip to content

Commit c9d81b4

Browse files
committed
Added .gitignore file
1 parent 44f28f2 commit c9d81b4

1 file changed

Lines changed: 84 additions & 0 deletions

File tree

.gitignore

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
# Sublime project files
2+
*.sublime-*
3+
4+
# phpstorm project files
5+
.idea
6+
7+
# netbeans project files
8+
nbproject
9+
10+
# zend studio for eclipse project files
11+
.buildpath
12+
.project
13+
.settings
14+
15+
# Yii framework
16+
# =========================
17+
!assets/.gitignore
18+
runtime/*
19+
!runtime/.gitignore
20+
data/*.db
21+
themes/classic/views/
22+
!web/uploads
23+
/web/uploads/*
24+
25+
# composer vendor dir
26+
/vendor
27+
28+
# composer itself is not needed
29+
composer.phar
30+
composer.lock
31+
32+
# SASS
33+
.sass-cache
34+
35+
# =========================
36+
# Operating System Files
37+
# =========================
38+
39+
# Unix / Linux
40+
# =========================
41+
*~
42+
43+
# OSX
44+
# =========================
45+
46+
# Mac DS_Store Files
47+
.DS_Store
48+
.AppleDouble
49+
.LSOverride
50+
51+
# Icon must ends with two \r.
52+
Icon
53+
54+
55+
# Thumbnails
56+
._*
57+
58+
# Files that might appear on external disk
59+
.Spotlight-V100
60+
.Trashes
61+
62+
# Windows
63+
# =========================
64+
65+
# Windows image file caches
66+
Thumbs.db
67+
ehthumbs.db
68+
69+
# Folder config file
70+
Desktop.ini
71+
72+
# Recycle Bin used on file shares
73+
$RECYCLE.BIN/
74+
75+
# Windows Installer files
76+
*.cab
77+
*.msi
78+
*.msm
79+
*.msp
80+
81+
# phpunit itself is not needed
82+
phpunit.phar
83+
# local phpunit config
84+
/phpunit.xml

0 commit comments

Comments
 (0)