composer.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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",
  25. "topthink/think-orm": "^2.0",
  26. "topthink/think-multi-app": "^1.0",
  27. "qiniu/php-sdk": "^7.2",
  28. "aliyuncs/oss-sdk-php": "^2.3",
  29. "qcloud/cos-sdk-v5": "^1.2",
  30. "kosinix/grafika": "dev-master",
  31. "myclabs/php-enum": "1.7.*",
  32. "lvht/geohash": "^1.1",
  33. "edward1108/edward-captcha": "^1.1",
  34. "ext-curl": "*",
  35. "ext-bcmath": "*",
  36. "ext-json": "*",
  37. "ext-mysqli": "*",
  38. "topthink/think-worker": "^3.0",
  39. "topthink/think-queue": "3.0.5",
  40. "phpoffice/phpspreadsheet": "1.8.2",
  41. "topthink/think-migration": "^3.0",
  42. "league/flysystem": "1.*",
  43. "workerman/crontab": "^1.0",
  44. "endroid/qr-code": "^3.5",
  45. "topthink/think-view": "^1.0"
  46. },
  47. "require-dev": {
  48. "symfony/var-dumper": "^4.2",
  49. "topthink/think-trace":"^1.0"
  50. },
  51. "autoload": {
  52. "psr-4": {
  53. "app\\": "app"
  54. },
  55. "psr-0": {
  56. "": "extend/"
  57. }
  58. },
  59. "config": {
  60. "preferred-install": "dist"
  61. },
  62. "scripts": {
  63. "post-autoload-dump": [
  64. "@php think service:discover",
  65. "@php think vendor:publish"
  66. ]
  67. }
  68. }