forked from pkerspe/yii2-simple-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.17 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
{
"name" : "schallschlucker/yii2-simple-cms",
"description" : "a basic yii2 content managment extension for easily creating and maintaining a page structure for frontend use",
"keywords" : [
"yii2",
"yii2-cms",
"content management",
"pagetree",
"schallschlucker"
],
"type" : "yii2-extension",
"homepage" : "https://github.com/pkerspe/yii2-simple-cms/wiki",
"license" : "APACHE 2.0",
"support" : {
"issues" : "https://github.com/pkerspe/yii2-simple-cms/issues",
"wiki" : "https://github.com/pkerspe/yii2-simple-cms/wiki",
"source" : "https://github.com/pkerspe/yii2-simple-cms"
},
"authors" : [{
"name" : "Paul Kerspe",
"email" : "[email protected]",
"homepage" : "http://www.schallschlucker.de",
"role" : "Developer, Manager"
}
],
"minimum-stability" : "beta",
"require" : {
"php" : ">=5.5.0",
"yiisoft/yii2-jui" : "~2",
"yiisoft/yii2-bootstrap" : "~2"
},
"extra" : {
"bootstrap" : "schallschlucker\\simplecms\\Bootstrap"
},
"autoload" : {
"psr-4" : {
"schallschlucker\\simplecms\\" : ""
}
},
"repositories" : [{
"type" : "git",
"url" : "https://github.com/pkerspe/yii2-simple-cms.git",
"name" : "github repo"
}
]
}