composer.json 1018 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "hyperf/guzzle",
  3. "description": "Swoole coroutine handler for guzzle",
  4. "type": "library",
  5. "license": "MIT",
  6. "keywords": [
  7. "php",
  8. "swoole",
  9. "guzzle",
  10. "handler"
  11. ],
  12. "require": {
  13. "php": ">=7.0",
  14. "guzzlehttp/guzzle": "^6.3",
  15. "psr/container": "^1.0",
  16. "psr/http-message": "^1.0"
  17. },
  18. "require-dev": {
  19. "ezimuel/ringphp": "~1.0"
  20. },
  21. "suggest": {
  22. "hyperf/pool": "Required to use pool handler."
  23. },
  24. "autoload": {
  25. "psr-4": {
  26. "Hyperf\\Guzzle\\": "src/"
  27. }
  28. },
  29. "autoload-dev": {
  30. "psr-4": {
  31. "HyperfTest\\Guzzle\\": "tests/"
  32. }
  33. },
  34. "config": {
  35. "sort-packages": true
  36. },
  37. "extra": {
  38. "branch-alias": {
  39. "dev-master": "2.0-dev"
  40. },
  41. "hyperf": {
  42. "config": "Hyperf\\Guzzle\\ConfigProvider"
  43. }
  44. },
  45. "scripts": {
  46. "test": "phpunit --colors=always"
  47. }
  48. }