composer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name" : "hoa/consistency",
  3. "description": "The Hoa\\Consistency library.",
  4. "type" : "library",
  5. "keywords" : ["library", "consistency", "autoloader", "entity", "flex",
  6. "keyword", "callable"],
  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/Consistency",
  24. "source": "https://central.hoa-project.net/Resource/Library/Consistency"
  25. },
  26. "require": {
  27. "php" : ">=5.5.0",
  28. "hoa/exception": "~1.0"
  29. },
  30. "require-dev": {
  31. "hoa/stream": "~1.0",
  32. "hoa/test" : "~2.0"
  33. },
  34. "autoload": {
  35. "psr-4": {
  36. "Hoa\\Consistency\\": "."
  37. },
  38. "files": ["Prelude.php"]
  39. },
  40. "extra": {
  41. "branch-alias": {
  42. "dev-master": "1.x-dev"
  43. }
  44. }
  45. }