Skip to content

Commit

Permalink
minor #52178 [Messenger] Fix requiring symfony/deprecation-contracts …
Browse files Browse the repository at this point in the history
…(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 #51174 I added it by mistake in require-dev instead of require 🤦‍♂️

Commits
-------

7cd5576 [Messenger] Fix requiring symfony/deprecation-contracts
  • Loading branch information
nicolas-grekas committed Oct 19, 2023
2 parents 39f4f1a + 7cd5576 commit 7b48483
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Symfony/Component/Messenger/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
"require": {
"php": ">=8.1",
"psr/log": "^1|^2|^3",
"symfony/clock": "^6.3"
"symfony/clock": "^6.3",
"symfony/deprecation-contracts": "^2.5|^3"
},
"require-dev": {
"psr/cache": "^1.0|^2.0|^3.0",
"symfony/console": "^6.3",
"symfony/dependency-injection": "^5.4|^6.0",
"symfony/deprecation-contracts": "^2.5|^3",
"symfony/event-dispatcher": "^5.4|^6.0",
"symfony/http-kernel": "^5.4|^6.0",
"symfony/process": "^5.4|^6.0",
Expand Down

0 comments on commit 7b48483

Please sign in to comment.