Advertisement
Guest User

Laravel gitignore Mac JetBrains

a guest
Jan 11th, 2019
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. # JetBrains files
  2. .idea
  3.  
  4. # composer files
  5. composer.phar
  6. composer
  7.  
  8. # Recommended
  9. /node_modules
  10. /public/hot
  11. /public/storage
  12. /storage/*.key
  13. /vendor
  14. .env
  15. .phpunit.result.cache
  16. Homestead.json
  17. Homestead.yaml
  18. npm-debug.log
  19. yarn-error.log
  20.  
  21. ### Generated from PHPStorm plugin .ignore template Laravel ###
  22.  
  23. # Laravel 5 & Lumen specific
  24. .env.*.php
  25. .env.php
  26.  
  27. # Rocketeer PHP task runner and deployment package. https://github.com/rocketeers/rocketeer
  28. .rocketeer/
  29.  
  30.  
  31. # Created by https://www.gitignore.io/api/macos
  32. # Edit at https://www.gitignore.io/?templates=macos
  33.  
  34. ### macOS ###
  35. # General
  36. .DS_Store
  37. .AppleDouble
  38. .LSOverride
  39.  
  40. # Icon must end with two \r
  41. Icon
  42.  
  43. # Thumbnails
  44. ._*
  45.  
  46. # Files that might appear in the root of a volume
  47. .DocumentRevisions-V100
  48. .fseventsd
  49. .Spotlight-V100
  50. .TemporaryItems
  51. .Trashes
  52. .VolumeIcon.icns
  53. .com.apple.timemachine.donotpresent
  54.  
  55. # Directories potentially created on remote AFP share
  56. .AppleDB
  57. .AppleDesktop
  58. Network Trash Folder
  59. Temporary Items
  60. .apdisk
  61.  
  62. # End of https://www.gitignore.io/api/macos
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement