升級指南
高度影響的更改
低影響的更改
Upgrading To 11.0 From 10.x
Estimated Upgrade Time: ?? Minutes
雖然我們已經儘可能地在本說明文件中涵蓋所有中斷性變更。不過,在 Laravel 中,有些中斷性變更存在一些比較不明顯的地方,且這些更改中幾乎不太會影響到你的專案。 想節省時間嗎?可以使用 Laravel Shift 來協助你快速升級你的專案。
相依性套件更新
受影響的可能:高
PHP 8.2.0 Required
Laravel now requires PHP 8.2.0 or greater.
Composer 相依性套件
請在專案的 composer.json
檔案中更新下列相依性套件:
-
laravel/framework
to^11.0
Collections
Enumerable
Contract
受影響的可能:低
The dump
method of the Illuminate\Support\Enumerable
contract has been updated to accept a variadic ...$args
argument. If you are implementing this interface you should update your implementation accordingly:
1public function dump(...$args);
1public function dump(...$args);