composer.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name" : "hoa/event",
  3. "description": "The Hoa\\Event library.",
  4. "type" : "library",
  5. "keywords" : ["library", "event", "listener", "observer"],
  6. "homepage" : "https://hoa-project.net/",
  7. "license" : "BSD-3-Clause",
  8. "authors" : [
  9. {
  10. "name" : "Ivan Enderlin",
  11. "email": "ivan.enderlin@hoa-project.net"
  12. },
  13. {
  14. "name" : "Hoa community",
  15. "homepage": "https://hoa-project.net/"
  16. }
  17. ],
  18. "support": {
  19. "email" : "support@hoa-project.net",
  20. "irc" : "irc://chat.freenode.net/hoaproject",
  21. "forum" : "https://users.hoa-project.net/",
  22. "docs" : "https://central.hoa-project.net/Documentation/Library/Event",
  23. "source": "https://central.hoa-project.net/Resource/Library/Event"
  24. },
  25. "require": {
  26. "hoa/consistency": "~1.0",
  27. "hoa/exception" : "~1.0"
  28. },
  29. "require-dev": {
  30. "hoa/test": "~2.0"
  31. },
  32. "autoload": {
  33. "psr-4": {
  34. "Hoa\\Event\\": "."
  35. }
  36. },
  37. "extra": {
  38. "branch-alias": {
  39. "dev-master": "1.x-dev"
  40. }
  41. }
  42. }