composer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. "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/context": "~3.1.0",
  22. "hyperf/contract": "~3.1.0",
  23. "hyperf/coordinator": "~3.1.0",
  24. "hyperf/http-server": "~3.1.0",
  25. "hyperf/rpc": "~3.1.0",
  26. "hyperf/stringable": "~3.1.0"
  27. },
  28. "suggest": {
  29. "hyperf/di": "Required to use annotations."
  30. },
  31. "autoload": {
  32. "psr-4": {
  33. "Hyperf\\RpcServer\\": "src/"
  34. }
  35. },
  36. "autoload-dev": {
  37. "psr-4": {
  38. "HyperfTest\\RpcServer\\": "tests/"
  39. }
  40. },
  41. "config": {
  42. "sort-packages": true
  43. },
  44. "extra": {
  45. "branch-alias": {
  46. "dev-master": "3.1-dev"
  47. },
  48. "hyperf": {
  49. "config": "Hyperf\\RpcServer\\ConfigProvider"
  50. }
  51. }
  52. }