framework/extensions/akismet/composer.json

39 lines
978 B
JSON
Raw Normal View History

2015-09-04 11:14:02 +08:00
{
2015-10-11 20:47:51 +08:00
"name": "flarum/akismet",
"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",
"source": "https://github.com/flarum/akismet"
2015-09-04 11:14:02 +08:00
},
"require": {
2015-10-11 20:47:51 +08:00
"flarum/core": "^0.1.0-beta.3",
"flarum/approval": "^0.1.0-beta.3",
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": {
"flarum-extension": {
"title": "Akismet",
"icon": {
"image": "icon.jpg",
"backgroundSize": "cover",
"backgroundColor": "#5e8e14",
"color": "#fff"
}
}
2015-09-04 11:14:02 +08:00
}
}