Skip to content

Commit

Permalink
Update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
nicksagona committed Feb 13, 2025
1 parent 47ad45c commit 4ba6881
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
strategy:
matrix:
php-versions: [ '8.2', '8.3' ]
phpunit-versions: ['11.5.0']

steps:
- uses: actions/checkout@v3
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"php": ">=8.2.0"
},
"require-dev": {
"phpunit/phpunit": "^11.0.0"
"phpunit/phpunit": "^11.5.0"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion src/Dir.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* @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.1
* @version 4.0.2
*/
class Dir implements \ArrayAccess, \Countable, \IteratorAggregate
{
Expand Down
2 changes: 1 addition & 1 deletion src/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
* @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.1
* @version 4.0.2
*/
class Exception extends \Exception {}

0 comments on commit 4ba6881

Please sign in to comment.