.gitignore 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. # All of the vendor directory should be installed by running 'composer install'
  2. vendor/
  3. composer.lock
  4. *.phar
  5. .php_cs.cache
  6. coverage/
  7. psalm/cache/
  8. #################
  9. ## Eclipse
  10. #################
  11. *.pydevproject
  12. .project
  13. .metadata
  14. .idea
  15. bin/
  16. tmp/
  17. *.tmp
  18. *.bak
  19. *.swp
  20. *~.nib
  21. local.properties
  22. .classpath
  23. .settings/
  24. .loadpath
  25. # External tool builders
  26. .externalToolBuilders/
  27. # Locally stored "Eclipse launch configurations"
  28. *.launch
  29. # CDT-specific
  30. .cproject
  31. # PDT-specific
  32. .buildpath
  33. #################
  34. ## Visual Studio
  35. #################
  36. ## Ignore Visual Studio temporary files, build results, and
  37. ## files generated by popular Visual Studio add-ons.
  38. # User-specific files
  39. *.suo
  40. *.user
  41. *.sln.docstates
  42. # Build results
  43. [Dd]ebug/
  44. [Rr]elease/
  45. *_i.c
  46. *_p.c
  47. *.ilk
  48. *.meta
  49. *.obj
  50. *.pch
  51. *.pdb
  52. *.pgc
  53. *.pgd
  54. *.rsp
  55. *.sbr
  56. *.tlb
  57. *.tli
  58. *.tlh
  59. *.tmp
  60. *.vspscc
  61. .builds
  62. *.dotCover
  63. ## TODO: If you have NuGet Package Restore enabled, uncomment this
  64. #packages/
  65. # Visual C++ cache files
  66. ipch/
  67. *.aps
  68. *.ncb
  69. *.opensdf
  70. *.sdf
  71. # Visual Studio profiler
  72. *.psess
  73. *.vsp
  74. # ReSharper is a .NET coding add-in
  75. _ReSharper*
  76. # Installshield output folder
  77. [Ee]xpress
  78. # DocProject is a documentation generator add-in
  79. DocProject/buildhelp/
  80. DocProject/Help/*.HxT
  81. DocProject/Help/*.HxC
  82. DocProject/Help/*.hhc
  83. DocProject/Help/*.hhk
  84. DocProject/Help/*.hhp
  85. DocProject/Help/Html2
  86. DocProject/Help/html
  87. # Click-Once directory
  88. publish
  89. # Others
  90. [Bb]in
  91. [Oo]bj
  92. sql
  93. TestResults
  94. *.Cache
  95. ClientBin
  96. stylecop.*
  97. ~$*
  98. *.dbmdl
  99. Generated_Code #added for RIA/Silverlight projects
  100. # Backup & report files from converting an old project file to a newer
  101. # Visual Studio version. Backup files are not needed, because we have git ;-)
  102. _UpgradeReport_Files/
  103. Backup*/
  104. UpgradeLog*.XML
  105. ############
  106. ## Windows
  107. ############
  108. # Windows image file caches
  109. Thumbs.db
  110. # Folder config file
  111. Desktop.ini
  112. #############
  113. ## Python
  114. #############
  115. *.py[co]
  116. # Packages
  117. *.egg
  118. *.egg-info
  119. dist
  120. build
  121. eggs
  122. parts
  123. bin
  124. var
  125. sdist
  126. develop-eggs
  127. .installed.cfg
  128. # Installer logs
  129. pip-log.txt
  130. # Unit test / coverage reports
  131. .coverage
  132. .tox
  133. clover.xml
  134. #Translations
  135. *.mo
  136. #Mr Developer
  137. .mr.developer.cfg
  138. # Mac crap
  139. .DS_Store
  140. # NetBeans IDE
  141. nbproject/
  142. # Visual Studio Code
  143. .vscode/