composer.json 996 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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-json": "*",
  23. "ext-curl": "*",
  24. "ext-iconv": "*",
  25. "topthink/framework": "^6.0",
  26. "topthink/think-view": "^1.0",
  27. "topthink/think-multi-app": "^1.0",
  28. "zoujingli/ip2region": "^1.0",
  29. "zoujingli/think-library": "6.0.*-dev"
  30. },
  31. "autoload": {
  32. "psr-4": {
  33. "app\\": "app"
  34. }
  35. },
  36. "scripts": {
  37. "post-autoload-dump": [
  38. "@php think service:discover",
  39. "@php think vendor:publish"
  40. ]
  41. },
  42. "repositories": {
  43. "packagist": {
  44. "type": "composer",
  45. "url": "https://mirrors.aliyun.com/composer"
  46. }
  47. }
  48. }