.gitignore 672 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. /vendors
  11. /composer.phar
  12. *.mo
  13. debug.log
  14. error.log
  15. .phpunit.result.cache
  16. # OS generated files #
  17. ######################
  18. .DS_Store
  19. .DS_Store?
  20. ._*
  21. .Spotlight-V100
  22. .Trashes
  23. Icon?
  24. ehthumbs.db
  25. Thumbs.db
  26. # Tool specific files #
  27. #######################
  28. # vim
  29. *~
  30. *.swp
  31. *.swo
  32. # sublime text & textmate
  33. *.sublime-*
  34. *.stTheme.cache
  35. *.tmlanguage.cache
  36. *.tmPreferences.cache
  37. # Eclipse
  38. .settings/*
  39. /.project
  40. /.buildpath
  41. # JetBrains, aka PHPStorm, IntelliJ IDEA
  42. .idea/*
  43. # NetBeans
  44. nbproject/*
  45. # Visual Studio Code
  46. .vscode