composer.json 1.2 KB

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