.gitignore 619 B

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