composer.json 1.4 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": "https://www.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.2.5",
  24. "topthink/framework": "^6.1.0",
  25. "topthink/think-orm": "^2.0",
  26. "topthink/think-filesystem": "^1.0",
  27. "topthink/think-multi-app": "^1.0",
  28. "topthink/think-view": "^1.0",
  29. "topthink/think-template": "^2.0",
  30. "phpmailer/phpmailer": "^6.4",
  31. "phpoffice/phpword": "^0.18.2",
  32. "ch4o5/sm3-php": "^1.1",
  33. "predis/predis": "^2.0",
  34. "firebase/php-jwt": "^6.4",
  35. "topthink/think-trace": "^1.5"
  36. },
  37. "require-dev": {
  38. "symfony/var-dumper": "^4.2",
  39. "topthink/think-trace": "^1.0"
  40. },
  41. "autoload": {
  42. "psr-4": {
  43. "app\\": "app"
  44. },
  45. "psr-0": {
  46. "": "extend/"
  47. }
  48. },
  49. "config": {
  50. "preferred-install": "dist"
  51. },
  52. "scripts": {
  53. "post-autoload-dump": [
  54. "@php think service:discover",
  55. "@php think vendor:publish"
  56. ]
  57. }
  58. }