martinmdev/php-case-converter

PHP case converter

Installs: 9

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/martinmdev/php-case-converter

1.0.0 2019-09-25 07:04 UTC

This package is auto-updated.

Last update: 2025-11-25 20:40:20 UTC


README

codecov Build Status Latest Stable Version Total Downloads Latest Unstable Version License

Usage

<?php

require __DIR__.'/../vendor/autoload.php';

use Martinm\CaseConverter\Converter;

$converter = new Converter();

echo $converter->toCamel('hello-world'); // helloWorld

Installation

composer require martinmdev/php-case-converter