-
Notifications
You must be signed in to change notification settings - Fork 25
/
composer.json
49 lines (49 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
{
"name": "schallschlucker/yii2-simple-cms",
"description": "a basic yii2 content management extension for easily creating and maintaining a page structure for frontend use",
"keywords": [
"yii2",
"yii2-cms",
"content management",
"pagetree",
"schallschlucker",
"wysiwyg"
],
"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": "info@schallschlucker.de",
"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"
}
]
}