| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- # =========================
- # 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/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
|