-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (52 loc) · 1.01 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
{
"name": "tonisormisson/yii2-json-form",
"type": "yii2-extension",
"description": "The JSON form view widget for yii2",
"keywords": [
"yii2",
"data",
"andmemasin"
],
"authors": [
{
"name": "Tõnis Ormisson",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0.2",
"yiisoft/yii2": "^2.0.5",
"kartik-v/yii2-widget-select2": "^2.1.0",
"kartik-v/yii2-password": "^1.5.3",
"kartik-v/yii2-widget-datepicker": "^1.4.0",
"kartik-v/yii2-widget-datetimepicker": "^1.4.0"
},
"require-dev": {
"phpstan/phpstan": "^1.8"
},
"config": {
"platform": {
"php": "8.1.2"
},
"process-timeout": 1800,
"allow-plugins": {
"yiisoft/yii2-composer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "1.5.x-dev"
}
},
"autoload": {
"psr-4": {
"tonisormisson\\jsonform\\": "src"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}