framework/extensions/bbcode/composer.json

69 lines
1.7 KiB
JSON
Raw Normal View History

2015-07-23 18:55:52 +08:00
{
2018-10-17 11:14:47 +08:00
"name": "flarum/bbcode",
2015-10-12 12:39:39 +08:00
"description": "Allow posts to be formatted with BBCode.",
"type": "flarum-extension",
2022-01-20 16:17:07 +08:00
"keywords": [
"formatting"
],
2015-10-12 12:39:39 +08:00
"license": "MIT",
"support": {
"issues": "https://github.com/flarum/framework/issues",
"source": "https://github.com/flarum/bbcode",
"forum": "https://discuss.flarum.org"
2015-10-12 12:39:39 +08:00
},
"homepage": "https://flarum.org",
"funding": [
{
"type": "website",
"url": "https://flarum.org/donate/"
}
],
2015-10-12 12:39:39 +08:00
"require": {
"flarum/core": "^2.0"
2015-10-12 12:39:39 +08:00
},
"autoload": {
"psr-4": {
"Flarum\\BBCode\\": "src"
}
},
2015-10-12 12:39:39 +08:00
"extra": {
"branch-alias": {
"dev-main": "2.x-dev"
},
2015-10-12 12:39:39 +08:00
"flarum-extension": {
"title": "BBCode",
2021-03-09 03:39:41 +08:00
"category": "feature",
2015-10-12 12:39:39 +08:00
"icon": {
2018-05-10 15:56:52 +08:00
"name": "fas fa-bold",
2015-10-12 12:39:39 +08:00
"backgroundColor": "#238C59",
"color": "#fff"
}
2022-01-20 16:17:07 +08:00
},
"flarum-cli": {
"modules": {
"admin": false,
"forum": false,
"js": false,
"jsCommon": false,
"css": false,
"gitConf": true,
"githubActions": false,
"prettier": false,
"typescript": false,
"bundlewatch": false,
"backendTesting": false,
"editorConfig": true,
"styleci": true
}
2015-10-12 12:39:39 +08:00
}
2022-03-12 07:02:49 +08:00
},
2022-03-12 07:02:51 +08:00
"repositories": [
{
2022-03-12 07:02:49 +08:00
"type": "path",
"url": "../../*/*"
2022-03-12 07:02:51 +08:00
}
],
2022-03-12 07:02:49 +08:00
"minimum-stability": "dev",
"prefer-stable": true
2015-07-23 18:55:52 +08:00
}