diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index 8303d3f..8794f14 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -16,6 +16,7 @@ jobs: strategy: matrix: php-versions: [ '8.2', '8.3' ] + phpunit-versions: ['11.5.0'] steps: - uses: actions/checkout@v3 @@ -24,6 +25,7 @@ jobs: uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-versions }} + tools: phpunit:${{ matrix.phpunit-versions }} #- name: Validate composer.json and composer.lock # run: composer validate diff --git a/README.md b/README.md index 1c93875..ca5bfcc 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Install `pop-dir` using Composer. Or, require it in your composer.json file "require": { - "popphp/pop-dir" : "^4.0.1" + "popphp/pop-dir" : "^4.0.2" } [Top](#pop-dir) diff --git a/composer.json b/composer.json index 3e3a5ae..4eed9e2 100644 --- a/composer.json +++ b/composer.json @@ -21,7 +21,7 @@ "php": ">=8.2.0" }, "require-dev": { - "phpunit/phpunit": "^11.0.0" + "phpunit/phpunit": "^11.5.0" }, "autoload": { "psr-4": { diff --git a/src/Dir.php b/src/Dir.php index c9fe8f7..4e56563 100644 --- a/src/Dir.php +++ b/src/Dir.php @@ -26,7 +26,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.1 + * @version 4.0.2 */ class Dir implements \ArrayAccess, \Countable, \IteratorAggregate { diff --git a/src/Exception.php b/src/Exception.php index 9f9633b..a426d68 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.1 + * @version 4.0.2 */ class Exception extends \Exception {}