Skip to content

Commit 94a3635

Browse files
committed
minor #4708 Allow Symfony 8 packages in Twig extra packages (javiereguiluz)
This PR was merged into the 3.x branch. Discussion ---------- Allow Symfony 8 packages in Twig extra packages I'm testing the upcoming Symfony 8 in some apps, and I have some issues with some Twig extra packages that don't allow installing Symfony 8 packages. Commits ------- 9a8a1dc Allow Symfony 8 packages in Twig extra packages
2 parents 80fa13c + 9a8a1dc commit 94a3635

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

extra/cache-extra/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
],
1717
"require": {
1818
"php": ">=8.1.0",
19-
"symfony/cache": "^5.4|^6.4|^7.0",
19+
"symfony/cache": "^5.4|^6.4|^7.0|^8.0",
2020
"twig/twig": "^3.21|^4.0"
2121
},
2222
"require-dev": {

extra/html-extra/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"require": {
1818
"php": ">=8.1.0",
1919
"symfony/deprecation-contracts": "^2.5|^3",
20-
"symfony/mime": "^5.4|^6.4|^7.0",
20+
"symfony/mime": "^5.4|^6.4|^7.0|^8.0",
2121
"twig/twig": "^3.13|^4.0"
2222
},
2323
"require-dev": {

extra/intl-extra/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"require": {
1818
"php": ">=8.1.0",
1919
"twig/twig": "^3.13|^4.0",
20-
"symfony/intl": "^5.4|^6.4|^7.0"
20+
"symfony/intl": "^5.4|^6.4|^7.0|^8.0"
2121
},
2222
"require-dev": {
2323
"symfony/phpunit-bridge": "^6.4|^7.0"

extra/string-extra/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
],
1717
"require": {
1818
"php": ">=8.1.0",
19-
"symfony/string": "^5.4|^6.4|^7.0",
19+
"symfony/string": "^5.4|^6.4|^7.0|^8.0",
2020
"symfony/translation-contracts": "^1.1|^2|^3",
2121
"twig/twig": "^3.13|^4.0"
2222
},

extra/twig-extra-bundle/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
],
1717
"require": {
1818
"php": ">=8.1.0",
19-
"symfony/framework-bundle": "^5.4|^6.4|^7.0",
20-
"symfony/twig-bundle": "^5.4|^6.4|^7.0",
19+
"symfony/framework-bundle": "^5.4|^6.4|^7.0|^8.0",
20+
"symfony/twig-bundle": "^5.4|^6.4|^7.0|^8.0",
2121
"twig/twig": "^3.2|^4.0"
2222
},
2323
"require-dev": {

0 commit comments

Comments
 (0)