@@ -63,27 +63,28 @@ jobs:
63
63
symfony-version : ' ${{ needs.fetch-supported-versions.outputs.symfony-max }}'
64
64
# Fix - behat/gherkin => Avoid issue with behat <-> gherkin packages (See https://github.com/Behat/Gherkin/issues/317)
65
65
pkg-extra-constraints : --with 'behat/gherkin:~4.12.0'
66
- - job-name : Up to date versions - Sf 5 .4 case
66
+ - job-name : Up to date versions - Sf 6 .4 case
67
67
php-version : ' ${{ needs.fetch-supported-versions.outputs.php-max }}'
68
- symfony-version : ' 5 .4'
68
+ symfony-version : ' 6 .4'
69
69
# Fix - behat/gherkin => Avoid issue with behat <-> gherkin packages (See https://github.com/Behat/Gherkin/issues/317)
70
- # Fix - symfony/yaml - Avoid issue with Sf YAML 6.4+ and Framework bundle
71
- pkg-extra-constraints : --with 'behat/gherkin:~4.12.0' ${{ ( needs.fetch-supported-versions.outputs.symfony-max == '6.4' ) && '--with "symfony/yaml:~6.4.0"' || '' }}
70
+ pkg-extra-constraints : --with 'behat/gherkin:~4.12.0'
72
71
- job-name : Bare minimum # => Lowest versions allowed by composer config
73
72
php-version : ' ${{ needs.fetch-supported-versions.outputs.php-min }}'
74
73
symfony-version : ' ${{ needs.fetch-supported-versions.outputs.symfony-min }}'
75
- - job-name : Bare minimum - Sf 5.4 case
76
- php-version : ' ${{ needs.fetch-supported-versions.outputs.php-min }}'
77
- symfony-version : ' 5.4'
78
- - job-name : Late PHP migration # => Highest symfony version with lowest php version allowed by composer config
74
+ - job-name : Bare minimum - Sf 6.4 case
79
75
# Fix - Sf 6.4 require php 8.1 minimum !
80
- php-version : ${{ ( needs.fetch-supported-versions.outputs.symfony-max == '6.4' && needs.fetch-supported-versions.outputs.php-min == '8.0' ) && '8.1' || needs.fetch-supported-versions.outputs.php-min }}
76
+ php-version : ${{ ( needs.fetch-supported-versions.outputs.php-min == '8.0' ) && '8.1' || needs.fetch-supported-versions.outputs.php-min }}
77
+ symfony-version : ' 6.4'
78
+ - job-name : Late PHP migration # => Highest symfony version with lowest php version allowed by composer config
79
+ # Fix - Sf 7.0 require php 8.1 minimum, most of deps require 8.2 !
80
+ php-version : ${{ ( needs.fetch-supported-versions.outputs.symfony-max == '7.0' && needs.fetch-supported-versions.outputs.php-min == '8.0' ) && '8.2' || needs.fetch-supported-versions.outputs.php-min }}
81
81
symfony-version : ' ${{ needs.fetch-supported-versions.outputs.symfony-max }}'
82
82
- job-name : Late Symfony migration # => Lowest symfony version with highest php version allowed by composer config
83
83
php-version : ' ${{ needs.fetch-supported-versions.outputs.php-max }}'
84
84
symfony-version : ' ${{ needs.fetch-supported-versions.outputs.symfony-min }}'
85
85
# Fix - behat/gherkin => Avoid issue with behat <-> gherkin packages (See https://github.com/Behat/Gherkin/issues/317)
86
- pkg-extra-constraints : --with 'behat/gherkin:~4.12.0'
86
+ # Fix - symfony/yaml => Avoid issue between symfony/yaml and symfony/framework-bundle (not compatible with some versions due to incomplete function signatures)
87
+ pkg-extra-constraints : --with 'behat/gherkin:~4.12.0' ${{ ( needs.fetch-supported-versions.outputs.symfony-min == '5.4' && needs.fetch-supported-versions.outputs.php-max == '8.4' ) && '--with "symfony/yaml:~6.4.0"' || '' }}
87
88
steps :
88
89
- name : Check out code
89
90
uses : actions/checkout@v5
@@ -251,20 +252,19 @@ jobs:
251
252
php-version : ${{ needs.fetch-supported-versions.outputs.php-next }}
252
253
symfony-version : ${{ needs.fetch-supported-versions.outputs.symfony-min }}
253
254
# Fix - behat/gherkin => Avoid issue with behat <-> gherkin packages (See https://github.com/Behat/Gherkin/issues/317)
254
- pkg-extra-constraints : behat/gherkin:~4.12.0
255
+ # Fix - symfony/yaml => Avoid issue between symfony/yaml and symfony/framework-bundle (not compatible with some versions due to incomplete function signatures)
256
+ pkg-extra-constraints : behat/gherkin:~4.12.0 ${{ ( needs.fetch-supported-versions.outputs.symfony-min == '5.4' && needs.fetch-supported-versions.outputs.php-next == '8.5' ) && 'symfony/yaml:~6.4.0' || '' }}
255
257
- job-name : Symfony with highest supported PHP version
256
258
php-version : ${{ needs.fetch-supported-versions.outputs.php-max }}
257
259
symfony-version : ${{ needs.fetch-supported-versions.outputs.symfony-next }}
258
260
# Fix - behat/gherkin => Avoid issue with behat <-> gherkin packages (See https://github.com/Behat/Gherkin/issues/317)
259
- # Fix - symfony/framework-bundle - Framework bundle <7.0 require php 8.1 minimum !
260
- pkg-extra-constraints : behat/gherkin:~4.12.0 ${{ ( needs.fetch-supported-versions.outputs.symfony-next == '7.0' && needs.fetch-supported-versions.outputs.php-max == '8.4' ) && 'symfony/framework-bundle:~7.0.0@dev' || '' }}
261
+ pkg-extra-constraints : behat/gherkin:~4.12.0
261
262
- job-name : Symfony with lowest supported PHP version
262
- # Fix - Sf 7.0 require php 8.1 minimum, most of deps require 8.2 !
263
- php-version : ${{ ( needs.fetch-supported-versions.outputs.symfony-next == '7.0 ' && needs.fetch-supported-versions.outputs.php-min == '8.0' ) && '8.2' || needs.fetch-supported-versions.outputs.php-min }}
263
+ # Fix - Sf 7.1 require php 8.2 minimum !
264
+ php-version : ${{ ( needs.fetch-supported-versions.outputs.symfony-next == '7.1 ' && needs.fetch-supported-versions.outputs.php-min == '8.0' ) && '8.2' || needs.fetch-supported-versions.outputs.php-min }}
264
265
symfony-version : ${{ needs.fetch-supported-versions.outputs.symfony-next }}
265
266
# Fix - behat/gherkin => Avoid issue with behat <-> gherkin packages (See https://github.com/Behat/Gherkin/issues/317)
266
- # Fix - symfony/framework-bundle - Framework bundle <7.0 require php 8.1 minimum !
267
- pkg-extra-constraints : behat/gherkin:~4.12.0 ${{ ( needs.fetch-supported-versions.outputs.symfony-next == '7.0' && needs.fetch-supported-versions.outputs.php-min == '8.0' ) && 'symfony/framework-bundle:~7.0.0@dev' || '' }}
267
+ pkg-extra-constraints : behat/gherkin:~4.12.0
268
268
269
269
steps :
270
270
- name : Check out code
0 commit comments