Skip to content

Commit 7b48483

Browse files
minor symfony#52178 [Messenger] Fix requiring symfony/deprecation-contracts (fancyweb)
This PR was merged into the 6.3 branch. Discussion ---------- [Messenger] Fix requiring symfony/deprecation-contracts | Q | A | ------------- | --- | Branch? | 6.3 | Bug fix? | no | New feature? | no | Deprecations? | no | Tickets | - | License | MIT In symfony#51174 I added it by mistake in require-dev instead of require 🤦‍♂️ Commits ------- 7cd5576 [Messenger] Fix requiring symfony/deprecation-contracts
2 parents 39f4f1a + 7cd5576 commit 7b48483

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Symfony/Component/Messenger/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
"require": {
1919
"php": ">=8.1",
2020
"psr/log": "^1|^2|^3",
21-
"symfony/clock": "^6.3"
21+
"symfony/clock": "^6.3",
22+
"symfony/deprecation-contracts": "^2.5|^3"
2223
},
2324
"require-dev": {
2425
"psr/cache": "^1.0|^2.0|^3.0",
2526
"symfony/console": "^6.3",
2627
"symfony/dependency-injection": "^5.4|^6.0",
27-
"symfony/deprecation-contracts": "^2.5|^3",
2828
"symfony/event-dispatcher": "^5.4|^6.0",
2929
"symfony/http-kernel": "^5.4|^6.0",
3030
"symfony/process": "^5.4|^6.0",

0 commit comments

Comments
 (0)