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 11d6b5c commit 32eef4e
Show file tree
Hide file tree
Showing 54 changed files with 412 additions and 413 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 CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
CHANGELOG
=========

## 4.0.0
## 4.2.0

* [UPDATED] Updated to a minimum of PHP 7.3 and PHPUnit 9.0. Migrated from TravisCI to GitHub Actions for CI.

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
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ pop-form
[![Build Status](https://github.com/popphp/pop-form/workflows/phpunit/badge.svg)](https://github.com/popphp/pop-form/actions)
[![Coverage Status](http://cc.popphp.org/coverage.php?comp=pop-form)](http://cc.popphp.org/pop-form/)

[![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 Down Expand Up @@ -32,7 +31,7 @@ as granular control over field validation. Features include:
* Filtering
* Dynamic field generation based on the fields of a database table

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

[Top](#pop-form)

Expand All @@ -46,7 +45,7 @@ Install `pop-form` using Composer.
Or, require it in your composer.json file

"require": {
"popphp/pop-form" : "^4.0.0"
"popphp/pop-form" : "^4.2.0"
}

[Top](#pop-form)
Expand Down
24 changes: 12 additions & 12 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,27 @@
"pop",
"pop php"
],
"homepage": "http://www.popphp.org/",
"homepage": "https://github.com/popphp/pop-form",
"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-acl": "^4.0.0",
"popphp/pop-dom": "^4.0.0",
"popphp/pop-filter": "^4.0.0",
"popphp/pop-utils": "^2.1.0",
"popphp/pop-validator": "^4.0.0",
"php": ">=8.2.0",
"popphp/pop-acl": "^4.1.0",
"popphp/pop-dom": "^4.0.3",
"popphp/pop-filter": "^4.0.1",
"popphp/pop-utils": "^2.1.2",
"popphp/pop-validator": "^4.1.1",
"ext-simplexml": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.0.0",
"popphp/pop-db": "^6.5.0"
"phpunit/phpunit": "^11.0.0",
"popphp/pop-db": "^6.5.11"
},
"suggest": {
"popphp/pop-db": "To use the dynamic field generation based on database table columns",
Expand All @@ -51,7 +51,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
"dev-master": "4.2.x-dev"
}
}
}
18 changes: 9 additions & 9 deletions src/AclForm.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 @@ -22,10 +22,10 @@
*
* @category Pop
* @package Pop\Form
* @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
* @version 4.0.0
* @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.2.0
*/

class AclForm extends Form
Expand Down Expand Up @@ -189,4 +189,4 @@ public function render(int $depth = 0, ?string $indent = null, bool $inner = fal
return parent::render($depth, $indent, $inner);
}

}
}
16 changes: 8 additions & 8 deletions src/Element/AbstractElement.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,10 +21,10 @@
*
* @category Pop
* @package Pop\Form
* @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
* @version 4.0.0
* @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.2.0
*/
abstract class AbstractElement extends Child implements ElementInterface
{
Expand Down
16 changes: 8 additions & 8 deletions src/Element/AbstractSelect.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,10 +20,10 @@
*
* @category Pop
* @package Pop\Form
* @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
* @version 4.0.0
* @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.2.0
*/

abstract class AbstractSelect extends AbstractElement
Expand Down
16 changes: 8 additions & 8 deletions src/Element/Button.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,10 +18,10 @@
*
* @category Pop
* @package Pop\Form
* @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
* @version 4.0.0
* @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.2.0
*/

class Button extends AbstractElement
Expand Down
16 changes: 8 additions & 8 deletions src/Element/CheckboxSet.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,10 +20,10 @@
*
* @category Pop
* @package Pop\Form
* @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
* @version 4.0.0
* @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.2.0
*/

class CheckboxSet extends AbstractElement
Expand Down
16 changes: 8 additions & 8 deletions src/Element/ElementInterface.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,10 +18,10 @@
*
* @category Pop
* @package Pop\Form
* @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
* @version 4.0.0
* @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.2.0
*/
interface ElementInterface
{
Expand Down
16 changes: 8 additions & 8 deletions src/Element/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\Form
* @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
* @version 4.0.0
* @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.2.0
*/
class Exception extends \Exception {}
16 changes: 8 additions & 8 deletions src/Element/Input.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,10 +18,10 @@
*
* @category Pop
* @package Pop\Form
* @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
* @version 4.0.0
* @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.2.0
*/

class Input extends AbstractElement
Expand Down
16 changes: 8 additions & 8 deletions src/Element/Input/Button.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,10 +20,10 @@
*
* @category Pop
* @package Pop\Form
* @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
* @version 4.0.0
* @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.2.0
*/

class Button extends Element\Input
Expand Down
Loading

0 comments on commit 32eef4e

Please sign in to comment.