-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
42 lines (42 loc) · 977 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
34
35
36
37
38
39
40
41
42
{
"name": "michaelbelgium/mybb-to-flarum",
"description": "Migrate a MyBB Forum to a fresh Flarum instance",
"type": "flarum-extension",
"require": {
"flarum/core": "^1.0"
},
"license": "MIT",
"authors": [
{
"name": "Michael V.",
"email": "[email protected]",
"homepage": "http://michaelbelgium.me"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/MichaelBelgium"
}
],
"autoload": {
"psr-4": {
"Michaelbelgium\\Mybbtoflarum\\": "src/"
}
},
"support": {
"issues": "https://github.com/michaelbelgium/mybb_to_flarum/issues",
"source": "https://github.com/michaelbelgium/mybb_to_flarum",
"forum": "https://discuss.flarum.org/d/5506"
},
"extra": {
"flarum-extension": {
"title": "MyBB to Flarum",
"icon": {
"name": "fas fa-exchange-alt",
"backgroundColor": "#FFB300",
"color": "#fff"
}
}
}
}