| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- # =========================
- # Laravel / PHP
- # =========================
- /vendor/
- !.env.example
- .phpunit.result.cache
- .php_cs.cache
- # =========================
- # Logs & Cache
- # =========================
- /storage/*.key
- /storage/debugbar/
- /storage/logs/
- /storage/framework/cache/
- /storage/framework/sessions/
- /storage/framework/views/
- /storage/framework/testing/
- # =========================
- # Node / Frontend
- # =========================
- /node_modules/
- /public/hot
- /public/storage
- /public/build
- /npm-debug.log*
- /yarn-error.log*
- # =========================
- # IDE / OS
- # =========================
- .idea/
- .vscode/
- *.swp
- *.swo
- *.DS_Store
- Thumbs.db
- # =========================
- # Testing / Coverage
- # =========================
- /coverage/
- .phpunit.cache
- # =========================
- # Docker
- # =========================
- .docker/
- docker-compose.override.yml
- # =========================
- # Misc
- # =========================
- *.log
- *.bak
- *.tmp
|