composer.json 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name" : "hoa/websocket",
  3. "description": "The Hoa\\Websocket library.",
  4. "type" : "library",
  5. "keywords" : ["library", "websocket", "server", "client", "realtime",
  6. "socket", "rfc6455", "rfc3986", "rfc3629", "hybi"],
  7. "homepage" : "https://hoa-project.net/",
  8. "license" : "BSD-3-Clause",
  9. "authors" : [
  10. {
  11. "name" : "Ivan Enderlin",
  12. "email": "ivan.enderlin@hoa-project.net"
  13. },
  14. {
  15. "name" : "Hoa community",
  16. "homepage": "https://hoa-project.net/"
  17. }
  18. ],
  19. "support": {
  20. "email" : "support@hoa-project.net",
  21. "irc" : "irc://chat.freenode.net/hoaproject",
  22. "forum" : "https://users.hoa-project.net/",
  23. "docs" : "https://central.hoa-project.net/Documentation/Library/Websocket",
  24. "source": "https://central.hoa-project.net/Resource/Library/Websocket"
  25. },
  26. "require": {
  27. "hoa/consistency": "~1.0",
  28. "hoa/event" : "~1.0",
  29. "hoa/exception" : "~1.0",
  30. "hoa/socket" : "~1.0",
  31. "hoa/http" : "~1.0"
  32. },
  33. "require-dev": {
  34. "ext-iconv": "*",
  35. "hoa/test" : "~2.0"
  36. },
  37. "suggest": {
  38. "ext-openssl": "To get a better security when exchanging messages."
  39. },
  40. "autoload": {
  41. "psr-4": {
  42. "Hoa\\Websocket\\": "."
  43. },
  44. "files": ["Socket.php"]
  45. },
  46. "extra": {
  47. "branch-alias": {
  48. "dev-master": "3.x-dev"
  49. }
  50. }
  51. }