-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.62 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.62 KB
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
{
"name": "xpressengine-plugin/news_client",
"description": "공식홈페이지 공지사항을 보여주는 위젯 플러그인 입니다.",
"keywords": [
"xpressengine",
"plugin"
],
"license": "LGPL-3.0-or-later",
"version": "1.0.5",
"type": "xpressengine-plugin",
"support": {
"email": "developers@xpressengine.com"
},
"authors": [
{
"name": "XE Developers",
"email": "developers@xpressengine.com",
"homepage": "https://store.xehub.io/plugins/news_client",
"role": "Developer"
}
],
"extra": {
"xpressengine": {
"title": "News Client",
"icon": "icon.png",
"component": {
"widget/news_client@news": {
"class": "Xpressengine\\Plugins\\NewsClient\\NewsWidget",
"name": "새소식 위젯",
"description": "대시보드용 위젯 입니다.",
"screenshot" : []
},
"widget/news_client@news/skin/news_client@default": {
"class": "Xpressengine\\Plugins\\NewsClient\\NewsWidgetSkin",
"name": "새소식 위젯 스킨",
"description": "대시보드용 위젯 스킨입니다.",
"screenshot" : []
},
"news_client/settingsSkin/news_client@default": {
"class": "Xpressengine\\Plugins\\NewsClient\\ManagerSkin",
"name": "관리자 스킨",
"description": "관리자 스킨 입니다.",
"screenshot" : []
}
}
}
},
"require": {
"xpressengine/xpressengine": "^3.0.2",
"guzzlehttp/guzzle": "~6.1"
},
"autoload": {
"psr-4": {
"Xpressengine\\Plugins\\NewsClient\\": "src/"
}
}
}