1
0

composer.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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-migration": "^3.0",
  27. "topthink/think-multi-app": "^1.0",
  28. "aliyuncs/oss-sdk-php": "^2.4",
  29. "firebase/php-jwt": "^5.4",
  30. "topthink/think-view": "^1.0",
  31. "fzaninotto/faker": "^1.9",
  32. "topthink/think-helper": "^3.1",
  33. "phpoffice/phpexcel": "^1.8",
  34. "phpoffice/phpspreadsheet": "^1.18",
  35. "topthink/think-queue": "^3.0",
  36. "overtrue/wechat": "~5.0",
  37. "overtrue/pinyin": "^4.0"
  38. },
  39. "require-dev": {
  40. "symfony/var-dumper": "^4.2",
  41. "topthink/think-trace":"^1.0"
  42. },
  43. "autoload": {
  44. "psr-4": {
  45. "app\\": "app"
  46. },
  47. "psr-0": {
  48. "": "extend/"
  49. }
  50. },
  51. "config": {
  52. "preferred-install": "dist",
  53. "allow-plugins": {
  54. "easywechat-composer/easywechat-composer": true
  55. }
  56. },
  57. "scripts": {
  58. "post-autoload-dump": [
  59. "@php think service:discover",
  60. "@php think vendor:publish"
  61. ]
  62. }
  63. }