PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Lars Moelleken   Portable UTF-8   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Portable UTF-8
Manipulate UTF-8 text strings in pure PHP
Author: By
Last change: [+] "UTF8::normalize_whitespace()" -> can now also remove "control characters" if needed v2
[+] "UTF8::normalize_whitespace()" -> can now also remove "control characters" if needed

[+] "UTF8::is_printable()" -> fix for non-printable control characters
[+]: try to run test for php 8
[+]: update "voku/portable-ascii"
[+]: use "voku/simple-php-code-parser" for building the "README"
Date: 2 years ago
Size: 1,754 bytes
 

Contents

Class file image Download
{ "name": "voku/portable-utf8", "description": "Portable UTF-8 library - performance optimized (unicode) string functions for php.", "type": "library", "keywords": [ "clean", "php", "unicode", "utf", "utf-8", "utf8" ], "homepage": "https://github.com/voku/portable-utf8", "license": "(Apache-2.0 or GPL-2.0)", "authors": [ { "name": "Nicolas Grekas", "email": "p@tchwork.com" }, { "name": "Hamid Sarfraz", "homepage": "http://pageconfig.com/" }, { "name": "Lars Moelleken", "homepage": "http://www.moelleken.org/" } ], "require": { "php": ">=7.0.0", "symfony/polyfill-php72": "~1.0", "symfony/polyfill-iconv": "~1.0", "symfony/polyfill-intl-grapheme": "~1.0", "symfony/polyfill-intl-normalizer": "~1.0", "symfony/polyfill-mbstring": "~1.0", "voku/portable-ascii": "~1.5.6" }, "require-dev": { "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0" }, "suggest": { "ext-json": "Use JSON for string detection", "ext-ctype": "Use Ctype for e.g. hexadecimal digit detection", "ext-fileinfo": "Use Fileinfo for better binary file detection", "ext-intl": "Use Intl for best performance", "ext-iconv": "Use iconv for best performance", "ext-mbstring": "Use Mbstring for best performance" }, "autoload": { "psr-4": { "voku\\": "src/voku/" }, "files": [ "bootstrap.php" ] }, "autoload-dev": { "psr-4": { "voku\\tests\\": "tests/" } } }