framework/extensions/bbcode/composer.json

69 lines
1.7 KiB
JSON
Raw Normal View History

2015-07-23 20:25:52 +09:30
{
2018-10-17 13:44:47 +10:30
"name": "flarum/bbcode",
2015-10-12 15:09:39 +10:30
"description": "Allow posts to be formatted with BBCode.",
"type": "flarum-extension",
2022-01-20 03:17:07 -05:00
"keywords": [
"formatting"
],
2015-10-12 15:09:39 +10:30
"license": "MIT",
"support": {
"issues": "https://github.com/flarum/framework/issues",
"source": "https://github.com/flarum/bbcode",
"forum": "https://discuss.flarum.org"
2015-10-12 15:09:39 +10:30
},
"homepage": "https://flarum.org",
"funding": [
{
"type": "website",
"url": "https://flarum.org/donate/"
}
],
2015-10-12 15:09:39 +10:30
"require": {
"flarum/core": "^2.0"
2015-10-12 15:09:39 +10:30
},
"autoload": {
"psr-4": {
"Flarum\\BBCode\\": "src"
}
},
2015-10-12 15:09:39 +10:30
"extra": {
"branch-alias": {
"dev-main": "2.x-dev"
},
2015-10-12 15:09:39 +10:30
"flarum-extension": {
"title": "BBCode",
2021-03-08 11:39:41 -08:00
"category": "feature",
2015-10-12 15:09:39 +10:30
"icon": {
2018-05-10 14:56:52 +07:00
"name": "fas fa-bold",
2015-10-12 15:09:39 +10:30
"backgroundColor": "#238C59",
"color": "#fff"
}
2022-01-20 03:17:07 -05: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 15:09:39 +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-23 20:25:52 +09:30
}