-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
54 lines (54 loc) · 1.54 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
{
"name": "xpressengine-plugin/claim",
"description": "이 플러그인은 XE3에서 신고 기능을 제공합니다.",
"keywords": ["xpressengine bundle", "XE claim"],
"version": "1.0.4",
"support": {
"email": "[email protected]"
},
"authors": [
{
"name": "XE Developers",
"email": "[email protected]",
"homepage": "https://store.xehub.io/plugins/claim",
"role": "Developer"
}
],
"license": "LGPL-3.0-or-later",
"type": "xpressengine-plugin",
"extra": {
"xpressengine": {
"title": "신고",
"icon": "icon.png",
"component": {
"claim/settingsSkin/claim@default": {
"class": "Xpressengine\\Plugins\\Claim\\Skin\\SettingsSkin",
"name": "신고하기 관리자 기본 스킨",
"description": "기본스킨."
},
"module/board@board/toggleMenu/claim@boardClaimItem": {
"class": "Xpressengine\\Plugins\\Claim\\ToggleMenus\\BoardClaimItem",
"name": "게시판 신고 토글 메뉴",
"description": ""
},
"comment/toggleMenu/claim@commentClaimItem": {
"class": "Xpressengine\\Plugins\\Claim\\ToggleMenus\\CommentClaimItem",
"name": "댓글 신고 토글 메뉴",
"description": ""
}
}
}
},
"require": {
"xpressengine/xpressengine": "^3.0.2"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"mockery/mockery": "dev-master@dev"
},
"autoload": {
"psr-4": {
"Xpressengine\\Plugins\\Claim\\": "src/"
}
}
}