Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.63 KB | None | 0 0
  1.  
  2. # Created by https://www.gitignore.io/api/git,composer,phpstorm,sublimetext,visualstudiocode
  3. # Edit at https://www.gitignore.io/?templates=git,composer,phpstorm,sublimetext,visualstudiocode
  4.  
  5. ### Composer ###
  6. composer.phar
  7. /vendor/
  8.  
  9. # Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
  10. # You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
  11. # composer.lock
  12.  
  13. ### Git ###
  14. # Created by git for backups. To disable backups in Git:
  15. # $ git config --global mergetool.keepBackup false
  16. *.orig
  17.  
  18. # Created by git when using merge tools for conflicts
  19. *.BACKUP.*
  20. *.BASE.*
  21. *.LOCAL.*
  22. *.REMOTE.*
  23. *_BACKUP_*.txt
  24. *_BASE_*.txt
  25. *_LOCAL_*.txt
  26. *_REMOTE_*.txt
  27.  
  28. ### PhpStorm ###
  29. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
  30. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  31.  
  32. # User-specific stuff
  33. .idea/
  34. .idea
  35. .idea/**/workspace.xml
  36. .idea/**/tasks.xml
  37. .idea/**/usage.statistics.xml
  38. .idea/**/dictionaries
  39. .idea/**/shelf
  40.  
  41. # Generated files
  42. .idea/**/contentModel.xml
  43.  
  44. # Sensitive or high-churn files
  45. .idea/**/dataSources/
  46. .idea/**/dataSources.ids
  47. .idea/**/dataSources.local.xml
  48. .idea/**/sqlDataSources.xml
  49. .idea/**/dynamic.xml
  50. .idea/**/uiDesigner.xml
  51. .idea/**/dbnavigator.xml
  52.  
  53. # Gradle
  54. .idea/**/gradle.xml
  55. .idea/**/libraries
  56.  
  57. # Gradle and Maven with auto-import
  58. # When using Gradle or Maven with auto-import, you should exclude module files,
  59. # since they will be recreated, and may cause churn. Uncomment if using
  60. # auto-import.
  61. # .idea/modules.xml
  62. # .idea/*.iml
  63. # .idea/modules
  64. # *.iml
  65. # *.ipr
  66.  
  67. # CMake
  68. cmake-build-*/
  69.  
  70. # Mongo Explorer plugin
  71. .idea/**/mongoSettings.xml
  72.  
  73. # File-based project format
  74. *.iws
  75.  
  76. # IntelliJ
  77. out/
  78.  
  79. # mpeltonen/sbt-idea plugin
  80. .idea_modules/
  81.  
  82. # JIRA plugin
  83. atlassian-ide-plugin.xml
  84.  
  85. # Cursive Clojure plugin
  86. .idea/replstate.xml
  87.  
  88. # Crashlytics plugin (for Android Studio and IntelliJ)
  89. com_crashlytics_export_strings.xml
  90. crashlytics.properties
  91. crashlytics-build.properties
  92. fabric.properties
  93.  
  94. # Editor-based Rest Client
  95. .idea/httpRequests
  96.  
  97. # Android studio 3.1+ serialized cache file
  98. .idea/caches/build_file_checksums.ser
  99.  
  100. ### PhpStorm Patch ###
  101. # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
  102.  
  103. # *.iml
  104. # modules.xml
  105. # .idea/misc.xml
  106. # *.ipr
  107.  
  108. # Sonarlint plugin
  109. .idea/sonarlint
  110.  
  111. ### SublimeText ###
  112. # Cache files for Sublime Text
  113. *.tmlanguage.cache
  114. *.tmPreferences.cache
  115. *.stTheme.cache
  116.  
  117. # Workspace files are user-specific
  118. *.sublime-workspace
  119.  
  120. # Project files should be checked into the repository, unless a significant
  121. # proportion of contributors will probably not be using Sublime Text
  122. # *.sublime-project
  123.  
  124. # SFTP configuration file
  125. sftp-config.json
  126.  
  127. # Package control specific files
  128. Package Control.last-run
  129. Package Control.ca-list
  130. Package Control.ca-bundle
  131. Package Control.system-ca-bundle
  132. Package Control.cache/
  133. Package Control.ca-certs/
  134. Package Control.merged-ca-bundle
  135. Package Control.user-ca-bundle
  136. oscrypto-ca-bundle.crt
  137. bh_unicode_properties.cache
  138.  
  139. # Sublime-github package stores a github token in this file
  140. # https://packagecontrol.io/packages/sublime-github
  141. GitHub.sublime-settings
  142.  
  143. ### VisualStudioCode ###
  144. .vscode/*
  145. !.vscode/settings.json
  146. !.vscode/tasks.json
  147. !.vscode/launch.json
  148. !.vscode/extensions.json
  149.  
  150. ### VisualStudioCode Patch ###
  151. # Ignore all local history of files
  152. .history
  153.  
  154. config.php
  155. # End of https://www.gitignore.io/api/git,composer,phpstorm,sublimetext,visualstudiocode
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement