-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
108 lines (108 loc) · 3.21 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
{
"name": "yiisoft/yii2-app-basic",
"description": "Yii 2 Basic Project Template",
"keywords": [
"yii2",
"framework",
"basic",
"project template"
],
"homepage": "https://www.yiiframework.com/",
"type": "project",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/yiisoft/yii2/issues?state=open",
"forum": "https://www.yiiframework.com/forum/",
"wiki": "https://www.yiiframework.com/wiki/",
"irc": "ircs://irc.libera.chat:6697/yii",
"source": "https://github.com/yiisoft/yii2"
},
"minimum-stability": "stable",
"require": {
"php": ">=7.4.0",
"yiisoft/yii2": "~2.0.45",
"yiisoft/yii2-bootstrap5": "~2.0.2",
"yiisoft/yii2-symfonymailer": "~2.0.3",
"yiisoft/yii2-imagine": "~2.2.0",
"siripravi/yii2-slideradmin": "^1.1.0",
"siripravi/yii2-image-gallery": "dev-main"
},
"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",
"codeception/codeception": "^5.0.0 || ^4.0",
"codeception/lib-innerbrowser": "^4.0 || ^3.0 || ^1.1",
"codeception/module-asserts": "^3.0 || ^1.1",
"codeception/module-yii2": "^1.1",
"codeception/module-filesystem": "^3.0 || ^2.0 || ^1.1",
"codeception/verify": "^3.0 || ^2.2",
"symfony/browser-kit": "^6.0 || >=2.7 <=4.2.4",
"iutbay/yii2-pnotify": "~0.1.1",
"paragonie/constant_time_encoding": "^2.5",
"bower-asset/jquery-form": "4.*",
"kartik-v/yii2-widget-rangeinput": "*",
"bower-asset/angular": "~1.3",
"bower-asset/angular-route": "~1.3",
"bower-asset/angular-resource": "~1.3",
"bower-asset/angular-bootstrap": "~0.13",
"bower-asset/angular-validation": "~1.3",
"kartik-v/yii2-mpdf": "*",
"kartik-v/yii2-widget-typeahead": "dev-master",
"kartik-v/yii2-editable": "dev-master",
"kartik-v/yii2-widget-sidenav": "dev-master",
"kartik-v/yii2-widget-select2": "dev-master",
"kartik-v/yii2-widgets": "^3.4",
"siripravi/nyiixta": "dev-main",
"siripravi/yii2-user-helper": "~v0.1.0",
"yiisoft/yii2-authclient": "~2.2.0",
"bower-asset/startbootstrap-sb-admin-2": "~4.1.4",
"zircote/swagger-php": "^4.0",
"swagger-api/swagger-ui": "^4.1",
"tebe/yii2-inertia": "dev-master",
"scssphp/scssphp": "^1.13.0",
"yii2-starter-kit/yii2-file-kit": "@stable",
"alexantr/yii2-elfinder": "^1.3"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true
},
"process-timeout": 1800,
"fxp-asset": {
"enabled": false
}
},
"scripts": {
"post-install-cmd": [
"yii\\composer\\Installer::postInstall"
],
"post-create-project-cmd": [
"yii\\composer\\Installer::postCreateProject",
"yii\\composer\\Installer::postInstall"
]
},
"extra": {
"yii\\composer\\Installer::postCreateProject": {
"setPermission": [
{
"runtime": "0777",
"web/assets": "0777",
"yii": "0755"
}
]
},
"yii\\composer\\Installer::postInstall": {
"generateCookieValidationKey": [
"config/web.php"
]
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}