Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 401 Bytes

README.md

File metadata and controls

30 lines (22 loc) · 401 Bytes

Inflect

Inflect is an Inflector for PHP

Installation:

Add this line to your composer.json "require" section:

composer.json

    "require": {
       ...
       "mmucklo/inflect": "*"

Usage:

use Inflect\Inflect;

echo Inflect::singularize('tests');
echo Inflect::pluralize('test');

Notes:

Many thanks to original author Sho Kuwamoto"