framework/extensions/approval/composer.json

43 lines
1.1 KiB
JSON
Raw Normal View History

2015-09-22 18:14:56 +09:30
{
2018-10-17 13:35:40 +10:30
"name": "flarum/approval",
2015-10-11 22:54:48 +10:30
"description": "Make discussions and posts require moderator approval.",
"type": "flarum-extension",
2015-10-12 14:58:54 +10:30
"keywords": ["moderation"],
2015-10-11 22:54:48 +10:30
"license": "MIT",
"support": {
"issues": "https://github.com/flarum/core/issues",
"source": "https://github.com/flarum/approval",
"forum": "https://discuss.flarum.org"
2015-10-11 22:54:48 +10:30
},
"homepage": "https://flarum.org",
"funding": [
{
"type": "website",
"url": "https://flarum.org/donate/"
}
],
2015-10-11 22:54:48 +10:30
"require": {
2020-10-14 16:50:51 +02:00
"flarum/core": "^0.1.0-beta.14",
"flarum/flags": "^0.1.0-beta.14"
2015-10-11 22:54:48 +10:30
},
2015-09-22 18:14:56 +09:30
"autoload": {
"psr-4": {
"Flarum\\Approval\\": "src/"
}
2015-10-11 22:54:48 +10:30
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
},
2015-10-11 22:54:48 +10:30
"flarum-extension": {
"title": "Approval",
"category": "moderation",
2015-10-11 22:54:48 +10:30
"icon": {
2018-05-10 14:53:21 +07:00
"name": "fas fa-check",
2015-10-12 14:58:54 +10:30
"backgroundColor": "#ABDC88",
"color": "#3F8A32"
2015-10-11 22:54:48 +10:30
}
}
2015-09-22 18:14:56 +09:30
}
}