framework/extensions/embed/composer.json

69 lines
1.7 KiB
JSON
Raw Normal View History

2015-09-16 14:30:08 +08:00
{
2018-11-16 11:27:38 +08:00
"name": "flarum/embed",
2015-10-13 09:59:22 +08:00
"description": "Embed Flarum discussions as comments for your blog.",
"type": "flarum-extension",
2022-01-20 16:25:07 +08:00
"keywords": [
"discussion"
],
2015-10-13 09:59:22 +08:00
"license": "MIT",
"support": {
"issues": "https://github.com/flarum/core/issues",
"source": "https://github.com/flarum/embed",
"forum": "https://discuss.flarum.org"
2015-10-13 09:59:22 +08:00
},
"homepage": "https://flarum.org",
"funding": [
{
"type": "website",
"url": "https://flarum.org/donate/"
}
],
2015-10-13 09:59:22 +08:00
"require": {
2022-05-10 22:28:35 +08:00
"flarum/core": "^1.3"
2015-10-13 09:59:22 +08:00
},
2015-09-16 14:30:08 +08:00
"autoload": {
"psr-4": {
"Flarum\\Embed\\": "src/"
}
2015-10-13 09:59:22 +08:00
},
"extra": {
"branch-alias": {
2022-03-12 07:02:49 +08:00
"dev-main": "1.x-dev"
},
2015-10-13 09:59:22 +08:00
"flarum-extension": {
"title": "Embed",
2020-11-25 13:58:20 +08:00
"category": "feature",
2015-10-13 09:59:22 +08:00
"icon": {
2019-08-20 06:59:33 +08:00
"name": "fas fa-code",
2015-10-13 09:59:22 +08:00
"backgroundColor": "#B9D233",
"color": "#fff"
}
2022-01-20 16:25:07 +08:00
},
"flarum-cli": {
"modules": {
"admin": false,
"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-13 09:59:22 +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-09-16 14:30:08 +08:00
}