composer.json 1.5 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.4",
  24. "topthink/framework": "^6.0.0",
  25. "topthink/think-orm": "^2.0",
  26. "topthink/think-multi-app": "^1.0",
  27. "nesbot/carbon": "^2.66",
  28. "firebase/php-jwt": "^6.4",
  29. "overtrue/wechat": "^5.0",
  30. "phpoffice/phpspreadsheet": "^1.28",
  31. "topthink/think-filesystem": "^2.0",
  32. "topthink/think-annotation": "^2.0",
  33. "topthink/think-worker": "^3.0"
  34. },
  35. "require-dev": {
  36. "symfony/var-dumper": "^4.2",
  37. "topthink/think-trace":"^1.0"
  38. },
  39. "autoload": {
  40. "psr-4": {
  41. "app\\": "app"
  42. },
  43. "psr-0": {
  44. "": "extend/"
  45. }
  46. },
  47. "config": {
  48. "preferred-install": "dist",
  49. "allow-plugins": {
  50. "easywechat-composer/easywechat-composer": true
  51. },
  52. "platform": {
  53. "php": "8.0"
  54. }
  55. },
  56. "scripts": {
  57. "post-autoload-dump": [
  58. "@php think service:discover",
  59. "@php think vendor:publish"
  60. ]
  61. }
  62. }