-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
58 lines (58 loc) · 1.44 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
50
51
52
53
54
55
56
57
58
{
"name": "simialbi/yii2-visualcaptcha",
"description": "Visual captcha implementation for yii2 framework",
"keywords": [
"yii2",
"visualcaptcha",
"visual",
"captcha",
"widget"
],
"type": "yii2-extension",
"license": "MIT",
"support": {
"issues": "https://github.com/simialbi/yii2-visualcaptcha/issues",
"source": "https://github.com/simialbi/yii2-visualcaptcha"
},
"authors": [
{
"name": "Simon Karlen",
"email": "[email protected]"
}
],
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"php": ">=8.1",
"yiisoft/yii2": "^2.0.15",
"simialbi/yii2-simialbi-base": ">=0.13.1 <1.0 | ^1.0.0"
},
"require-dev": {
"yiisoft/yii2-coding-standards": "~2.0",
"phpunit/phpunit": "^9.5.21"
},
"suggest": {
"ext-openssl": "Needed in captcha component in utilRandomHex method if yii method fails"
},
"config": {
"process-timeout": 1800,
"allow-plugins": {
"yiisoft/yii2-composer": true
}
},
"autoload": {
"psr-4": {
"simialbi\\yii2\\visualcaptcha\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"yiiunit\\extensions\\visualcaptcha\\": "tests"
}
}
}