framework/extensions/akismet/composer.json

90 lines
2.4 KiB
JSON
Raw Normal View History

2015-09-04 11:14:02 +08:00
{
2018-10-17 11:05:22 +08:00
"name": "flarum/akismet",
2015-10-11 20:47:51 +08:00
"description": "Stop spam using the Akismet anti-spam service.",
"type": "flarum-extension",
"keywords": [
"moderation"
],
2015-10-11 20:47:51 +08:00
"license": "MIT",
"support": {
"issues": "https://github.com/flarum/core/issues",
"source": "https://github.com/flarum/akismet",
"forum": "https://discuss.flarum.org"
2015-09-04 11:14:02 +08:00
},
"homepage": "https://flarum.org",
"funding": [
{
"type": "website",
"url": "https://flarum.org/donate/"
}
],
2015-09-04 11:14:02 +08:00
"require": {
2022-05-10 22:28:35 +08:00
"flarum/core": "^1.3",
2022-01-20 18:49:19 +08:00
"flarum/approval": "^1.2",
"guzzlehttp/guzzle": "^7.4"
2015-09-04 11:14:02 +08:00
},
2015-10-11 20:47:51 +08:00
"autoload": {
"psr-4": {
"Flarum\\Akismet\\": "src/"
}
},
"extra": {
"branch-alias": {
2022-03-12 07:02:49 +08:00
"dev-main": "1.x-dev"
},
2015-10-11 20:47:51 +08:00
"flarum-extension": {
"title": "Akismet",
2021-02-17 05:25:01 +08:00
"category": "feature",
2015-10-11 20:47:51 +08:00
"icon": {
"image": "icon.jpg",
"backgroundSize": "cover",
"backgroundColor": "#5e8e14",
"color": "#fff"
}
2022-01-05 07:27:04 +08:00
},
"flarum-cli": {
"modules": {
"js": true,
"jsCommon": false,
"gitConf": true,
"githubActions": true,
"prettier": true,
"typescript": true,
"bundlewatch": false,
"backendTesting": true,
"editorConfig": true,
2022-01-07 10:47:40 +08:00
"styleci": true,
"admin": true,
2022-01-20 16:06:25 +08:00
"forum": true,
"css": false
2022-01-05 07:27:04 +08:00
}
2015-10-11 20:47:51 +08:00
}
2022-01-05 07:27:04 +08: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": {
"flarum/testing": "^1.0.0"
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
2015-09-04 11:14:02 +08:00
}