composer.json 917 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "topthink/think",
  3. "description": "the new thinkphp framework",
  4. "type": "project",
  5. "keywords": [
  6. "framework",
  7. "thinkphp",
  8. "ORM"
  9. ],
  10. "homepage": "http://thinkphp.cn/",
  11. "license": "Apache-2.0",
  12. "authors": [
  13. {
  14. "name": "liu21st",
  15. "email": "liu21st@gmail.com"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=7.0",
  20. "topthink/framework": "5.0.*",
  21. "topthink/think-image": "^1.0",
  22. "topthink/think-captcha": "1.*",
  23. "topthink/think-queue": "~1.1.5",
  24. "topthink/think-helper": "1.*",
  25. "overtrue/pinyin": "^3.0",
  26. "phpmailer/phpmailer": "^6.0",
  27. "endroid/qrcode": "^2.5",
  28. "xxtime/flysystem-aliyun-oss": "^1.4",
  29. "tencent-ad/marketing-api-php-sdk": "^1.1",
  30. "ext-json": "*"
  31. },
  32. "autoload": {
  33. "psr-4": {
  34. "app\\": "application"
  35. }
  36. },
  37. "extra": {
  38. "think-path": "thinkphp"
  39. },
  40. "config": {
  41. "preferred-install": "dist"
  42. }
  43. }