File tree Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 17
17
strategy :
18
18
matrix :
19
19
php-version :
20
- - " 8.2 "
20
+ - " 8.3 "
21
21
22
22
steps :
23
23
- uses : " actions/checkout@v4"
@@ -40,11 +40,11 @@ jobs:
40
40
strategy :
41
41
matrix :
42
42
php-version :
43
- - " 8.3 "
43
+ - " 8.4 "
44
44
code-coverage :
45
45
- " none"
46
46
include :
47
- - php-version : " 8.2 "
47
+ - php-version : " 8.3 "
48
48
code-coverage : " pcov"
49
49
50
50
steps :
70
70
strategy :
71
71
matrix :
72
72
php-version :
73
- - " 8.2 "
73
+ - " 8.3 "
74
74
75
75
steps :
76
76
- uses : " actions/checkout@v4"
89
89
strategy :
90
90
matrix :
91
91
php-version :
92
- - " 8.2 "
92
+ - " 8.3 "
93
93
94
94
steps :
95
95
- uses : " actions/checkout@v4"
Original file line number Diff line number Diff line change 10
10
}
11
11
],
12
12
"require" : {
13
- "php" : " ~8.2 .0 || ~8.3 .0" ,
13
+ "php" : " ~8.3 .0 || ~8.4 .0" ,
14
14
"ext-mbstring" : " *" ,
15
15
"ext-tokenizer" : " *" ,
16
16
"friendsofphp/php-cs-fixer" : " ^3.64.0"
Original file line number Diff line number Diff line change 6
6
7
7
use PHPUnit \Framework \Attributes \CoversClass ;
8
8
use PHPUnit \Framework \Attributes \DataProvider ;
9
- use PHPUnit \Framework \Attributes \RequiresPhp ;
10
9
use SlamCsFixer \FinalInternalClassFixer ;
11
10
12
11
#[CoversClass(FinalInternalClassFixer::class)]
@@ -69,7 +68,6 @@ public static function provideCases(): array
69
68
];
70
69
}
71
70
72
- #[RequiresPhp('8.2 ' )]
73
71
#[DataProvider('provide82Cases ' )]
74
72
public function test82Fix (string $ expected , ?string $ input = null ): void
75
73
{
You can’t perform that action at this time.
0 commit comments