summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: d363f4c8cb6db506a2f1dcd22e052b48fe964f5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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"]
    }
}