.gitignore 916 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # =========================
  2. # Laravel / PHP
  3. # =========================
  4. /vendor/
  5. !.env.example
  6. .phpunit.result.cache
  7. .php_cs.cache
  8. # =========================
  9. # Logs & Cache
  10. # =========================
  11. /storage/*.key
  12. /storage/debugbar/
  13. /storage/logs/
  14. /storage/framework/cache/
  15. /storage/framework/sessions/
  16. /storage/framework/views/
  17. /storage/framework/testing/
  18. # =========================
  19. # Node / Frontend
  20. # =========================
  21. /node_modules/
  22. /public/hot
  23. /public/build
  24. /npm-debug.log*
  25. /yarn-error.log*
  26. # =========================
  27. # IDE / OS
  28. # =========================
  29. .idea/
  30. .vscode/
  31. *.swp
  32. *.swo
  33. *.DS_Store
  34. Thumbs.db
  35. # =========================
  36. # Testing / Coverage
  37. # =========================
  38. /coverage/
  39. .phpunit.cache
  40. # =========================
  41. # Docker
  42. # =========================
  43. .docker/
  44. docker-compose.override.yml
  45. # =========================
  46. # Misc
  47. # =========================
  48. *.log
  49. *.bak
  50. *.tmp