-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.06 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.06 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
{
"name": "xpressengine-plugin/alice",
"description": "이 플러그인은 XE3에서 테마를 제공합니다.",
"keywords": [
"xpressengine",
"plugin",
"theme",
"alice"
],
"license": "LGPL-3.0-or-later",
"version": "1.0.2",
"type": "xpressengine-plugin",
"authors": [
{
"name": "XE Developers",
"email": "developers@xpressengine.com",
"homepage": "https://store.xehub.io/plugins/alice",
"role": "Developer"
}
],
"extra": {
"xpressengine": {
"title": "Alice Theme",
"screenshots": [
"screenshots/main.png"
],
"icon": "icon.png",
"component": {
"theme/alice@alice": {
"class": "Xpressengine\\Plugins\\Alice\\Theme\\Alice",
"name": "Alice",
"description": "The First Theme for XpressEngine3",
"screenshot": "/plugins/alice/screenshots/main.png"
}
}
}
},
"require": {
"xpressengine/xpressengine": "~3.0.2"
},
"autoload": {
"psr-4": {
"Xpressengine\\Plugins\\Alice\\": "src/"
}
}
}