iritesh37 / random-word-generator
Generates random words by combining adjectives and nouns
Requires
- php: ^8.2
Requires (Dev)
- phpunit/phpunit: 12.1.x-dev
This package is auto-updated.
Last update: 2025-03-13 17:33:29 UTC
README
Generates creative words by randomly combining adjectives and nouns. This is useful for situations in which you need to generate a name that is unique or memorable.
Installation
To install the package, run the following command:
composer require iritesh37/random-word-generator
Usage
<?php use Iritesh37\RandomWordGenerator\Generator; echo Generator::generate(); // Outputs 'autumn firefly', 'crimson meadow', etc.
It's also possible to use a custom separator character, by passing it as the first argument:
<?php use Iritesh37\RandomWordGenerator\Generator; echo Generator::generate('-'); // Outputs 'autumn-firefly', 'crimson-meadow', etc.
If you need words of a certain length or complexity, you can use the second argument to increase the number of adjectives used:
<?php use Iritesh37\RandomWordGenerator\Generator; echo Generator::generate('-', 4); // Outputs 'crimson-autumn-wandering-firefly', etc.
Custom Word Lists
It is also possible to override the adjectives and nouns that can be used to generate the random phrases. For example, you may wish to do this if you want to use words that are themed or branded to your project.
To override the adjectives and nouns at the same time, you can pass an array of strings for both the first and second parameter:
<?php use Iritesh37\RandomWordGenerator\Generator; $adjectives = ['adjective one', 'adjective two']; $nouns = ['noun one', 'noun two']; Generator::setWordLists($adjectives, $nouns);
If you only wish to override the adjectives, you can use the following:
<?php use Iritesh37\RandomWordGenerator\Words\Adjective; $adjectives = ['adjective one', 'adjective two']; Adjective::setWordList($adjectives);
If you only wish to override the nouns, you can use the following:
<?php use Iritesh37\RandomWordGenerator\Words\Noun; $nouns = ['noun one', 'noun two']; Noun::setWordList($nouns);
License
The MIT License (MIT). Please see License File for more information.