framework/extensions/lock/composer.json

42 lines
1.0 KiB
JSON
Raw Normal View History

2015-07-28 14:05:55 +08:00
{
2018-10-17 11:14:47 +08:00
"name": "flarum/lock",
2015-10-11 13:45:07 +08:00
"description": "End a discussion and don't let anyone add further replies.",
"type": "flarum-extension",
2015-10-12 12:30:54 +08:00
"keywords": ["moderation"],
2015-10-11 13:45:07 +08:00
"license": "MIT",
"support": {
"issues": "https://github.com/flarum/core/issues",
"source": "https://github.com/flarum/lock",
"forum": "https://discuss.flarum.org"
2015-10-11 13:45:07 +08:00
},
"homepage": "https://flarum.org",
"funding": [
{
"type": "website",
"url": "https://flarum.org/donate/"
}
],
2015-10-11 13:45:07 +08:00
"require": {
"flarum/core": "^1.1"
2015-10-11 13:45:07 +08:00
},
2015-07-28 14:05:55 +08:00
"autoload": {
"psr-4": {
"Flarum\\Lock\\": "src/"
}
},
2015-10-11 13:45:07 +08:00
"extra": {
"branch-alias": {
2021-05-26 04:50:37 +08:00
"dev-master": "1.x-dev"
},
2015-10-11 13:45:07 +08:00
"flarum-extension": {
"title": "Lock",
2021-03-09 03:24:57 +08:00
"category": "feature",
2015-10-11 13:45:07 +08:00
"icon": {
2018-05-10 15:59:28 +08:00
"name": "fas fa-lock",
2015-10-11 13:45:07 +08:00
"backgroundColor": "#ddd",
"color": "#666"
}
}
2015-07-28 14:05:55 +08:00
}
}