Skip to content

[POC] Supports Symfony 7.3 #55648

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 31 commits into
base: 12.x
Choose a base branch
from
Draft
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
50bd81d
[POC] Supports Symfony 7.3
crynobone May 5, 2025
f1b1737
Update composer.json
crynobone May 6, 2025
4110753
wip
crynobone May 6, 2025
0309e5f
wip
crynobone May 6, 2025
3f80532
wip
crynobone May 6, 2025
02f0f90
wip
crynobone May 6, 2025
40281f2
wip
crynobone May 6, 2025
de5eb51
wip
crynobone May 6, 2025
0110a8d
wip
crynobone May 6, 2025
40c8d77
wip
crynobone May 6, 2025
92af759
Apply fixes from StyleCI
StyleCIBot May 6, 2025
94a859f
wip
crynobone May 6, 2025
c06ee01
Merge remote-tracking branch 'upstream/symfony-73' into symfony-73
crynobone May 6, 2025
6163b78
wip
crynobone May 6, 2025
8fc326e
Merge remote-tracking branch 'upstream/12.x' into symfony-73
crynobone May 6, 2025
0880463
Merge remote-tracking branch 'upstream/symfony-73' into symfony-73
crynobone May 6, 2025
c43b5fc
wip
crynobone May 6, 2025
f3877d1
wip
crynobone May 7, 2025
d266eba
wip
crynobone May 7, 2025
fb6623e
wip
crynobone May 7, 2025
00f737d
wip
crynobone May 7, 2025
aac1480
Apply fixes from StyleCI
StyleCIBot May 7, 2025
ef4d6e3
wip
crynobone May 7, 2025
dfb2b1c
wip
crynobone May 7, 2025
eb984e3
Merge remote-tracking branch 'upstream/symfony-73' into symfony-73
crynobone May 7, 2025
b3d5e24
Update Application.php
crynobone May 7, 2025
cac8a66
Update Application.php
crynobone May 7, 2025
da11238
Merge branch '12.x' into symfony-73
crynobone May 13, 2025
87fe24d
Update OptimizeClearCommand.php
crynobone May 13, 2025
2a50acb
Update OptimizeCommand.php
crynobone May 15, 2025
f316cc6
Update RouteListCommand.php
crynobone May 15, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,18 +44,18 @@
"psr/log": "^1.0|^2.0|^3.0",
"psr/simple-cache": "^1.0|^2.0|^3.0",
"ramsey/uuid": "^4.7",
"symfony/console": "^7.2.0",
"symfony/error-handler": "^7.2.0",
"symfony/finder": "^7.2.0",
"symfony/http-foundation": "^7.2.0",
"symfony/http-kernel": "^7.2.0",
"symfony/mailer": "^7.2.0",
"symfony/mime": "^7.2.0",
"symfony/console": "7.3.x-dev",
"symfony/error-handler": "7.3.x-dev",
"symfony/finder": "7.3.x-dev",
"symfony/http-foundation": "7.3.x-dev",
"symfony/http-kernel": "7.3.x-dev",
"symfony/mailer": "7.3.x-dev",
"symfony/mime": "7.3.x-dev",
"symfony/polyfill-php83": "^1.31",
"symfony/process": "^7.2.0",
"symfony/routing": "^7.2.0",
"symfony/uid": "^7.2.0",
"symfony/var-dumper": "^7.2.0",
"symfony/process": "7.3.x-dev",
"symfony/routing": "7.3.x-dev",
"symfony/uid": "7.3.x-dev",
"symfony/var-dumper": "7.3.x-dev",
"tijsverkoyen/css-to-inline-styles": "^2.2.5",
"vlucas/phpdotenv": "^5.6.1",
"voku/portable-ascii": "^2.0.2"
Expand Down Expand Up @@ -118,10 +118,10 @@
"phpunit/phpunit": "^10.5.35|^11.5.3|^12.0.1",
"predis/predis": "^2.3|^3.0",
"resend/resend-php": "^0.10.0",
"symfony/cache": "^7.2.0",
"symfony/http-client": "^7.2.0",
"symfony/psr-http-message-bridge": "^7.2.0",
"symfony/translation": "^7.2.0"
"symfony/cache": "7.3.x-dev",
"symfony/http-client": "7.3.x-dev",
"symfony/psr-http-message-bridge": "7.3.x-dev",
"symfony/translation": "7.3.x-dev"
},
"conflict": {
"tightenco/collect": "<5.5.33"
Expand Down