@@ -62,21 +62,22 @@ jobs:
62
62
symfony-version : ' ${{ needs.fetch-supported-versions.outputs.symfony-max }}'
63
63
# Fix - behat/gherkin => Avoid issue with behat <-> gherkin packages (See https://github.com/Behat/Gherkin/issues/317)
64
64
pkg-extra-constraints : behat/gherkin:~4.12.0
65
- - job-name : Up to date versions - Special case - Symfony 5 .4
65
+ - job-name : Up to date versions - Special case - Symfony 6 .4
66
66
php-version : ' ${{ needs.fetch-supported-versions.outputs.php-max }}'
67
- symfony-version : ' 5 .4'
67
+ symfony-version : ' 6 .4'
68
68
# Fix - behat/gherkin => Avoid issue with behat <-> gherkin packages (See https://github.com/Behat/Gherkin/issues/317)
69
69
# Fix - symfony/yaml - Avoid issue with Sf YAML 6.4+ and Framework bundle
70
70
pkg-extra-constraints : behat/gherkin:~4.12.0 ${{ ( needs.fetch-supported-versions.outputs.symfony-max == '6.4' ) && 'symfony/yaml:~6.4.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 - Special case - Symfony 5.4
75
- php-version : ' ${{ needs.fetch-supported-versions.outputs.php-min }}'
76
- symfony-version : ' 5.4'
77
- - job-name : Late migration - PHP # => Highest symfony version with lowest php version allowed by composer config
74
+ - job-name : Bare minimum - Special case - Symfony 6.4
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 migration - PHP # => 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 migration - Symfony # => Lowest symfony version with highest php version allowed by composer config
82
83
php-version : ' ${{ needs.fetch-supported-versions.outputs.php-max }}'
0 commit comments