Skip to content

Commit 30729b8

Browse files
committed
Added .gitignore
1 parent 9fff664 commit 30729b8

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

.gitignore

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# phpstorm project files
2+
.idea
3+
4+
# netbeans project files
5+
nbproject
6+
7+
# zend studio for eclipse project files
8+
.buildpath
9+
.project
10+
.settings
11+
12+
# sublime text project / workspace files
13+
*.sublime-project
14+
*.sublime-workspace
15+
16+
# windows thumbnail cache
17+
Thumbs.db
18+
19+
# composer vendor dir
20+
/vendor
21+
# cubrid install dir
22+
/cubrid
23+
24+
# composer itself is not needed
25+
composer.phar
26+
27+
# composer.lock in applications is ignored since it's automatically created by composer when application is installed
28+
/apps/*/composer.lock
29+
30+
# Mac DS_Store Files
31+
.DS_Store
32+
33+
# phpunit itself is not needed
34+
phpunit.phar
35+
# local phpunit config
36+
/phpunit.xml
37+
38+
tests/_output/*

0 commit comments

Comments
 (0)