Skip to content

Commit 0d41d33

Browse files
committed
refactor: simplify .gitignore for composer library project
- Remove test-related rules (no testing infrastructure yet) - Remove runtime/examples related rules (managed by sub-folders) - Add multi-IDE support (PhpStorm, VS Code, Vim) - Add Windows OS support (Thumbs.db) - Keep only core rules for composer library projects
1 parent 4a3a816 commit 0d41d33

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

.gitignore

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
1-
/vendor
2-
/.idea/
3-
/.phpunit.result.cache
1+
# IDE
2+
.idea/
3+
.vscode/
4+
*.swp
5+
*.swo
6+
*~
7+
8+
# Composer
9+
/vendor/
410
composer.lock
5-
.phpunit.result.cache
11+
12+
# OS
613
.DS_Store
7-
/app/runtime/
14+
Thumbs.db

0 commit comments

Comments
 (0)