Skip to content

Commit defb90b

Browse files
committed
bug #39494 Add missing symfony/deprecation-contracts requirement (jderusse)
This PR was merged into the 5.1 branch. Discussion ---------- Add missing symfony/deprecation-contracts requirement | Q | A | ------------- | --- | Branch? | 5.1 | Bug fix? | yes | New feature? | no | Deprecations? | no | Tickets | - | License | MIT | Doc PR | - We should require the `symfony/deprecation-contracts` package in components that call `trigger_deprecated`. Commits ------- 5ae2364 Add missing symfony/deprecation-contracts requirement
2 parents 3a3b249 + 5ae2364 commit defb90b

File tree

6 files changed

+6
-0
lines changed

6 files changed

+6
-0
lines changed

src/Symfony/Bridge/Doctrine/composer.json

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
"php": ">=7.2.5",
2020
"doctrine/event-manager": "~1.0",
2121
"doctrine/persistence": "^1.3|^2",
22+
"symfony/deprecation-contracts": "^2.1",
2223
"symfony/polyfill-ctype": "~1.8",
2324
"symfony/polyfill-mbstring": "~1.0",
2425
"symfony/polyfill-php80": "^1.15",

src/Symfony/Bundle/FrameworkBundle/composer.json

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"symfony/cache": "^4.4|^5.0",
2222
"symfony/config": "^5.0",
2323
"symfony/dependency-injection": "^5.1",
24+
"symfony/deprecation-contracts": "^2.1",
2425
"symfony/event-dispatcher": "^5.1",
2526
"symfony/error-handler": "^4.4.1|^5.0.1",
2627
"symfony/http-foundation": "^4.4|^5.0",

src/Symfony/Bundle/SecurityBundle/composer.json

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"ext-xml": "*",
2121
"symfony/config": "^4.4|^5.0",
2222
"symfony/dependency-injection": "^5.1",
23+
"symfony/deprecation-contracts": "^2.1",
2324
"symfony/event-dispatcher": "^5.1",
2425
"symfony/http-kernel": "^5.0",
2526
"symfony/polyfill-php80": "^1.15",

src/Symfony/Component/Messenger/Bridge/Amqp/composer.json

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
],
1818
"require": {
1919
"php": ">=7.2.5",
20+
"symfony/deprecation-contracts": "^2.1",
2021
"symfony/messenger": "^5.1"
2122
},
2223
"require-dev": {

src/Symfony/Component/Messenger/Bridge/Redis/composer.json

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
],
1818
"require": {
1919
"php": ">=7.2.5",
20+
"symfony/deprecation-contracts": "^2.1",
2021
"symfony/messenger": "^5.1"
2122
},
2223
"require-dev": {

src/Symfony/Component/Notifier/Bridge/Slack/composer.json

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
],
1818
"require": {
1919
"php": ">=7.2.5",
20+
"symfony/deprecation-contracts": "^2.1",
2021
"symfony/http-client": "^4.3|^5.0",
2122
"symfony/notifier": "~5.1.0"
2223
},

0 commit comments

Comments
 (0)