Is your feature request related to a problem? Please describe.
In Phing 3.0.1, Symfony 7 support was introduced (“Allow Symfony 7”). In the current release (3.1.0), symfony/console correctly allows ^6.4.22|^7.0, but other required Symfony components are still pinned to ^6.x (symfony/string and symfony/yaml). This creates conflicts in Symfony 7 projects that require those components at ^7.
Describe the solution you'd like
{
"require": {
"symfony/console": "^6.4.22 || ^7.0",
"symfony/string": "^6.3.12 || ^7.0",
"symfony/yaml": "^6.3.12 || ^7.0"
}
}
Additional context
his request is to extend that support consistently across all Symfony component dependencies, not just symfony/console.
Thanks in advance for considering widening these constraints!
Is your feature request related to a problem? Please describe.
In Phing 3.0.1, Symfony 7 support was introduced (“Allow Symfony 7”). In the current release (3.1.0), symfony/console correctly allows ^6.4.22|^7.0, but other required Symfony components are still pinned to ^6.x (symfony/string and symfony/yaml). This creates conflicts in Symfony 7 projects that require those components at ^7.
Describe the solution you'd like
Additional context
his request is to extend that support consistently across all Symfony component dependencies, not just symfony/console.
Thanks in advance for considering widening these constraints!