framework/extensions/suspend/composer.json

92 lines
2.4 KiB
JSON
Raw Normal View History

2015-08-05 14:38:53 +08:00
{
2018-10-17 11:14:48 +08:00
"name": "flarum/suspend",
2015-10-11 15:31:29 +08:00
"description": "Suspend users so they can't post.",
"type": "flarum-extension",
2022-01-20 16:57:25 +08:00
"keywords": [
"moderation"
],
2015-10-11 15:31:29 +08:00
"license": "MIT",
"support": {
"issues": "https://github.com/flarum/framework/issues",
"source": "https://github.com/flarum/suspend",
"forum": "https://discuss.flarum.org"
2015-10-11 15:31:29 +08:00
},
"homepage": "https://flarum.org",
"funding": [
{
"type": "website",
"url": "https://flarum.org/donate/"
}
],
2015-10-11 15:31:29 +08:00
"require": {
"flarum/core": "^2.0"
2015-10-11 15:31:29 +08:00
},
2015-08-05 14:38:53 +08:00
"autoload": {
"psr-4": {
"Flarum\\Suspend\\": "src/"
}
},
2015-10-11 15:31:29 +08:00
"extra": {
"branch-alias": {
2022-03-12 07:02:49 +08:00
"dev-main": "1.x-dev"
},
2015-10-11 15:31:29 +08:00
"flarum-extension": {
"title": "Suspend",
2021-03-09 03:20:55 +08:00
"category": "feature",
2015-10-11 15:31:29 +08:00
"icon": {
2018-05-10 16:05:23 +08:00
"name": "fas fa-ban",
2015-10-11 15:31:29 +08:00
"backgroundColor": "#ddd",
"color": "#666"
}
2022-01-20 16:57:25 +08:00
},
"flarum-cli": {
"modules": {
"admin": true,
"forum": true,
"js": true,
"jsCommon": false,
"css": true,
"gitConf": true,
"githubActions": true,
"prettier": true,
"typescript": false,
"bundlewatch": false,
"backendTesting": true,
2022-01-20 16:57:25 +08:00
"editorConfig": true,
"styleci": true
}
2015-10-11 15:31:29 +08:00
}
2022-03-12 07:02:49 +08:00
},
2022-03-12 07:02:51 +08:00
"repositories": [
{
2022-03-12 07:02:49 +08:00
"type": "path",
"url": "../../*/*"
2022-03-12 07:02:51 +08:00
}
],
2022-03-12 07:02:49 +08:00
"minimum-stability": "dev",
"prefer-stable": true,
"autoload-dev": {
"psr-4": {
"Flarum\\Suspend\\Tests\\": "tests/"
}
},
"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"
}
2015-12-29 10:25:55 +08:00
}