framework/extensions/statistics/composer.json

39 lines
950 B
JSON
Raw Normal View History

2017-12-10 18:41:13 +08:00
{
2018-10-21 12:46:05 +08:00
"name": "flarum/statistics",
2017-12-10 18:41:13 +08:00
"description": "Add a basic statistics widget on the Dashboard.",
"type": "flarum-extension",
"keywords": ["administration"],
"license": "MIT",
"authors": [
{
"name": "Toby Zerner",
"email": "toby.zerner@gmail.com"
}
],
"support": {
"issues": "https://github.com/flarum/core/issues",
2018-10-21 12:46:05 +08:00
"source": "https://github.com/flarum/statistics"
2017-12-10 18:41:13 +08:00
},
"require": {
2018-01-11 09:56:40 +08:00
"flarum/core": "^0.1.0-beta.8"
2017-12-10 18:41:13 +08:00
},
"autoload": {
"psr-4": {
"Flarum\\Statistics\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
},
"flarum-extension": {
2018-08-20 05:34:22 +08:00
"title": "Statistics",
"icon": {
"name": "fas fa-chart-bar",
"backgroundColor": "#6932d1",
"color": "#fff"
}
2017-12-10 18:41:13 +08:00
}
}
}