composer.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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.2.5",
  24. "topthink/framework": "^6.0.0",
  25. "topthink/think-orm": "^2.0",
  26. "topthink/think-multi-app": "^1.0",
  27. "topthink/think-throttle": "^1.3",
  28. "phpmailer/phpmailer": "^6.6",
  29. "w7corp/easywechat": "^4.6",
  30. "nelexa/zip": "^3.3 || ^4.0.0",
  31. "ext-calendar": "*",
  32. "ext-bcmath": "*",
  33. "ext-iconv": "*",
  34. "ext-json": "*",
  35. "ext-gd": "*",
  36. "qiniu/php-sdk": "^7.7",
  37. "phpoffice/phpspreadsheet": "^1.19.0",
  38. "overtrue/easy-sms": "^2.2"
  39. },
  40. "require-dev": {
  41. "symfony/var-dumper": "^4.2",
  42. "topthink/think-trace": "^1.0"
  43. },
  44. "autoload": {
  45. "psr-4": {
  46. "app\\": "app",
  47. "modules\\": "modules"
  48. },
  49. "psr-0": {
  50. "": "extend/"
  51. }
  52. },
  53. "config": {
  54. "platform-check": false,
  55. "preferred-install": "dist",
  56. "allow-plugins": {
  57. "easywechat-composer/easywechat-composer": true
  58. }
  59. },
  60. "scripts": {
  61. "post-autoload-dump": [
  62. "@php think service:discover",
  63. "@php think vendor:publish"
  64. ]
  65. }
  66. }