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 7
7
name : " CI"
8
8
9
9
env :
10
- COMPOSER_ROOT_VERSION : " 5.1 .x-dev"
10
+ COMPOSER_ROOT_VERSION : " 6.0 .x-dev"
11
11
12
12
permissions :
13
13
contents : read
61
61
fail-fast : false
62
62
matrix :
63
63
php-version :
64
- - " 8.2"
65
64
- " 8.3"
66
65
- " 8.4"
67
66
- " 8.5"
Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to this project will be documented in this file. This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
4
4
5
+ ## [ 6.0.0] - 2025-02-07
6
+
7
+ ### Removed
8
+
9
+ * This component is no longer supported on PHP 8.2
10
+
5
11
## [ 5.1.0] - 2024-08-27
6
12
7
13
### Added
@@ -168,6 +174,7 @@ No changes
168
174
169
175
* [ #23 ] ( https://github.com/sebastianbergmann/php-file-iterator/pull/23 ) : Added support for wildcards (glob) in exclude
170
176
177
+ [ 6.0.0 ] : https://github.com/sebastianbergmann/php-file-iterator/compare/5.1...main
171
178
[ 5.1.0 ] : https://github.com/sebastianbergmann/php-file-iterator/compare/5.0.1...5.1.0
172
179
[ 5.0.1 ] : https://github.com/sebastianbergmann/php-file-iterator/compare/5.0.0...5.0.1
173
180
[ 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 21
21
},
22
22
"config" : {
23
23
"platform" : {
24
- "php" : " 8.2 .0"
24
+ "php" : " 8.3 .0"
25
25
},
26
26
"optimize-autoloader" : true ,
27
27
"sort-packages" : true
28
28
},
29
29
"prefer-stable" : true ,
30
+ "minimum-stability" : " dev" ,
30
31
"require" : {
31
- "php" : " >=8.2 "
32
+ "php" : " >=8.3 "
32
33
},
33
34
"require-dev" : {
34
- "phpunit/phpunit" : " ^11.3 "
35
+ "phpunit/phpunit" : " ^12.0 "
35
36
},
36
37
"autoload" : {
37
38
"classmap" : [
40
41
},
41
42
"extra" : {
42
43
"branch-alias" : {
43
- "dev-main" : " 5.1 -dev"
44
+ "dev-main" : " 6.0 -dev"
44
45
}
45
46
}
46
47
}
Original file line number Diff line number Diff line change 24
24
*/
25
25
final class Iterator extends FilterIterator
26
26
{
27
- public const PREFIX = 0 ;
28
- public const SUFFIX = 1 ;
27
+ public const int PREFIX = 0 ;
28
+ public const int SUFFIX = 1 ;
29
29
private false |string $ basePath ;
30
30
31
31
/**
You can’t perform that action at this time.
0 commit comments