composer.json 1.1 KB

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