-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
executable file
·52 lines (52 loc) · 1.3 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
{
"name": "nodeloc/lottery",
"description": " A Flarum extension that adds lottery to your discussions",
"keywords": [
"flarum"
],
"type": "flarum-extension",
"license": "MIT",
"support": {
"issues": "https://github.com/nodeloc/lottery/issues",
"source": "https://github.com/nodeloc/lottery"
},
"homepage": "https://www.nodeloc.com",
"funding": [
{
"type": "website",
"url": "https://www.nodeloc.com"
}
],
"require": {
"flarum/core": "^1.3.0",
"antoinefr/flarum-ext-money": "*",
"mattoid/flarum-ext-money-history": "*"
},
"authors": [
{
"name": "James",
"email": "james@nodeloc.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Nodeloc\\Lottery\\": "src/",
"Nodeloc\\Lottery\\Migrations\\": "migrations/"
}
},
"extra": {
"flarum-extension": {
"title": "Lottery",
"category": "discussion",
"icon": {
"name": "fas fa-gift",
"backgroundColor": "#006633",
"color": "#fff"
}
},
"flagrow": {
"discuss": "https://www.nodeloc.com"
}
}
}