infureal / php-stringable
String helper class for better experience
Installs: 11
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
pkg:composer/infureal/php-stringable
Requires
- php: ^7.3
- ext-ctype: *
- ext-mbstring: *
This package is auto-updated.
Last update: 2025-09-29 02:59:50 UTC
README
This package is inspired by laravel/laravel facade Str
Install
composer require infureal/php-stringable
How to use
$str = \Infureal\Str::of('HELLO') ->lower(); echo $str; // hello echo $str->upperFirst(); // Hello