Camel
, (*1)
Tiny library to handle words case transformation., (*2)
The main idea is to split the given word into several words and assemble them
in another format., (*3)
Example: camelCase => [camel, Case] => camel_case
, (*4)
Installation
composer require mattketmo/camel
Usage
<?php
require __DIR__.'/vendor/autoload.php';
use Camel\CaseTransformer;
use Camel\Format;
$transformer1 = new CaseTransformer(new Format\SnakeCase, new Format\CamelCase);
$transformer2 = new CaseTransformer(new Format\CamelCase, new Format\ScreamingSnakeCase);
echo $transformer1->transform('hello_world'); // helloWorld
echo $transformer2->transform('helloWorld'); // HELLO_WORLD
camelCase
StudlyCaps
snake_case
SCREAMING_SNAKE_CASE
spinal-case
Unit Tests
Install phpunit
via Composer:, (*5)
composer install
Once installed, run the following command:, (*6)
vendor/bin/phpunit
License
Camel is released under the MIT License.
See the bundled LICENSE file for details., (*7)