composer.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. "itxq/api-doc-php": "^1.1",
  34. "hg/apidoc": "^2.4",
  35. "phpoffice/phpexcel": "^1.8"
  36. },
  37. "autoload": {
  38. "psr-0": {
  39. "": "extend"
  40. },
  41. "psr-4": {
  42. "app\\": "app"
  43. }
  44. },
  45. "scripts": {
  46. "post-autoload-dump": [
  47. "@php think service:discover",
  48. "@php think vendor:publish"
  49. ]
  50. },
  51. "minimum-stability": "stable",
  52. "repositories": {
  53. "packagist": {
  54. "type": "composer",
  55. "url": "https://mirrors.aliyun.com/composer"
  56. }
  57. }
  58. }