composer.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "hyperf/config-center",
  3. "description": "The abstraction component of config center",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "hyperf",
  8. "config-center"
  9. ],
  10. "homepage": "https://hyperf.io",
  11. "support": {
  12. "docs": "https://hyperf.wiki",
  13. "issues": "https://github.com/hyperf/hyperf/issues",
  14. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  15. "source": "https://github.com/hyperf/hyperf"
  16. },
  17. "require": {
  18. "php": ">=8.1",
  19. "hyperf/support": "~3.1.0"
  20. },
  21. "suggest": {
  22. "hyperf/process": "^2.1"
  23. },
  24. "autoload": {
  25. "psr-4": {
  26. "Hyperf\\ConfigCenter\\": "src/"
  27. }
  28. },
  29. "autoload-dev": {
  30. "psr-4": {
  31. "HyperfTest\\ConfigCenter\\": "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\\ConfigCenter\\ConfigProvider"
  43. }
  44. }
  45. }