-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
45 lines (45 loc) · 1.03 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
{
"name": "xpressengine-plugin/point",
"description": "회원들에게 포인트 기능을 제공할 수 있습니다.",
"keywords": [
"xpressengine",
"plugin",
"point",
"user",
"mileage"
],
"version": "1.0.9",
"type": "xpressengine-plugin",
"support": {
"email": "[email protected]"
},
"authors": [
{
"name": "XE Developers",
"email": "[email protected]",
"homepage": "https://store.xehub.io/plugins/point",
"role": "Developer"
}
],
"license": "LGPL-3.0-or-later",
"extra": {
"xpressengine": {
"title": "Point",
"component": {
"user/toggleMenu/point@point": {
"class": "Xpressengine\\Plugins\\Point\\UserMenus\\PointItem",
"name": "포인트 내역",
"description": "포인트 내역 토글 매뉴를 출력합니다."
}
}
}
},
"require": {
"xpressengine/xpressengine": "~3.0.9"
},
"autoload": {
"psr-4": {
"Xpressengine\\Plugins\\Point\\": "src/"
}
}
}