forked from hasan-ozbey/flarum-regrole
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.12 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
{
"name": "sas_sam/flarum-regrole",
"description": "Allow users to assign roles to themselves during registration.",
"keywords": [
"flarum",
"registration",
"role"
],
"type": "flarum-extension",
"license": "MIT",
"authors": [
{
"name": "Hasan Özbey",
"email": "hasanoozbey@gmail.com",
"homepage": "https://github.com/the-turk"
},
{
"name": "IanM",
"homepage": "https://discuss.flarum.org/u/ianm"
},
{
"name": "Sas Sam",
"email": "496429+SasSam@users.noreply.github.com",
"homepage": "https://github.com/SasSam"
}
],
"support": {
"issues": "https://github.com/SasSam/flarum-regrole/issues",
"source": "https://github.com/SasSam/flarum-regrole"
},
"require": {
"flarum/core": "^1.0.0",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"TheTurk\\RegRole\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "Registration Roles",
"category": "feature",
"icon": {
"name": "fas fa-user-friends",
"backgroundColor": "#b72a2a",
"color": "#fff"
}
}
}
}