.gitignore 932 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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/storage
  24. /public/build
  25. /npm-debug.log*
  26. /yarn-error.log*
  27. # =========================
  28. # IDE / OS
  29. # =========================
  30. .idea/
  31. .vscode/
  32. *.swp
  33. *.swo
  34. *.DS_Store
  35. Thumbs.db
  36. # =========================
  37. # Testing / Coverage
  38. # =========================
  39. /coverage/
  40. .phpunit.cache
  41. # =========================
  42. # Docker
  43. # =========================
  44. .docker/
  45. docker-compose.override.yml
  46. # =========================
  47. # Misc
  48. # =========================
  49. *.log
  50. *.bak
  51. *.tmp