-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
44 lines (44 loc) · 1.04 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
{
"name": "vicens/captcha",
"description": "一个简单的laravel5图形验证码扩展包",
"authors": [
{
"name": "vicens",
"email": "521287718@qq.com"
}
],
"keywords": [
"captcha",
"laravel",
"laravel5",
"verification Code",
"验证码"
],
"require": {
"php": ">=5.5",
"ext-gd": "*",
"symfony/http-foundation": ">=2.0",
"illuminate/support": "^5.1"
},
"license": "MIT",
"support": {
"email": "521287718@qq.com",
"github": "https://github.com/vicens/captcha",
"issues": "https://github.com/vicens/captcha/issues"
},
"autoload": {
"psr-4": {
"Vicens\\Captcha\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Vicens\\Captcha\\Providers\\CaptchaServiceProvider"
],
"aliases": {
"Captcha": "Vicens\\Captcha\\Facades\\Captcha"
}
}
}
}