Skip to content

Commit a1339a6

Browse files
Start development of next major version
1 parent 81c1a3b commit a1339a6

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
name: "CI"
88

99
env:
10-
COMPOSER_ROOT_VERSION: "5.1.x-dev"
10+
COMPOSER_ROOT_VERSION: "6.0.x-dev"
1111

1212
permissions:
1313
contents: read
@@ -61,7 +61,6 @@ jobs:
6161
fail-fast: false
6262
matrix:
6363
php-version:
64-
- "8.2"
6564
- "8.3"
6665
- "8.4"
6766
- "8.5"

ChangeLog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

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

5+
## [6.0.0] - 2025-02-07
6+
7+
### Removed
8+
9+
* This component is no longer supported on PHP 8.2
10+
511
## [5.1.0] - 2024-08-27
612

713
### Added
@@ -168,6 +174,7 @@ No changes
168174

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

177+
[6.0.0]: https://github.com/sebastianbergmann/php-file-iterator/compare/5.1...main
171178
[5.1.0]: https://github.com/sebastianbergmann/php-file-iterator/compare/5.0.1...5.1.0
172179
[5.0.1]: https://github.com/sebastianbergmann/php-file-iterator/compare/5.0.0...5.0.1
173180
[5.0.0]: https://github.com/sebastianbergmann/php-file-iterator/compare/4.1...5.0.0

composer.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,18 @@
2121
},
2222
"config": {
2323
"platform": {
24-
"php": "8.2.0"
24+
"php": "8.3.0"
2525
},
2626
"optimize-autoloader": true,
2727
"sort-packages": true
2828
},
2929
"prefer-stable": true,
30+
"minimum-stability": "dev",
3031
"require": {
31-
"php": ">=8.2"
32+
"php": ">=8.3"
3233
},
3334
"require-dev": {
34-
"phpunit/phpunit": "^11.3"
35+
"phpunit/phpunit": "^12.0"
3536
},
3637
"autoload": {
3738
"classmap": [
@@ -40,7 +41,7 @@
4041
},
4142
"extra": {
4243
"branch-alias": {
43-
"dev-main": "5.1-dev"
44+
"dev-main": "6.0-dev"
4445
}
4546
}
4647
}

src/Iterator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
*/
2525
final class Iterator extends FilterIterator
2626
{
27-
public const PREFIX = 0;
28-
public const SUFFIX = 1;
27+
public const int PREFIX = 0;
28+
public const int SUFFIX = 1;
2929
private false|string $basePath;
3030

3131
/**

0 commit comments

Comments
 (0)