composer.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "hyperf/rpc",
  3. "description": "A rpc basic library for Hyperf.",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "swoole",
  8. "hyperf",
  9. "rpc"
  10. ],
  11. "homepage": "https://hyperf.io",
  12. "support": {
  13. "docs": "https://hyperf.wiki",
  14. "issues": "https://github.com/hyperf/hyperf/issues",
  15. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  16. "source": "https://github.com/hyperf/hyperf"
  17. },
  18. "require": {
  19. "php": ">=8.1",
  20. "hyperf/codec": "~3.1.0",
  21. "hyperf/contract": "~3.1.0",
  22. "hyperf/support": "~3.1.0",
  23. "jetbrains/phpstorm-attributes": "^1.0"
  24. },
  25. "autoload": {
  26. "psr-4": {
  27. "Hyperf\\Rpc\\": "src/"
  28. }
  29. },
  30. "autoload-dev": {
  31. "psr-4": {
  32. "HyperfTest\\Rpc\\": "tests/"
  33. }
  34. },
  35. "config": {
  36. "sort-packages": true
  37. },
  38. "extra": {
  39. "branch-alias": {
  40. "dev-master": "3.1-dev"
  41. },
  42. "hyperf": {}
  43. }
  44. }