Download the PHP package defiant/randomorg without Composer
On this page you can find all versions of the php package defiant/randomorg. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download defiant/randomorg
More information about defiant/randomorg
Files in defiant/randomorg
Package randomorg
Short Description PHP class and Laravel implementation for Random.org
License
Homepage http://github.com/defiant/randomorg
Informations about the package randomorg
randomorg
Native PHP and Laravel Implementation of Random.org's JSON-RPC API
Installation with Composer
composer require defiant/randomorg
or add it in your composer.json require block.
and
composer update
Native PHP Usage
Laravel Usage
-
Register service provider in your
config/app.php
file. -
Register the RandomOrg facade in the
aliases
key of yourconfig/app.php
- Run a
vendor:publish
artisan command to publish your configuration assets toconfig/randomorg.php
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:
About API Keys
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:
Secondly you can set it directly your class
or you can use the setApi method
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/
- generateIntegers
- generateDecimalFractions
- generateGaussians
- generateStrings
- generateUUIDs
- generateBlobs
- getUsage
- generateSignedIntegers
- generateSignedDecimalFractions
- generateSignedGaussians
- generateSignedStrings
- generateSignedUUIDs
- generateSignedBlobs
- verifySignature