composer.json 979 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "zoujingli/think-library",
  3. "license": "MIT",
  4. "homepage": "https://thinkadmin.top",
  5. "description": "ThinkPHP v6 Development Library",
  6. "authors": [
  7. {
  8. "name": "Anyon",
  9. "email": "zoujingli@qq.com"
  10. }
  11. ],
  12. "support": {
  13. "email": "zoujingli@qq.com",
  14. "wiki": "https://thinkadmin.top",
  15. "forum": "https://thinkadmin.top",
  16. "source": "https://gitee.com/zoujingli/ThinkLibrary",
  17. "issues": "https://gitee.com/zoujingli/ThinkLibrary/issues"
  18. },
  19. "require": {
  20. "php": "^7.1|^8.0",
  21. "ext-gd": "*",
  22. "ext-curl": "*",
  23. "ext-json": "*",
  24. "ext-zlib": "*",
  25. "ext-iconv": "*",
  26. "ext-openssl": "*",
  27. "ext-mbstring": "*",
  28. "topthink/framework": "^6.0",
  29. "topthink/think-migration": "^3.0"
  30. },
  31. "autoload": {
  32. "files": [
  33. "src/common.php"
  34. ],
  35. "psr-4": {
  36. "think\\admin\\": "src"
  37. }
  38. },
  39. "extra": {
  40. "think": {
  41. "services": [
  42. "think\\admin\\Library"
  43. ]
  44. }
  45. }
  46. }