framework/extensions/embed/composer.json

69 lines
1.7 KiB
JSON
Raw Normal View History

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