-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.44 KB
/
Copy pathcomposer.json
File metadata and controls
55 lines (55 loc) · 1.44 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
{
"name": "ordinaryjellyfish/flarum-dicebear",
"description": "Add awesome default avatars to your Flarum forum with the Dicebear API.",
"keywords": [
"flarum"
],
"type": "flarum-extension",
"license": "MIT",
"require": {
"flarum/core": "^1.2.0"
},
"authors": [
{
"name": "Tristian Kelly",
"email": "me@ordinaryjellyfish.xyz",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"OrdinaryJellyfish\\Dicebear\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "Dicebear",
"category": "avatars",
"icon": {
"name": "fas fa-grin-hearts",
"color": "#FFFFFF",
"backgroundColor": "#4B0082"
}
},
"flarum-cli": {
"modules": {
"admin": true,
"forum": false,
"js": true,
"jsCommon": false,
"css": false,
"locale": true,
"gitConf": true,
"githubActions": true,
"prettier": true,
"typescript": true,
"bundlewatch": false,
"backendTesting": false,
"editorConfig": true,
"styleci": true
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}