-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
75 lines (75 loc) · 2.67 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
71
72
73
74
75
{
"name": "xpressengine-plugin/ckeditor",
"description": "CkEditor 에디터를 제공합니다.",
"keywords": ["xpressengine bundle", "XE CkEditor"],
"version": "1.0.4",
"support": {
"email": "[email protected]"
},
"authors": [
{
"name": "XE Developers",
"email": "[email protected]",
"homepage": "https://store.xehub.io/plugins/ckeditor",
"role": "Developer"
}
],
"license": "LGPL-3.0-or-later",
"type": "xpressengine-plugin",
"extra": {
"xpressengine": {
"title": "CkEditor",
"icon": "icon.png",
"component": {
"editor/ckeditor@ckEditor": {
"class": "Xpressengine\\Plugins\\CkEditor\\Editors\\CkEditor",
"name": "CkEditor",
"description": "XE 에서 사용할 기본 에디터"
},
"editor/ckeditor@ckEditor/plugin/ckeditor@default": {
"class": "Xpressengine\\Plugins\\CkEditor\\Extension\\CkEditorPlugin",
"name": "CkEditor 플러그인",
"description": "XE 에서 CkEditor 에 사용 할 플러그인."
},
"editortool/iframe_tool@iframe": {
"class": "Xpressengine\\Plugins\\CkEditor\\Components\\EditorTools\\IframeTool\\IframeTool",
"name": "iframe Tool",
"description": "에디터에서 iframe을 사용"
},
"editortool/xeicon_tool@xeicon": {
"class": "Xpressengine\\Plugins\\CkEditor\\Components\\EditorTools\\XeiconTool\\XeiconTool",
"name": "XEicon Tool",
"description": "에디터에서 XEicon을 사용"
},
"editortool/image_resize_tool@image_resize_crop": {
"class": "Xpressengine\\Plugins\\CkEditor\\Components\\EditorTools\\ImageResizeTool\\ImageResizeTool",
"name": "이미지 편집 툴",
"description": "이미지 리사이즈, 편집 에디터툴"
},
"editortool/code_tool@code": {
"class": "Xpressengine\\Plugins\\CkEditor\\Components\\EditorTools\\CodeTool\\CodeTool",
"name": "Code Highlight",
"description": "code 태그에 Code Highlight 기능을 적용"
},
"editortool/autolink_tool@autolink": {
"class": "Xpressengine\\Plugins\\CkEditor\\Components\\EditorTools\\AutolinkTool\\AutolinkTool",
"name": "Autolink",
"description": "URL 자동 링크"
}
}
}
},
"require": {
"xpressengine/xpressengine": "~3.0.4"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"mockery/mockery": "dev-master@dev"
},
"autoload": {
"psr-4": {
"Xpressengine\\Plugins\\CkEditor\\": "src/",
"Xpressengine\\Plugins\\CkEditor\\Components\\": "components/"
}
}
}