Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
nicksagona committed Nov 29, 2024
1 parent 1c28887 commit 5e6f5ce
Show file tree
Hide file tree
Showing 53 changed files with 64 additions and 58 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: simplexml

#- name: Validate composer.json and composer.lock
# run: composer validate

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.2.0
## 4.2.1

* [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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Install `pop-form` using Composer.
Or, require it in your composer.json file

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

[Top](#pop-form)
Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,20 @@
],
"require": {
"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": "*"
"popphp/pop-acl": "^4.1.1",
"popphp/pop-dom": "^4.0.4",
"popphp/pop-filter": "^4.0.2",
"popphp/pop-utils": "^2.1.3",
"popphp/pop-validator": "^4.1.2"
},
"require-dev": {
"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",
"popphp/pop-view": "To use render the form fields with a view"
"popphp/pop-view": "To use render the form fields with a view",
"ext-simplexml": "For handling XML"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion src/AclForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

class AclForm extends Form
Expand Down
2 changes: 1 addition & 1 deletion src/Element/AbstractElement.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/
abstract class AbstractElement extends Child implements ElementInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Element/AbstractSelect.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

abstract class AbstractSelect extends AbstractElement
Expand Down
2 changes: 1 addition & 1 deletion src/Element/Button.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

class Button extends AbstractElement
Expand Down
2 changes: 1 addition & 1 deletion src/Element/CheckboxSet.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

class CheckboxSet extends AbstractElement
Expand Down
2 changes: 1 addition & 1 deletion src/Element/ElementInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/
interface ElementInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Element/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/
class Exception extends \Exception {}
2 changes: 1 addition & 1 deletion src/Element/Input.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

class Input extends AbstractElement
Expand Down
2 changes: 1 addition & 1 deletion src/Element/Input/Button.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

class Button extends Element\Input
Expand Down
2 changes: 1 addition & 1 deletion src/Element/Input/Captcha.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

class Captcha extends Text
Expand Down
2 changes: 1 addition & 1 deletion src/Element/Input/Checkbox.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

class Checkbox extends Element\Input
Expand Down
2 changes: 1 addition & 1 deletion src/Element/Input/Color.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

class Color extends Element\Input
Expand Down
2 changes: 1 addition & 1 deletion src/Element/Input/Csrf.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

class Csrf extends Hidden
Expand Down
2 changes: 1 addition & 1 deletion src/Element/Input/Datalist.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

class Datalist extends Text
Expand Down
2 changes: 1 addition & 1 deletion src/Element/Input/Date.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

class Date extends Element\Input
Expand Down
2 changes: 1 addition & 1 deletion src/Element/Input/DateTime.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

class DateTime extends Element\Input
Expand Down
2 changes: 1 addition & 1 deletion src/Element/Input/DateTimeLocal.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

class DateTimeLocal extends Element\Input
Expand Down
2 changes: 1 addition & 1 deletion src/Element/Input/Email.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

class Email extends Element\Input
Expand Down
2 changes: 1 addition & 1 deletion src/Element/Input/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/
class Exception extends \Exception {}
2 changes: 1 addition & 1 deletion src/Element/Input/File.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

class File extends Element\Input
Expand Down
2 changes: 1 addition & 1 deletion src/Element/Input/Hidden.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

class Hidden extends Element\Input
Expand Down
2 changes: 1 addition & 1 deletion src/Element/Input/Month.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

class Month extends Element\Input
Expand Down
2 changes: 1 addition & 1 deletion src/Element/Input/Number.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

class Number extends Element\Input
Expand Down
2 changes: 1 addition & 1 deletion src/Element/Input/Password.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

class Password extends Element\Input
Expand Down
2 changes: 1 addition & 1 deletion src/Element/Input/Radio.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

class Radio extends Element\Input
Expand Down
2 changes: 1 addition & 1 deletion src/Element/Input/Range.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

class Range extends Element\Input
Expand Down
2 changes: 1 addition & 1 deletion src/Element/Input/Reset.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

class Reset extends Element\Input
Expand Down
2 changes: 1 addition & 1 deletion src/Element/Input/Search.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

class Search extends Element\Input
Expand Down
2 changes: 1 addition & 1 deletion src/Element/Input/Submit.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

class Submit extends Element\Input
Expand Down
2 changes: 1 addition & 1 deletion src/Element/Input/Tel.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

class Tel extends Element\Input
Expand Down
2 changes: 1 addition & 1 deletion src/Element/Input/Text.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

class Text extends Element\Input
Expand Down
2 changes: 1 addition & 1 deletion src/Element/Input/Time.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

class Time extends Element\Input
Expand Down
2 changes: 1 addition & 1 deletion src/Element/Input/Url.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

class Url extends Element\Input
Expand Down
2 changes: 1 addition & 1 deletion src/Element/Input/Week.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

class Week extends Element\Input
Expand Down
2 changes: 1 addition & 1 deletion src/Element/RadioSet.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

class RadioSet extends AbstractElement
Expand Down
2 changes: 1 addition & 1 deletion src/Element/Select.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

class Select extends AbstractSelect
Expand Down
2 changes: 1 addition & 1 deletion src/Element/Select/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/
class Exception extends \Exception {}
2 changes: 1 addition & 1 deletion src/Element/Select/Optgroup.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.2.0
* @version 4.2.1
*/

class Optgroup extends Child
Expand Down
Loading

0 comments on commit 5e6f5ce

Please sign in to comment.