composer.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. "topthink/think-view": "^1.0",
  28. "phpoffice/phpexcel": "^1.8",
  29. "topthink/think-queue": "^3.0",
  30. "topthink/think-captcha": "^3.0",
  31. "firebase/php-jwt": "^5.2",
  32. "topthink/think-image": "^1.0",
  33. "qiniu/php-sdk": "^7.2",
  34. "alipaysdk/easysdk": "^2.0",
  35. "overtrue/wechat": "~4.0",
  36. "ext-json": "*",
  37. "ext-simplexml": "*",
  38. "ext-libxml": "*"
  39. },
  40. "require-dev": {
  41. "symfony/var-dumper": "^4.2",
  42. "topthink/think-trace":"^1.0"
  43. },
  44. "autoload": {
  45. "psr-4": {
  46. "app\\": "app",
  47. "library\\": "library"
  48. },
  49. "psr-0": {
  50. "": "extend/"
  51. }
  52. },
  53. "config": {
  54. "preferred-install": "dist"
  55. },
  56. "scripts": {
  57. "post-autoload-dump": [
  58. "@php think service:discover",
  59. "@php think vendor:publish"
  60. ]
  61. }
  62. }