blob: 847b2f8e09900faf783452a9828d4ead7049742a [file] [log] [blame]
Matthias Andreas Benkardb382b102021-01-02 15:32:21 +01001{
2 "name": "robthree/twofactorauth",
3 "description": "Two Factor Authentication",
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02004 "version": "1.8.0",
Matthias Andreas Benkardb382b102021-01-02 15:32:21 +01005 "type": "library",
6 "keywords": [ "Authentication", "Two Factor Authentication", "Multi Factor Authentication", "TFA", "MFA", "PHP", "Authenticator", "Authy" ],
7 "homepage": "https://github.com/RobThree/TwoFactorAuth",
8 "license": "MIT",
9 "authors": [
10 {
11 "name": "Rob Janssen",
12 "homepage": "http://robiii.me",
13 "role": "Developer"
14 }
15 ],
16 "support": {
17 "issues": "https://github.com/RobThree/TwoFactorAuth/issues",
18 "source": "https://github.com/RobThree/TwoFactorAuth"
19 },
20 "require": {
21 "php": ">=5.6.0"
22 },
23 "require-dev": {
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020024 "phpunit/phpunit": "@stable",
25 "php-parallel-lint/php-parallel-lint": "^1.2"
26 },
27 "suggest": {
28 "bacon/bacon-qr-code": "Needed for BaconQrCodeProvider provider",
29 "endroid/qr-code": "Needed for EndroidQrCodeProvider"
Matthias Andreas Benkardb382b102021-01-02 15:32:21 +010030 },
31 "autoload": {
32 "psr-4": {
33 "RobThree\\Auth\\": "lib"
34 }
35 },
36 "autoload-dev": {
37 "psr-4": {
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020038 "Tests\\": "tests/"
Matthias Andreas Benkardb382b102021-01-02 15:32:21 +010039 }
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020040 },
41 "scripts": {
42 "lint": [
43 "parallel-lint --exclude vendor ."
44 ],
45 "test": [
46 "XDEBUG_MODE=coverage phpunit"
47 ]
Matthias Andreas Benkardb382b102021-01-02 15:32:21 +010048 }
49}