composer.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. "topthink/framework": "^6.0",
  28. "topthink/think-view": "^1.0",
  29. "zoujingli/ip2region": "^1.0",
  30. "zoujingli/think-library": "6.0.x-dev"
  31. },
  32. "autoload": {
  33. "psr-0": {
  34. "": "extend"
  35. },
  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. "minimum-stability": "stable",
  47. "repositories": {
  48. "packagist": {
  49. "type": "composer",
  50. "url": "https://mirrors.aliyun.com/composer"
  51. }
  52. }
  53. }