-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
41 lines (41 loc) · 1.03 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
{
"name": "lee-to/laravel-phone-auth",
"description": "Laravel+livewire phone auth module",
"keywords": ["laravel", "livewire", "phone auth", "phone register", "phone login"],
"type": "library",
"homepage": "https://github.com/lee-to/laravel-phone-auth",
"require": {
"php": "^7.3|^8.0",
"doctrine/dbal": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "8.5.x-dev",
"mockery/mockery": "^1.0"
},
"license": "MIT",
"authors": [
{
"name": "Danil Shutsky",
"email": "[email protected]",
"homepage": "https://github.com/lee-to"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Leeto\\PhoneAuth\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Leeto\\PhoneAuth\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Leeto\\PhoneAuth\\Providers\\PhoneAuthServiceProvider"
]
}
}
}