summaryrefslogtreecommitdiff
path: root/vendor/christian-riesen/otp/composer.json
blob: 94f16c67a029150f28d69ea4c49fb2ed3d6ec49b (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
{
    "name": "christian-riesen/otp",
    "type": "library",
    "description": "One Time Passwords, hotp and totp according to RFC4226 and RFC6238",
    "keywords": ["otp","hotp","totp","googleauthenticator","rfc4226","rfc6238"],
    "homepage": "https://github.com/ChristianRiesen/otp",
    "license": "MIT",
    "authors": [
        {
            "name": "Christian Riesen",
            "email": "chris.riesen@gmail.com",
            "homepage": "http://christianriesen.com",
            "role": "Developer"
        }
    ],
    "require": {
        "php": ">=5.3.0",
        "christian-riesen/base32": ">=1.0"
    },
    "suggest": {
        "paragonie/random_compat": "Optional polyfill for a more secure random generator for pre PHP7 versions"
    },
    "autoload": {
        "psr-0": {
            "Otp": "src"
        }
    }
}