PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Matthias Sommerfeld   IDNA Convert   ???   Download  
File: ???
Role: Auxiliary data
Content typex: text/plain
Description: Import from GitHub
Class: IDNA Convert
Convert from and to IDNA Punycode domain names
Author: By
Last change: updarte README
Requiring Symfony's mbstring polyfill creates issues (#54)

* remove polyfill replace from composer.json
Properly handle case folding in IDNA2008 (#50)

* implement fallback for ICU, clean up code in a few places
Make intl dependency optional (#49)

Fix case folding in NamePrep for IDNA2008 (#46)

Co-authored-by: Marek Chrobak <[email protected]>
Date: 16 hours ago
Size: 1,058 bytes
 

Contents

Class file image Download
{ "name": "algo26-matthias/idna-convert", "description": "A library for encoding and decoding internationalized domain names", "license": "LGPL-2.1+", "keywords": ["PHP","IDN","IDNA"], "homepage": "https://github.com/algo26-matthias/idna-convert", "authors": [ { "name": "Matthias Sommerfeld", "email": "[email protected]", "role": "Developer" } ], "require": { "ext-pcre": "*", "php": ">=8.1", "jakeasmith/http_build_url": "^1" }, "require-dev": { "phpunit/phpunit": "^9 || ^10" }, "suggest": { "ext-mbstring": "Install ext/mbstring for using input / output other than UTF-8 or ISO-8859-1", "ext-iconv": "Install ext/iconv for using input / output other than UTF-8 or ISO-8859-1" }, "autoload": { "psr-4": { "Algo26\\IdnaConvert\\": "src/" } }, "autoload-dev": { "psr-4": { "Algo26\\IdnaConvert\\Test\\": "tests/" } } }