framework/extensions/subscriptions/composer.json

35 lines
869 B
JSON
Raw Normal View History

2015-06-26 10:54:07 +08:00
{
2015-10-11 15:00:11 +08:00
"name": "flarum/subscriptions",
"description": "Allow users to follow discussions and receive notifications for new posts.",
"type": "flarum-extension",
"license": "MIT",
"authors": [
{
"name": "Toby Zerner",
"email": "toby.zerner@gmail.com"
}
],
"support": {
"issues": "https://github.com/flarum/core/issues",
"source": "https://github.com/flarum/subscriptions"
},
"require": {
"flarum/core": "^0.1.0-beta.3"
},
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": {
"flarum-extension": {
"title": "Subscriptions",
"icon": {
"name": "star",
"backgroundColor": "#ffea7b",
"color": "#de8e00"
}
}
2015-06-26 10:54:07 +08:00
}
2015-10-11 15:14:35 +08:00
}