Skip to content

Commit 1762bd9

Browse files
Bumped symfony version to ^5.3 (#36529)
1 parent ac0e133 commit 1762bd9

File tree

13 files changed

+38
-38
lines changed

13 files changed

+38
-38
lines changed

composer.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -31,17 +31,17 @@
3131
"psr/simple-cache": "^1.0",
3232
"ramsey/uuid": "^4.0",
3333
"swiftmailer/swiftmailer": "^6.2.7",
34-
"symfony/console": "^5.2",
35-
"symfony/error-handler": "^5.2",
36-
"symfony/finder": "^5.2",
37-
"symfony/http-foundation": "^5.2",
38-
"symfony/http-kernel": "^5.2",
39-
"symfony/mime": "^5.2",
40-
"symfony/process": "^5.2",
41-
"symfony/routing": "^5.2",
42-
"symfony/var-dumper": "^5.2",
34+
"symfony/console": "^5.3",
35+
"symfony/error-handler": "^5.3",
36+
"symfony/finder": "^5.3",
37+
"symfony/http-foundation": "^5.3",
38+
"symfony/http-kernel": "^5.3",
39+
"symfony/mime": "^5.3",
40+
"symfony/process": "^5.3",
41+
"symfony/routing": "^5.3",
42+
"symfony/var-dumper": "^5.3",
4343
"tijsverkoyen/css-to-inline-styles": "^2.2.2",
44-
"vlucas/phpdotenv": "^5.2",
44+
"vlucas/phpdotenv": "^5.3",
4545
"voku/portable-ascii": "^1.4.8"
4646
},
4747
"replace": {
@@ -90,7 +90,7 @@
9090
"pda/pheanstalk": "^4.0",
9191
"phpunit/phpunit": "^9.4",
9292
"predis/predis": "^1.1.1",
93-
"symfony/cache": "^5.2"
93+
"symfony/cache": "^5.3"
9494
},
9595
"provide": {
9696
"psr/container-implementation": "1.0"
@@ -147,8 +147,8 @@
147147
"predis/predis": "Required to use the predis connector (^1.1.2).",
148148
"psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
149149
"pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0).",
150-
"symfony/cache": "Required to PSR-6 cache bridge (^5.2).",
151-
"symfony/filesystem": "Required to enable support for relative symbolic links (^5.2).",
150+
"symfony/cache": "Required to PSR-6 cache bridge (^5.3).",
151+
"symfony/filesystem": "Required to enable support for relative symbolic links (^5.3).",
152152
"symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
153153
"wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
154154
},

src/Illuminate/Cache/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"illuminate/database": "Required to use the database cache driver (^9.0).",
3636
"illuminate/filesystem": "Required to use the file cache driver (^9.0).",
3737
"illuminate/redis": "Required to use the redis cache driver (^9.0).",
38-
"symfony/cache": "Required to PSR-6 cache bridge (^5.2)."
38+
"symfony/cache": "Required to PSR-6 cache bridge (^5.3)."
3939
},
4040
"config": {
4141
"sort-packages": true

src/Illuminate/Collections/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
}
3333
},
3434
"suggest": {
35-
"symfony/var-dumper": "Required to use the dump method (^5.2)."
35+
"symfony/var-dumper": "Required to use the dump method (^5.3)."
3636
},
3737
"config": {
3838
"sort-packages": true

src/Illuminate/Console/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
"illuminate/contracts": "^9.0",
2020
"illuminate/macroable": "^9.0",
2121
"illuminate/support": "^9.0",
22-
"symfony/console": "^5.2",
23-
"symfony/process": "^5.2"
22+
"symfony/console": "^5.3",
23+
"symfony/process": "^5.3"
2424
},
2525
"autoload": {
2626
"psr-4": {

src/Illuminate/Cookie/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
"illuminate/contracts": "^9.0",
2020
"illuminate/macroable": "^9.0",
2121
"illuminate/support": "^9.0",
22-
"symfony/http-foundation": "^5.2",
23-
"symfony/http-kernel": "^5.2"
22+
"symfony/http-foundation": "^5.3",
23+
"symfony/http-kernel": "^5.3"
2424
},
2525
"autoload": {
2626
"psr-4": {

src/Illuminate/Database/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"illuminate/contracts": "^9.0",
2323
"illuminate/macroable": "^9.0",
2424
"illuminate/support": "^9.0",
25-
"symfony/console": "^5.2"
25+
"symfony/console": "^5.3"
2626
},
2727
"autoload": {
2828
"psr-4": {
@@ -41,7 +41,7 @@
4141
"illuminate/events": "Required to use the observers with Eloquent (^9.0).",
4242
"illuminate/filesystem": "Required to use the migrations (^9.0).",
4343
"illuminate/pagination": "Required to paginate the result set (^9.0).",
44-
"symfony/finder": "Required to use Eloquent model factories (^5.2)."
44+
"symfony/finder": "Required to use Eloquent model factories (^5.3)."
4545
},
4646
"config": {
4747
"sort-packages": true

src/Illuminate/Filesystem/composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"illuminate/contracts": "^9.0",
2020
"illuminate/macroable": "^9.0",
2121
"illuminate/support": "^9.0",
22-
"symfony/finder": "^5.2"
22+
"symfony/finder": "^5.3"
2323
},
2424
"autoload": {
2525
"psr-4": {
@@ -39,8 +39,8 @@
3939
"league/flysystem-ftp": "Required to use the Flysystem FTP driver (^2.0).",
4040
"league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^2.0).",
4141
"psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
42-
"symfony/filesystem": "Required to enable support for relative symbolic links (^5.2).",
43-
"symfony/mime": "Required to enable support for guessing extensions (^5.2)."
42+
"symfony/filesystem": "Required to enable support for relative symbolic links (^5.3).",
43+
"symfony/mime": "Required to enable support for guessing extensions (^5.3)."
4444
},
4545
"config": {
4646
"sort-packages": true

src/Illuminate/Http/composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
"illuminate/macroable": "^9.0",
2121
"illuminate/session": "^9.0",
2222
"illuminate/support": "^9.0",
23-
"symfony/http-foundation": "^5.2",
24-
"symfony/http-kernel": "^5.2",
25-
"symfony/mime": "^5.2"
23+
"symfony/http-foundation": "^5.3",
24+
"symfony/http-kernel": "^5.3",
25+
"symfony/mime": "^5.3"
2626
},
2727
"autoload": {
2828
"psr-4": {

src/Illuminate/Queue/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"illuminate/support": "^9.0",
2727
"opis/closure": "^3.6",
2828
"ramsey/uuid": "^4.0",
29-
"symfony/process": "^5.2"
29+
"symfony/process": "^5.3"
3030
},
3131
"autoload": {
3232
"psr-4": {

src/Illuminate/Routing/composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
"illuminate/pipeline": "^9.0",
2525
"illuminate/session": "^9.0",
2626
"illuminate/support": "^9.0",
27-
"symfony/http-foundation": "^5.2",
28-
"symfony/http-kernel": "^5.2",
29-
"symfony/routing": "^5.2"
27+
"symfony/http-foundation": "^5.3",
28+
"symfony/http-kernel": "^5.3",
29+
"symfony/routing": "^5.3"
3030
},
3131
"autoload": {
3232
"psr-4": {

0 commit comments

Comments
 (0)