-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
45 lines (45 loc) · 1.06 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
{
"name": "asundust/dcat-auth-captcha",
"alias": "登录滑动验证码",
"description": "Sliding captcha for Dcat-Admin auth, Multiple platform support / Dcat-Admin登录 (滑动)验证插件 多平台支持",
"type": "library",
"keywords": [
"dcat-admin",
"extension",
"sliding captcha",
"auth",
"login",
"captcha",
"auth captcha",
"multiple platform"
],
"homepage": "https://github.com/asundust/dcat-auth-captcha",
"license": "MIT",
"authors": [
{
"name": "asundust",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.0",
"ext-json": "*",
"dcat/laravel-admin": "~2.0",
"guzzlehttp/guzzle": "^6.3 || ^7.3",
"jenssegers/agent": "^2.6",
"mnabialek/laravel-version": "^1.0"
},
"autoload": {
"psr-4": {
"Asundust\\DcatAuthCaptcha\\": "src/"
}
},
"extra": {
"dcat-admin": "Asundust\\DcatAuthCaptcha\\DcatAuthCaptchaServiceProvider",
"laravel": {
"providers": [
"Asundust\\DcatAuthCaptcha\\DcatAuthCaptchaServiceProvider"
]
}
}
}