composer.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. "phpoffice/phpspreadsheet": "*",
  28. "huaweicloud/huaweicloud-sdk-php": "3.0.3-beta",
  29. "youzanyun/open-sdk": "^2.0",
  30. "ext-xlswriter": "*"
  31. },
  32. "require-dev": {
  33. "symfony/var-dumper": "^4.2",
  34. "topthink/think-trace":"^1.0"
  35. },
  36. "autoload": {
  37. "psr-4": {
  38. "app\\": "app"
  39. },
  40. "psr-0": {
  41. "": "extend/"
  42. }
  43. },
  44. "config": {
  45. "preferred-install": "dist"
  46. },
  47. "scripts": {
  48. "post-autoload-dump": [
  49. "@php think service:discover",
  50. "@php think vendor:publish"
  51. ]
  52. }
  53. }