Giter Site home page Giter Site logo

nexxai / namecase Goto Github PK

View Code? Open in Web Editor NEW

This project forked from tamtamchik/namecase

0.0 3.0 0.0 28 KB

This package allows you to convert names into the correct case where possible.

Home Page: https://github.com/tamtamchik/namecase

License: MIT License

PHP 100.00%

namecase's Introduction

NameCase SensioLabsInsight

Latest Version on Packagist Software License Build Status Coverage Status Quality Score Total Downloads

Forenames and surnames are often stored either wholly in UPPERCASE or wholly in lowercase. This package allows you to convert names into the correct case where possible. Although forenames and surnames are normally stored separately if they do appear in a single string, whitespace separated, NameCase deal correctly with them.

Currently correctly name cases names which include any of the following:

Mc, Mac, al, el, ap, da, de, delle, della, den, di, du, del, der, la, le, lo, van and von.

It correctly deals with names which contain apostrophes and hyphens too.

Warning! This library contains global str_name_case function, that potentially can break your function with this name. Now you are warned!

Install

Via Composer

$ composer require tamtamchik/namecase

Warning! For PHP < 5.6, please be sure to setup UTF-8 as defaut encoding in your php.ini
mbstring.internal_encoding = UTF-8;

Usage

// As global function
str_name_case("KEITH");               // => Keith
str_name_case("LEIGH-WILLIAMS");      // => Leigh-Williams
str_name_case("MCCARTHY");            // => McCarthy
str_name_case("O'CALLAGHAN");         // => O'Callaghan
str_name_case("ST. JOHN");            // => St. John
str_name_case("VON STREIT");          // => von Streit
str_name_case("AP LLWYD DAFYDD");     // => ap Llwyd Dafydd
str_name_case("HENRY VIII");          // => Henry VIII

// As static call
Formatter::nameCase("VAN DYKE");      // => van Dyke

// As instance
use \Tamtamchik\NameCase\Formatter;
$formatter = new Formatter();
$formatter->nameCase("LOUIS XIV");    // => Louis XIV

Change log

Please see CHANGELOG for more information what has changed recently.

Testing & Demo

$ composer tests
$ composer demo

Contributing

Please see CONTRIBUTING and CONDUCT for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Acknowledgements

This library is a port of the Perl library, and owes most of its functionality to the Perl version by Mark Summerfield.
I also used some solutions from Ruby version by Aaron Patterson.
Any bugs in the PHP port are my fault.

Credits

Original PERL Lingua::EN::NameCase Version:

  • Copyright © Mark Summerfield 1998-2014. All Rights Reserved.
  • Copyright © Barbie 2014-2015. All Rights Reserved.

Ruby Version:

  • Copyright © Aaron Patterson 2006. All Rights Reserved.

PHP Version:

License

The MIT License (MIT). Please see License File for more information.

namecase's People

Contributors

tamtamchik avatar nexxai avatar

Watchers

James Cloos avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.