.gitignore 661 B

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