composer.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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.4.0",
  20. "topthink/framework": "v6.0.14",
  21. "topthink/think-orm": "^2.0",
  22. "topthink/think-multi-app": "1.0.14",
  23. "topthink/think-view": "1.0.14",
  24. "liliuwei/thinkphp-jump": "1.5",
  25. "topthink/think-captcha": "3.0.2",
  26. "overtrue/wechat": "4.4.1",
  27. "phpoffice/phpexcel": "^1.8",
  28. "phpoffice/phpspreadsheet": "1.24.1",
  29. "overtrue/easy-sms": "^1.3",
  30. "php-curl-class/php-curl-class": "8.9.3",
  31. "phpmailer/phpmailer": "6.4.1",
  32. "intervention/image": "2.5.1",
  33. "nesbot/carbon": "2.48.0",
  34. "thans/thinkphp-filesystem-cloud": "1.0.2",
  35. "ext-json": "*",
  36. "workerman/gatewayclient": "3.0.0",
  37. "wechatpay/wechatpay": "1.4.5",
  38. "topthink/think-queue": "^3.0",
  39. "lizhichao/word": "^2.1"
  40. },
  41. "require-dev": {
  42. "symfony/var-dumper": "4.4.41",
  43. "topthink/think-trace":"1.4"
  44. },
  45. "autoload": {
  46. "psr-4": {
  47. "app\\": "app",
  48. "addon\\": "addon",
  49. "extend\\": "extend"
  50. },
  51. "psr-0": {
  52. "": "extend/"
  53. }
  54. },
  55. "config": {
  56. "preferred-install": "dist",
  57. "allow-plugins": {
  58. "easywechat-composer/easywechat-composer": true
  59. }
  60. },
  61. "scripts": {
  62. "post-autoload-dump": [
  63. "@php think service:discover",
  64. "@php think vendor:publish"
  65. ]
  66. }
  67. }