Hello
I was looking on my flarum forum where to place my akismet api.
I did not find where.
So I was looking here and github and found this:
https://github.com/flarum/akismet/blob/master/composer.json
So I just run in composer this line:
composer require tijsverkoyen/akismet
And run this:
`[user@server mysite.com]$ composer require tijsverkoyen/akismet
Using version 1.1 for tijsverkoyen/akismet
./composer.json has been updated
Loading composer repositories with package information
Updating dependencies (including require-dev)
Package operations: 1 install, 0 updates, 0 removals
- Installing tijsverkoyen/akismet (1.1.1): Downloading (100%)
Writing lock file
Generating autoload files`
But I read in this forum people are installing akismte with this code:
composer require flarum/akismet
I checked on https://github.com/flarum/akismet/blob/master/composer.json this:
**"name": "flarum/akismet",**
"description": "Stop spam using the Akismet anti-spam service.",
"type": "flarum-extension",
"keywords": ["moderation"],
"license": "MIT",
"support": {
"issues": "https://github.com/flarum/core/issues",
"source": "https://github.com/flarum/akismet"
},
"require": {
"flarum/core": "^0.1.0-beta.13",
"flarum/approval": "^0.1.0-beta.13",
**"tijsverkoyen/akismet": "^1.1"**
So, Did I run a part of flarum/akismet ?
What should I do now?
Just asking before broke my forum.
Thanks so much!