forked from luyadev/luya-module-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.24 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
{
"name" : "luyadev/luya-module-cms",
"description" : "The LUYA CMS module provides a full functional Content Management System for adding contents based on blocks.",
"type" : "luya-core",
"keywords" : ["php", "luya", "module", "cms", "yii2", "yii", "contentmanager", "content", "yii2-cms"],
"license": "MIT",
"homepage" : "http://luya.io",
"authors" : [
{
"name" : "Basil Suter",
"email" : "[email protected]",
"homepage" : "https://github.com/nadar"
}
],
"support" : {
"issues" : "https://github.com/luyadev/luya/issues"
},
"require-dev" : {
"luyadev/luya-testsuite" : "~1.0.0",
"php-coveralls/php-coveralls": "^1.0",
"twbs/bootstrap": "v4.0.0-beta"
},
"autoload" : {
"psr-4" : {
"luya\\cms\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"cmstests\\" : "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
},
"luya" : {
"bootstrap": ["\\luya\\cms\\frontend\\Bootstrap"],
"blocks" : ["src/frontend/blocks"]
}
},
"config": {
"platform": {"php": "7.0"}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}