Skip to content

Commit

Permalink
Start development of next major version
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Jan 15, 2025
1 parent 81c1a3b commit a1339a6
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
name: "CI"

env:
COMPOSER_ROOT_VERSION: "5.1.x-dev"
COMPOSER_ROOT_VERSION: "6.0.x-dev"

permissions:
contents: read
Expand Down Expand Up @@ -61,7 +61,6 @@ jobs:
fail-fast: false
matrix:
php-version:
- "8.2"
- "8.3"
- "8.4"
- "8.5"
Expand Down
7 changes: 7 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/).

## [6.0.0] - 2025-02-07

### Removed

* This component is no longer supported on PHP 8.2

## [5.1.0] - 2024-08-27

### Added
Expand Down Expand Up @@ -168,6 +174,7 @@ No changes

* [#23](https://github.com/sebastianbergmann/php-file-iterator/pull/23): Added support for wildcards (glob) in exclude

[6.0.0]: https://github.com/sebastianbergmann/php-file-iterator/compare/5.1...main
[5.1.0]: https://github.com/sebastianbergmann/php-file-iterator/compare/5.0.1...5.1.0
[5.0.1]: https://github.com/sebastianbergmann/php-file-iterator/compare/5.0.0...5.0.1
[5.0.0]: https://github.com/sebastianbergmann/php-file-iterator/compare/4.1...5.0.0
Expand Down
9 changes: 5 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,18 @@
},
"config": {
"platform": {
"php": "8.2.0"
"php": "8.3.0"
},
"optimize-autoloader": true,
"sort-packages": true
},
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": ">=8.2"
"php": ">=8.3"
},
"require-dev": {
"phpunit/phpunit": "^11.3"
"phpunit/phpunit": "^12.0"
},
"autoload": {
"classmap": [
Expand All @@ -40,7 +41,7 @@
},
"extra": {
"branch-alias": {
"dev-main": "5.1-dev"
"dev-main": "6.0-dev"
}
}
}
4 changes: 2 additions & 2 deletions src/Iterator.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
*/
final class Iterator extends FilterIterator
{
public const PREFIX = 0;
public const SUFFIX = 1;
public const int PREFIX = 0;
public const int SUFFIX = 1;
private false|string $basePath;

/**
Expand Down

0 comments on commit a1339a6

Please sign in to comment.