1
0
mirror of https://github.com/flarum/core.git synced 2025-08-31 20:02:06 +02:00

Initial working extension

This commit is contained in:
Matthew Kilgore
2020-11-23 23:17:55 -05:00
parent 350ce11f17
commit dbc67937ed
25 changed files with 5030 additions and 23 deletions

View File

@@ -0,0 +1,32 @@
{
"name": "flarum/nicknames",
"description": "Use nicknames for users",
"type": "flarum-extension",
"keywords": ["nicknames"],
"license": "MIT",
"support": {
"issues": "https://github.com/flarum/core/issues",
"source": "https://github.com/flarum/nicknames"
},
"require": {
"flarum/core": "^0.1.0-beta.14"
},
"autoload": {
"psr-4": {
"Flarum\\Nicknames\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
},
"flarum-extension": {
"title": "Nicknames",
"icon": {
"name": "fas fa-user-tag",
"backgroundColor": "#8E4529",
"color": "#ffffff"
}
}
}
}