dboskovic / bazaar
Random item and Heroku-ish name generator package ported from raycchan/bazaar gem
dev-master
2015-09-07 19:51 UTC
This package is not auto-updated.
Last update: 2025-09-13 23:12:41 UTC
README
Bazaar is a random item and Heroku-ish name generator ported from the @raycchan's ruby version https://github.com/raycchan/bazaar.
Installation
Install the latest version with
$ composer require dboskovic/bazaar
Basic Usage
<?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"
Contributing
- 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