composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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": "https://www.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. "phpoffice/phpexcel": "^1.8",
  28. "zoujingli/wechat-php-sdk": "^1.3"
  29. },
  30. "require-dev": {
  31. "symfony/var-dumper": "^4.2",
  32. "topthink/think-trace":"^1.0"
  33. },
  34. "autoload": {
  35. "psr-4": {
  36. "app\\": "app"
  37. },
  38. "psr-0": {
  39. "": "extend/"
  40. }
  41. },
  42. "config": {
  43. "preferred-install": "dist"
  44. },
  45. "scripts": {
  46. "post-autoload-dump": [
  47. "@php think service:discover",
  48. "@php think vendor:publish"
  49. ]
  50. }
  51. }