├── .editorconfig ├── .gitignore ├── LICENSE ├── Migration.md ├── README.md ├── composer.json ├── composer.lock ├── src └── Str.php └── tests └── index.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delight-im/PHP-Str/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delight-im/PHP-Str/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delight-im/PHP-Str/HEAD/LICENSE -------------------------------------------------------------------------------- /Migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delight-im/PHP-Str/HEAD/Migration.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delight-im/PHP-Str/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delight-im/PHP-Str/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delight-im/PHP-Str/HEAD/composer.lock -------------------------------------------------------------------------------- /src/Str.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delight-im/PHP-Str/HEAD/src/Str.php -------------------------------------------------------------------------------- /tests/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delight-im/PHP-Str/HEAD/tests/index.php --------------------------------------------------------------------------------