composer.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "hyperf/amqp",
  3. "description": "A amqplib for hyperf.",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "hyperf",
  8. "amqp"
  9. ],
  10. "homepage": "https://hyperf.io",
  11. "support": {
  12. "issues": "https://github.com/hyperf/hyperf/issues",
  13. "source": "https://github.com/hyperf/hyperf",
  14. "docs": "https://hyperf.wiki",
  15. "pull-request": "https://github.com/hyperf/hyperf/pulls"
  16. },
  17. "require": {
  18. "php": ">=8.1",
  19. "doctrine/instantiator": "^1.2.0",
  20. "hyperf/codec": "~3.1.0",
  21. "hyperf/contract": "~3.1.0",
  22. "hyperf/coroutine": "~3.1.0",
  23. "hyperf/pool": "~3.1.0",
  24. "hyperf/process": "~3.1.0",
  25. "hyperf/support": "~3.1.0",
  26. "hyperf/utils": "~3.1.0",
  27. "php-amqplib/php-amqplib": "^3.5",
  28. "psr/container": "^1.0 || ^2.0",
  29. "psr/event-dispatcher": "^1.0",
  30. "psr/log": "^1.0 || ^2.0 || ^3.0"
  31. },
  32. "suggest": {
  33. "hyperf/di": "Required to use annotations.",
  34. "hyperf/event": "Declare queue and start consumers automatically."
  35. },
  36. "autoload": {
  37. "psr-4": {
  38. "Hyperf\\Amqp\\": "src/"
  39. }
  40. },
  41. "autoload-dev": {
  42. "psr-4": {
  43. "HyperfTest\\Amqp\\": "tests/"
  44. }
  45. },
  46. "config": {
  47. "sort-packages": true
  48. },
  49. "extra": {
  50. "branch-alias": {
  51. "dev-master": "3.1-dev"
  52. },
  53. "hyperf": {
  54. "config": "Hyperf\\Amqp\\ConfigProvider"
  55. }
  56. }
  57. }