forked from himiklab/yii2-recaptcha-widget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.16 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
{
"name": "luyadev/yii2-recaptcha-widget",
"description": "Yii2 Google reCAPTCHA v2 and v3 widget",
"keywords": ["yii2", "captcha", "recaptcha", "google", "widget"],
"type": "yii2-extension",
"license": "MIT",
"support": {
"source": "https://github.com/himiklab/yii2-recaptcha-widget",
"issues": "https://github.com/himiklab/yii2-recaptcha-widget/issues"
},
"authors": [
{
"name": "HimikLab",
"homepage": "https://github.com/himiklab/"
}
],
"require": {
"yiisoft/yii2": "^2.0.11",
"yiisoft/yii2-httpclient": "*"
},
"require-dev" : {
"luyadev/luya-testsuite" : "^3.0"
},
"autoload": {
"psr-4": {
"luyadev\\recaptcha\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"luyadev\\recaptcha\\tests\\": "tests/"
}
},
"config": {
"fxp-asset": {
"enabled": false
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"luyadev/luya-composer": true
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}