composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "hyperf/rpc-server",
  3. "description": "An abstract rpc server component for Hyperf.",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "swoole",
  8. "hyperf",
  9. "rpc",
  10. "rpc-server"
  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/http-server": "~3.1.0",
  22. "hyperf/rpc": "~3.1.0"
  23. },
  24. "suggest": {
  25. "hyperf/di": "Required to use annotations."
  26. },
  27. "autoload": {
  28. "psr-4": {
  29. "Hyperf\\RpcServer\\": "src/"
  30. }
  31. },
  32. "autoload-dev": {
  33. "psr-4": {
  34. "HyperfTest\\RpcServer\\": "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\\RpcServer\\ConfigProvider"
  46. }
  47. }
  48. }