Skip to content

Commit 9f24b9b

Browse files
committed
chore: update .gitignore
1 parent df9c0d9 commit 9f24b9b

File tree

1 file changed

+112
-3
lines changed

1 file changed

+112
-3
lines changed

.gitignore

Lines changed: 112 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,113 @@
1-
/.phpunit.cache
2-
/build
3-
/vendor
1+
#####################################
2+
# OS依存ファイル
3+
#####################################
4+
.DS_Store
5+
Thumbs.db
6+
ehthumbs.db
7+
Desktop.ini
8+
9+
#####################################
10+
# 一時ファイル・ログ・バックアップ
11+
#####################################
12+
*.log
13+
*.tmp
14+
*.swp
15+
*.swo
16+
*.bak
17+
*.orig
18+
19+
#####################################
20+
# 環境変数・機密情報
21+
#####################################
22+
.env
23+
.env.*
24+
*.key
25+
*.pem
26+
27+
#####################################
28+
# ビルド成果物・キャッシュ
29+
#####################################
30+
dist/
31+
build/
32+
out/
33+
tmp/
34+
cache/
35+
*.pyc
36+
__pycache__/
37+
38+
#####################################
39+
# IDE / エディタ設定
40+
#####################################
41+
# VSCode
42+
.vscode/
43+
.history/
44+
45+
# JetBrains系(PhpStormなど)
46+
.idea/
47+
48+
#####################################
49+
# Node.js関連
50+
#####################################
51+
node_modules/
52+
npm-debug.log
53+
yarn-error.log
54+
*.lock
55+
56+
#####################################
57+
# PHP関連設定
58+
#####################################
59+
60+
# Composerの依存関係
61+
vendor/
62+
composer.phar
63+
64+
# PHPUnitのキャッシュとレポート
465
.phpunit.result.cache
66+
phpunit.xml.dist
67+
68+
# PHP-CS-Fixerのキャッシュ
69+
.php-cs-fixer.cache
70+
71+
# PHPStanやPsalmなど静的解析ツールのキャッシュ
72+
.phpstan/
73+
psalm.xml.dist
74+
75+
# SymfonyやLaravelなどのキャッシュ・ログ・セッション
76+
storage/
77+
bootstrap/cache/
78+
var/
79+
*.cache
80+
81+
# Laravel特有
82+
.env.backup
83+
.env.local
84+
.env.production
85+
.env.testing
86+
homestead.yaml
87+
Homestead.yaml
88+
Homestead.json
89+
.idea/
90+
91+
# WordPress(テーマ・プラグイン開発時)
92+
wp-content/uploads/
93+
wp-content/cache/
94+
wp-content/upgrade/
95+
wp-content/debug.log
96+
97+
#####################################
98+
# カバレッジ関連
99+
#####################################
100+
coverage/
101+
*.lcov
102+
103+
#####################################
104+
# その他
105+
#####################################
106+
*.iml
107+
*.class
108+
*.o
109+
*.out
110+
*.so
111+
*.dll
112+
*.exe
113+
*.pid

0 commit comments

Comments
 (0)