framework/extensions/subscriptions/composer.json
2022-03-11 18:02:49 -05:00

67 lines
1.7 KiB
JSON

{
"name": "flarum/subscriptions",
"description": "Allow users to follow discussions and receive notifications for new posts.",
"type": "flarum-extension",
"keywords": [
"discussion"
],
"license": "MIT",
"support": {
"issues": "https://github.com/flarum/core/issues",
"source": "https://github.com/flarum/subscriptions",
"forum": "https://discuss.flarum.org"
},
"homepage": "https://flarum.org",
"funding": [
{
"type": "website",
"url": "https://flarum.org/donate/"
}
],
"require": {
"flarum/core": "^1.2"
},
"autoload": {
"psr-4": {
"Flarum\\Subscriptions\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
},
"flarum-extension": {
"title": "Subscriptions",
"category": "feature",
"icon": {
"name": "fas fa-star",
"backgroundColor": "#ffea7b",
"color": "#de8e00"
}
},
"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
}
}
},
"repositories": [{
"type": "path",
"url": "../../*/*"
}],
"minimum-stability": "dev",
"prefer-stable": true
}