mirror of
https://github.com/flarum/framework.git
synced 2024-11-23 20:50:05 +08:00
88a06b1843
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
39 lines
936 B
JSON
39 lines
936 B
JSON
{
|
|
"name": "flarum/flarum-ext-flags",
|
|
"description": "Allow users to flag posts for moderator review.",
|
|
"type": "flarum-extension",
|
|
"keywords": ["moderation"],
|
|
"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-flags"
|
|
},
|
|
"require": {
|
|
"flarum/core": "^0.1.0-beta.3"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Flarum\\Flags\\": "src/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "0.1.x-dev"
|
|
},
|
|
"flarum-extension": {
|
|
"title": "Flags",
|
|
"icon": {
|
|
"name": "flag",
|
|
"backgroundColor": "#D659B5",
|
|
"color": "#fff"
|
|
}
|
|
}
|
|
}
|
|
}
|