.gitignore 894 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. # yii console commands
  2. /yii
  3. /yii_test
  4. /yii_test.bat
  5. # phpstorm project files
  6. .idea
  7. # vscode project files
  8. .vscode
  9. # netbeans project files
  10. nbproject
  11. # zend studio for eclipse project files
  12. .buildpath
  13. .project
  14. .settings
  15. # windows thumbnail cache
  16. Thumbs.db
  17. # websocket
  18. start.bat
  19. # composer vendor dir
  20. /vendor
  21. # composer itself is not needed
  22. # composer.phar
  23. # Mac DS_Store Files
  24. .DS_Store
  25. # phpunit itself is not needed
  26. phpunit.phar
  27. # local phpunit config
  28. /phpunit.xml
  29. # vagrant runtime
  30. /.vagrant
  31. # ignore generated files
  32. /frontend/web/index.php
  33. /frontend/web/index-test.php
  34. /frontend/web/robots.txt
  35. /backend/web/index.php
  36. /backend/web/index-test.php
  37. /backend/web/robots.txt
  38. /api/web/index.php
  39. /api/web/index-test.php
  40. /api/web/robots.txt
  41. /html5/web/index.php
  42. /html5/web/index-test.php
  43. /html5/web/robots.txt
  44. /merchant/web/index.php
  45. /merchant/web/index-test.php
  46. /merchant/web/robots.txt
粤ICP备19079148号