composer.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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.4.0",
  24. "ext-gd": "*",
  25. "ext-curl": "*",
  26. "ext-bcmath": "*",
  27. "ext-json": "*",
  28. "ext-pdo": "*",
  29. "ext-openssl": "*",
  30. "ext-mbstring": "*",
  31. "ext-libxml": "*",
  32. "ext-simplexml": "*",
  33. "ext-zlib": "*",
  34. "ext-zip": "*",
  35. "ext-redis": "*",
  36. "ext-fileinfo": "*",
  37. "topthink/framework": "^6.1",
  38. "topthink/think-orm": "^2.0",
  39. "topthink/think-multi-app": "^1.0",
  40. "topthink/think-worker": "^3.0",
  41. "topthink/think-filesystem": "^2.0",
  42. "topthink/think-queue": "^3.0",
  43. "yiovo/tp6-cache": "^1.0",
  44. "yiovo/tp6-captcha": "^1.1",
  45. "qiniu/php-sdk": "^7.2",
  46. "aliyuncs/oss-sdk-php": "^2.3",
  47. "qcloud/cos-sdk-v5": "^2.4",
  48. "kosinix/grafika": "dev-master",
  49. "myclabs/php-enum": "^1.6",
  50. "lvht/geohash": "^1.1",
  51. "aferrandini/phpqrcode": "^1.0",
  52. "phpoffice/phpspreadsheet": "^1.18",
  53. "overtrue/easy-sms": "^2.0",
  54. "overtrue/wechat": "~4.0",
  55. "alipaysdk/easysdk": "^2.2",
  56. "wechatpay/wechatpay": "^1.4",
  57. "phpmailer/phpmailer": "^6.9"
  58. },
  59. "require-dev": {
  60. "symfony/var-dumper": "^4.2"
  61. },
  62. "autoload": {
  63. "psr-4": {
  64. "app\\": "app",
  65. "cores\\": "cores"
  66. },
  67. "psr-0": {
  68. "": "extend/"
  69. }
  70. },
  71. "config": {
  72. "preferred-install": "dist",
  73. "allow-plugins": {
  74. "easywechat-composer/easywechat-composer": false
  75. },
  76. "platform-check": false
  77. },
  78. "scripts": {
  79. "post-autoload-dump": [
  80. "@php think service:discover",
  81. "@php think vendor:publish"
  82. ]
  83. }
  84. }