forked from yiisoft/yii2-bootstrap5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.7 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
59
60
61
62
63
64
65
66
67
{
"name": "rmenor/yii2-bootstrap5",
"description": "The Twitter Bootstrap v5 extension for the Yii framework",
"keywords": [
"yii2",
"bootstrap",
"bootstrap5"
],
"type": "yii2-extension",
"license": "BSD-3-Clause",
"support": {
"source": "https://github.com/yiisoft/yii2-bootstrap5"
},
"authors": [
{
"name": "Sergey Zhukovskiy",
"email": "mylistryx@gmail.com",
"homepage": "https://net23.ru/"
},
{
"name": "Simon Karlen",
"email": "simi.albi@outlook.com"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.0",
"ext-json": "*",
"yiisoft/yii2": "^2.0.42",
"bower-asset/bootstrap": "^5.1.0"
},
"require-dev": {
"yiisoft/yii2-coding-standards": "~2.0",
"phpunit/phpunit": "^6.5.14",
"twbs/bootstrap-icons": "^1.7.2"
},
"suggest": {
"twbs/bootstrap-icons": "Add this package to the `require` section of your `composer.json` if you'd like to use the bootstrap icon asset."
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"yii\\bootstrap5\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"yiiunit\\extensions\\bootstrap5\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
},
"bootstrap": "yii\\bootstrap5\\i18n\\TranslationBootstrap"
}
}