https://github.com/gemorroj/stopspam
Wrapper for API www.stopforumspam.com (api.stopforumspam.org)
https://github.com/gemorroj/stopspam
antispam blacklist spam-detection spam-filtering spam-protection stopforumspam
Last synced: 2 months ago
JSON representation
Wrapper for API www.stopforumspam.com (api.stopforumspam.org)
- Host: GitHub
- URL: https://github.com/gemorroj/stopspam
- Owner: Gemorroj
- License: lgpl-3.0
- Created: 2017-10-08T07:27:14.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2025-03-03T20:30:10.000Z (3 months ago)
- Last Synced: 2025-03-24T05:03:33.594Z (3 months ago)
- Topics: antispam, blacklist, spam-detection, spam-filtering, spam-protection, stopforumspam
- Language: PHP
- Homepage:
- Size: 46.9 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Wrapper for API [stopforumspam.com](https://www.stopforumspam.com/usage)
[](https://github.com/Gemorroj/StopSpam/actions?query=workflow%3A%22Continuous+Integration%22)
### Requirements:
- PHP >= 8.0.2
### Installation:
```bash
composer require gemorroj/stop-spam
```### Example check IP:
```php
addIp('1.2.3.4');$request = new Request();
$response = $request->send($query);
$item = $response->getFlowingIp();
var_dump($item->isAppears()); // bool (true)
```