Skip to content

Commit c943284

Browse files
committed
Fix missing requirement (php-mbstring module)
1 parent 10f8810 commit c943284

13 files changed

+21
-15
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ Features
2323

2424
Requirements
2525
------------
26-
- PHP >= 7.1
27-
- PHP's cURL
26+
- PHP version: >= 7.1
27+
- PHP's modules: `php-curl`, `php-mbstring`
2828
- A valid [abuseipdb.com](https://abuseipdb.com) account with an API key
2929
- Composer for install (not required if you install the `.deb` package)
3030

bin/abuseipdb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* For the full copyright and license information, please view the LICENSE
1515
* file that was distributed with this source code.
1616
*
17-
* @version 0.9.19
17+
* @version 0.9.20
1818
* @copyright 2020-2022 Kristuff
1919
*/
2020

config/conf.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
; \__,_|_.__/\_,_/__/\___|___|_| |___/|___/
55
;
66
; Kristuff\AbuseIPDB-client configuration file.
7-
; v0.9.19 | (c) Kristuff <[email protected]>
7+
; v0.9.20 | (c) Kristuff <[email protected]>
88

99
; -----------------------------------------------------------
1010
; WARNING: In most of the cases you should not modify this

deb/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
abuseipdb-client (0.9.20) unstable; urgency=medium
2+
3+
* Fix missing dependencies (php mbstring module was missing)
4+
5+
-- kristuff <[email protected]> Thu, 16 May 2023 13:00:00 +0200
6+
17
abuseipdb-client (0.9.19) unstable; urgency=medium
28

39
* Update dependencies (improve email pattern when cleaning report

deb/control

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Package: abuseipdb-client
2-
Version: 0.9.19
2+
Version: 0.9.20
33
Maintainer: kristuff <[email protected]>
44
Architecture: all
5-
Depends: php-cli, php-curl
5+
Depends: php-cli, php-curl, php-mbstring
66
Description: AbuseIPDB APIv2 client: check, report IP address, download blacklist
77
AbuseIPDB.com provides an API to report an IP address associated with
88
malicious activity, check to see if an IP address has been reported,

src/AbstractClient.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* For the full copyright and license information, please view the LICENSE
1414
* file that was distributed with this source code.
1515
*
16-
* @version 0.9.19
16+
* @version 0.9.20
1717
* @copyright 2020-2022 Kristuff
1818
*/
1919
namespace Kristuff\AbuseIPDB;
@@ -41,7 +41,7 @@ abstract class AbstractClient extends ShellErrorHandler
4141
/**
4242
* @var string
4343
*/
44-
const VERSION = 'v0.9.19';
44+
const VERSION = 'v0.9.20';
4545

4646
/**
4747
* @var QuietApiHandler

src/AbuseIPDBClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* For the full copyright and license information, please view the LICENSE
1414
* file that was distributed with this source code.
1515
*
16-
* @version 0.9.19
16+
* @version 0.9.20
1717
* @copyright 2020-2022 Kristuff
1818
*/
1919
namespace Kristuff\AbuseIPDB;

src/BulkReportTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* For the full copyright and license information, please view the LICENSE
1414
* file that was distributed with this source code.
1515
*
16-
* @version 0.9.19
16+
* @version 0.9.20
1717
* @copyright 2020-2022 Kristuff
1818
*/
1919
namespace Kristuff\AbuseIPDB;

src/CheckBlockTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* For the full copyright and license information, please view the LICENSE
1414
* file that was distributed with this source code.
1515
*
16-
* @version 0.9.19
16+
* @version 0.9.20
1717
* @copyright 2020-2022 Kristuff
1818
*/
1919
namespace Kristuff\AbuseIPDB;

src/CheckTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* For the full copyright and license information, please view the LICENSE
1414
* file that was distributed with this source code.
1515
*
16-
* @version 0.9.19
16+
* @version 0.9.20
1717
* @copyright 2020-2022 Kristuff
1818
*/
1919
namespace Kristuff\AbuseIPDB;

0 commit comments

Comments
 (0)