framework/extensions/sticky/composer.json

36 lines
863 B
JSON
Raw Normal View History

2015-05-07 20:56:02 +08:00
{
2015-12-29 10:25:46 +08:00
"name": "flarum/flarum-ext-sticky",
"description": "Pin discussions to the top of the list.",
"type": "flarum-extension",
2015-10-12 12:31:20 +08:00
"keywords": ["discussion"],
"license": "MIT",
"authors": [
{
"name": "Toby Zerner",
"email": "toby.zerner@gmail.com"
}
],
"support": {
"issues": "https://github.com/flarum/core/issues",
2015-12-29 10:25:46 +08:00
"source": "https://github.com/flarum/flarum-ext-sticky"
},
"require": {
"flarum/core": "^0.1.0-beta.3"
},
2015-05-07 20:56:02 +08:00
"autoload": {
"psr-4": {
"Flarum\\Sticky\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "Sticky",
"icon": {
"name": "thumb-tack",
"backgroundColor": "#D13E32",
"color": "#fff"
}
}
2015-06-08 13:34:51 +08:00
}
2015-05-07 20:56:02 +08:00
}