chore: update .gitignore with cache and temporary files
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
This commit is contained in:
18
.gitignore
vendored
18
.gitignore
vendored
@@ -35,3 +35,21 @@ storage/analytics/*
|
|||||||
/.ansible/
|
/.ansible/
|
||||||
/.archive/
|
/.archive/
|
||||||
/x_ansible/
|
/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
|
||||||
|
|||||||
Reference in New Issue
Block a user