composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "type": "project",
  3. "name": "zoujingli/thinkadmin",
  4. "license": "MIT",
  5. "homepage": "http://demo.thinkadmin.top",
  6. "description": "Application development framework",
  7. "keywords": [
  8. "ThinkAdmin",
  9. "ThinkLibrary",
  10. "WeChatDeveloper",
  11. "WeOpenDeveloper"
  12. ],
  13. "authors": [
  14. {
  15. "name": "Anyon",
  16. "email": "zoujingli@qq.com"
  17. }
  18. ],
  19. "require": {
  20. "php": ">=7.1.0",
  21. "ext-gd": "*",
  22. "ext-soap": "*",
  23. "ext-json": "*",
  24. "ext-curl": "*",
  25. "ext-iconv": "*",
  26. "ext-openssl": "*",
  27. "ext-mbstring": "*",
  28. "endroid/qr-code": "^1.9",
  29. "topthink/framework": "^6.0",
  30. "topthink/think-view": "^1.0",
  31. "topthink/think-multi-app": "^1.0",
  32. "zoujingli/ip2region": "^1.0",
  33. "zoujingli/think-library": "6.0.*-dev",
  34. "zoujingli/weopen-developer": "dev-master"
  35. },
  36. "autoload": {
  37. "psr-4": {
  38. "app\\": "app"
  39. }
  40. },
  41. "scripts": {
  42. "post-autoload-dump": [
  43. "@php think service:discover",
  44. "@php think vendor:publish"
  45. ]
  46. },
  47. "repositories": {
  48. "packagist": {
  49. "type": "composer",
  50. "url": "https://mirrors.aliyun.com/composer"
  51. }
  52. }
  53. }