composer.json 859 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. "php": ">=7.1",
  20. "topthink/framework": "5.1.*",
  21. "workerman/gatewayclient": "^3.0",
  22. "jpush/jpush": "^3.6",
  23. "topthink/think-helper": "1.0.*",
  24. "phpoffice/phpspreadsheet": "^1.16",
  25. "phpoffice/phpword": "^0.17.0"
  26. },
  27. "autoload": {
  28. "psr-4": {
  29. "app\\": "application"
  30. }
  31. },
  32. "extra": {
  33. "think-path": "thinkphp"
  34. },
  35. "config": {
  36. "preferred-install": "dist"
  37. }
  38. }