composer.json 892 B

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