composer.json 608 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "roiwk/rabbitmq",
  3. "type": "library",
  4. "license": "MIT",
  5. "description": "rabbitmq async(workerman) and sync Client, Producer, Consumer",
  6. "keywords": [
  7. "rabbitmq",
  8. "amqp",
  9. "queue",
  10. "workerman",
  11. "webman",
  12. "plugin"
  13. ],
  14. "authors": [
  15. {
  16. "name": "roiwk",
  17. "email": "vip@roiwk.cn"
  18. }
  19. ],
  20. "minimum-stability": "stable",
  21. "require": {
  22. "php": "^8.0",
  23. "workerman/rabbitmq": "^1.0",
  24. "psr/log": "^1.0||^2.0||^3.0",
  25. "illuminate/collections": "^8.0|^9.0|^10.0"
  26. },
  27. "autoload": {
  28. "psr-4": {
  29. "Roiwk\\Rabbitmq\\": "src"
  30. }
  31. }
  32. }