Skip to content

Commit 38443e3

Browse files
minor #52176 [Routing] Fix requiring symfony/deprecation-contracts (fancyweb)
This PR was merged into the 7.0 branch. Discussion ---------- [Routing] Fix requiring symfony/deprecation-contracts | Q | A | ------------- | --- | Branch? | 7.0 | Bug fix? | no | New feature? | no | Deprecations? | no | Tickets | - | License | MIT In symfony/symfony#51177 I added it by mistake in require-dev instead of require 🤦‍♂️ It's always needed for the deprecated routes feature. Commits ------- 21be1628ba [Routing] Fix requiring symfony/deprecation-contracts
2 parents e21b312 + b4ea909 commit 38443e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@
1616
}
1717
],
1818
"require": {
19-
"php": ">=8.2"
19+
"php": ">=8.2",
20+
"symfony/deprecation-contracts": "^2.5|^3"
2021
},
2122
"require-dev": {
2223
"symfony/config": "^6.4|^7.0",
2324
"symfony/http-foundation": "^6.4|^7.0",
2425
"symfony/yaml": "^6.4|^7.0",
2526
"symfony/expression-language": "^6.4|^7.0",
2627
"symfony/dependency-injection": "^6.4|^7.0",
27-
"symfony/deprecation-contracts": "^2.5|^3",
2828
"psr/log": "^1|^2|^3"
2929
},
3030
"conflict": {

0 commit comments

Comments
 (0)