├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── src ├── Random.php ├── Throwable │ ├── Error.php │ ├── Exception.php │ ├── InvalidArgumentError.php │ ├── InvalidLengthError.php │ ├── InvalidRangeError.php │ └── NoSourceOfRandomnessError.php └── Util.php └── tests └── index.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delight-im/PHP-Random/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delight-im/PHP-Random/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delight-im/PHP-Random/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delight-im/PHP-Random/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delight-im/PHP-Random/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delight-im/PHP-Random/HEAD/composer.lock -------------------------------------------------------------------------------- /src/Random.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delight-im/PHP-Random/HEAD/src/Random.php -------------------------------------------------------------------------------- /src/Throwable/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delight-im/PHP-Random/HEAD/src/Throwable/Error.php -------------------------------------------------------------------------------- /src/Throwable/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delight-im/PHP-Random/HEAD/src/Throwable/Exception.php -------------------------------------------------------------------------------- /src/Throwable/InvalidArgumentError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delight-im/PHP-Random/HEAD/src/Throwable/InvalidArgumentError.php -------------------------------------------------------------------------------- /src/Throwable/InvalidLengthError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delight-im/PHP-Random/HEAD/src/Throwable/InvalidLengthError.php -------------------------------------------------------------------------------- /src/Throwable/InvalidRangeError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delight-im/PHP-Random/HEAD/src/Throwable/InvalidRangeError.php -------------------------------------------------------------------------------- /src/Throwable/NoSourceOfRandomnessError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delight-im/PHP-Random/HEAD/src/Throwable/NoSourceOfRandomnessError.php -------------------------------------------------------------------------------- /src/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delight-im/PHP-Random/HEAD/src/Util.php -------------------------------------------------------------------------------- /tests/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delight-im/PHP-Random/HEAD/tests/index.php --------------------------------------------------------------------------------