composer.json 1005 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "richardfullmer/rabbitmq-management-api",
  3. "type": "library",
  4. "description": "An object oriented wrapper for the RabbitMQ Management HTTP Api",
  5. "homepage": "https://github.com/richardfullmer/php-rabbitmq-management-api",
  6. "keywords": ["rest", "message queue", "rabbitmq"],
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Richard Fullmer",
  11. "email": "richardfullmer@gmail.com",
  12. "homepage": "https://github.com/richardfullmer"
  13. }
  14. ],
  15. "require": {
  16. "php": ">=5.4",
  17. "psr/http-message": "^1.0",
  18. "php-http/client-implementation": "^1.0",
  19. "php-http/client-common": "^1.0",
  20. "php-http/httplug": "^1.0",
  21. "php-http/message-factory": "^1.0",
  22. "php-http/discovery": "^1.0"
  23. },
  24. "autoload": {
  25. "psr-4": {
  26. "RabbitMq\\ManagementApi\\": "src/"
  27. }
  28. },
  29. "extra": {
  30. "branch-alias": {
  31. "dev-master": "1.x-dev"
  32. }
  33. }
  34. }