ericmakesstuff / display-name by eblount

A simple package to show user's real names in a variety of Web-safe ways, i.e. Eric B. or E B. Also includes a Laravel Facade.
640
3
2
Package Data
Maintainer Username: eblount
Maintainer Contact: eric@ericmakesstuff.com (Eric Blount)
Package Create Date: 2015-05-17
Package Last Update: 2015-05-18
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-30 15:12:18
Package Statistics
Total Downloads: 640
Monthly Downloads: 3
Daily Downloads: 0
Total Stars: 3
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

DisplayName

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

A simple package to show user's real names in a variety of Web-safe ways, i.e. Eric B. or E B. Also includes a Laravel Facade.

Install

Via Composer

$ composer require ericmakesstuff/display-name

Usage

$displayName = new EricMakesStuff\DisplayName\DisplayName();
echo $displayName->fullName('John Smith'); // John Smith
echo $displayName->firstName('John Smith'); // John
echo $displayName->firstNameLastInitial('John Smith'); // John S
echo $displayName->firstNameLastInitialWithPeriod('John Smith'); // John S.
echo $displayName->initials('John Smith'); // JS
echo $displayName->initialsWithPeriods('John Smith'); // J.S.
echo $displayName->initialsWithSpaces('John Smith'); // J S
echo $displayName->format('John Smith', 'initials'); // JS

Laravel Facade

Include the Service Provider in config/app.php

'EricMakesStuff\DisplayName\DisplayNameServiceProvider',

Include the Facade in config/app.php

'DisplayName' => 'EricMakesStuff\DisplayName\Facades\DisplayName',

Use the facade

DisplayName::firstName('John Smith') // John
DisplayName::format('John Smith', 'initials') // JS

Change log

Please see CHANGELOG for more information what has changed recently.

Testing

$ composer test

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email eric at ericmakesstuff dot com instead of using the issue tracker.

Credits

License

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