File tree Expand file tree Collapse file tree 8 files changed +23
-78
lines changed Expand file tree Collapse file tree 8 files changed +23
-78
lines changed Original file line number Diff line number Diff line change 6
6
pull_request :
7
7
push :
8
8
branches :
9
- - " 1 .x.x"
9
+ - " 3 .x.x"
10
10
11
11
jobs :
12
12
coding-standards :
20
20
- " locked"
21
21
php-version :
22
22
- " 8.1"
23
+ - " 8.2"
23
24
operating-system :
24
25
- " ubuntu-latest"
25
26
Original file line number Diff line number Diff line change 6
6
pull_request :
7
7
push :
8
8
branches :
9
- - " 1 .x.x"
9
+ - " 3 .x.x"
10
10
11
11
jobs :
12
12
mutation-tests :
20
20
- " locked"
21
21
php-version :
22
22
- " 8.1"
23
+ - " 8.2"
23
24
operating-system :
24
25
- " ubuntu-latest"
25
26
Original file line number Diff line number Diff line change 6
6
pull_request :
7
7
push :
8
8
branches :
9
- - " 1 .x.x"
9
+ - " 3 .x.x"
10
10
11
11
jobs :
12
12
phpunit :
20
20
- " locked"
21
21
php-version :
22
22
- " 8.1"
23
+ - " 8.2"
23
24
operating-system :
24
25
- " ubuntu-latest"
25
26
Original file line number Diff line number Diff line change 6
6
pull_request :
7
7
push :
8
8
branches :
9
- - " 1 .x.x"
9
+ - " 3 .x.x"
10
10
11
11
jobs :
12
12
static-analysis-psalm :
20
20
- " locked"
21
21
php-version :
22
22
- " 8.1"
23
+ - " 8.2"
23
24
operating-system :
24
25
- " ubuntu-latest"
25
26
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 14
14
}
15
15
],
16
16
"require" : {
17
- "php" : " >=8.1" ,
18
- "antidot-fw/framework" : " ^2.0.0BETA1" ,
17
+ "php" : " ~8.1.0 || ~8.2.0" ,
18
+ "antidot-fw/framework" : " ^2.0.0" ,
19
+ "laminas/laminas-httphandlerrunner" : " ^2.6" ,
19
20
"nyholm/psr7" : " ^1.4" ,
20
21
"nyholm/psr7-server" : " ^1.0" ,
21
22
"psr/http-server-middleware" : " ^1.0" ,
22
23
"react/http" : " ^1.5" ,
23
- "symfony/runtime" : " ^5.3"
24
+ "symfony/runtime" : " ^5.3 || ^6.3 "
24
25
},
25
26
"require-dev" : {
26
- "infection/infection" : " ^0.25" ,
27
27
"phpro/grumphp" : " ^1.0" ,
28
28
"phpstan/phpstan" : " ^1.2" ,
29
29
"phpunit/phpunit" : " ^9.0" ,
30
- "roave/infection-static-analysis-plugin" : " ^1.10 " ,
30
+ "roave/infection-static-analysis-plugin" : " ^1.32 " ,
31
31
"squizlabs/php_codesniffer" : " ^3.4" ,
32
32
"symfony/var-dumper" : " ^5.0" ,
33
33
"vimeo/psalm" : " ^4.0.0"
58
58
"test" : " phpunit --colors=always"
59
59
},
60
60
"config" : {
61
- "sort-packages" : true
61
+ "sort-packages" : true ,
62
+ "allow-plugins" : {
63
+ "infection/extension-installer" : true ,
64
+ "phpro/grumphp" : true ,
65
+ "symfony/runtime" : true
66
+ }
62
67
}
63
68
}
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" ?>
2
2
<psalm
3
- totallyTyped =" false"
4
3
errorLevel =" 1"
5
4
xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
6
5
xmlns =" https://getpsalm.org/schema/config"
Original file line number Diff line number Diff line change @@ -20,6 +20,10 @@ final class SyncRunnerTest extends TestCase
20
20
public function testItShouldEmitApplicationResponse (): void
21
21
{
22
22
$ container = $ this ->createMock (ContainerInterface::class);
23
+ $ container ->expects (self ::once ())
24
+ ->method ('has ' )
25
+ ->with ('test_middleware ' )
26
+ ->willReturn (true );
23
27
$ container ->expects (self ::once ())
24
28
->method ('get ' )
25
29
->with ('test_middleware ' )
You can’t perform that action at this time.
0 commit comments