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