composer.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. "require": {
  19. "ext-json": "*",
  20. "php": ">=7.0",
  21. "topthink/framework": "5.1.*",
  22. "topthink/think-testing": "2.0.*",
  23. "predis/predis": "^1.1",
  24. "phpoffice/phpexcel": "^1.8",
  25. "ext-curl": "*",
  26. "mpdf/mpdf": "^8.0",
  27. "tecnickcom/tcpdf": "^6.4",
  28. "dompdf/dompdf": "^1.0",
  29. "ext-soap": "*",
  30. "aliyuncs/oss-sdk-php": "^2.6",
  31. "phpmailer/phpmailer": "^6.7",
  32. "aws/aws-sdk-php": "*"
  33. },
  34. "autoload": {
  35. "psr-4": {
  36. "app\\": "application"
  37. }
  38. },
  39. "extra": {
  40. "think-path": "thinkphp"
  41. },
  42. "config": {
  43. "preferred-install": "dist"
  44. }
  45. }