-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (65 loc) · 2.58 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
57
58
59
60
61
62
63
64
65
{
"name": "alexgeno/phone-verification-laravel",
"description":"A library for phone verification via Laravel notification channels. Any notification channel can be used as a sender, and Redis or MongoDB can be used as a storage.",
"type": "library",
"keywords":["phone", "verification", "verify", "sms", "2fa", "2factor","authentication", "signin",
"signup", "redis", "mongo", "mongodb", "verify-by-phone", "otp", "notification", "notification-channel",
"twilio", "messagebird", "vonage", "touch-sms", "clickatell", "jusibe", "smsc-ru", "authy", "cmsms", "46elks",
"sipgate", "all-my-sms", "smspoh", "turbosms", "vodafone", "africastalking", "sms77", "smsapi", "sms-broadcast"
],
"license": "MIT",
"authors": [
{
"name": "Alexey Geno",
"email": "[email protected]",
"homepage":"https://github.com/alexeygeno"
}
],
"homepage": "https://github.com/alexeygeno/phone-verification-laravel",
"autoload": {
"psr-4": {
"AlexGeno\\PhoneVerificationLaravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AlexGeno\\PhoneVerificationLaravel\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"AlexGeno\\PhoneVerificationLaravel\\PhoneVerificationServiceProvider"
]
}
},
"require": {
"php": "^8.0",
"alexgeno/phone-verification": "^1.0",
"laravel/framework": "^9.0"
},
"suggest": {
"predis/predis": "required to use Redis as a storage",
"jenssegers/mongodb": "required to use MongoDB as a storage",
"laravel-notification-channels/messagebird": "required to use Messagebird as a sender's notification channel",
"laravel-notification-channels/twilio": "required to use Twilio as a sender's notification channel",
"laravel/vonage-notification-channel": "required to use Vonage as a sender's notification channel"
},
"require-dev": {
"jenssegers/mongodb": "^3.9",
"predis/predis": "^2.2",
"laravel-notification-channels/messagebird": "^4.0",
"laravel-notification-channels/twilio": "^3.3",
"laravel/vonage-notification-channel": "^3.2",
"php-mock/php-mock-phpunit": "^2.7",
"josiasmontag/laravel-redis-mock": "^1.3",
"orchestra/testbench": "^7.25",
"nunomaduro/collision": "^6.2",
"laravel/pint": "^1.5",
"phpstan/phpstan": "^1.10"
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable"
}