From 9f24b9b3515c05b3c64223840f231cc7f02e2ee6 Mon Sep 17 00:00:00 2001 From: shimomo Date: Sat, 30 Aug 2025 01:19:30 +0900 Subject: [PATCH 1/3] chore: update .gitignore --- .gitignore | 115 +++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 112 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 2ad43064..5edf31cd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,113 @@ -/.phpunit.cache -/build -/vendor +##################################### +# OS依存ファイル +##################################### +.DS_Store +Thumbs.db +ehthumbs.db +Desktop.ini + +##################################### +# 一時ファイル・ログ・バックアップ +##################################### +*.log +*.tmp +*.swp +*.swo +*.bak +*.orig + +##################################### +# 環境変数・機密情報 +##################################### +.env +.env.* +*.key +*.pem + +##################################### +# ビルド成果物・キャッシュ +##################################### +dist/ +build/ +out/ +tmp/ +cache/ +*.pyc +__pycache__/ + +##################################### +# IDE / エディタ設定 +##################################### +# VSCode +.vscode/ +.history/ + +# JetBrains系(PhpStormなど) +.idea/ + +##################################### +# Node.js関連 +##################################### +node_modules/ +npm-debug.log +yarn-error.log +*.lock + +##################################### +# PHP関連設定 +##################################### + +# Composerの依存関係 +vendor/ +composer.phar + +# PHPUnitのキャッシュとレポート .phpunit.result.cache +phpunit.xml.dist + +# PHP-CS-Fixerのキャッシュ +.php-cs-fixer.cache + +# PHPStanやPsalmなど静的解析ツールのキャッシュ +.phpstan/ +psalm.xml.dist + +# SymfonyやLaravelなどのキャッシュ・ログ・セッション +storage/ +bootstrap/cache/ +var/ +*.cache + +# Laravel特有 +.env.backup +.env.local +.env.production +.env.testing +homestead.yaml +Homestead.yaml +Homestead.json +.idea/ + +# WordPress(テーマ・プラグイン開発時) +wp-content/uploads/ +wp-content/cache/ +wp-content/upgrade/ +wp-content/debug.log + +##################################### +# カバレッジ関連 +##################################### +coverage/ +*.lcov + +##################################### +# その他 +##################################### +*.iml +*.class +*.o +*.out +*.so +*.dll +*.exe +*.pid From bd3fb601b6400353e81495fa6a2cb3ee4a182a78 Mon Sep 17 00:00:00 2001 From: shimomo Date: Sat, 30 Aug 2025 14:43:00 +0900 Subject: [PATCH 2/3] chore: update .gitignore --- .gitignore | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 5edf31cd..c2abd993 100644 --- a/.gitignore +++ b/.gitignore @@ -21,6 +21,8 @@ Desktop.ini ##################################### .env .env.* +!.env.example +!.env.*.example *.key *.pem @@ -51,7 +53,6 @@ __pycache__/ node_modules/ npm-debug.log yarn-error.log -*.lock ##################################### # PHP関連設定 @@ -62,15 +63,16 @@ vendor/ composer.phar # PHPUnitのキャッシュとレポート +.phpunit.cache .phpunit.result.cache -phpunit.xml.dist +phpunit.xml # PHP-CS-Fixerのキャッシュ .php-cs-fixer.cache # PHPStanやPsalmなど静的解析ツールのキャッシュ .phpstan/ -psalm.xml.dist +psalm.xml # SymfonyやLaravelなどのキャッシュ・ログ・セッション storage/ From 1a10adae5e0bedeb6d40c5cab24d26e5b8b3ceb9 Mon Sep 17 00:00:00 2001 From: shimomo Date: Sat, 30 Aug 2025 14:50:35 +0900 Subject: [PATCH 3/3] chore: update .gitignore --- .gitignore | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index c2abd993..595fee2b 100644 --- a/.gitignore +++ b/.gitignore @@ -53,6 +53,8 @@ __pycache__/ node_modules/ npm-debug.log yarn-error.log +yarn-debug.log* +pnpm-debug.log* ##################################### # PHP関連設定 @@ -65,6 +67,7 @@ composer.phar # PHPUnitのキャッシュとレポート .phpunit.cache .phpunit.result.cache +phpunit.result.cache phpunit.xml # PHP-CS-Fixerのキャッシュ @@ -77,7 +80,8 @@ psalm.xml # SymfonyやLaravelなどのキャッシュ・ログ・セッション storage/ bootstrap/cache/ -var/ +var/cache/ +var/log/ *.cache # Laravel特有 @@ -88,7 +92,6 @@ var/ homestead.yaml Homestead.yaml Homestead.json -.idea/ # WordPress(テーマ・プラグイン開発時) wp-content/uploads/