hametuha / string-utility
PHP traits of string helper functions.
1.2.0
2022-11-30 07:30 UTC
Requires
- php: >=5.6
Requires (Dev)
- phpunit/phpunit: >=5.7
- squizlabs/php_codesniffer: ^3.0
- wp-coding-standards/wpcs: ^2.0
This package is auto-updated.
Last update: 2026-03-01 00:28:33 UTC
README
PHP utility traits of string related functions.
Installation
composer require hametuha/string-utility
How To Use
<?php
MyClass {
use Hametuha\StringUtility\NamingConventions;
}
$my_instance = new MyClass();
echo $my_instance->camel_to_kebab( 'MyClassName' );
// -> 'my-class-name'
Lisence
GPL 3.0 or later.