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