Skip to content

Commit db0a3c0

Browse files
committed
Update version
1 parent 0f7531f commit db0a3c0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+44
-42
lines changed

.github/workflows/phpunit.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
php-versions: [ '8.2', '8.3' ]
19+
phpunit-versions: ['11.5.0']
1920

2021
steps:
2122
- uses: actions/checkout@v3
@@ -24,6 +25,7 @@ jobs:
2425
uses: shivammathur/setup-php@v2
2526
with:
2627
php-version: ${{ matrix.php-versions }}
28+
tools: phpunit:${{ matrix.phpunit-versions }}
2729

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

README.md

Lines changed: 1 addition & 1 deletion

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
],
2020
"require": {
2121
"php": ">=8.2.0",
22-
"popphp/pop-utils" : "^2.1.3"
22+
"popphp/pop-utils" : "^2.2.0"
2323
},
2424
"require-dev": {
25-
"phpunit/phpunit": "^11.0.0"
25+
"phpunit/phpunit": "^11.5.0"
2626
},
2727
"autoload": {
2828
"psr-4": {

src/AbstractValidator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* @author Nick Sagona, III <[email protected]>
2222
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
2323
* @license http://www.popphp.org/license New BSD License
24-
* @version 4.1.2
24+
* @version 4.1.3
2525
*/
2626
abstract class AbstractValidator implements ValidatorInterface
2727
{

src/Alpha.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* @author Nick Sagona, III <[email protected]>
2222
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
2323
* @license http://www.popphp.org/license New BSD License
24-
* @version 4.1.2
24+
* @version 4.1.3
2525
*/
2626
class Alpha extends AbstractValidator
2727
{

src/AlphaNumeric.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* @author Nick Sagona, III <[email protected]>
2222
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
2323
* @license http://www.popphp.org/license New BSD License
24-
* @version 4.1.2
24+
* @version 4.1.3
2525
*/
2626
class AlphaNumeric extends AbstractValidator
2727
{

src/Between.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* @author Nick Sagona, III <[email protected]>
2222
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
2323
* @license http://www.popphp.org/license New BSD License
24-
* @version 4.1.2
24+
* @version 4.1.3
2525
*/
2626
class Between extends AbstractValidator
2727
{

src/BetweenInclude.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* @author Nick Sagona, III <[email protected]>
2222
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
2323
* @license http://www.popphp.org/license New BSD License
24-
* @version 4.1.2
24+
* @version 4.1.3
2525
*/
2626
class BetweenInclude extends AbstractValidator
2727
{

src/Contains.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* @author Nick Sagona, III <[email protected]>
2222
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
2323
* @license http://www.popphp.org/license New BSD License
24-
* @version 4.1.2
24+
* @version 4.1.3
2525
*/
2626
class Contains extends AbstractValidator
2727
{

src/CreditCard.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* @author Nick Sagona, III <[email protected]>
2222
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
2323
* @license http://www.popphp.org/license New BSD License
24-
* @version 4.1.2
24+
* @version 4.1.3
2525
*/
2626
class CreditCard extends AbstractValidator
2727
{

0 commit comments

Comments
 (0)