-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.5 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
56
{
"name": "devstar/laravel-otp-validate",
"description": "Laravel package for OTP validation with built-in features like retry and resend mechanism. Built in max retry and max resend blocking. OTP/Security Code can be send over SMS or Email of your choice with user-defined template.",
"type": "library",
"homepage": "https://github.com/gitdevstar/laravel-otp-validate",
"keywords": [
"php",
"laravel",
"otp",
"security-code",
"email",
"sms",
"otp-validation",
"retry",
"resend"
],
"license": "MIT",
"authors": [
{
"name": "Logan P",
"email": "[email protected]",
"homepage": ""
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Ferdous\\OtpValidator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ferdous\\OtpValidator\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.1.8|^8.0",
"guzzlehttp/guzzle": "^7.0.1",
"nesbot/carbon": "^2.22",
"aws/aws-sdk-php": "^3.179"
},
"require-dev": {
"orchestra/testbench": "^6.0@dev"
},
"extra": {
"laravel": {
"providers": [
"Ferdous\\OtpValidator\\OtpValidatorServiceProvider"
],
"aliases": {
"OtpVerifier": "Ferdous\\OtpValidator\\OtpValidatorFacade"
}
}
}
}