-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 loc) · 896 Bytes
/
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
{
"name": "cuongnd88/otp-auth",
"description": "Laravel OTP Authentication (One Time Passwords)",
"homepage": "https://github.com/cuongnd88/otp-auth",
"keywords": ["laravel", "otp", "one time passwords", "authentication"],
"license": "MIT",
"authors": [
{
"name": "Ngo Dinh Cuong",
"email": "dinhcuongngo@gmail.com"
}
],
"require": {
"php": "^7.2.5"
},
"require-dev": {
"mockery/mockery": "~1.3.1",
"phpunit/phpunit": "7.*"
},
"autoload": {
"psr-4": {
"Cuongnd88\\OtpAuth\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cuongnd88\\OtpAuth\\Test\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Cuongnd88\\OtpAuth\\OtpAuthServiceProvider"
]
}
}
}