├── .editorconfig ├── CHANGELOG.md ├── LICENSE ├── NOTICE ├── README.md ├── composer.json ├── res ├── ascii.php ├── fold.php ├── lower.php └── upper.php └── src ├── Exception ├── InvalidCodePointException.php ├── InvalidStringException.php └── UnicodeException.php └── UnicodeString.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opis/string/HEAD/.editorconfig -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opis/string/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opis/string/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opis/string/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opis/string/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opis/string/HEAD/composer.json -------------------------------------------------------------------------------- /res/ascii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opis/string/HEAD/res/ascii.php -------------------------------------------------------------------------------- /res/fold.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opis/string/HEAD/res/fold.php -------------------------------------------------------------------------------- /res/lower.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opis/string/HEAD/res/lower.php -------------------------------------------------------------------------------- /res/upper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opis/string/HEAD/res/upper.php -------------------------------------------------------------------------------- /src/Exception/InvalidCodePointException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opis/string/HEAD/src/Exception/InvalidCodePointException.php -------------------------------------------------------------------------------- /src/Exception/InvalidStringException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opis/string/HEAD/src/Exception/InvalidStringException.php -------------------------------------------------------------------------------- /src/Exception/UnicodeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opis/string/HEAD/src/Exception/UnicodeException.php -------------------------------------------------------------------------------- /src/UnicodeString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opis/string/HEAD/src/UnicodeString.php --------------------------------------------------------------------------------