framework/extensions/mentions/composer.json
Toby Zerner 48c398df98 Add Composer branch-alias
This allows installations to require version 0.1.0 with minimum-stability=dev, and they will get the latest from master.

See flarum/core#727
2016-01-19 17:18:23 +10:30

39 lines
945 B
JSON

{
"name": "flarum/flarum-ext-mentions",
"description": "Mention and reply to specific posts and users.",
"type": "flarum-extension",
"keywords": ["discussion"],
"license": "MIT",
"authors": [
{
"name": "Toby Zerner",
"email": "toby.zerner@gmail.com"
}
],
"support": {
"issues": "https://github.com/flarum/core/issues",
"source": "https://github.com/flarum/flarum-ext-mentions"
},
"require": {
"flarum/core": "^0.1.0-beta.3"
},
"autoload": {
"psr-4": {
"Flarum\\Mentions\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
},
"flarum-extension": {
"title": "Mentions",
"icon": {
"name": "at",
"backgroundColor": "#539EC1",
"color": "#fff"
}
}
}
}