composer.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. "zoujingli/ip2region": "^1.0",
  31. "zoujingli/think-library": "6.0.x-dev",
  32. "zoujingli/wechat-developer": "^1.2"
  33. },
  34. "autoload": {
  35. "psr-0": {
  36. "": "extend"
  37. },
  38. "psr-4": {
  39. "app\\": "app"
  40. }
  41. },
  42. "scripts": {
  43. "post-autoload-dump": [
  44. "@php think service:discover",
  45. "@php think vendor:publish"
  46. ]
  47. },
  48. "minimum-stability": "stable",
  49. "repositories": {
  50. "packagist": {
  51. "type": "composer",
  52. "url": "https://mirrors.aliyun.com/composer"
  53. }
  54. }
  55. }