-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·86 lines (86 loc) · 2.89 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
86
{
"name": "ufrgs-hyman/meican",
"description": "Web application for the management of dynamic circuits networks",
"keywords": [
"meican", "dynamic", "circuit", "network", "reservation",
"topology", "nsi", "dcn", "intradomain", "interdomain"],
"homepage": "https://github.com/ufrgs-hyman/meican",
"type": "project",
"license": "BSD-2-License",
"authors": [
{
"name": "Mauricio Quatrin Guerreiro",
"email": "[email protected]"
},
{
"name": "Diego Pittol",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/ufrgs-hyman/meican/issues",
"docs": "https://github.com/ufrgs-hyman/meican/tree/master/docs",
"source": "https://github.com/ufrgs-hyman/meican"
},
"minimum-stability": "stable",
"require": {
"php": ">=5.5.0",
"yiisoft/yii2": "2.0.8",
"yiisoft/yii2-swiftmailer": "2.0.5",
"yiisoft/yii2-bootstrap": "2.0.6",
"kartik-v/yii2-widget-datetimepicker" : "1.4.2",
"kartik-v/yii2-date-range" : "1.6.6",
"kartik-v/yii2-widget-activeform" : "1.4.7",
"kartik-v/yii2-widget-touchspin" : "1.2.1",
"kartik-v/yii2-widget-colorinput" : "1.0.5",
"kartik-v/yii2-widget-growl" : "1.1.1",
"kartik-v/yii2-widget-switchinput" : "1.3.1",
"npm-asset/vis": "4.16.0",
"npm-asset/flot-charts": "0.8.3",
"npm-asset/leaflet": "1.3.4",
"npm-asset/leaflet.markercluster": "1.4.1",
"bower-asset/fontawesome" : "4.4.0",
"bower-asset/ionicons" : "2.0.1",
"bower-asset/icheck" : "1.0.2",
"bower-asset/slimscroll": "1.3.7",
"bower-asset/bootstrap-toggle" : "2.2.0",
"bower-asset/qtip2-main" : "3.0.2",
"bower-asset/moment" : "2.12.0",
"bower-asset/fullcalendar": "2.6.1",
"bower-asset/bootstrap-daterangepicker": "2.1.19"
},
"require-dev": {
"yiisoft/yii2-codeception": "2.0.5",
"yiisoft/yii2-debug": "2.0.6",
"yiisoft/yii2-gii": "2.0.5",
"yiisoft/yii2-apidoc" : "2.0.5"
},
"config": {
"process-timeout": 1800,
"secure-http" : false
},
"scripts": {
"post-install-cmd": [
"yii\\composer\\Installer::postCreateProject",
"php yii migrate --interactive=0"
]
},
"extra": {
"yii\\composer\\Installer::postCreateProject": {
"setPermission": [
{
"runtime": "0777",
"web/assets": "0777",
"yii": "0755"
}
],
"generateCookieValidationKey": [
"config/web.php"
]
},
"asset-installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
}
}
}