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. "keywords": [
  6. "php",
  7. "swoole",
  8. "hyperf",
  9. "nacos"
  10. ],
  11. "type": "library",
  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. "autoload": {
  20. "psr-4": {
  21. "Hyperf\\ConfigNacos\\": "src/"
  22. }
  23. },
  24. "autoload-dev": {
  25. "psr-4": {
  26. "HyperfTest\\ConfigNacos\\": "tests"
  27. }
  28. },
  29. "require": {
  30. "php": ">=8.1",
  31. "hyperf/codec": "~3.1.0",
  32. "hyperf/config-center": "~3.1.0",
  33. "hyperf/contract": "~3.1.0",
  34. "hyperf/guzzle": "~3.1.0",
  35. "hyperf/nacos": "~3.1.0",
  36. "hyperf/support": "~3.1.0",
  37. "hyperf/utils": "~3.1.0",
  38. "jetbrains/phpstorm-attributes": "^1.0"
  39. },
  40. "suggest": {
  41. "ext-json": "*",
  42. "ext-simplexml": "*",
  43. "ext-yaml": "*",
  44. "hyperf/event": "Required to use listeners. (~2.2.0)",
  45. "hyperf/process": "Required to use processes. (~2.2.0)",
  46. "hyperf/framework": "Required to use listeners. (~2.2.0)"
  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. }