From f76322595b66586149639a51db8b997fc99e0183 Mon Sep 17 00:00:00 2001 From: Nick Sagona Date: Fri, 29 Nov 2024 13:08:51 -0600 Subject: [PATCH] Update version --- .github/workflows/phpunit.yml | 5 +++++ README.md | 2 +- composer.json | 4 ++-- src/Exception.php | 2 +- src/Template/AbstractTemplate.php | 2 +- src/Template/Exception.php | 2 +- src/Template/File.php | 2 +- src/Template/Stream.php | 2 +- src/Template/Stream/Exception.php | 2 +- src/Template/Stream/Parser.php | 2 +- src/Template/TemplateInterface.php | 2 +- src/View.php | 2 +- 12 files changed, 17 insertions(+), 12 deletions(-) diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index 843223c..0490c2e 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -20,6 +20,11 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php-versions }} + #- name: Validate composer.json and composer.lock # run: composer validate diff --git a/README.md b/README.md index fc8c96f..157a302 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Install `pop-view` using Composer. Or, require it in your composer.json file "require": { - "popphp/pop-view" : "^4.0.0" + "popphp/pop-view" : "^4.0.2" } [Top](#pop-view) diff --git a/composer.json b/composer.json index 15b71b3..93ba246 100644 --- a/composer.json +++ b/composer.json @@ -20,8 +20,8 @@ ], "require": { "php": ">=8.2.0", - "popphp/pop-filter": "^4.0.1", - "popphp/pop-utils": "^2.1.2" + "popphp/pop-filter": "^4.0.2", + "popphp/pop-utils": "^2.1.3" }, "require-dev": { "phpunit/phpunit": "^11.0.0" diff --git a/src/Exception.php b/src/Exception.php index 279db16..173b71e 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 4.0.0 + * @version 4.0.2 */ class Exception extends \Exception {} diff --git a/src/Template/AbstractTemplate.php b/src/Template/AbstractTemplate.php index 288b9da..0372f2b 100644 --- a/src/Template/AbstractTemplate.php +++ b/src/Template/AbstractTemplate.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 4.0.0 + * @version 4.0.2 */ abstract class AbstractTemplate implements TemplateInterface { diff --git a/src/Template/Exception.php b/src/Template/Exception.php index 53d93ca..52ec1b1 100644 --- a/src/Template/Exception.php +++ b/src/Template/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 4.0.0 + * @version 4.0.2 */ class Exception extends \Exception {} diff --git a/src/Template/File.php b/src/Template/File.php index add3e87..70eb98c 100644 --- a/src/Template/File.php +++ b/src/Template/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 4.0.0 + * @version 4.0.2 */ class File extends AbstractTemplate { diff --git a/src/Template/Stream.php b/src/Template/Stream.php index e66a9aa..87b0013 100644 --- a/src/Template/Stream.php +++ b/src/Template/Stream.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 4.0.0 + * @version 4.0.2 */ class Stream extends AbstractTemplate { diff --git a/src/Template/Stream/Exception.php b/src/Template/Stream/Exception.php index b719e8a..28cae03 100644 --- a/src/Template/Stream/Exception.php +++ b/src/Template/Stream/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 4.0.0 + * @version 4.0.2 */ class Exception extends \Exception {} diff --git a/src/Template/Stream/Parser.php b/src/Template/Stream/Parser.php index c51b330..bc15054 100644 --- a/src/Template/Stream/Parser.php +++ b/src/Template/Stream/Parser.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 4.0.0 + * @version 4.0.2 */ class Parser { diff --git a/src/Template/TemplateInterface.php b/src/Template/TemplateInterface.php index 32943f9..c792f80 100644 --- a/src/Template/TemplateInterface.php +++ b/src/Template/TemplateInterface.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 4.0.0 + * @version 4.0.2 */ interface TemplateInterface { diff --git a/src/View.php b/src/View.php index a5bf47b..114a0f6 100644 --- a/src/View.php +++ b/src/View.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 4.0.0 + * @version 4.0.2 */ class View extends Utils\ArrayObject {