/gachagacha

Gacha-Gacha is an implementation of weighted randomization in PHP.

Primary LanguagePHP

Gacha-Gacha

Build Status Coverage Status

Description

Gacha-Gacha is an implementation of weighted randomization in PHP.
Gacha-Gacha requires PHP >= 5.3.3.

Usage

require_once './vendor/onody/gachagacha/src/autoload.php';

$gachagacha = new \GachaGacha\Picker();

$gachagacha->set('Marks',    30.124);
$gachagacha->set('Daniel',   20);
$gachagacha->set('Schuster', 0);

$gachagacha->pick();        // single item
$gachagacha->pick(1000);    // array of items

Install

{   
    "require": {
        "onody/gachagacha": "1.0.0"
    }
}
php composer.phar install

Licence

[MIT]

Author

onody