1
0
mirror of https://github.com/flarum/core.git synced 2025-09-02 04:33:04 +02:00

chore: flarum-cli audit infra --fix

This commit is contained in:
Alexander Skvortsov
2022-01-20 03:52:02 -05:00
parent b1415b4d3c
commit 3dd9472647
20 changed files with 2482 additions and 11673 deletions

View File

@@ -2,7 +2,9 @@
"name": "flarum/statistics",
"description": "Add a basic statistics widget on the Dashboard.",
"type": "flarum-extension",
"keywords": ["administration"],
"keywords": [
"administration"
],
"license": "MIT",
"support": {
"issues": "https://github.com/flarum/core/issues",
@@ -36,6 +38,41 @@
"backgroundColor": "#6932d1",
"color": "#fff"
}
},
"flarum-cli": {
"modules": {
"admin": true,
"forum": false,
"js": true,
"jsCommon": false,
"css": true,
"gitConf": true,
"githubActions": true,
"prettier": true,
"typescript": false,
"bundlewatch": false,
"backendTesting": true,
"editorConfig": true,
"styleci": true
}
}
},
"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": {
"flarum/testing": "^1.0.0"
}
}