summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: a4c13758981d6da539a146c80158567b28875671 (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
36
{
    "name": "robthree/twofactorauth",
    "description": "Two Factor Authentication",
    "version": "1.6",
    "type": "library",
    "keywords": [ "Authentication", "Two Factor Authentication", "Multi Factor Authentication", "TFA", "MFA", "PHP", "Authenticator", "Authy" ],
    "homepage": "https://github.com/RobThree/TwoFactorAuth",
    "license": "MIT",
    "authors": [
        {
            "name": "Rob Janssen",
            "homepage": "http://robiii.me",
            "role": "Developer"
        }
    ],
    "support": {
        "issues": "https://github.com/RobThree/TwoFactorAuth/issues",
        "source": "https://github.com/RobThree/TwoFactorAuth"
    },
    "require": {
        "php": ">=5.3.0"
    },
    "require-dev": {
        "phpunit/phpunit": "@stable"
    },
    "autoload": {
        "psr-4": {
            "RobThree\\Auth\\": "lib"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "RobThree\\Auth\\Test\\": "tests"
        }
    }
}