-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (71 loc) · 2.52 KB
/
composer.json
File metadata and controls
71 lines (71 loc) · 2.52 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "xpressengine-plugin/the_next_magazine",
"description": "The Next Magazine 테마와 이와 잘 어울리는 게시물 리스트 위젯의 스킨을 포함하고 있습니다",
"keywords": [
"xpressengine",
"xe",
"plugin",
"xe-theme"
],
"license": "LGPL-2.1-or-later",
"version": "1.0.0",
"type": "xpressengine-plugin",
"support": {
"email": "developers@xpressengine.com"
},
"authors": [
{
"name": "XpressEngine",
"email": "developers@xpressengine.com",
"homepage": "https://www.xpressengine.io",
"role": "Developer"
}
],
"extra": {
"xpressengine": {
"title": "The Next Magazine (TNM)",
"component": {
"theme/the_next_magazine@tnm": {
"class": "Xpressengine\\Plugins\\TheNextMagazine\\Components\\Theme\\Theme",
"name": "The Next Magazine",
"description": "The Next Magazine"
},
"widget/board@list/skin/the_next_magazine@featured": {
"class": "Xpressengine\\plugins\\TheNextMagazine\\Components\\WidgetSkins\\ArticleList\\Skins\\Featured\\FeaturedSkin",
"name": "TNM-Featured 스킨",
"description": "TNM-Featured 스킨"
},
"widget/board@list/skin/the_next_magazine@card": {
"class": "Xpressengine\\plugins\\TheNextMagazine\\Components\\WidgetSkins\\ArticleList\\Skins\\Card\\CardSkin",
"name": "TNM-Card 스킨",
"description": "TNM-Card 스킨"
},
"widget/board@list/skin/the_next_magazine@category": {
"class": "Xpressengine\\plugins\\TheNextMagazine\\Components\\WidgetSkins\\ArticleList\\Skins\\Category\\CategorySkin",
"name": "TNM-Category 스킨",
"description": "TNM-Category 스킨"
},
"widget/banner@widget/skin/the_next_magazine@about": {
"class": "Xpressengine\\plugins\\TheNextMagazine\\Components\\WidgetSkins\\Banner\\Skins\\About\\AboutSkin",
"name": "TNM-About 스킨",
"description": "TNM-About 스킨"
}
}
}
},
"require": {
"xpressengine-plugin/banner": "*"
},
"autoload": {
"psr-4": {
"Xpressengine\\Plugins\\TheNextMagazine\\": "./"
},
"classmap": [
"Components/Theme/Theme.php",
"Components/WidgetSkins/Banner/Skins/About/AboutSkin.php",
"Components/WidgetSkins/ArticleList/Skins/Card/CardSkin.php",
"Components/WidgetSkins/ArticleList/Skins/Category/CategorySkin.php",
"Components/WidgetSkins/ArticleList/Skins/Featured/FeaturedSkin.php"
]
}
}