composer.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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.0",
  21. "topthink/think-orm": "^2.0",
  22. "topthink/think-multi-app": "^1.0",
  23. "lvht/geohash": "^1.1",
  24. "myclabs/php-enum": "^1.7",
  25. "overtrue/wechat": "^4.2",
  26. "qiniu/php-sdk": "^7.2",
  27. "aliyuncs/oss-sdk-php": "^2.3",
  28. "qcloud/cos-sdk-v5": "^2.0",
  29. "kosinix/grafika": "dev-master",
  30. "endroid/qrcode": "^3.7",
  31. "phpoffice/phpspreadsheet": "^1.13",
  32. "topthink/think-worker": "^3.0",
  33. "workerman/mysql": "^1.0",
  34. "alipaysdk/easysdk": "^2.2"
  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. },
  44. "psr-0": {
  45. "": "extend/"
  46. }
  47. },
  48. "config": {
  49. "preferred-install": "dist"
  50. },
  51. "scripts": {
  52. "post-autoload-dump": [
  53. "@php think service:discover",
  54. "@php think vendor:publish"
  55. ]
  56. }
  57. }