Skip to content

Commit

Permalink
Update version, copyright, website and email
Browse files Browse the repository at this point in the history
  • Loading branch information
nicksagona committed Nov 19, 2024
1 parent c03433a commit a67fbc0
Show file tree
Hide file tree
Showing 21 changed files with 127 additions and 128 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.TXT
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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
-------
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
14 changes: 7 additions & 7 deletions src/Debugger.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php
/**
* Pop PHP Framework (http://www.popphp.org/)
* Pop PHP Framework (https://www.popphp.org/)
*
* @link https://github.com/popphp/popphp-framework
* @author Nick Sagona, III <dev@nolainteractive.com>
* @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 <dev@noladev.com>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
*/

/**
Expand All @@ -23,9 +23,9 @@
*
* @category Pop
* @package Pop\Debug
* @author Nick Sagona, III <dev@nolainteractive.com>
* @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 <dev@noladev.com>
* @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
Expand Down
14 changes: 7 additions & 7 deletions src/Exception.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php
/**
* Pop PHP Framework (http://www.popphp.org/)
* Pop PHP Framework (https://www.popphp.org/)
*
* @link https://github.com/popphp/popphp-framework
* @author Nick Sagona, III <dev@nolainteractive.com>
* @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 <dev@noladev.com>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
*/

/**
Expand All @@ -18,9 +18,9 @@
*
* @category Pop
* @package Pop\Debug
* @author Nick Sagona, III <dev@nolainteractive.com>
* @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 <dev@noladev.com>
* @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 {}
14 changes: 7 additions & 7 deletions src/Handler/AbstractHandler.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php
/**
* Pop PHP Framework (http://www.popphp.org/)
* Pop PHP Framework (https://www.popphp.org/)
*
* @link https://github.com/popphp/popphp-framework
* @author Nick Sagona, III <dev@nolainteractive.com>
* @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 <dev@noladev.com>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
*/

/**
Expand All @@ -20,9 +20,9 @@
*
* @category Pop
* @package Pop\Debug
* @author Nick Sagona, III <dev@nolainteractive.com>
* @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 <dev@noladev.com>
* @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
Expand Down
14 changes: 7 additions & 7 deletions src/Handler/Exception.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php
/**
* Pop PHP Framework (http://www.popphp.org/)
* Pop PHP Framework (https://www.popphp.org/)
*
* @link https://github.com/popphp/popphp-framework
* @author Nick Sagona, III <dev@nolainteractive.com>
* @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 <dev@noladev.com>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
*/

/**
Expand All @@ -18,9 +18,9 @@
*
* @category Pop
* @package Pop\Debug
* @author Nick Sagona, III <dev@nolainteractive.com>
* @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 <dev@noladev.com>
* @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 {}
14 changes: 7 additions & 7 deletions src/Handler/ExceptionHandler.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php
/**
* Pop PHP Framework (http://www.popphp.org/)
* Pop PHP Framework (https://www.popphp.org/)
*
* @link https://github.com/popphp/popphp-framework
* @author Nick Sagona, III <dev@nolainteractive.com>
* @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 <dev@noladev.com>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
*/

/**
Expand All @@ -20,9 +20,9 @@
*
* @category Pop
* @package Pop\Debug
* @author Nick Sagona, III <dev@nolainteractive.com>
* @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 <dev@noladev.com>
* @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
Expand Down
14 changes: 7 additions & 7 deletions src/Handler/HandlerInterface.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php
/**
* Pop PHP Framework (http://www.popphp.org/)
* Pop PHP Framework (https://www.popphp.org/)
*
* @link https://github.com/popphp/popphp-framework
* @author Nick Sagona, III <dev@nolainteractive.com>
* @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 <dev@noladev.com>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
*/

/**
Expand All @@ -20,9 +20,9 @@
*
* @category Pop
* @package Pop\Debug
* @author Nick Sagona, III <dev@nolainteractive.com>
* @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 <dev@noladev.com>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 2.2.0
*/
interface HandlerInterface
Expand Down
14 changes: 7 additions & 7 deletions src/Handler/MemoryHandler.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php
/**
* Pop PHP Framework (http://www.popphp.org/)
* Pop PHP Framework (https://www.popphp.org/)
*
* @link https://github.com/popphp/popphp-framework
* @author Nick Sagona, III <dev@nolainteractive.com>
* @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 <dev@noladev.com>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
*/

/**
Expand All @@ -20,9 +20,9 @@
*
* @category Pop
* @package Pop\Debug
* @author Nick Sagona, III <dev@nolainteractive.com>
* @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 <dev@noladev.com>
* @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
Expand Down
14 changes: 7 additions & 7 deletions src/Handler/MessageHandler.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php
/**
* Pop PHP Framework (http://www.popphp.org/)
* Pop PHP Framework (https://www.popphp.org/)
*
* @link https://github.com/popphp/popphp-framework
* @author Nick Sagona, III <dev@nolainteractive.com>
* @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 <dev@noladev.com>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
*/

/**
Expand All @@ -18,9 +18,9 @@
*
* @category Pop
* @package Pop\Debug
* @author Nick Sagona, III <dev@nolainteractive.com>
* @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 <dev@noladev.com>
* @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
Expand Down
14 changes: 7 additions & 7 deletions src/Handler/PhpHandler.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php
/**
* Pop PHP Framework (http://www.popphp.org/)
* Pop PHP Framework (https://www.popphp.org/)
*
* @link https://github.com/popphp/popphp-framework
* @author Nick Sagona, III <dev@nolainteractive.com>
* @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 <dev@noladev.com>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
*/

/**
Expand All @@ -20,9 +20,9 @@
*
* @category Pop
* @package Pop\Debug
* @author Nick Sagona, III <dev@nolainteractive.com>
* @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 <dev@noladev.com>
* @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
Expand Down
14 changes: 7 additions & 7 deletions src/Handler/QueryHandler.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php
/**
* Pop PHP Framework (http://www.popphp.org/)
* Pop PHP Framework (https://www.popphp.org/)
*
* @link https://github.com/popphp/popphp-framework
* @author Nick Sagona, III <dev@nolainteractive.com>
* @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 <dev@noladev.com>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
*/

/**
Expand All @@ -21,9 +21,9 @@
*
* @category Pop
* @package Pop\Debug
* @author Nick Sagona, III <dev@nolainteractive.com>
* @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 <dev@noladev.com>
* @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
Expand Down
14 changes: 7 additions & 7 deletions src/Handler/RequestHandler.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php
/**
* Pop PHP Framework (http://www.popphp.org/)
* Pop PHP Framework (https://www.popphp.org/)
*
* @link https://github.com/popphp/popphp-framework
* @author Nick Sagona, III <dev@nolainteractive.com>
* @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 <dev@noladev.com>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
*/

/**
Expand All @@ -23,9 +23,9 @@
*
* @category Pop
* @package Pop\Debug
* @author Nick Sagona, III <dev@nolainteractive.com>
* @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 <dev@noladev.com>
* @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
Expand Down
Loading

0 comments on commit a67fbc0

Please sign in to comment.