Download the PHP package andreasindal/rpgfaker without Composer

On this page you can find all versions of the php package andreasindal/rpgfaker. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package rpgfaker

RPGFaker

RPGFaker is a library that can generate names for you to use in your fantasy games/fiction/whatever. To add RPGFaker to your project, simply run:

composer require andreasindal/rpgfaker

Usage

Names

RPGFaker can generate character names for you. Listed below are options that can be passed to RPGFaker that let's you customize how your names are generated.

Options

When instantating the RPGFaker object, you can supply an array of options. The defaults are:

Race (string)

The race option gives you the ability to supply the name of a fantasy race, and the name generated will fit nicely to that race. Examples on names tied to a race:

Elf:        Dessiell Rianahr
Human:      Cynwin Whiteley
Orc/Troll:  Voshyzh Roshzak

The currently accepted races are elf, human, orc and troll (orc and troll share the same settings). If null or any other race is supplied, a mix of all race’s settings will be used.

Length (integer|array)

The length option defines how many syllables* the names generated will have. For example, a length of 2 may generate a name such as "Cynwin", while a length of 3 may generate the name "Fazhtargmoh". The length option can also be an array of integers, and if it is, it must contain the same amount of elements as the number of the "count" option (see below). If the length supplied is an array, then each element specifies the number of syllables for each name. However, the length parameter is not taken into account when a special last name is generated.

Example:

* In some cases, what is considered as one syllable by RPGFaker may in fact be two syllables, e.g. "fara".

Count (integer)

count simply defines the amount of names that should be generated. Default is 2.

Example:

Special (bool|string)

special can be set to either the string 'random', true or false. Special defines wether or not a special last name will be used.

Example:

Duplicates (array)

The first element in the duplicates option specifies whether or not duplicates should be allowed, and the second element specifies the number of retries that should be attempted if a duplicate occurs. The duplicate flags controls all parts of a name, that is, generating Rileith Doreith after Rileith Starcleaver will attempt a retry.

This setting can be particularly useful when generating large sets of names.

Towns

RPGFaker can also generate town names for you. The only option for the town name generator is the duplicates option which is described here.

License

MIT.


All versions of rpgfaker with dependencies

PHP Build Version
Package Version
Requires php Version >=5.6.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package andreasindal/rpgfaker contains the following files

Loading the files please wait ....