framework/extensions/likes/composer.json

67 lines
1.7 KiB
JSON
Raw Normal View History

2015-06-23 08:55:24 +08:00
{
2018-10-17 11:14:47 +08:00
"name": "flarum/likes",
2015-10-11 13:00:19 +08:00
"description": "Allow users to like posts.",
"type": "flarum-extension",
2022-01-20 16:36:26 +08:00
"keywords": [
"discussion"
],
2015-10-11 13:00:19 +08:00
"license": "MIT",
"support": {
"issues": "https://github.com/flarum/core/issues",
"source": "https://github.com/flarum/likes",
"forum": "https://discuss.flarum.org"
2015-10-11 13:00:19 +08:00
},
"homepage": "https://flarum.org",
"funding": [
{
"type": "website",
"url": "https://flarum.org/donate/"
}
],
2015-10-11 13:00:19 +08:00
"require": {
2022-01-20 19:35:35 +08:00
"flarum/core": "^1.2"
2015-10-11 13:00:19 +08:00
},
2015-06-23 08:55:24 +08:00
"autoload": {
"psr-4": {
"Flarum\\Likes\\": "src/"
}
},
2015-10-11 13:00:19 +08:00
"extra": {
"branch-alias": {
2022-03-12 07:02:49 +08:00
"dev-main": "1.x-dev"
},
2015-10-11 13:00:19 +08:00
"flarum-extension": {
"title": "Likes",
2021-03-09 03:24:49 +08:00
"category": "feature",
2015-10-11 13:00:19 +08:00
"icon": {
"name": "far fa-thumbs-up",
2015-10-11 13:00:19 +08:00
"backgroundColor": "#3A649D",
"color": "#fff"
}
2022-01-20 16:36:26 +08: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 13:00:19 +08:00
}
2022-03-12 07:02:49 +08:00
},
"repositories": [{
"type": "path",
"url": "../../*/*"
}],
"minimum-stability": "dev",
"prefer-stable": true
2015-06-23 08:55:24 +08:00
}