2017-12-10 21:11:13 +10:30
|
|
|
{
|
2018-10-21 15:16:05 +10:30
|
|
|
"name": "flarum/statistics",
|
2017-12-10 21:11:13 +10:30
|
|
|
"description": "Add a basic statistics widget on the Dashboard.",
|
|
|
|
"type": "flarum-extension",
|
2022-01-20 03:52:02 -05:00
|
|
|
"keywords": [
|
|
|
|
"administration"
|
|
|
|
],
|
2017-12-10 21:11:13 +10:30
|
|
|
"license": "MIT",
|
|
|
|
"support": {
|
2022-07-12 23:30:03 +02:00
|
|
|
"issues": "https://github.com/flarum/framework/issues",
|
2020-12-08 19:57:56 -05:00
|
|
|
"source": "https://github.com/flarum/statistics",
|
|
|
|
"forum": "https://discuss.flarum.org"
|
2017-12-10 21:11:13 +10:30
|
|
|
},
|
2020-12-08 19:57:56 -05:00
|
|
|
"homepage": "https://flarum.org",
|
|
|
|
"funding": [
|
|
|
|
{
|
|
|
|
"type": "website",
|
|
|
|
"url": "https://flarum.org/donate/"
|
|
|
|
}
|
|
|
|
],
|
2017-12-10 21:11:13 +10:30
|
|
|
"require": {
|
2024-12-07 09:50:31 +01:00
|
|
|
"flarum/core": "^2.0.0-beta.1"
|
2017-12-10 21:11:13 +10:30
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
|
|
|
"Flarum\\Statistics\\": "src/"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"extra": {
|
|
|
|
"branch-alias": {
|
2023-05-31 09:50:39 +01:00
|
|
|
"dev-main": "2.x-dev"
|
2017-12-10 21:11:13 +10:30
|
|
|
},
|
|
|
|
"flarum-extension": {
|
2018-08-20 00:34:22 +03:00
|
|
|
"title": "Statistics",
|
2020-11-25 01:29:06 -05:00
|
|
|
"category": "feature",
|
2018-08-20 00:34:22 +03:00
|
|
|
"icon": {
|
|
|
|
"name": "fas fa-chart-bar",
|
|
|
|
"backgroundColor": "#6932d1",
|
|
|
|
"color": "#fff"
|
|
|
|
}
|
2022-01-20 03:52:02 -05:00
|
|
|
},
|
|
|
|
"flarum-cli": {
|
2022-01-27 15:51:21 -05:00
|
|
|
"excludeScaffolding": [
|
|
|
|
"js/src/admin/index.ts"
|
|
|
|
],
|
2022-01-20 03:52:02 -05:00
|
|
|
"modules": {
|
|
|
|
"admin": true,
|
|
|
|
"forum": false,
|
|
|
|
"js": true,
|
|
|
|
"jsCommon": false,
|
|
|
|
"css": true,
|
|
|
|
"gitConf": true,
|
|
|
|
"githubActions": true,
|
|
|
|
"prettier": true,
|
2022-01-27 15:51:21 -05:00
|
|
|
"typescript": true,
|
2022-01-20 03:52:02 -05:00
|
|
|
"bundlewatch": false,
|
|
|
|
"backendTesting": true,
|
|
|
|
"editorConfig": true,
|
|
|
|
"styleci": true
|
|
|
|
}
|
2017-12-10 21:11:13 +10:30
|
|
|
}
|
2022-01-20 03:52:02 -05:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"test": [
|
|
|
|
"@test:unit",
|
|
|
|
"@test:integration"
|
|
|
|
],
|
|
|
|
"test:unit": "phpunit -c tests/phpunit.unit.xml",
|
|
|
|
"test:integration": "phpunit -c tests/phpunit.integration.xml",
|
|
|
|
"test:setup": "@php tests/integration/setup.php"
|
|
|
|
},
|
|
|
|
"scripts-descriptions": {
|
|
|
|
"test": "Runs all tests.",
|
|
|
|
"test:unit": "Runs all unit tests.",
|
|
|
|
"test:integration": "Runs all integration tests.",
|
|
|
|
"test:setup": "Sets up a database for use with integration tests. Execute this only once."
|
|
|
|
},
|
|
|
|
"require-dev": {
|
2023-05-31 09:53:59 +01:00
|
|
|
"flarum/testing": "^2.0"
|
2022-03-11 18:02:49 -05:00
|
|
|
},
|
2022-03-11 18:02:51 -05:00
|
|
|
"repositories": [
|
|
|
|
{
|
2022-03-11 18:02:49 -05:00
|
|
|
"type": "path",
|
|
|
|
"url": "../../*/*"
|
2022-03-11 18:02:51 -05:00
|
|
|
}
|
|
|
|
],
|
2022-03-11 18:02:49 -05:00
|
|
|
"minimum-stability": "dev",
|
|
|
|
"prefer-stable": true
|
2017-12-10 21:11:13 +10:30
|
|
|
}
|