Skip to content

Commit

Permalink
Fix missing requirement (php-mbstring module)
Browse files Browse the repository at this point in the history
  • Loading branch information
kristuff committed May 16, 2023
1 parent 10f8810 commit c943284
Show file tree
Hide file tree
Showing 13 changed files with 21 additions and 15 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ Features

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

Expand Down
2 changes: 1 addition & 1 deletion bin/abuseipdb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @version 0.9.19
* @version 0.9.20
* @copyright 2020-2022 Kristuff
*/

Expand Down
2 changes: 1 addition & 1 deletion config/conf.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
; \__,_|_.__/\_,_/__/\___|___|_| |___/|___/
;
; Kristuff\AbuseIPDB-client configuration file.
; v0.9.19 | (c) Kristuff <[email protected]>
; v0.9.20 | (c) Kristuff <[email protected]>

; -----------------------------------------------------------
; WARNING: In most of the cases you should not modify this
Expand Down
6 changes: 6 additions & 0 deletions deb/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
abuseipdb-client (0.9.20) unstable; urgency=medium

* Fix missing dependencies (php mbstring module was missing)

-- kristuff <[email protected]> Thu, 16 May 2023 13:00:00 +0200

abuseipdb-client (0.9.19) unstable; urgency=medium

* Update dependencies (improve email pattern when cleaning report
Expand Down
4 changes: 2 additions & 2 deletions deb/control
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: abuseipdb-client
Version: 0.9.19
Version: 0.9.20
Maintainer: kristuff <[email protected]>
Architecture: all
Depends: php-cli, php-curl
Depends: php-cli, php-curl, php-mbstring
Description: AbuseIPDB APIv2 client: check, report IP address, download blacklist
AbuseIPDB.com provides an API to report an IP address associated with
malicious activity, check to see if an IP address has been reported,
Expand Down
4 changes: 2 additions & 2 deletions src/AbstractClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @version 0.9.19
* @version 0.9.20
* @copyright 2020-2022 Kristuff
*/
namespace Kristuff\AbuseIPDB;
Expand Down Expand Up @@ -41,7 +41,7 @@ abstract class AbstractClient extends ShellErrorHandler
/**
* @var string
*/
const VERSION = 'v0.9.19';
const VERSION = 'v0.9.20';

/**
* @var QuietApiHandler
Expand Down
2 changes: 1 addition & 1 deletion src/AbuseIPDBClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @version 0.9.19
* @version 0.9.20
* @copyright 2020-2022 Kristuff
*/
namespace Kristuff\AbuseIPDB;
Expand Down
2 changes: 1 addition & 1 deletion src/BulkReportTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @version 0.9.19
* @version 0.9.20
* @copyright 2020-2022 Kristuff
*/
namespace Kristuff\AbuseIPDB;
Expand Down
2 changes: 1 addition & 1 deletion src/CheckBlockTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @version 0.9.19
* @version 0.9.20
* @copyright 2020-2022 Kristuff
*/
namespace Kristuff\AbuseIPDB;
Expand Down
2 changes: 1 addition & 1 deletion src/CheckTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @version 0.9.19
* @version 0.9.20
* @copyright 2020-2022 Kristuff
*/
namespace Kristuff\AbuseIPDB;
Expand Down
2 changes: 1 addition & 1 deletion src/ShellErrorHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @version 0.9.19
* @version 0.9.20
* @copyright 2020-2022 Kristuff
*/
namespace Kristuff\AbuseIPDB;
Expand Down
2 changes: 1 addition & 1 deletion src/ShellUtils.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @version 0.9.19
* @version 0.9.20
* @copyright 2020-2022 Kristuff
*/
namespace Kristuff\AbuseIPDB;
Expand Down
2 changes: 1 addition & 1 deletion src/UtilsTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @version 0.9.19
* @version 0.9.20
* @copyright 2020-2022 Kristuff
*/
namespace Kristuff\AbuseIPDB;
Expand Down

0 comments on commit c943284

Please sign in to comment.