diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index be4eaf9..3f4d1c7 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php-versions: [ '8.1', '8.2' ] + php-versions: [ '8.2', '8.3' ] steps: - uses: actions/checkout@v3 diff --git a/LICENSE.TXT b/LICENSE.TXT index d8b6beb..b0c45e2 100644 --- a/LICENSE.TXT +++ b/LICENSE.TXT @@ -1,6 +1,6 @@ BSD 3 Clause License -Copyright (c) 2009-2024, NOLA Interactive, LLC. +Copyright (c) 2009-2025, NOLA Interactive, LLC. All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/README.md b/README.md index 8cefcc2..5c74596 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,6 @@ pop-debug [![Build Status](https://github.com/popphp/pop-debug/workflows/phpunit/badge.svg)](https://github.com/popphp/pop-debug/actions) [![Coverage Status](http://cc.popphp.org/coverage.php?comp=pop-debug)](http://cc.popphp.org/pop-debug/) -[![Join the chat at https://popphp.slack.com](https://media.popphp.org/img/slack.svg)](https://popphp.slack.com) [![Join the chat at https://discord.gg/TZjgT74U7E](https://media.popphp.org/img/discord.svg)](https://discord.gg/TZjgT74U7E) * [Overview](#overview) @@ -31,7 +30,7 @@ Overview certain aspects of the application's lifecycle. It can help provide insight to an application's performance or any issues that may arise within an application. -`pop-debug` is a component of the [Pop PHP Framework](http://www.popphp.org/). +`pop-debug` is a component of the [Pop PHP Framework](https://www.popphp.org/). Install ------- diff --git a/composer.json b/composer.json index 87a4843..c9618a9 100644 --- a/composer.json +++ b/composer.json @@ -8,24 +8,24 @@ "pop", "pop php" ], - "homepage": "http://www.popphp.org/", + "homepage": "https://github.com/popphp/pop-debug", "license": "BSD-3-Clause", "authors": [ { "name": "Nick Sagona", - "email": "dev@nolainteractive.com", - "homepage": "http://www.nolainteractive.com/" + "email": "dev@noladev.com", + "homepage": "https://www.popphp.org/" } ], "require": { - "php": ">=8.1.0", + "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" }, "require-dev": { - "phpunit/phpunit": "^10.0.0" + "phpunit/phpunit": "^11.0.0" }, "autoload": { "psr-4": { diff --git a/src/Debugger.php b/src/Debugger.php index cc7553a..53cdd30 100644 --- a/src/Debugger.php +++ b/src/Debugger.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -23,9 +23,9 @@ * * @category Pop * @package Pop\Debug - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @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 */ class Debugger implements \ArrayAccess, \Countable, \IteratorAggregate diff --git a/src/Exception.php b/src/Exception.php index 9eb9867..2e30945 100644 --- a/src/Exception.php +++ b/src/Exception.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -18,9 +18,9 @@ * * @category Pop * @package Pop\Debug - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @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 */ class Exception extends \Exception {} diff --git a/src/Handler/AbstractHandler.php b/src/Handler/AbstractHandler.php index 23b8022..8de5b46 100644 --- a/src/Handler/AbstractHandler.php +++ b/src/Handler/AbstractHandler.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,9 +20,9 @@ * * @category Pop * @package Pop\Debug - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @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 */ abstract class AbstractHandler implements HandlerInterface diff --git a/src/Handler/Exception.php b/src/Handler/Exception.php index 28ee765..7cee393 100644 --- a/src/Handler/Exception.php +++ b/src/Handler/Exception.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -18,9 +18,9 @@ * * @category Pop * @package Pop\Debug - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @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 */ class Exception extends \Exception {} diff --git a/src/Handler/ExceptionHandler.php b/src/Handler/ExceptionHandler.php index 28bf17c..47cd07e 100644 --- a/src/Handler/ExceptionHandler.php +++ b/src/Handler/ExceptionHandler.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,9 +20,9 @@ * * @category Pop * @package Pop\Debug - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @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 */ class ExceptionHandler extends AbstractHandler diff --git a/src/Handler/HandlerInterface.php b/src/Handler/HandlerInterface.php index b3d5da0..e2479ac 100644 --- a/src/Handler/HandlerInterface.php +++ b/src/Handler/HandlerInterface.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,9 +20,9 @@ * * @category Pop * @package Pop\Debug - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @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 */ interface HandlerInterface diff --git a/src/Handler/MemoryHandler.php b/src/Handler/MemoryHandler.php index 0b66b78..b05174e 100644 --- a/src/Handler/MemoryHandler.php +++ b/src/Handler/MemoryHandler.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,9 +20,9 @@ * * @category Pop * @package Pop\Debug - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @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 */ class MemoryHandler extends AbstractHandler diff --git a/src/Handler/MessageHandler.php b/src/Handler/MessageHandler.php index 867f193..e820d5e 100644 --- a/src/Handler/MessageHandler.php +++ b/src/Handler/MessageHandler.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -18,9 +18,9 @@ * * @category Pop * @package Pop\Debug - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @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 */ class MessageHandler extends AbstractHandler diff --git a/src/Handler/PhpHandler.php b/src/Handler/PhpHandler.php index 5864005..9bc851c 100644 --- a/src/Handler/PhpHandler.php +++ b/src/Handler/PhpHandler.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,9 +20,9 @@ * * @category Pop * @package Pop\Debug - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @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 */ class PhpHandler extends AbstractHandler diff --git a/src/Handler/QueryHandler.php b/src/Handler/QueryHandler.php index eff1d78..76ed9b2 100644 --- a/src/Handler/QueryHandler.php +++ b/src/Handler/QueryHandler.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -21,9 +21,9 @@ * * @category Pop * @package Pop\Debug - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @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 */ class QueryHandler extends AbstractHandler diff --git a/src/Handler/RequestHandler.php b/src/Handler/RequestHandler.php index 3d4268f..bdf57cf 100644 --- a/src/Handler/RequestHandler.php +++ b/src/Handler/RequestHandler.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -23,9 +23,9 @@ * * @category Pop * @package Pop\Debug - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @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 */ class RequestHandler extends AbstractHandler diff --git a/src/Handler/TimeHandler.php b/src/Handler/TimeHandler.php index bb28d9e..dba7bb0 100644 --- a/src/Handler/TimeHandler.php +++ b/src/Handler/TimeHandler.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,9 +20,9 @@ * * @category Pop * @package Pop\Debug - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @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 */ class TimeHandler extends AbstractHandler diff --git a/src/Storage/AbstractStorage.php b/src/Storage/AbstractStorage.php index 6d69563..39cabb6 100644 --- a/src/Storage/AbstractStorage.php +++ b/src/Storage/AbstractStorage.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -18,9 +18,9 @@ * * @category Pop * @package Pop\Debug - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @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 */ abstract class AbstractStorage implements StorageInterface diff --git a/src/Storage/Database.php b/src/Storage/Database.php index 130a288..afe406e 100644 --- a/src/Storage/Database.php +++ b/src/Storage/Database.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -20,9 +20,9 @@ * * @category Pop * @package Pop\Debug - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @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 */ class Database extends AbstractStorage diff --git a/src/Storage/Exception.php b/src/Storage/Exception.php index 2b3cec1..9fab045 100644 --- a/src/Storage/Exception.php +++ b/src/Storage/Exception.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -18,9 +18,9 @@ * * @category Pop * @package Pop\Debug - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @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 */ class Exception extends \Exception {} diff --git a/src/Storage/File.php b/src/Storage/File.php index c4e861d..4c6c5fc 100644 --- a/src/Storage/File.php +++ b/src/Storage/File.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -18,9 +18,9 @@ * * @category Pop * @package Pop\Debug - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @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 */ class File extends AbstractStorage diff --git a/src/Storage/StorageInterface.php b/src/Storage/StorageInterface.php index e8a2830..ed97c5c 100644 --- a/src/Storage/StorageInterface.php +++ b/src/Storage/StorageInterface.php @@ -1,11 +1,11 @@ - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @author Nick Sagona, III + * @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC. + * @license https://www.popphp.org/license New BSD License */ /** @@ -18,9 +18,9 @@ * * @category Pop * @package Pop\Debug - * @author Nick Sagona, III - * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) - * @license http://www.popphp.org/license New BSD License + * @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 */ interface StorageInterface