-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
55 lines (54 loc) · 1.54 KB
/
composer.json
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "uthmandev/swift2fa",
"description": "A secure and easy way to implement Two-Factor Authentication (2FA) with PHP. This library provides an easy-to-use solution for integrating 2FA into your applications, including QR code generation, token verification, and secret key management.",
"type": "library",
"keywords": [
"2FA",
"Two-Factor Authentication",
"PHP",
"QR Code",
"Token Verification",
"Security",
"Authentication"
],
"homepage": "https://github.com/codetesla51/swift2FA",
"support": {
"source": "https://github.com/codetesla51/swift2FA"
},
"license": "MIT",
"require": {
"php": "^7.4 || ^8.0",
"vlucas/phpdotenv": "^5.0",
"chillerlan/php-qrcode": "dev-main",
"paragonie/constant_time_encoding": "dev-master",
"phpmailer/phpmailer": "dev-master",
"twilio/sdk": "dev-main"
},
"require-dev": {
"phpunit/phpunit": "^12.0@dev"
},
"autoload": {
"psr-4": {
"Swift2FA\\": "src/Swift2FA/"
}
},
"autoload-dev": {
"psr-4": {
"Swift2FA\\tests\\": "tests/"
}
},
"authors": [
{
"name": "uthmandev",
"email": "[email protected]",
"homepage": "https://github.com/codetesla51",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"sort-packages": true
}
}