2017 © Pedro Peláez
 

library random-name-generator

A library to create interesting, sometimes entertaining, random names.

image

nubs/random-name-generator

A library to create interesting, sometimes entertaining, random names.

  • Sunday, December 4, 2016
  • by nubs
  • Repository
  • 4 Watchers
  • 57 Stars
  • 55,739 Installations
  • PHP
  • 4 Dependents
  • 0 Suggesters
  • 19 Forks
  • 2 Open issues
  • 6 Versions
  • 15 % Grown

The README.md

Random Name Generator

A PHP library to create interesting, sometimes entertaining, random names., (*1)

Build Status Scrutinizer Code Quality Coverage Status, (*2)

Latest Stable Version Total Downloads License, (*3)

Dependency Status, (*4)

Requirements

This library requires PHP 5.6, or newer., (*5)

Installation

This package uses composer so you can just add nubs/random-name-generator as a dependency to your composer.json file or execute the following command:, (*6)

composer require nubs/random-name-generator

Generators

All

The "all" generator will utilize all other configured generators to generate random names. It will select from the list of generators randomly and then use them to generate a random name using their functionality., (*7)

Usage

$generator = \Nubs\RandomNameGenerator\All::create();
echo $generator->getName();

Alternatively, if you want to configure/build the generators to use instead of using all of the available generators, you can construct them yourself:, (*8)

$generator = new \Nubs\RandomNameGenerator\All(
    [
        new \Nubs\RandomNameGenerator\Alliteration(),
        new \Nubs\RandomNameGenerator\Vgng()
    ]
);

Video Game Names

The video game name generator is based off of prior art. It will generate unique names based off of "typical" video games., (*9)

Examples

  • Kamikaze Bubblegum Warrior
  • Rockin' Valkyrie Gaiden
  • Neurotic Jackhammer Detective
  • My Little Mountain Climber Conflict
  • Small-Time Princess vs. The Space Mutants

You can also use this web example to see more example video game names generated by this library., (*10)

Usage

$generator = new \Nubs\RandomNameGenerator\Vgng();
echo $generator->getName();

Alliterative Names

The alliteration name generator is based off of a list of adjectives and a list of animals., (*11)

Examples

  • Agreeable Anaconda
  • Disturbed Duck
  • Misty Meerkat
  • Prickly Pig

Usage

$generator = new \Nubs\RandomNameGenerator\Alliteration();
echo $generator->getName();

License

random-name-generator is licensed under the MIT license. See LICENSE for the full license text., (*12)

The Versions

04/12 2016

dev-master

9999999-dev

A library to create interesting, sometimes entertaining, random names.

  Sources   Download

MIT

The Requires

  • php ~5.6 || ~7.0

 

The Development Requires

by Spencer Rinehart

generator random video game alliteration

04/12 2016

v2.1.0

2.1.0.0

A library to create interesting, sometimes entertaining, random names.

  Sources   Download

MIT

The Requires

  • php ~5.6 || ~7.0

 

The Development Requires

by Spencer Rinehart

generator random video game alliteration

15/09 2016

v2.0.0

2.0.0.0

A library to create interesting, sometimes entertaining, random names.

  Sources   Download

MIT

The Requires

  • php ~5.6 || ~7.0

 

The Development Requires

by Spencer Rinehart

generator random video game alliteration

12/01 2016

v1.0.0

1.0.0.0

A library to create interesting, sometimes entertaining, random names.

  Sources   Download

MIT

The Requires

  • php ~5.5 || ~7.0

 

The Development Requires

by Spencer Rinehart

generator random video game alliteration

30/07 2015

v0.2.0

0.2.0.0

A library to create interesting, sometimes entertaining, random names.

  Sources   Download

MIT

The Requires

  • php ~5.4 || ~7.0

 

The Development Requires

by Spencer Rinehart

generator random video game alliteration

22/05 2014

v0.1.0

0.1.0.0

A library to create interesting, sometimes entertaining, random names.

  Sources   Download

MIT

The Requires

  • php >=5.3.2

 

The Development Requires

by Spencer Rinehart

generator random video game