Package Data | |
---|---|
Maintainer Username: | defiant |
Maintainer Contact: | sinantaga@gmail.com (Sinan Taga) |
Package Create Date: | 2015-06-02 |
Package Last Update: | 2020-05-24 |
Language: | PHP |
License: | Unknown |
Last Refreshed: | 2024-11-11 15:22:56 |
Package Statistics | |
---|---|
Total Downloads: | 2,464 |
Monthly Downloads: | 1 |
Daily Downloads: | 1 |
Total Stars: | 16 |
Total Watchers: | 4 |
Total Forks: | 8 |
Total Open Issues: | 1 |
Native PHP and Laravel Implementation of Random.org's JSON-RPC API
composer require defiant/randomorg
or add it in your composer.json require block.
{
"require": {
"defiant/randomorg": "1.*"
}
}
and
composer update
$apiKey = '00000000-0000-0000-0000-000000000000';
$random = new RandomOrg\Random($apiKey);
// Simple method
// following functions returns 52 random non-repeating numbers between 1-52
$result = $random->generateIntegers(52, 1, 52, false);
// Signed methods
// following functions returns the above with signed data
$result = $random->generateIntegers(52, 1, 52, false, 10, true);
// Verify Signature
$verified = $random->verifySignature($result['result']['random'], $result['result']['signature']);
config/app.php
file.RandomOrg\RandomServiceProvider::class
aliases
key of your config/app.php
'RandomOrg' => RandomOrg\Facades\Random::class,
vendor:publish
artisan command to publish your configuration assets to config/randomorg.php
$ php artisan vendor:publish --provider="RandomOrg\RandomServiceProvider"
You may set your API key directly in your config/randomorg.php
file or in your .env file like so:
RANDOM_ORG_API_KEY=00000000-0000-0000-0000-000000000000
Example code:
use RandomOrg;
public function random()
{
return RandomOrg::generateIntegers(52, 1, 52, false);
}
You can get your own API key at https://api.random.org/api-keys
Api Key (00000000-0000-0000-0000-000000000000) used in these examples will be disabled when the beta ends. Get your API key at https://api.random.org/api-keys
For the native implementation, there are three methods where you can set the API key in your class.
First in the constructor:
$apiKey = '00000000-0000-0000-0000-000000000000';
$random = new RandomOrg\Random($apiKey);
Secondly you can set it directly your class
protected $apiKey = '00000000-0000-0000-0000-000000000000';
or you can use the setApi method
$apiKey = '00000000-0000-0000-0000-000000000000';
$random = new RandomOrg\Random();
$random->setApiKey($apiKey);
Note: Method names are the same with simple method names on the API. To make signed request an optional boolean parameter is needed as the final argument.
Currently supports simple and signed methods below. For more information see https://api.random.org/json-rpc/1/