-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
113 lines (113 loc) · 3.5 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
{
"name": "rkit/bootstrap-yii2",
"description": "Bootstrap for Yii2",
"keywords": ["yii2", "framework", "application template", "bootstrap"],
"homepage": "https://github.com/rkit/bootstrap-yii2",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Igor Romanov",
"email": "rkit.ru@gmail.com"
}
],
"support": {
"issues": "https://github.com/rkit/bootstrap-yii2/issues?state=open",
"source": "https://github.com/rkit/bootstrap-yii2"
},
"require": {
"php": ">=7.1.0",
"yiisoft/yii2": "^2.0.13",
"yiisoft/yii2-bootstrap": "^2.0.4",
"yiisoft/yii2-swiftmailer": "^2.0.4",
"yiisoft/yii2-jui": "^2.0.4",
"yiisoft/yii2-authclient": "^2.1.0",
"rkit/filemanager-yii2": "^4.1.0",
"rkit/settings-yii2": "^1.0.3",
"rkit/fileapi-widget-yii2": "^1.0.0",
"rkit/yii2-ajaxform-plugin": "^0.0.4",
"kartik-v/yii2-widget-select2": "^1.0.1",
"kartik-v/yii2-widget-datepicker": "^1.3.2",
"kartik-v/yii2-widget-datetimepicker": "^1.4.0",
"kartik-v/yii2-sortable": "^1.2.0",
"vova07/yii2-imperavi-widget": "^1.2.2",
"bower-asset/bootstrap": "^3.3.4",
"yiisoft/yii2-debug": "^2.0.4",
"intervention/image": "^2.3",
"creocoder/yii2-flysystem": "^0.8.1",
"yii2tech/sitemap": "^1.0",
"kartik-v/yii2-field-range": "^1.3.2"
},
"require-dev": {
"yiisoft/yii2-gii": "^2.0.4",
"yiisoft/yii2-faker": "^2.0.3",
"codeception/codeception": "^2.2.6",
"codeception/specify": "~0.4.3",
"codeception/verify": "~0.3.1",
"squizlabs/php_codesniffer": "^3.0.0"
},
"config": {
"process-timeout": 1800
},
"scripts": {
"post-create-project-cmd": [
"yii\\composer\\Installer::postCreateProject",
"composer init-project"
],
"init-project": [
"php yii create-local-config --path=@app/config/local/main.php",
"composer build"
],
"build": [
"npm install",
"composer install",
"php yii migrate --migrationPath=@yii/log/migrations/ --interactive=0",
"php yii migrate --migrationPath=@yii/rbac/migrations/ --interactive=0",
"php yii migrate --migrationPath=@vendor/rkit/settings-yii2/src/migrations/ --interactive=0",
"php yii migrate/up --interactive=0",
"php yii asset config/assets.php config/local/assets.php",
"composer reconfig"
],
"reconfig": [
"php yii rbac/up --path=@app/config/rbac/permissions.php"
],
"translate": [
"php yii message messages/config.php"
],
"test:build": [
"php tests/bin/yii migrate --migrationPath=@yii/rbac/migrations/ --interactive=0",
"php tests/bin/yii migrate --migrationPath=@vendor/rkit/settings-yii2/src/migrations/ --interactive=0",
"php tests/bin/yii migrate/up --interactive=0",
"composer test:reconfig"
],
"test": "codecept run",
"test:unit": "codecept run unit",
"test:functional": "codecept run functional",
"test:reconfig": [
"codecept build",
"php tests/bin/yii rbac/up --path=@app/config/rbac/permissions.php"
],
"test:coverage": "codecept run --coverage-html",
"test:stats": "open tests/_output/coverage/index.html"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"extra": {
"yii\\composer\\Installer::postCreateProject": {
"setPermission": [
{
"runtime": "0777",
"web/assets": "0777",
"yii": "0755"
}
],
"generateCookieValidationKey": [
"config/web.php"
]
}
}
}