composer.json 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name" : "hoa/socket",
  3. "description": "The Hoa\\Socket library.",
  4. "type" : "library",
  5. "keywords" : ["library", "socket", "client", "server", "tcp", "udp",
  6. "node"],
  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/Socket",
  24. "source": "https://central.hoa-project.net/Resource/Library/Socket"
  25. },
  26. "require": {
  27. "hoa/consistency": "~1.0",
  28. "hoa/exception" : "~1.0",
  29. "hoa/stream" : "~1.0"
  30. },
  31. "require-dev": {
  32. "hoa/test": "~2.0"
  33. },
  34. "autoload": {
  35. "psr-4": {
  36. "Hoa\\Socket\\": "."
  37. }
  38. },
  39. "extra": {
  40. "branch-alias": {
  41. "dev-master": "1.x-dev"
  42. }
  43. }
  44. }