b29a268b1d
- Move completed plan files to .plans/done/ - Move 18 open plan files to .plans/open/ - Update .gitignore to exclude .verified_plans temp file - Verified all 18 open plans still describe unimplemented issues
41 lines
375 B
Plaintext
41 lines
375 B
Plaintext
# Dependencies
|
|
/vendor/
|
|
/node_modules/
|
|
|
|
# Build output
|
|
/js/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Composer
|
|
composer.lock
|
|
|
|
# npm
|
|
package-lock.json
|
|
|
|
# Secrets
|
|
.env
|
|
|
|
# Docker
|
|
.build_done
|
|
|
|
# Test artifacts
|
|
.playwright-mcp/
|
|
.phpunit.cache/
|
|
screenshots/
|
|
test-results/
|
|
|
|
# Release artifacts
|
|
artifacts/
|
|
|
|
# Plan verification tracking
|
|
.plans/.verified_plans |