Add ignore patterns for: - Cache files (storage/cache/*.cache.php) - PHPStan cache (var/phpstan/cache/**) - Temporary debug output directories - Cookies and session files This prevents committing: ✅ Generated cache files ✅ PHPStan analysis cache ✅ Temporary test outputs ✅ Sensitive session data
56 lines
698 B
Plaintext
56 lines
698 B
Plaintext
# Editor / IDE
|
|
.idea/
|
|
|
|
# System
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Build / Runtime
|
|
vendor/
|
|
.env
|
|
*.log
|
|
*.retry
|
|
x_ansible/.vault_pass
|
|
*.Zone.Identifier
|
|
|
|
# Backup Dateien
|
|
*~
|
|
|
|
|
|
.php-cs-fixer.php
|
|
|
|
|
|
ssl/*.pem
|
|
|
|
node_modules
|
|
storage/uploads/*
|
|
storage/logs/.gitkeep
|
|
storage/analytics/*
|
|
!/dist/
|
|
|
|
.archive/
|
|
|
|
!/storage/uploads/videos/
|
|
!/storage/analytics/.gitkeep
|
|
/.ansible/
|
|
/.archive/
|
|
/x_ansible/
|
|
|
|
# Cache
|
|
storage/cache/*.cache.php
|
|
storage/cache/*.php
|
|
!storage/cache/.gitkeep
|
|
|
|
# PHPStan
|
|
var/phpstan/cache/**
|
|
!var/phpstan/.gitkeep
|
|
|
|
# Temporary debug files
|
|
scripts/debug/output/
|
|
scripts/test/output/
|
|
tests/tmp/
|
|
|
|
# Cookies and session files
|
|
cookies.txt
|
|
cookies_new.txt
|