├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json ├── config └── randomorg.php ├── example.php ├── phpunit.xml └── src └── randomorg ├── Client.php ├── ClientInterface.php ├── Facades └── Random.php ├── Random.php ├── RandomInterface.php ├── RandomOrgException.php └── RandomServiceProvider.php /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea/ 3 | vendor/ 4 | composer.lock 5 | .env 6 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defiant/randomorg/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defiant/randomorg/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defiant/randomorg/HEAD/composer.json -------------------------------------------------------------------------------- /config/randomorg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defiant/randomorg/HEAD/config/randomorg.php -------------------------------------------------------------------------------- /example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defiant/randomorg/HEAD/example.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defiant/randomorg/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/randomorg/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defiant/randomorg/HEAD/src/randomorg/Client.php -------------------------------------------------------------------------------- /src/randomorg/ClientInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defiant/randomorg/HEAD/src/randomorg/ClientInterface.php -------------------------------------------------------------------------------- /src/randomorg/Facades/Random.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defiant/randomorg/HEAD/src/randomorg/Facades/Random.php -------------------------------------------------------------------------------- /src/randomorg/Random.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defiant/randomorg/HEAD/src/randomorg/Random.php -------------------------------------------------------------------------------- /src/randomorg/RandomInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defiant/randomorg/HEAD/src/randomorg/RandomInterface.php -------------------------------------------------------------------------------- /src/randomorg/RandomOrgException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defiant/randomorg/HEAD/src/randomorg/RandomOrgException.php -------------------------------------------------------------------------------- /src/randomorg/RandomServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defiant/randomorg/HEAD/src/randomorg/RandomServiceProvider.php --------------------------------------------------------------------------------