diff --git a/.github/workflows/php_ci.yml b/.github/workflows/php_ci.yml index a921be6..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] + php: [8.2, 8.3, 8.4, 8.5] steps: - name: Install additional packages diff --git a/README.md b/README.md index f0a12d4..917fbe2 100644 --- a/README.md +++ b/README.md @@ -9,9 +9,10 @@ **Accounts** - https://www.duosecurity.com/docs/accountsapi ## Tested Against PHP Versions: -* 8.0 -* 8.1 * 8.2 +* 8.3 +* 8.4 +* 8.5 ## TLS 1.2 and 1.3 Support 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));