-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
70 lines (70 loc) · 2.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "xpressengine-plugin/comment",
"description": "댓글 기능을 제공하는 플러그인 입니다.",
"keywords": ["xpressengine bundle", "comment", "comment service"],
"version": "1.0.6",
"support": {
"email": "[email protected]"
},
"authors": [
{
"name": "XE Developers",
"email": "[email protected]",
"homepage": "https://store.xehub.io/plugins/comment",
"role": "Developer"
}
],
"license": "LGPL-3.0-or-later",
"type": "xpressengine-plugin",
"extra": {
"xpressengine": {
"title": "댓글",
"icon": "icon.png",
"component": {
"uiobject/comment@comment": {
"class": "Xpressengine\\Plugins\\Comment\\CommentUIObject",
"name": "댓글 UI Object",
"description": "댓글 UI Object 입니다."
},
"comment/skin/comment@default": {
"class": "Xpressengine\\Plugins\\Comment\\Skins\\DefaultUserSkin",
"name": "기본 스킨",
"description": "댓글 기본 스킨 입니다."
},
"comment/settingsSkin/comment@default": {
"class": "Xpressengine\\Plugins\\Comment\\Skins\\ManagerSkin",
"name": "관리자 기본 스킨",
"description": "댓글 관리자 기본스킨 입니다.",
"screenshot" : []
},
"comment/toggleMenu/comment@deleteItem": {
"class": "Xpressengine\\Plugins\\Comment\\ToggleMenus\\Comments\\DeleteItem",
"name": "댓글 삭제",
"description": "댓글 삭제에 대한 토글 메뉴"
},
"comment/toggleMenu/comment@editItem": {
"class": "Xpressengine\\Plugins\\Comment\\ToggleMenus\\Comments\\EditItem",
"name": "댓글 수정",
"description": "댓글 수정에 대한 토글 메뉴"
}
}
},
"branch-alias": {
"dev-master": "0.1.x-dev"
}
},
"require": {
"xpressengine/xpressengine": "^3.0.2",
"xpressengine-plugin/ckeditor": "*"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"mockery/mockery": "dev-master@dev"
},
"autoload": {
"psr-4": {
"Xpressengine\\Plugins\\Comment\\": "src/",
"Xpressengine\\Plugins\\Comment\\Migrations\\": "migrations/"
}
}
}