-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
85 lines (85 loc) · 2.4 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "simialbi/yii2-kanban",
"type": "yii2-extension",
"description": "Kanban board module for yii2",
"keywords": [
"yii2",
"kanban",
"kanban board",
"timetable",
"todo",
"to do"
],
"license": "MIT",
"authors": [
{
"name": "simialbi",
"email": "[email protected]"
}
],
"support": {
"source": "https://github.com/simialbi/yii2-kanban",
"issues": "https://github.com/simialbi/yii2-kanban/issues"
},
"minimum-stability": "beta",
"require": {
"php": ">=5.6",
"yiisoft/yii2": "^2.0.20",
"yiisoft/yii2-bootstrap4": "^2.0.4",
"arogachev/yii2-sortable": "^0.1.6",
"bower-asset/fullcalendar": "4.2.*",
"creocoder/yii2-nested-sets": "^0.9",
"fortawesome/font-awesome": "^5.12.0",
"kartik-v/yii2-widget-fileinput": "^1.0.9",
"npm-asset/highlight.js": "^9.18.1",
"npm-asset/swiper": "^6.3.5",
"rmrevin/yii2-fontawesome": "^3.4.0",
"sandritsch91/yii2-widget-flatpickr": "^1.0.0",
"simialbi/yii2-simialbi-base": ">=0.10.2 <1.0 | ^1.0.0",
"simialbi/yii2-summernote": "^1.2.1",
"simialbi/yii2-widget-chart": "^0.7.0",
"simialbi/yii2-widget-hideseek": "^1.0.0",
"simialbi/yii2-widget-turbo": "^1.0.0",
"simshaun/recurr": "^5.0.0"
},
"require-dev": {
"ext-gd": "*",
"ext-mbstring": "*",
"codeception/module-asserts": "^2.0.1",
"codeception/module-filesystem": "^2.0.1",
"codeception/module-yii2": "^1.0",
"simialbi/yii2-ticket": "~1.0@dev",
"yiisoft/yii2-coding-standards": "~2.0",
"yiisoft/yii2-symfonymailer": "^2.0.3"
},
"suggest": {
"ext-gd": "For autogeneration of visualisations",
"ext-mbstring": "For encoding conversion"
},
"autoload": {
"psr-4": {
"simialbi\\yii2\\kanban\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"simialbi\\extensions\\kanban\\": "tests"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true
}
}
}