.gitignore 688 B

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