framework/extensions/mentions/composer.json

39 lines
945 B
JSON
Raw Normal View History

2015-05-14 22:01:03 +09:30
{
2015-12-29 12:55:37 +10:30
"name": "flarum/flarum-ext-mentions",
2015-10-11 13:02:57 +10:30
"description": "Mention and reply to specific posts and users.",
"type": "flarum-extension",
2015-10-12 15:01:11 +10:30
"keywords": ["discussion"],
2015-10-11 13:02:57 +10:30
"license": "MIT",
"authors": [
{
"name": "Toby Zerner",
"email": "toby.zerner@gmail.com"
}
],
"support": {
"issues": "https://github.com/flarum/core/issues",
2015-12-29 12:55:37 +10:30
"source": "https://github.com/flarum/flarum-ext-mentions"
2015-10-11 13:02:57 +10:30
},
"require": {
2016-03-29 18:47:56 +10:30
"flarum/core": "^0.1.0-beta.5"
2015-10-11 13:02:57 +10:30
},
2015-05-14 22:01:03 +09:30
"autoload": {
"psr-4": {
"Flarum\\Mentions\\": "src/"
}
},
2015-10-11 13:02:57 +10:30
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
},
2015-10-11 13:02:57 +10:30
"flarum-extension": {
"title": "Mentions",
"icon": {
"name": "at",
"backgroundColor": "#539EC1",
"color": "#fff"
}
}
2015-05-14 22:01:03 +09:30
}
}