File tree 3 files changed +9
-26
lines changed
3 files changed +9
-26
lines changed Original file line number Diff line number Diff line change 7
7
8
8
jobs :
9
9
run :
10
- runs-on : ubuntu-18.04
10
+ runs-on : ubuntu-latest
11
11
strategy :
12
12
fail-fast : false
13
13
matrix :
14
14
php :
15
- - ' 8.1'
16
15
- ' 8.2'
17
16
coverage : ['none']
18
17
symfony-versions :
19
- - ' 4.4.*'
20
- - ' 5.1.*'
21
- - ' 5.2.*'
22
- - ' 5.3.*'
18
+ - ' 6.3.*'
23
19
include :
24
- - php : ' 7.4'
25
- symfony-versions : ' ^4.4'
26
- coverage : ' none'
27
- - php : ' 7.4'
28
- symfony-versions : ' ^5.4'
29
- coverage : ' none'
30
- - php : ' 8.0'
31
- symfony-versions : ' ^5.4'
32
- coverage : ' none'
33
- - php : ' 8.0'
34
- symfony-versions : ' ^6.0'
35
- coverage : ' none'
36
- - description : ' Log Code Coverage'
37
20
php : ' 8.2'
38
21
coverage : ' xdebug'
39
- symfony-versions : ' ^6.2 '
22
+ symfony-versions : ' ^6.3 '
40
23
41
24
name : PHP ${{ matrix.php }} Symfony ${{ matrix.symfony-versions }} ${{ matrix.description }}
42
25
steps :
Original file line number Diff line number Diff line change 26
26
],
27
27
"license" : " MIT" ,
28
28
"require" : {
29
- "php" : " ^7.4 || ^8.0 " ,
29
+ "php" : " ^8.2 " ,
30
30
"behat/behat" : " ^3.0" ,
31
- "symfony/messenger" : " ^4.4 || ^5.0 || ^6.0 " ,
32
- "symfony/serializer" : " ^4.4 || ^5.0 || ^6.0 " ,
33
- "symfony/dependency-injection" : " ^4.4 || ^5.4 || ^6.0 " ,
34
- "symfony/http-kernel" : " ^4.4 || ^5.4 || ^6.0 " ,
31
+ "symfony/messenger" : " ^6.3 " ,
32
+ "symfony/serializer" : " ^6.3 " ,
33
+ "symfony/dependency-injection" : " ^6.3 " ,
34
+ "symfony/http-kernel" : " ^6.3 " ,
35
35
"macpaw/similar-arrays" : " ^1.0"
36
36
},
37
37
"require-dev" : {
Original file line number Diff line number Diff line change 9
9
use Exception ;
10
10
use SimilarArrays \SimilarArray ;
11
11
use Symfony \Component \DependencyInjection \ContainerInterface ;
12
- use Symfony \Component \Messenger \Transport \InMemoryTransport ;
12
+ use Symfony \Component \Messenger \Transport \InMemory \ InMemoryTransport ;
13
13
use Symfony \Component \Serializer \Normalizer \NormalizerInterface ;
14
14
15
15
class MessengerContext extends SimilarArray implements Context
You can’t perform that action at this time.
0 commit comments