Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
{
2
    "name": "spomky-labs/otphp",
3
    "type": "library",
4
    "description": "A PHP library for generating one time passwords according to RFC 4226 (HOTP Algorithm) and the RFC 6238 (TOTP Algorithm) and compatible with Google Authenticator",
5
    "license": "MIT",
6
    "keywords": ["otp", "hotp", "totp", "RFC 4226", "RFC 6238", "Google Authenticator", "FreeOTP"],
7
    "homepage": "https://github.com/Spomky-Labs/otphp",
8
    "authors": [
9
        {
10
            "name": "Florent Morselli",
11
            "homepage": "https://github.com/Spomky"
12
        },
13
        {
14
            "name": "All contributors",
15
            "homepage": "https://github.com/Spomky-Labs/otphp/contributors"
16
        }
17
    ],
18
    "require": {
19
        "php": "^7.1",
20
        "paragonie/constant_time_encoding": "^2.0",
21
        "beberlei/assert": "^2.4"
22
    },
23
    "require-dev": {
24
        "phpunit/phpunit": "^6.0",
25
        "satooshi/php-coveralls": "^1.0"
26
    },
27
    "suggest": {
28
    },
29
    "autoload": {
30
        "psr-4": { "OTPHP\\": "src/" }
31
    },
32
    "autoload-dev": {
33
        "psr-4": { "OTPHP\\Test\\": "tests/" }
34
    },
35
    "extra": {
36
        "branch-alias": {
37
            "dev-master": "9.0.x-dev"
38
        }
39
    }
40
}