composer.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "hyperf/config-nacos",
  3. "description": "A nacos adapter for config center component.",
  4. "license": "MIT",
  5. "type": "library",
  6. "keywords": [
  7. "php",
  8. "swoole",
  9. "hyperf",
  10. "nacos"
  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. "hyperf/codec": "~3.1.0",
  22. "hyperf/config-center": "~3.1.0",
  23. "hyperf/contract": "~3.1.0",
  24. "hyperf/guzzle": "~3.1.0",
  25. "hyperf/nacos": "~3.1.0",
  26. "hyperf/support": "~3.1.0",
  27. "hyperf/utils": "~3.1.0",
  28. "jetbrains/phpstorm-attributes": "^1.0"
  29. },
  30. "suggest": {
  31. "ext-json": "*",
  32. "ext-simplexml": "*",
  33. "ext-yaml": "*",
  34. "hyperf/event": "Required to use listeners. (~2.2.0)",
  35. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  36. "hyperf/process": "Required to use processes. (~2.2.0)"
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Hyperf\\ConfigNacos\\": "src/"
  41. }
  42. },
  43. "autoload-dev": {
  44. "psr-4": {
  45. "HyperfTest\\ConfigNacos\\": "tests"
  46. }
  47. },
  48. "config": {
  49. "sort-packages": true
  50. },
  51. "extra": {
  52. "branch-alias": {
  53. "dev-master": "3.1-dev"
  54. },
  55. "hyperf": {
  56. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  57. }
  58. }
  59. }