forked from opensourcewebsite-org/opensourcewebsite-org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·108 lines (108 loc) · 3.15 KB
/
composer.json
File metadata and controls
executable file
·108 lines (108 loc) · 3.15 KB
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": "opensourcewebsite/core",
"description": "OpenSourceWebsite Core",
"keywords": [
"opensourcewebsite",
"osw",
"yii2",
"yii",
"php7",
"php"
],
"homepage": "https://opensourcewebsite.org",
"type": "project",
"license": "MIT",
"support": {
"issues": "https://github.com/opensourcewebsite-org/opensourcewebsite-org/issues?state=open",
"source": "https://github.com/opensourcewebsite-org/opensourcewebsite-org"
},
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/opensourcewebsite"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=7.4",
"ext-bcmath": "*",
"ext-json": "*",
"ext-PDO": "*",
"ext-intl": "*",
"ext-curl": "*",
"ext-iconv": "*",
"yiisoft/yii2": "~2.0.35",
"yiisoft/yii2-swiftmailer": "^2.0",
"almasaeed2010/adminlte": "^3.0",
"cebe/yii2-gravatar": "^1.1",
"vlucas/phpdotenv": "^2.5",
"brussens/yii2-maintenance-mode": "^0.2",
"kartik-v/yii2-widget-select2": "^2.1",
"npm-asset/ace-builds": "^1.4.1",
"yiisoft/yii2-httpclient": "^2.0.0",
"telegram-bot/api": "^2.3",
"longman/telegram-bot": "^0.61",
"kartik-v/yii2-widget-datepicker": "^1.4",
"janisto/yii2-timepicker": "^1.1",
"ivankff/yii2-modal-ajax": "^4.1",
"yiisoft/yii2-bootstrap4": "^2.0",
"yii2tech/ar-position": "^1.0",
"voskobovich/yii2-linker-behavior": "^4.1"
},
"require-dev": {
"yiisoft/yii2-debug": "^2.0",
"yiisoft/yii2-faker": "^2.0",
"yiisoft/yii2-gii": "^2.0",
"codeception/codeception": "^4.0",
"codeception/module-asserts": "^1.0",
"codeception/module-filesystem": "^1.0",
"codeception/module-yii2": "^1.0",
"codeception/specify": "^1.3",
"codeception/verify": "^1.3",
"fzaninotto/faker": "^1.9",
"friendsofphp/php-cs-fixer": "^2.16"
},
"config": {
"process-timeout": 1800,
"fxp-asset": {
"enabled": false
},
"platform": {
"php": "7.4"
}
},
"scripts": {
"post-update-cmd": [
"@php requirements.php"
],
"post-install-cmd": [
"yii\\composer\\Installer::postInstall",
"@php requirements.php"
]
},
"extra": {
"yii\\composer\\Installer::postInstall": {
"generateCookieValidationKey": [
"config/web-local.php"
],
"setPermission": [
{
"runtime": "0777",
"runtime/cache": "0777",
"runtime/debug": "0777",
"runtime/logs": "0777",
"runtime/mail": "0777",
"web/assets": "0777",
"yii": "0755"
}
]
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}