加密后的代码
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

composer.json 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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-multi-app": "^1.0",
  27. "ext-json": "*",
  28. "topthink/think-view": "^1.0",
  29. "topthink/think-captcha": "^3.0",
  30. "overtrue/wechat": "~4.1",
  31. "alibabacloud/client": "^1.5",
  32. "tencentcloud/tencentcloud-sdk-php": "^3.0",
  33. "dragonmantank/cron-expression": "^3.3",
  34. "rmccue/requests": "^1.8",
  35. "endroid/qr-code": "^3.9",
  36. "ext-bcmath": "*",
  37. "aliyuncs/oss-sdk-php": "^2.4",
  38. "qcloud/cos-sdk-v5": "^2.2",
  39. "qiniu/php-sdk": "^7.3",
  40. "alipaysdk/easysdk": "^2.2",
  41. "topthink/think-swoole": "^3.1",
  42. "phpoffice/phpspreadsheet": "^1.19",
  43. "yly-openapi/yly-openapi-sdk": "^1.0",
  44. "ext-openssl": "*",
  45. "ext-curl": "*",
  46. "yansongda/pay": "^2.10.5",
  47. "ext-fileinfo": "*"
  48. },
  49. "require-dev": {
  50. "symfony/var-dumper": "^4.2",
  51. "topthink/think-trace":"^1.0"
  52. },
  53. "autoload": {
  54. "psr-4": {
  55. "app\\": "app"
  56. },
  57. "psr-0": {
  58. "": "extend/"
  59. }
  60. },
  61. "config": {
  62. "preferred-install": "dist",
  63. "allow-plugins": {
  64. "easywechat-composer/easywechat-composer": false
  65. }
  66. },
  67. "scripts": {
  68. "post-autoload-dump": [
  69. "@php think service:discover",
  70. "@php think vendor:publish"
  71. ]
  72. }
  73. }