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 37300f2 commit 32e2430
Show file tree
Hide file tree
Showing 13 changed files with 76 additions and 77 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-view
[![Build Status](https://github.com/popphp/pop-view/workflows/phpunit/badge.svg)](https://github.com/popphp/pop-view/actions)
[![Coverage Status](http://cc.popphp.org/coverage.php?comp=pop-view)](http://cc.popphp.org/pop-view/)

[![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 @@ -24,7 +23,7 @@ independently as well. It supports using both PHP-file based templates and strea
Within the stream templates, there is basic support for logic and iteration for dynamic
control over the view template.

`pop-view` is a component of the [Pop PHP Framework](http://www.popphp.org/).
`pop-view` is a component of the [Pop PHP Framework](https://www.popphp.org/).

[Top](#pop-view)

Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,22 @@
"pop",
"pop php"
],
"homepage": "http://www.popphp.org/",
"homepage": "https://github.com/popphp/pop-view",
"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",
"popphp/pop-filter": "^4.0.0",
"popphp/pop-utils": "^2.1.0"
"php": ">=8.2.0",
"popphp/pop-filter": "^4.0.1",
"popphp/pop-utils": "^2.1.2"
},
"require-dev": {
"phpunit/phpunit": "^10.0.0"
"phpunit/phpunit": "^11.0.0"
},
"autoload": {
"psr-4": {
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\View
* @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 4.0.0
*/
class Exception extends \Exception {}
16 changes: 8 additions & 8 deletions src/Template/AbstractTemplate.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\View
* @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 4.0.0
*/
abstract class AbstractTemplate implements TemplateInterface
Expand Down Expand Up @@ -77,4 +77,4 @@ abstract public function render(array $data): string;
*/
abstract protected function renderTemplate(): void;

}
}
14 changes: 7 additions & 7 deletions src/Template/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\View
* @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 4.0.0
*/
class Exception extends \Exception {}
14 changes: 7 additions & 7 deletions src/Template/File.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\View
* @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 4.0.0
*/
class File extends AbstractTemplate
Expand Down
14 changes: 7 additions & 7 deletions src/Template/Stream.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\View
* @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 4.0.0
*/
class Stream extends AbstractTemplate
Expand Down
14 changes: 7 additions & 7 deletions src/Template/Stream/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\View
* @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 4.0.0
*/
class Exception extends \Exception {}
16 changes: 8 additions & 8 deletions src/Template/Stream/Parser.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\View
* @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 4.0.0
*/
class Parser
Expand Down Expand Up @@ -265,4 +265,4 @@ public static function parseScalars(array $data, string $output): string

return $output;
}
}
}
16 changes: 8 additions & 8 deletions src/Template/TemplateInterface.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\View
* @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 4.0.0
*/
interface TemplateInterface
Expand Down Expand Up @@ -49,4 +49,4 @@ public function setTemplate(string $template): TemplateInterface;
*/
public function render(array $data): string;

}
}
14 changes: 7 additions & 7 deletions src/View.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\View
* @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 4.0.0
*/
class View extends Utils\ArrayObject
Expand Down

0 comments on commit 32e2430

Please sign in to comment.