-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 906 Bytes
/
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
{
"name": "squeevee/flarum-ext-at-will-groups",
"description": "An extension for Flarum, which allows users to join and leave groups at will, with customizable permissions.",
"type": "flarum-extension",
"require": {
"flarum/core": "^0.1.0-beta.3"
},
"license": "MIT",
"authors": [
{
"name": "Ellie Hawk",
"email": "[email protected]"
}
],
"support": {
"source": "https://github.com/squeevee/flarum-ext-at-will-groups"
},
"extra": {
"flarum-extension": {
"title": "At-Will Groups",
"icon": {
"name": "user-plus",
"backgroundColor": "#f2f2f2",
"color": "#993399"
}
}
},
"autoload": {
"psr-4": {
"Squeevee\\AtWillGroups\\": "src/"
}
}
}