forked from lav45/yii2-translated-behavior-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.53 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
{
"name": "lav45/yii2-translated-behavior-demo",
"description": "Demo Yii2 translated behavior",
"keywords": ["yii2", "framework", "advanced", "demo", "translate", "behavior"],
"homepage": "https://yii2-translated-behavior.herokuapp.com",
"type": "project",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/LAV45/yii2-translated-behavior/issues?state=open",
"source": "https://github.com/LAV45/yii2-translated-behavior"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.5.0",
"ext-intl": "*",
"ext-sqlite3": "*",
"ext-pdo_sqlite": "*",
"yiisoft/yii2": "2.0.*",
"yiisoft/yii2-bootstrap": "2.0.*",
"lav45/yii2-translated-behavior": "1.4.*",
"lav45/yii2-ajax-create": "0.1.*",
"vova07/yii2-imperavi-widget": "dev-master as 1.2.x-@dev",
"bower-asset/anchor-js": "^3.1"
},
"require-dev": {
"yiisoft/yii2-debug": "2.0.*",
"yiisoft/yii2-gii": "2.0.*"
},
"config": {
"process-timeout": 1800
},
"scripts": {
"post-install-cmd": [
"rm -rf yii2-dev && git clone https://github.com/yiisoft/yii2.git --depth=1 yii2-dev"
],
"compile": [
"php init --env=prod --overwrite=a",
"php yii migrate/up all --interactive=0",
"php yii user/create admin admin"
]
}
}