-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 1.83 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": "brackets/verifications",
"description": "Two Factor Authentication (2FA) and code-based verification of actions (sms or email) for Laravel",
"keywords": [
"2FA",
"laravel",
"two-factor",
"verification",
"sms code"
],
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Pavol Perdík",
"email": "pavol.perdik@brackets.sk",
"homepage": "https://www.brackets.sk",
"role": "Developer"
},
{
"name": "Miroslav Trnavský",
"email": "miroslav.trnavsky@brackets.sk",
"homepage": "https://www.brackets.sk",
"role": "Developer"
}
],
"require": {
"php": "^7.3|^8.0",
"twilio/sdk": "^6.0",
"illuminate/http": "^8.0",
"illuminate/events": "^8.0",
"illuminate/support": "^8.0",
"illuminate/database": "^8.0",
"illuminate/console": "^8.0",
"illuminate/routing": "^8.0",
"nesbot/carbon": "^2.0"
},
"autoload": {
"classmap": [],
"psr-4": {
"Brackets\\Verifications\\": "src/"
}
},
"require-dev": {
"brackets/code-style-fixer": "^1.0"
},
"scripts": {
"post-install-cmd": [
"[ $COMPOSER_DEV_MODE -eq 0 ] || ./vendor/bin/code-style-fixer.sh git-hooks-add --ignore-lock"
],
"post-update-cmd": [
"[ $COMPOSER_DEV_MODE -eq 0 ] || ./vendor/bin/code-style-fixer.sh git-hooks-update"
]
},
"extra": {
"laravel": {
"providers": [
"Brackets\\Verifications\\VerificationServiceProvider"
],
"aliases": {
"Verification": "Brackets\\Verifications\\Facades\\Verification"
}
}
}
}