composer.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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": "https://www.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.2.5",
  24. "topthink/framework": "^6.1.0",
  25. "topthink/think-orm": "^2.0",
  26. "topthink/think-filesystem": "^1.0",
  27. "topthink/think-swoole": "^4.0",
  28. "ext-libxml": "*",
  29. "ext-simplexml": "*",
  30. "ext-curl": "*",
  31. "ext-json": "*",
  32. "guzzlehttp/guzzle": "^7.9",
  33. "async-aws/core": "^1.21",
  34. "topthink/think-image": "^1.0",
  35. "topthink/think-queue": "^3.0",
  36. "topthink/think-captcha": "^3.0",
  37. "qiniu/php-sdk": "^7.14",
  38. "qcloud/cos-sdk-v5": "^2.6",
  39. "aliyuncs/oss-sdk-php": "^2.7",
  40. "phpoffice/phpspreadsheet": "^1.29",
  41. "endroid/qr-code": "^4.6",
  42. "yurunsoft/guzzle-swoole": "^2.2",
  43. "ext-zlib": "*",
  44. "ext-redis": "*",
  45. "ext-bcmath": "*",
  46. "fastknife/ajcaptcha": "^1.2",
  47. "firebase/php-jwt": "^6.10",
  48. "ext-gd": "*",
  49. "alibabacloud/dysmsapi-20170525": "^3.1",
  50. "ext-iconv": "*",
  51. "ext-openssl": "*",
  52. "overtrue/wechat": "^5.30",
  53. "joypack/tencent-map": "^1.0",
  54. "alipaysdk/easysdk": "^2.2",
  55. "web3p/ethereum-tx": "^0.4.3",
  56. "bitwasp/bitcoin": "^1.0",
  57. "ext-gmp": "*",
  58. "ext-sodium": "*"
  59. },
  60. "require-dev": {
  61. "symfony/var-dumper": "^4.2",
  62. "topthink/think-trace": "^1.0"
  63. },
  64. "autoload": {
  65. "psr-4": {
  66. "app\\": "app",
  67. "qiniu\\": "qiniu"
  68. },
  69. "psr-0": {
  70. "": "extend/"
  71. }
  72. },
  73. "config": {
  74. "preferred-install": "dist",
  75. "allow-plugins": {
  76. "easywechat-composer/easywechat-composer": true,
  77. "yurunsoft/composer-include-files": true,
  78. "yurunsoft/guzzle-swoole": true
  79. }
  80. },
  81. "scripts": {
  82. "post-autoload-dump": [
  83. "@php think service:discover",
  84. "@php think vendor:publish"
  85. ]
  86. }
  87. }