File tree 3 files changed +8
-15
lines changed
3 files changed +8
-15
lines changed Original file line number Diff line number Diff line change 17
17
strategy :
18
18
matrix :
19
19
php-version :
20
- - " 8.1 "
20
+ - " 8.2 "
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.2 "
43
+ - " 8.3 "
44
44
code-coverage :
45
45
- " none"
46
46
include :
47
- - php-version : " 8.1 "
47
+ - php-version : " 8.2 "
48
48
code-coverage : " pcov"
49
49
50
50
steps :
70
70
strategy :
71
71
matrix :
72
72
php-version :
73
- - " 8.1 "
73
+ - " 8.2 "
74
74
75
75
steps :
76
76
- uses : " actions/checkout@v4"
89
89
strategy :
90
90
matrix :
91
91
php-version :
92
- - " 8.1 "
92
+ - " 8.2 "
93
93
94
94
steps :
95
95
- uses : " actions/checkout@v4"
Original file line number Diff line number Diff line change 11
11
}
12
12
],
13
13
"require" : {
14
- "php" : " ~8.1 .0 || ~8.2 .0"
14
+ "php" : " ~8.2 .0 || ~8.3 .0"
15
15
},
16
16
"require-dev" : {
17
- "phpstan/phpstan" : " ^1.10.42 " ,
17
+ "phpstan/phpstan" : " ^1.10.44 " ,
18
18
"phpstan/phpstan-phpunit" : " ^1.3.15" ,
19
19
"phpstan/phpstan-strict-rules" : " ^1.5.2" ,
20
20
"phpunit/phpunit" : " ^10.4.2" ,
21
- "slam/php-cs-fixer-extensions" : " ^3.9" ,
22
- "slam/php-debug-r" : " ^1.8.1" ,
21
+ "slam/php-cs-fixer-extensions" : " ^3.10" ,
23
22
"symfony/console" : " ^6.3.8"
24
23
},
25
24
"autoload" : {
Original file line number Diff line number Diff line change 5
5
namespace SlamTest \ErrorHandler ;
6
6
7
7
use ErrorException ;
8
- use PHPUnit \Framework \Attributes \PreserveGlobalState ;
9
- use PHPUnit \Framework \Attributes \RunInSeparateProcess ;
10
8
use PHPUnit \Framework \TestCase ;
11
9
use RuntimeException ;
12
10
use Slam \ErrorHandler \ErrorHandler ;
@@ -74,8 +72,6 @@ public function testDefaultConfiguration(): void
74
72
self ::assertSame ($ memoryStream , $ errorHandler ->getErrorOutputStream ());
75
73
}
76
74
77
- #[RunInSeparateProcess]
78
- #[PreserveGlobalState(false )]
79
75
public function testRegisterBuiltinHandlers (): void
80
76
{
81
77
$ this ->errorHandler ->register ();
@@ -87,8 +83,6 @@ public function testRegisterBuiltinHandlers(): void
87
83
$ arrayPerVerificaErrori ['undefined_index ' ];
88
84
}
89
85
90
- #[RunInSeparateProcess]
91
- #[PreserveGlobalState(false )]
92
86
public function testScream (): void
93
87
{
94
88
$ scream = [
You can’t perform that action at this time.
0 commit comments