composer.json 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name" : "hoa/http",
  3. "description": "The Hoa\\Http library.",
  4. "type" : "library",
  5. "keywords" : ["library", "http", "request", "response", "runtime",
  6. "rfc2295", "rfc2324", "rfc2518", "rfc2774", "rfc3229",
  7. "rfc4918", "rfc5842", "rfc6585", "rfc7231", "rfc7232",
  8. "rfc7233", "rfc7235", "rfc7237"],
  9. "homepage" : "https://hoa-project.net/",
  10. "license" : "BSD-3-Clause",
  11. "authors" : [
  12. {
  13. "name" : "Ivan Enderlin",
  14. "email": "ivan.enderlin@hoa-project.net"
  15. },
  16. {
  17. "name" : "Hoa community",
  18. "homepage": "https://hoa-project.net/"
  19. }
  20. ],
  21. "support": {
  22. "email" : "support@hoa-project.net",
  23. "irc" : "irc://chat.freenode.net/hoaproject",
  24. "forum" : "https://users.hoa-project.net/",
  25. "docs" : "https://central.hoa-project.net/Documentation/Library/Http",
  26. "source": "https://central.hoa-project.net/Resource/Library/Http"
  27. },
  28. "require": {
  29. "hoa/consistency": "~1.0",
  30. "hoa/exception" : "~1.0",
  31. "hoa/stream" : "~1.0"
  32. },
  33. "autoload": {
  34. "psr-4": {
  35. "Hoa\\Http\\": "."
  36. }
  37. },
  38. "extra": {
  39. "branch-alias": {
  40. "dev-master": "1.x-dev"
  41. }
  42. }
  43. }