.gitignore 604 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # User specific & automatically generated files #
  2. #################################################
  3. /build
  4. /dist
  5. /tags
  6. /composer.lock
  7. /phpunit.xml
  8. /phpcs.xml
  9. /vendor
  10. *.mo
  11. debug.log
  12. error.log
  13. # OS generated files #
  14. ######################
  15. .DS_Store
  16. .DS_Store?
  17. ._*
  18. .Spotlight-V100
  19. .Trashes
  20. Icon?
  21. ehthumbs.db
  22. Thumbs.db
  23. # Tool specific files #
  24. #######################
  25. # vim
  26. *~
  27. *.swp
  28. *.swo
  29. # sublime text & textmate
  30. *.sublime-*
  31. *.stTheme.cache
  32. *.tmlanguage.cache
  33. *.tmPreferences.cache
  34. # Eclipse
  35. .settings/*
  36. # JetBrains, aka PHPStorm, IntelliJ IDEA
  37. .idea/*
  38. # NetBeans
  39. nbproject/*
  40. # Visual Studio Code
  41. .vscode