framework/extensions/subscriptions/composer.json

39 lines
1005 B
JSON
Raw Normal View History

2015-06-26 10:54:07 +08:00
{
2015-12-29 10:25:50 +08:00
"name": "flarum/flarum-ext-subscriptions",
2015-10-11 15:00:11 +08:00
"description": "Allow users to follow discussions and receive notifications for new posts.",
"type": "flarum-extension",
2015-10-12 12:31:29 +08:00
"keywords": ["discussion"],
2015-10-11 15:00:11 +08:00
"license": "MIT",
"authors": [
{
"name": "Toby Zerner",
"email": "toby.zerner@gmail.com"
}
],
"support": {
"issues": "https://github.com/flarum/core/issues",
2015-12-29 10:25:50 +08:00
"source": "https://github.com/flarum/flarum-ext-subscriptions"
2015-10-11 15:00:11 +08:00
},
"require": {
2018-01-11 09:58:46 +08:00
"flarum/core": "^0.1.0-beta.8"
2015-10-11 15:00:11 +08:00
},
2015-06-26 10:54:07 +08:00
"autoload": {
"psr-4": {
2015-10-11 15:14:35 +08:00
"Flarum\\Subscriptions\\": "src/"
2015-06-26 10:54:07 +08:00
}
},
2015-10-11 15:00:11 +08:00
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
},
2015-10-11 15:00:11 +08:00
"flarum-extension": {
"title": "Subscriptions",
"icon": {
2018-05-10 16:04:42 +08:00
"name": "fas fa-star",
2015-10-11 15:00:11 +08:00
"backgroundColor": "#ffea7b",
"color": "#de8e00"
}
}
2015-06-26 10:54:07 +08:00
}
2015-10-11 15:14:35 +08:00
}