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