composer.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. "name": "yunwuxin",
  19. "email": "448901948@qq.com"
  20. }
  21. ],
  22. "require": {
  23. "php": ">=7.1.0",
  24. "topthink/framework": "^6.0.0",
  25. "topthink/think-orm": "^2.0",
  26. "topthink/think-view": "^1.0",
  27. "topthink/think-multi-app": "^1.0",
  28. "topthink/think-captcha": "^3.0",
  29. "topthink/think-image": "^1.0",
  30. "ezyang/htmlpurifier": "^4.12.0",
  31. "endroid/qr-code": "1.9.3",
  32. "alibabacloud/client": "^1.5",
  33. "phpmailer/phpmailer": "~6.5",
  34. "liliuwei/thinkphp-jump": "^1.5",
  35. "topthink/think-worker": "^3.0",
  36. "phpoffice/phpspreadsheet": "^1.15",
  37. "alipaysdk/easysdk":"^2.0",
  38. "aliyuncs/oss-sdk-php": "^2.4.1",
  39. "lcobucci/jwt": "3.4.5",
  40. "xzncit/developer-tools": "^0.5.2"
  41. },
  42. "require-dev": {
  43. "symfony/var-dumper": "^4.2",
  44. "topthink/think-trace":"^1.0"
  45. },
  46. "autoload": {
  47. "psr-4": {
  48. "app\\": "app",
  49. "mall\\": "mall"
  50. }
  51. },
  52. "config": {
  53. "preferred-install": "dist"
  54. },
  55. "scripts": {
  56. "post-autoload-dump": [
  57. "@php think service:discover",
  58. "@php think vendor:publish"
  59. ]
  60. }
  61. }