File tree Expand file tree Collapse file tree 4 files changed +15
-8
lines changed Expand file tree Collapse file tree 4 files changed +15
-8
lines changed Original file line number Diff line number Diff line change 77name : " CI"
88
99env :
10- COMPOSER_ROOT_VERSION : " 5.1 .x-dev"
10+ COMPOSER_ROOT_VERSION : " 6.0 .x-dev"
1111
1212permissions :
1313 contents : read
6161 fail-fast : false
6262 matrix :
6363 php-version :
64- - " 8.2"
6564 - " 8.3"
6665 - " 8.4"
6766 - " 8.5"
Original file line number Diff line number Diff line change 22
33All 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
Original file line number Diff line number Diff line change 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" : [
4041 },
4142 "extra" : {
4243 "branch-alias" : {
43- "dev-main" : " 5.1 -dev"
44+ "dev-main" : " 6.0 -dev"
4445 }
4546 }
4647}
Original file line number Diff line number Diff line change 2424 */
2525final 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 /**
You can’t perform that action at this time.
0 commit comments