Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
117 changes: 114 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,115 @@
/.phpunit.cache
/build
/vendor
#####################################
# OS依存ファイル
#####################################
.DS_Store
Thumbs.db
ehthumbs.db
Desktop.ini

#####################################
# 一時ファイル・ログ・バックアップ
#####################################
*.log
*.tmp
*.swp
*.swo
*.bak
*.orig

#####################################
# 環境変数・機密情報
#####################################
.env
.env.*
!.env.example
!.env.*.example
*.key
*.pem

Comment thread
coderabbitai[bot] marked this conversation as resolved.
#####################################
# ビルド成果物・キャッシュ
#####################################
dist/
build/
out/
tmp/
cache/
*.pyc
__pycache__/

#####################################
# IDE / エディタ設定
#####################################
# VSCode
.vscode/
.history/

# JetBrains系(PhpStormなど)
.idea/

#####################################
# Node.js関連
#####################################
node_modules/
npm-debug.log
yarn-error.log

#####################################
# PHP関連設定
#####################################

# Composerの依存関係
vendor/
composer.phar

# PHPUnitのキャッシュとレポート
.phpunit.cache
.phpunit.result.cache
phpunit.xml

# PHP-CS-Fixerのキャッシュ
.php-cs-fixer.cache

# PHPStanやPsalmなど静的解析ツールのキャッシュ
.phpstan/
psalm.xml

Comment thread
coderabbitai[bot] marked this conversation as resolved.
# 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