Skip to content

Commit 04fb83d

Browse files
authored
Create .gitignore
1 parent f49a236 commit 04fb83d

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

.gitignore

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Composer dependencies
2+
/vendor/
3+
/composer.lock
4+
/composer.phar
5+
6+
# PHPUnit
7+
/.phpunit.result.cache
8+
/phpunit.xml
9+
/coverage/
10+
11+
# PHP-CS-Fixer
12+
/.php-cs-fixer.cache
13+
/.php-cs-fixer.php
14+
15+
# Psalm
16+
/psalm.xml
17+
/.psalm/
18+
19+
# IDE & System files
20+
/.idea/
21+
/.vscode/
22+
/.phpstorm.meta.php
23+
/_ide_helper.php
24+
/.DS_Store
25+
/Thumbs.db
26+
27+
# Operating System Files
28+
.DS_Store
29+
.DS_Store?
30+
._*
31+
.Spotlight-V100
32+
.Trashes
33+
ehthumbs.db
34+
Thumbs.db
35+
36+
# Project specific
37+
/build/
38+
/logs/
39+
*.log
40+
*.cache
41+
*.bak
42+
*.swp
43+
*~

0 commit comments

Comments
 (0)