composer.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "hyperf/consul",
  3. "description": "A Consul Client for Hyperf.",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "swoole",
  8. "hyperf",
  9. "consul",
  10. "consul-client"
  11. ],
  12. "homepage": "https://hyperf.io",
  13. "support": {
  14. "issues": "https://github.com/hyperf/hyperf/issues",
  15. "source": "https://github.com/hyperf/hyperf",
  16. "docs": "https://hyperf.wiki",
  17. "pull-request": "https://github.com/hyperf/hyperf/pulls"
  18. },
  19. "require": {
  20. "php": ">=8.1",
  21. "guzzlehttp/guzzle": "^6.3 || ^7.0"
  22. },
  23. "suggest": {},
  24. "autoload": {
  25. "psr-4": {
  26. "Hyperf\\Consul\\": "src/"
  27. }
  28. },
  29. "autoload-dev": {
  30. "psr-4": {
  31. "HyperfTest\\Consul\\": "tests/"
  32. }
  33. },
  34. "config": {
  35. "sort-packages": true
  36. },
  37. "extra": {
  38. "branch-alias": {
  39. "dev-master": "3.1-dev"
  40. },
  41. "hyperf": {
  42. "config": "Hyperf\\Consul\\ConfigProvider"
  43. }
  44. }
  45. }