framework/extensions/akismet/composer.json

42 lines
1.1 KiB
JSON
Raw Normal View History

2015-09-04 11:14:02 +08:00
{
2015-12-29 10:24:16 +08:00
"name": "flarum/flarum-ext-akismet",
2015-10-11 20:47:51 +08:00
"description": "Stop spam using the Akismet anti-spam service.",
"type": "flarum-extension",
2015-10-12 12:28:23 +08:00
"keywords": ["moderation"],
2015-10-11 20:47:51 +08:00
"license": "MIT",
"authors": [
{
"name": "Toby Zerner",
"email": "toby.zerner@gmail.com"
2015-09-04 11:14:02 +08:00
}
2015-10-11 20:47:51 +08:00
],
"support": {
"issues": "https://github.com/flarum/core/issues",
2015-12-29 10:24:16 +08:00
"source": "https://github.com/flarum/flarum-ext-akismet"
2015-09-04 11:14:02 +08:00
},
"require": {
2018-01-11 09:53:20 +08:00
"flarum/core": "^0.1.0-beta.8",
2016-10-19 18:42:05 +08:00
"flarum/flarum-ext-approval": "^0.1.0-beta.6",
2015-09-04 11:14:02 +08:00
"tijsverkoyen/akismet": "^1.1"
},
2015-10-11 20:47:51 +08:00
"autoload": {
"psr-4": {
"Flarum\\Akismet\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
},
2015-10-11 20:47:51 +08:00
"flarum-extension": {
"title": "Akismet",
"icon": {
"image": "icon.jpg",
"backgroundSize": "cover",
"backgroundColor": "#5e8e14",
"color": "#fff"
}
}
2015-09-04 11:14:02 +08:00
}
}