composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. "issues": "https://github.com/hyperf/hyperf/issues",
  14. "source": "https://github.com/hyperf/hyperf",
  15. "docs": "https://hyperf.wiki",
  16. "pull-request": "https://github.com/hyperf/hyperf/pulls"
  17. },
  18. "require": {
  19. "php": ">=8.1",
  20. "hyperf/codec": "~3.1.0",
  21. "hyperf/collection": "~3.1.0",
  22. "hyperf/context": "~3.1.0",
  23. "hyperf/contract": "~3.1.0",
  24. "hyperf/stringable": "~3.1.0",
  25. "hyperf/support": "~3.1.0",
  26. "jetbrains/phpstorm-attributes": "^1.0"
  27. },
  28. "autoload": {
  29. "psr-4": {
  30. "Hyperf\\Rpc\\": "src/"
  31. }
  32. },
  33. "autoload-dev": {
  34. "psr-4": {
  35. "HyperfTest\\Rpc\\": "tests/"
  36. }
  37. },
  38. "config": {
  39. "sort-packages": true
  40. },
  41. "extra": {
  42. "branch-alias": {
  43. "dev-master": "3.1-dev"
  44. },
  45. "hyperf": []
  46. }
  47. }