composer.json 746 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "xiaodi/think-pullword",
  3. "description": "ThinkPHP 分词/抽词 扩展包",
  4. "license": "MIT",
  5. "authors": [
  6. {
  7. "name": "xiaodi",
  8. "email": "liangjinbiao@live.com"
  9. }
  10. ],
  11. "keywords": [
  12. "php",
  13. "thinkphp",
  14. "think-extend"
  15. ],
  16. "minimum-stability": "dev",
  17. "require": {
  18. "topthink/framework": "6.0.*|5.1.*",
  19. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0"
  20. },
  21. "autoload": {
  22. "psr-4": {
  23. "PullWord\\": "src"
  24. },
  25. "files": [
  26. "src/helper.php"
  27. ]
  28. },
  29. "extra": {
  30. "think": {
  31. "services": [
  32. "PullWord\\PullWordService"
  33. ]
  34. }
  35. }
  36. }