composer.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. },
  37. "require-dev": {
  38. "symfony/var-dumper": "^4.2",
  39. "topthink/think-trace": "^1.0"
  40. },
  41. "autoload": {
  42. "psr-4": {
  43. "app\\": "app",
  44. "modules\\": "modules"
  45. },
  46. "psr-0": {
  47. "": "extend/"
  48. }
  49. },
  50. "config": {
  51. "preferred-install": "dist",
  52. "allow-plugins": {
  53. "easywechat-composer/easywechat-composer": true
  54. }
  55. },
  56. "scripts": {
  57. "post-autoload-dump": [
  58. "@php think service:discover",
  59. "@php think vendor:publish"
  60. ]
  61. }
  62. }