composer.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name" : "hoa/console",
  3. "description": "The Hoa\\Console library.",
  4. "type" : "library",
  5. "keywords" : ["library", "console", "processus", "getoption", "option",
  6. "cli", "parser", "readline", "autocompletion", "chrome",
  7. "cursor", "window", "tput", "terminfo"],
  8. "homepage" : "https://hoa-project.net/",
  9. "license" : "BSD-3-Clause",
  10. "authors" : [
  11. {
  12. "name" : "Ivan Enderlin",
  13. "email": "ivan.enderlin@hoa-project.net"
  14. },
  15. {
  16. "name" : "Hoa community",
  17. "homepage": "https://hoa-project.net/"
  18. }
  19. ],
  20. "support": {
  21. "email" : "support@hoa-project.net",
  22. "irc" : "irc://chat.freenode.net/hoaproject",
  23. "forum" : "https://users.hoa-project.net/",
  24. "docs" : "https://central.hoa-project.net/Documentation/Library/Console",
  25. "source": "https://central.hoa-project.net/Resource/Library/Console"
  26. },
  27. "require": {
  28. "hoa/consistency": "~1.0",
  29. "hoa/event" : "~1.0",
  30. "hoa/exception" : "~1.0",
  31. "hoa/file" : "~1.0",
  32. "hoa/protocol" : "~1.0",
  33. "hoa/stream" : "~1.0",
  34. "hoa/ustring" : "~4.0"
  35. },
  36. "require-dev": {
  37. "hoa/test": "~2.0"
  38. },
  39. "autoload": {
  40. "psr-4": {
  41. "Hoa\\Console\\": "."
  42. }
  43. },
  44. "suggest": {
  45. "hoa/dispatcher": "To use the console kit.",
  46. "hoa/router" : "To use the console kit.",
  47. "ext-pcntl" : "To enable hoa://Event/Console/Window:resize."
  48. },
  49. "extra": {
  50. "branch-alias": {
  51. "dev-master": "3.x-dev"
  52. }
  53. }
  54. }