-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
52 lines (52 loc) · 1.23 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
{
"name": "yii2mod/yii2-cms",
"description": "Yii2 CMS extension",
"type": "yii2-extension",
"keywords": [
"yii2",
"yii2-cms",
"yii2-cms-module"
],
"license": "MIT",
"authors": [
{
"name": "Dmitry Semenov",
"email": "[email protected]"
},
{
"name": "Igor Chepurnoi",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0.0",
"yiisoft/yii2": "~2.0.12",
"yiisoft/yii2-bootstrap": "*",
"yii2mod/yii2-enum": "*",
"yii2mod/yii2-editable": "*",
"yii2mod/yii2-comments": "*",
"yii2mod/yii2-markdown": "*",
"froala/yii2-froala-editor": "^2.6.0",
"cebe/markdown": "~1.1.1",
"yii2tech/ar-file": "*",
"yiisoft/yii2-imagine": "^2.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~2.0",
"phpunit/phpunit": "~6.0"
},
"autoload": {
"psr-4": {
"yii2mod\\cms\\": ""
}
},
"extra": {
"bootstrap": "yii2mod\\cms\\Bootstrap"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}