diff --git a/README.md b/README.md index 5c74596..da2a010 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ Install `pop-debug` using Composer. Or, require it in your composer.json file "require": { - "popphp/pop-debug" : "^2.2.0" + "popphp/pop-debug" : "^2.2.1" } [Top](#pop-debug) diff --git a/composer.json b/composer.json index c9618a9..7646975 100644 --- a/composer.json +++ b/composer.json @@ -19,10 +19,10 @@ ], "require": { "php": ">=8.2.0", - "popphp/pop-db": "^6.5.11", - "popphp/pop-http": "^5.2.11", - "popphp/pop-log": "^4.0.1", - "popphp/pop-session": "^4.0.0" + "popphp/pop-db": "^6.6.0", + "popphp/pop-http": "^5.3.0", + "popphp/pop-log": "^4.0.2", + "popphp/pop-session": "^4.0.1" }, "require-dev": { "phpunit/phpunit": "^11.0.0" diff --git a/src/Debugger.php b/src/Debugger.php index 53cdd30..8f76a94 100644 --- a/src/Debugger.php +++ b/src/Debugger.php @@ -26,7 +26,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 2.2.0 + * @version 2.2.1 */ class Debugger implements \ArrayAccess, \Countable, \IteratorAggregate { diff --git a/src/Exception.php b/src/Exception.php index 2e30945..2b54a1e 100644 --- a/src/Exception.php +++ b/src/Exception.php @@ -21,6 +21,6 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 2.2.0 + * @version 2.2.1 */ class Exception extends \Exception {} diff --git a/src/Handler/AbstractHandler.php b/src/Handler/AbstractHandler.php index 8de5b46..bd70452 100644 --- a/src/Handler/AbstractHandler.php +++ b/src/Handler/AbstractHandler.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 2.2.0 + * @version 2.2.1 */ abstract class AbstractHandler implements HandlerInterface { diff --git a/src/Handler/Exception.php b/src/Handler/Exception.php index 7cee393..9654b5a 100644 --- a/src/Handler/Exception.php +++ b/src/Handler/Exception.php @@ -21,6 +21,6 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 2.2.0 + * @version 2.2.1 */ class Exception extends \Exception {} diff --git a/src/Handler/ExceptionHandler.php b/src/Handler/ExceptionHandler.php index 47cd07e..783fb42 100644 --- a/src/Handler/ExceptionHandler.php +++ b/src/Handler/ExceptionHandler.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 2.2.0 + * @version 2.2.1 */ class ExceptionHandler extends AbstractHandler { diff --git a/src/Handler/HandlerInterface.php b/src/Handler/HandlerInterface.php index e2479ac..7c144a7 100644 --- a/src/Handler/HandlerInterface.php +++ b/src/Handler/HandlerInterface.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 2.2.0 + * @version 2.2.1 */ interface HandlerInterface { diff --git a/src/Handler/MemoryHandler.php b/src/Handler/MemoryHandler.php index b05174e..70e7cf0 100644 --- a/src/Handler/MemoryHandler.php +++ b/src/Handler/MemoryHandler.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 2.2.0 + * @version 2.2.1 */ class MemoryHandler extends AbstractHandler { diff --git a/src/Handler/MessageHandler.php b/src/Handler/MessageHandler.php index e820d5e..9558231 100644 --- a/src/Handler/MessageHandler.php +++ b/src/Handler/MessageHandler.php @@ -21,7 +21,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 2.2.0 + * @version 2.2.1 */ class MessageHandler extends AbstractHandler { diff --git a/src/Handler/PhpHandler.php b/src/Handler/PhpHandler.php index 9bc851c..ae798f4 100644 --- a/src/Handler/PhpHandler.php +++ b/src/Handler/PhpHandler.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 2.2.0 + * @version 2.2.1 */ class PhpHandler extends AbstractHandler { diff --git a/src/Handler/QueryHandler.php b/src/Handler/QueryHandler.php index 76ed9b2..1dc514e 100644 --- a/src/Handler/QueryHandler.php +++ b/src/Handler/QueryHandler.php @@ -24,7 +24,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 2.2.0 + * @version 2.2.1 */ class QueryHandler extends AbstractHandler { diff --git a/src/Handler/RequestHandler.php b/src/Handler/RequestHandler.php index bdf57cf..b30d086 100644 --- a/src/Handler/RequestHandler.php +++ b/src/Handler/RequestHandler.php @@ -26,7 +26,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 2.2.0 + * @version 2.2.1 */ class RequestHandler extends AbstractHandler { diff --git a/src/Handler/TimeHandler.php b/src/Handler/TimeHandler.php index dba7bb0..7946ae4 100644 --- a/src/Handler/TimeHandler.php +++ b/src/Handler/TimeHandler.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 2.2.0 + * @version 2.2.1 */ class TimeHandler extends AbstractHandler { diff --git a/src/Storage/AbstractStorage.php b/src/Storage/AbstractStorage.php index 39cabb6..78db724 100644 --- a/src/Storage/AbstractStorage.php +++ b/src/Storage/AbstractStorage.php @@ -21,7 +21,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 2.2.0 + * @version 2.2.1 */ abstract class AbstractStorage implements StorageInterface { diff --git a/src/Storage/Database.php b/src/Storage/Database.php index afe406e..03339a9 100644 --- a/src/Storage/Database.php +++ b/src/Storage/Database.php @@ -23,7 +23,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 2.2.0 + * @version 2.2.1 */ class Database extends AbstractStorage { diff --git a/src/Storage/Exception.php b/src/Storage/Exception.php index 9fab045..6075021 100644 --- a/src/Storage/Exception.php +++ b/src/Storage/Exception.php @@ -21,6 +21,6 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 2.2.0 + * @version 2.2.1 */ class Exception extends \Exception {} diff --git a/src/Storage/File.php b/src/Storage/File.php index 4c6c5fc..2d0021e 100644 --- a/src/Storage/File.php +++ b/src/Storage/File.php @@ -21,7 +21,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 2.2.0 + * @version 2.2.1 */ class File extends AbstractStorage { diff --git a/src/Storage/StorageInterface.php b/src/Storage/StorageInterface.php index ed97c5c..8577114 100644 --- a/src/Storage/StorageInterface.php +++ b/src/Storage/StorageInterface.php @@ -21,7 +21,7 @@ * @author Nick Sagona, III * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. * @license https://www.popphp.org/license New BSD License - * @version 2.2.0 + * @version 2.2.1 */ interface StorageInterface {