forked from hasan-ozbey/flarum-stickiest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.11 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": "lrysia/flarum-stickiest",
"description": "Stick, super stick or tag stick discussions to the top of the list.",
"keywords": [
"flarum",
"discussion",
"pin",
"sticky",
"super-sticky"
],
"type": "flarum-extension",
"license": "MIT",
"authors": [
{
"name": "Hasan Özbey",
"email": "[email protected]",
"homepage": "https://github.com/the-turk"
}
],
"support": {
"issues": "https://github.com/the-turk/flarum-stickiest/issues",
"source": "https://github.com/the-turk/flarum-stickiest"
},
"require": {
"flarum/core": ">=1.2.0",
"flarum/sticky": "^1.0.0",
"flarum/tags": "^1.0.0"
},
"autoload": {
"psr-4": {
"TheTurk\\Stickiest\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "Stickiest",
"category": "feature",
"icon": {
"name": "fas fa-thumbtack",
"backgroundColor": "#b72a2a",
"color": "#fff"
}
}
}
}