File tree 4 files changed +20
-12
lines changed
4 files changed +20
-12
lines changed Original file line number Diff line number Diff line change @@ -39,15 +39,14 @@ jobs:
39
39
run : ./vendor/bin/phpstan analyse
40
40
41
41
test :
42
- needs : quality
43
42
strategy :
44
43
matrix :
45
- os : ['ubuntu-18.04', 'ubuntu- 20.04']
46
- version : [ '7.4', '8.0', '8.1']
44
+ os : ['ubuntu-20.04']
45
+ version : [ '7.4', '8.0', '8.1', '8.2' ]
47
46
include :
48
- - os : ' ubuntu-18 .04'
47
+ - os : ' ubuntu-20 .04'
49
48
version : ' 7.2'
50
- - os : ' ubuntu-18 .04'
49
+ - os : ' ubuntu-20 .04'
51
50
version : ' 7.3'
52
51
- os : ' ubuntu-20.04'
53
52
version : ' 7.4'
58
57
- os : ' ubuntu-20.04'
59
58
version : ' 8.1'
60
59
symfony : ' ^6.0'
60
+ - os : ' ubuntu-20.04'
61
+ version : ' 8.2'
62
+ symfony : ' ^7.0'
61
63
runs-on : ${{ matrix.os }}
62
64
steps :
63
65
- uses : actions/checkout@v3
Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ 1.0.3] - 2024-06-26
8
+ ### Added
9
+ * [ #71 ] ( https://github.com/Daniel-Marynicz/BehatParallelExtension/pull/71 ) Support for symfony 7.0.
10
+
7
11
## [ 1.0.2] - 2024-05-06
8
12
### Fixed
9
13
* [ #68 ] ( https://github.com/Daniel-Marynicz/BehatParallelExtension/pull/68 ) Behat use 'paths' instead 'path' argument.
Original file line number Diff line number Diff line change 14
14
"require" : {
15
15
"php" : " >=7.2" ,
16
16
"behat/behat" : " ^3.6" ,
17
- "symfony/process" : " ^2.7.52 || ^3.0 || ^4.0 || ^5.0 || ^6.0" ,
18
- "symfony/console" : " ^2.7.52 || ^2.8.33 || ^3.3.15 || ^3.4.3 || ^4.0 || ^5.0 || ^6.0" ,
19
- "symfony/serializer" : " ^2.7.52 || ^3.0 || ^4.0 || ^5.0 || ^6.0" ,
20
- "symfony/dependency-injection" : " ^2.7.52 || ^3.0 || ^4.0 || ^4.1.12 || ^5.0 || ^6.0" ,
21
- "symfony/event-dispatcher" : " ^2.7.52 || ^3.0 || ^4.0 || ^5.0 || ^6.0" ,
22
- "symfony/yaml" : " ^2.7.52 || ^3.0 || ^4.0 || ^5.0 || ^6.0" ,
23
- "symfony/expression-language" : " ^2.7.52 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
17
+ "symfony/process" : " ^2.7.52 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0 " ,
18
+ "symfony/console" : " ^2.7.52 || ^2.8.33 || ^3.3.15 || ^3.4.3 || ^4.0 || ^5.0 || ^6.0 || ^7.0 " ,
19
+ "symfony/serializer" : " ^2.7.52 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0 " ,
20
+ "symfony/dependency-injection" : " ^2.7.52 || ^3.0 || ^4.0 || ^4.1.12 || ^5.0 || ^6.0 || ^7.0 " ,
21
+ "symfony/event-dispatcher" : " ^2.7.52 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0 " ,
22
+ "symfony/yaml" : " ^2.7.52 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0 " ,
23
+ "symfony/expression-language" : " ^2.7.52 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0 "
24
24
},
25
25
"require-dev" : {
26
26
"phpunit/phpunit" : " ^8.5 || ^9.0" ,
Original file line number Diff line number Diff line change 7
7
use PHPUnit \Framework \TestCase ;
8
8
use Symfony \Component \Config \Definition \Builder \ArrayNodeDefinition ;
9
9
use Symfony \Component \Config \Definition \Builder \NodeBuilder ;
10
+ use Symfony \Component \Config \Definition \Builder \NodeDefinition ;
10
11
use Symfony \Component \DependencyInjection \ContainerBuilder ;
11
12
use Symfony \Component \DependencyInjection \Definition ;
12
13
@@ -20,6 +21,7 @@ public function test(): void
20
21
$ arrayBuilder = $ this ->createMock (ArrayNodeDefinition::class);
21
22
$ nodeBuilder = $ this ->createMock (NodeBuilder::class);
22
23
$ nodeBuilder ->method ('append ' )->willReturn ($ nodeBuilder );
24
+ $ nodeBuilder ->method ('end ' )->willReturn ($ arrayBuilder );
23
25
$ arrayBuilder
24
26
->method ('children ' )
25
27
->willReturn ($ nodeBuilder );
You can’t perform that action at this time.
0 commit comments