1{ 2 "name" : "hoa/ustring", 3 "description": "The Hoa\\Ustring library.", 4 "type" : "library", 5 "keywords" : ["library", "string", "unicode", "search"], 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/Ustring", 23 "source": "https://central.hoa-project.net/Resource/Library/Ustring" 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\\Ustring\\": "." 35 } 36 }, 37 "suggest": { 38 "ext-iconv": "ext/iconv must be present (or a third implementation) to use Hoa\\Ustring::transcode().", 39 "ext-intl" : "To get a better Hoa\\Ustring::toAscii() and Hoa\\Ustring::compareTo()." 40 }, 41 "extra" : { 42 "branch-alias": { 43 "dev-master": "4.x-dev" 44 } 45 } 46} 47