-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
54 lines (50 loc) · 1016 Bytes
/
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-address-form",
"type": "yii2-module",
"license":"MIT",
"description": "yii2-widget address-form",
"keywords": [
"Yii2", "module", "address-form", "country", "region"
],
"authors": [
{
"name": "Tõnis Ormisson",
"email": "tonis@andmemasin.eu"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=8.0.2",
"yiisoft/yii2": ">=2.0.14",
"kartik-v/yii2-widget-select2": "^2.1.1",
"kartik-v/yii2-widget-depdrop": "^1.0.4",
"rinvex/countries": "^8|^9"
},
"require-dev": {
"phpstan/phpstan": "^1"
},
"extra": {
"platform": {
"php": "8.0.2"
},
"branch-alias": {
"dev-master": "2.2.x-dev"
}
},
"autoload": {
"psr-4": {
"tonisormisson\\addressform\\": "src"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true
}
}
}