framework/extensions/lock/composer.json

69 lines
1.7 KiB
JSON
Raw Normal View History

2015-07-28 15:35:55 +09:30
{
2018-10-17 13:44:47 +10:30
"name": "flarum/lock",
2015-10-11 16:15:07 +10:30
"description": "End a discussion and don't let anyone add further replies.",
"type": "flarum-extension",
2022-01-20 03:38:34 -05:00
"keywords": [
"moderation"
],
2015-10-11 16:15:07 +10:30
"license": "MIT",
"support": {
"issues": "https://github.com/flarum/framework/issues",
"source": "https://github.com/flarum/lock",
"forum": "https://discuss.flarum.org"
2015-10-11 16:15:07 +10:30
},
"homepage": "https://flarum.org",
"funding": [
{
"type": "website",
"url": "https://flarum.org/donate/"
}
],
2015-10-11 16:15:07 +10:30
"require": {
"flarum/core": "^1.4"
2015-10-11 16:15:07 +10:30
},
2015-07-28 15:35:55 +09:30
"autoload": {
"psr-4": {
"Flarum\\Lock\\": "src/"
}
},
2015-10-11 16:15:07 +10:30
"extra": {
"branch-alias": {
2022-03-11 18:02:49 -05:00
"dev-main": "1.x-dev"
},
2015-10-11 16:15:07 +10:30
"flarum-extension": {
"title": "Lock",
2021-03-08 11:24:57 -08:00
"category": "feature",
2015-10-11 16:15:07 +10:30
"icon": {
2018-05-10 14:59:28 +07:00
"name": "fas fa-lock",
2015-10-11 16:15:07 +10:30
"backgroundColor": "#ddd",
"color": "#666"
}
2022-01-20 03:38:34 -05:00
},
"flarum-cli": {
"modules": {
"admin": true,
"forum": true,
"js": true,
"jsCommon": false,
"css": true,
"gitConf": true,
"githubActions": true,
"prettier": true,
"typescript": false,
"bundlewatch": false,
"backendTesting": false,
"editorConfig": true,
"styleci": true
}
2015-10-11 16:15:07 +10:30
}
2022-03-11 18:02:49 -05:00
},
2022-03-11 18:02:51 -05:00
"repositories": [
{
2022-03-11 18:02:49 -05:00
"type": "path",
"url": "../../*/*"
2022-03-11 18:02:51 -05:00
}
],
2022-03-11 18:02:49 -05:00
"minimum-stability": "dev",
"prefer-stable": true
2015-07-28 15:35:55 +09:30
}