summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2016-12-30 07:33:56 +0100
committerRemi Collet <fedora@famillecollet.com>2016-12-30 07:33:56 +0100
commitb4aed8cbf07516ce8e663ea94bc10b350cff2a64 (patch)
tree6c2618c5911c4fb68b66148efd4b789daf99b850 /composer.json
parent4e179866837a3355c822711dd156000642a1c1b9 (diff)
php-paragonie-random-compat: 2.0.4 (backported from Fedora)
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json35
1 files changed, 35 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..d363f4c
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,35 @@
+{
+ "name": "paragonie/random_compat",
+ "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
+ "keywords": [
+ "csprng",
+ "random",
+ "pseudorandom"
+ ],
+ "license": "MIT",
+ "type": "library",
+ "authors": [
+ {
+ "name": "Paragon Initiative Enterprises",
+ "email": "security@paragonie.com",
+ "homepage": "https://paragonie.com"
+ }
+ ],
+ "support": {
+ "issues": "https://github.com/paragonie/random_compat/issues",
+ "email": "info@paragonie.com",
+ "source": "https://github.com/paragonie/random_compat"
+ },
+ "require": {
+ "php": ">=5.2.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "4.*|5.*"
+ },
+ "suggest": {
+ "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
+ },
+ "autoload": {
+ "files": ["lib/random.php"]
+ }
+}