-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (51 loc) · 1.22 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
{
"name": "dicr/yii2-widgets",
"type": "yii2-extension",
"license": "MIT",
"homepage": "https://gitlab.com/dicr/yii2-widgets",
"description": "Виджеты для Yii2",
"keywords": ["dicr", "yii2", "widgets"],
"authors": [
{
"name": "Igor Tarasov",
"email": "develop@dicr.org",
"homepage": "https://dicr.org",
"role": "developer"
}
],
"support": {
"source": "https://gitlab.com/dicr/yii2-widgets.git"
},
"autoload": {
"psr-4": {
"dicr\\widgets\\": "src/"
}
},
"extra": {
"bootstrap": "dicr\\widgets\\Bootstrap"
},
"minimum-stability": "stable",
"require": {
"php": "~8.0",
"yiisoft/yii2": "~2.0.47",
"yiisoft/yii2-bootstrap5": "~2.0.4",
"dicr/yii2-asset": "~3.0.2",
"dicr/yii2-helper": "~6.0.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest"
},
"conflict": {
"yiisot/yii2-bootstrap4": "*"
},
"repositories": [
{"type": "composer", "url": "https://asset-packagist.org"},
{"type": "git", "url": "https://gitlab.com/dicr/yii2-asset.git"},
{"type": "git", "url": "https://gitlab.com/dicr/yii2-helper.git"}
],
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true
}
}
}