-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathcomposer.json
54 lines (54 loc) · 1.43 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
{
"name": "luyadev/luya-kickstarter",
"description": "The kickstarter project for a new LUYA application.",
"type": "luya-kickstarter",
"license":"MIT",
"require": {
"luyadev/luya-module-admin" : "^4.0",
"luyadev/luya-module-cms" : "^4.0",
"luyadev/luya-bootstrap3" : "^1.0",
"luyadev/luya-generic" : "^1.0"
},
"require-dev": {
"yiisoft/yii2-gii" : "^2.0",
"yiisoft/yii2-debug" : "^2.0",
"luyadev/luya-testsuite" : "^2.0"
},
"scripts": {
"post-create-project-cmd": [
"yii\\composer\\Installer::postCreateProject"
]
},
"extra": {
"yii\\composer\\Installer::postCreateProject": {
"setPermission": [
{
"public_html/assets": "0777",
"public_html/storage": "0777",
"runtime" : "0777"
}
]
},
"asset-installer-paths": {
"bower-asset-library": "vendor/bower"
},
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"config": {
"fxp-asset": {
"enabled": false
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"luyadev/luya-composer": true
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}