yhoiseth/stringy-inflector

A PHP library that helps you capitalize personal names

v1.0 2016-08-06 08:14 UTC

This package is auto-updated.

Last update: 2024-04-20 01:41:10 UTC


README

Build Status

A PHP library that helps you capitalize personal names. Extends Stringy, a PHP string manipulation library with multibyte support.

Personal names such as "Marcus Aurelius" are sometimes typed incorrectly using lowercase ("marcus aurelius").

Capitalizing "marcus aurelius" is a simple task. But some names are less simple. Consider "Zeno of Citium". If you have the string "zeno of citium", you should capitalize "zeno" and "citium", but not "of".

StringyInflector helps you capitalize personal names by checking against a list of special cases that shouldn't be capitalized. If the name is in the list, it isn't capitalized.

Installation

composer require yhoiseth/stringy-inflector

Usage

<?php

use StringyInflector\StringyInflector as S;

$stringy = S::create('zeno of citium');

echo $stringy->capitalizePersonalName(); // 'Zeno of Citium'