composer.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. "require": {
  19. "php": ">=7.1.0",
  20. "topthink/framework": "6.0.*",
  21. "topthink/think-orm": "^2.0",
  22. "topthink/think-multi-app": "^1.0",
  23. "topthink/think-view": "^1.0",
  24. "liliuwei/thinkphp-jump": "^1.3",
  25. "topthink/think-captcha": "^3.0",
  26. "overtrue/wechat": "~4.1",
  27. "phpoffice/phpexcel": "^1.8",
  28. "overtrue/easy-sms": "^1.1",
  29. "php-curl-class/php-curl-class": "^8.6",
  30. "phpmailer/phpmailer": "^6.1",
  31. "intervention/image": "^2.5",
  32. "nesbot/carbon": "^2.27",
  33. "thans/thinkphp-filesystem-cloud": "^1.0",
  34. "ext-json": "*"
  35. },
  36. "require-dev": {
  37. "symfony/var-dumper": "^4.2",
  38. "topthink/think-trace":"^1.0"
  39. },
  40. "autoload": {
  41. "psr-4": {
  42. "app\\": "app",
  43. "addon\\": "addon",
  44. "extend\\": "extend"
  45. },
  46. "psr-0": {
  47. "": "extend/"
  48. }
  49. },
  50. "config": {
  51. "preferred-install": "dist"
  52. },
  53. "scripts": {
  54. "post-autoload-dump": [
  55. "@php think service:discover",
  56. "@php think vendor:publish"
  57. ]
  58. }
  59. }