This repository has been archived by the owner on Sep 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
executable file
·64 lines (64 loc) · 1.73 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
{
"name": "GCTrade",
"description": "Trade project for GreenCubes",
"keywords": ["greencubes", "trade", "gctrade"],
"homepage": "http://gctrade.ru/",
"type": "project",
"license": "MIT License",
"authors": [
{
"name": "Astappev Oleg",
"email": "[email protected]",
"homepage": "http://astappev.info/",
"role": "Development"
}
],
"support": {
"issues": "https://github.com/astappev/GCTrade/issues?state=open",
"forum": "https://forum.greencubes.org/viewtopic.php?f=267&t=24524",
"source": "https://github.com/astappev/GCTrade"
},
"minimum-stability": "dev",
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "@stable",
"yiisoft/yii2-bootstrap": "@stable",
"yiisoft/yii2-swiftmailer": "@stable",
"yiisoft/yii2-authclient": "@stable",
"vova07/yii2-imperavi-widget": "*",
"vova07/yii2-fileapi-widget": "*",
"bower-asset/flot": "*",
"bower-asset/leaflet-dist": "*",
"bower-asset/intro.js": "*",
"bower-asset/salvattore": "*",
"linslin/yii2-curl": "*"
},
"require-dev": {
"yiisoft/yii2-debug": "@stable",
"yiisoft/yii2-gii": "@stable",
"codeception/codeception": "@stable"
},
"scripts": {
"post-create-project-cmd": [
"yii\\composer\\Installer::setPermission"
]
},
"config": {
"process-timeout": 1800
},
"extra": {
"yii\\composer\\Installer::postCreateProject": {
"setPermission": [
{
"runtime": "0777",
"web/assets": "0777",
"yii": "0755"
}
]
},
"asset-installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
}
}
}