composer.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. "topthink/think-view": "^2.0",
  59. "paypal/rest-api-sdk-php": "^1.14"
  60. },
  61. "require-dev": {
  62. "symfony/var-dumper": "^4.2"
  63. },
  64. "autoload": {
  65. "psr-4": {
  66. "app\\": "app",
  67. "cores\\": "cores"
  68. },
  69. "psr-0": {
  70. "": "extend/"
  71. }
  72. },
  73. "config": {
  74. "preferred-install": "dist",
  75. "allow-plugins": {
  76. "easywechat-composer/easywechat-composer": false
  77. },
  78. "platform-check": false
  79. },
  80. "scripts": {
  81. "post-autoload-dump": [
  82. "@php think service:discover",
  83. "@php think vendor:publish"
  84. ]
  85. }
  86. }