Bazaar is a random item and Heroku-ish name generator ported from the @raycchan's ruby version https://github.com/raycchan/bazaar.
Install the latest version with
$ composer require dboskovic/bazaar
<?php
require_once __DIR__ . '/../vendor/autoload.php'; // Autoload files using Composer autoload
use Bazaar\Bazaar;
// create a log channel
Bazaar::object();
// => "dirty rubberband"
// => "unusual pillow"
// => "slippery toothpaste"
Bazaar::super_object();
// => "unwavering foliage"
// => "tranquil snowflake"
// => "exuberant drylands"
Bazaar::heroku();
// => "inquisitive-cavern-6617"
// => "jubilant-sunset-9301"
// => "frightened-geyser-4542"
Bazaar::adj();
// => "colossal"
Bazaar::item();
// => "javelin"
Bazaar::super_adj();
// => "limitless"
Bazaar::super_item();
// => "lagoon"
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request