composer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. "endroid/qr-code": "^4.4",
  28. "hprose/hprose": "^2.0",
  29. "overtrue/wechat": "~5.0",
  30. "topthink/think-view": "^1.0",
  31. "jaeger/querylist": "^4.2"
  32. },
  33. "require-dev": {
  34. "symfony/var-dumper": "^4.2",
  35. "topthink/think-trace":"^1.0"
  36. },
  37. "autoload": {
  38. "psr-4": {
  39. "app\\": "app"
  40. },
  41. "psr-0": {
  42. "": "extend/"
  43. }
  44. },
  45. "config": {
  46. "preferred-install": "dist",
  47. "allow-plugins": {
  48. "easywechat-composer/easywechat-composer": true
  49. }
  50. },
  51. "scripts": {
  52. "post-autoload-dump": [
  53. "@php think service:discover",
  54. "@php think vendor:publish"
  55. ]
  56. }
  57. }