Skip to content

Commit 607bb93

Browse files
authored
[11.x] Update suggested/recommended version to match laravel/laravel (#49571)
Signed-off-by: Mior Muhammad Zaki <[email protected]>
1 parent daa24d6 commit 607bb93

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

composer.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -97,23 +97,23 @@
9797
"ably/ably-php": "^1.0",
9898
"aws/aws-sdk-php": "^3.235.5",
9999
"doctrine/dbal": "^4.0",
100-
"fakerphp/faker": "^1.21",
101-
"guzzlehttp/guzzle": "^7.6",
100+
"fakerphp/faker": "^1.23",
101+
"guzzlehttp/guzzle": "^7.8",
102102
"league/flysystem-aws-s3-v3": "^3.0",
103103
"league/flysystem-ftp": "^3.0",
104104
"league/flysystem-path-prefixing": "^3.3",
105105
"league/flysystem-read-only": "^3.3",
106106
"league/flysystem-sftp-v3": "^3.0",
107-
"mockery/mockery": "^1.5.1",
107+
"mockery/mockery": "^1.6",
108108
"nyholm/psr7": "^1.2",
109109
"orchestra/testbench-core": "^9.0",
110110
"pda/pheanstalk": "^5.0",
111111
"phpstan/phpstan": "^1.4.7",
112-
"phpunit/phpunit": "^10.1",
112+
"phpunit/phpunit": "^10.5",
113113
"predis/predis": "^2.0.2",
114114
"symfony/cache": "^7.0",
115115
"symfony/http-client": "^7.0",
116-
"symfony/psr-http-message-bridge": "^v7.0.0-BETA1"
116+
"symfony/psr-http-message-bridge": "^7.0"
117117
},
118118
"provide": {
119119
"psr/container-implementation": "1.1|2.0",
@@ -170,26 +170,26 @@
170170
"doctrine/dbal": "Required to rename columns and drop SQLite columns (^4.0).",
171171
"fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
172172
"filp/whoops": "Required for friendly error pages in development (^2.14.3).",
173-
"guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.6).",
173+
"guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.8).",
174174
"laravel/tinker": "Required to use the tinker console command (^2.0).",
175175
"league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
176176
"league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
177177
"league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
178178
"league/flysystem-read-only": "Required to use read-only disks (^3.3)",
179179
"league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
180-
"mockery/mockery": "Required to use mocking (^1.5.1).",
180+
"mockery/mockery": "Required to use mocking (^1.6).",
181181
"nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
182182
"pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
183-
"phpunit/phpunit": "Required to use assertions and run tests (^9.5.8|^10.0.7).",
183+
"phpunit/phpunit": "Required to use assertions and run tests (^10.5).",
184184
"predis/predis": "Required to use the predis connector (^2.0.2).",
185185
"psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
186186
"pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
187-
"symfony/cache": "Required to PSR-6 cache bridge (^6.3).",
188-
"symfony/filesystem": "Required to enable support for relative symbolic links (^6.3).",
189-
"symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.3).",
190-
"symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.3).",
191-
"symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.3).",
192-
"symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
187+
"symfony/cache": "Required to PSR-6 cache bridge (^7.0).",
188+
"symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).",
189+
"symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).",
190+
"symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).",
191+
"symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).",
192+
"symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)."
193193
},
194194
"config": {
195195
"sort-packages": true,

src/Illuminate/Console/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"suggest": {
4141
"ext-pcntl": "Required to use signal trapping.",
4242
"dragonmantank/cron-expression": "Required to use scheduler (^3.3.2).",
43-
"guzzlehttp/guzzle": "Required to use the ping methods on schedules (^7.6).",
43+
"guzzlehttp/guzzle": "Required to use the ping methods on schedules (^7.8).",
4444
"illuminate/bus": "Required to use the scheduled job dispatcher (^11.0).",
4545
"illuminate/container": "Required to use the scheduler (^11.0).",
4646
"illuminate/filesystem": "Required to use the generator command (^11.0).",

src/Illuminate/Http/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
},
3535
"suggest": {
3636
"ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
37-
"guzzlehttp/guzzle": "Required to use the HTTP Client (^7.6)."
37+
"guzzlehttp/guzzle": "Required to use the HTTP Client (^7.8)."
3838
},
3939
"extra": {
4040
"branch-alias": {

src/Illuminate/Routing/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"suggest": {
4343
"illuminate/console": "Required to use the make commands (^11.0).",
4444
"nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
45-
"symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
45+
"symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)."
4646
},
4747
"config": {
4848
"sort-packages": true

0 commit comments

Comments
 (0)