-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
40 lines (40 loc) · 940 Bytes
/
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
{
"name": "webkadabra/yii2-cms-module",
"version": "1.0.0",
"description": "Yii2 CMS & Router Module",
"type": "yii2-extension",
"license": "MIT",
"keywords": [
"yii2",
"module",
"documentation",
"cms",
"router"
],
"authors": [
{
"name": "Sergii Gamaiunov",
"email": "devkadabra@gmail.com"
}
],
"require": {
"yiisoft/yii2": ">=2.0.4",
"kartik-v/yii2-widgets": "3.*",
"kartik-v/yii2-builder": "^1.6",
"yii2tech/ar-softdelete": "^1.0",
"bookin/yii2-awesome-bootstrap-checkbox": "*"
},
"autoload": {
"psr-4": {
"webkadabra\\yii\\modules\\cms\\": ""
}
},
"scripts": {
"post-install-cmd": [
"php yii migrate --migrationPath=@vendor/webkadabra/yii2-cms-module/migrations --interactive=0"
],
"post-update-cmd": [
"php yii migrate --migrationPath=@vendor/webkadabra/yii2-cms-module/migrations --interactive=0"
]
}
}