-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
117 lines (108 loc) · 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "esnanta/yii2-quiz-ispring",
"description": "An intuitive platform for students and instructors",
"keywords": ["yii2", "ispring", "quiz", "esnanta", "daraspace"],
"homepage": "https://www.daraspace.com/",
"type": "project",
"license": "Creative Commons Attribution-NonCommercial 4.0 International",
"support": {
"issues": "https://github.com/esnanta/yii2-quiz-ispring/issues?state=open",
"source": "https://github.com/esnanta/yii2-quiz-ispring"
},
"minimum-stability": "stable",
"require": {
"php": ">=8.0.1",
"yiisoft/yii2": "~2.0.48",
"yiisoft/yii2-bootstrap4": "~2.0.6",
"yiisoft/yii2-bootstrap5": "*",
"yiisoft/yii2-symfonymailer": "~2.0.3",
"ext-zip": "*",
"yii2tech/ar-softdelete": "*",
"yii2tech/spreadsheet": "*",
"esnanta/dektrium-user": "*",
"esnanta/dektrium-rbac": "*",
"kartik-v/yii2-bootstrap4-dropdown" : "*",
"kartik-v/yii2-bootstrap5-dropdown": "@dev",
"kartik-v/yii2-grid": "dev-master",
"kartik-v/yii2-datecontrol": "dev-master",
"kartik-v/yii2-widget-select2": "dev-master",
"kartik-v/yii2-widget-sidenav": "dev-master",
"kartik-v/yii2-widget-depdrop": "dev-master",
"kartik-v/yii2-date-range": "dev-master",
"kartik-v/yii2-number": "@dev",
"kartik-v/yii2-password": "dev-master",
"lesha724/yii2-document-viewer": "*",
"onmotion/yii2-widget-apexcharts": "*",
"bajadev/yii2-ckeditor": "*",
"budyaga/yii2-cropper": "*",
"aneeshikmat/yii2-time-down-counter": "v1.1.0-stable",
"supplyhog/yii2-clipboardjs" : "dev-master",
"mootensai/yii2-enhanced-gii": "dev-master",
"warrence/yii2-kartikgii": "dev-master"
},
"require-dev": {
"yiisoft/yii2-debug": "~2.1.0",
"yiisoft/yii2-gii": "~2.2.0",
"yiisoft/yii2-faker": "~2.0.0",
"phpunit/phpunit": "~9.5.0",
"squizlabs/php_codesniffer": "3.*",
"friendsofphp/php-cs-fixer": "*",
"phpstan/phpstan": "*",
"phpmd/phpmd" : "@stable",
"codeception/codeception": "^5.0.0 || ^4.0",
"codeception/lib-innerbrowser": "^3.0 || ^1.1",
"codeception/module-asserts": "^3.0 || ^1.1",
"codeception/module-yii2": "^1.1",
"codeception/module-filesystem": "^2.0 || ^1.1",
"codeception/verify": "^2.2",
"symfony/browser-kit": "^6.0 || >=2.7 <=4.2.4",
"thtmorais/yii2-test": "dev-main"
},
"autoload-dev": {
"psr-4": {
"common\\tests\\": ["common/tests/", "common/tests/_support"],
"backend\\tests\\": ["backend/tests/", "backend/tests/_support"],
"frontend\\tests\\": ["frontend/tests/", "frontend/tests/_support"]
}
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer" : true
},
"process-timeout": 1800,
"fxp-asset": {
"enabled": false
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"extra": {
"bootstrap": "yii\\jui\\Extension",
"yii\\composer\\Installer::postCreateProject": {
"setPermission": [
{
"runtime": "0777",
"web/assets": "0777",
"yii": "0755"
}
]
},
"yii\\composer\\Installer::postInstall": {
"copyFiles": [
{
"config/templates/console-local.php": "config/console-local.php",
"config/templates/web-local.php": "config/web-local.php",
"config/templates/db-local.php": "config/db-local.php",
"config/templates/cache.json": ["runtime/cache.json", true]
}
],
"generateCookieValidationKey": [
"config/web-local.php"
]
}
}
}