From 7f63a71f14d12b9dbd9f33ee02e26e5c10644883 Mon Sep 17 00:00:00 2001 From: "sandesh.as" Date: Mon, 15 Dec 2025 12:45:40 +0530 Subject: [PATCH 1/3] Php 8.5 deprecation fix --- src/CurlRequester.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/CurlRequester.php b/src/CurlRequester.php index 515d250..3abf5ed 100644 --- a/src/CurlRequester.php +++ b/src/CurlRequester.php @@ -12,13 +12,6 @@ public function __construct() $this->ch = curl_init(); } - public function __destruct() - { - if (isset($this->ch)) { - curl_close($this->ch); - } - } - public function options($options) { assert(is_array($options)); From 12c1a70cb569141e157541856aa5e6fc4549e93e Mon Sep 17 00:00:00 2001 From: Jeffrey Parker Date: Wed, 21 Jan 2026 14:48:29 -0500 Subject: [PATCH 2/3] Add php 8.3,8.4,8.5 to CI and readme --- .github/workflows/php_ci.yml | 2 +- README.md | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/php_ci.yml b/.github/workflows/php_ci.yml index a921be6..fd452fe 100644 --- a/.github/workflows/php_ci.yml +++ b/.github/workflows/php_ci.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - php: [8.0, 8.1, 8.2] + php: [8.0, 8.1, 8.2, 8.3, 8.4, 8.5] steps: - name: Install additional packages diff --git a/README.md b/README.md index f0a12d4..a6f9df7 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,9 @@ * 8.0 * 8.1 * 8.2 +* 8.3 +* 8.4 +* 8.5 ## TLS 1.2 and 1.3 Support From d741f293ff238662ac814ea06a59435044ba75be Mon Sep 17 00:00:00 2001 From: Jeffrey Parker Date: Thu, 22 Jan 2026 16:24:23 -0500 Subject: [PATCH 3/3] Remove support for PHP 8.0 and 8.1 which are EOL --- .github/workflows/php_ci.yml | 2 +- README.md | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/php_ci.yml b/.github/workflows/php_ci.yml index fd452fe..56c9296 100644 --- a/.github/workflows/php_ci.yml +++ b/.github/workflows/php_ci.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - php: [8.0, 8.1, 8.2, 8.3, 8.4, 8.5] + php: [8.2, 8.3, 8.4, 8.5] steps: - name: Install additional packages diff --git a/README.md b/README.md index a6f9df7..917fbe2 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,6 @@ **Accounts** - https://www.duosecurity.com/docs/accountsapi ## Tested Against PHP Versions: -* 8.0 -* 8.1 * 8.2 * 8.3 * 8.4