如何在Composer 中覆蓋PHP 基本依賴
問題:
用戶嘗試在PHPPH 5.5.6 的伺服器上安裝Laravel 5.1 會遇到錯誤,因為PHP 相依性大於5.5.9。託管提供者無法或不願意升級 PHP,因此有必要找到繞過依賴關係的方法。
解決方案:
在 Composer 中覆蓋 PHP 依賴關係,使用者可以使用 --ignore-platform-reqs 選項。此選項會忽略本機可能無法滿足的 PHP、hhvm 和 ext-* 等相依性。
根據 Composer 文件:
--ignore-platform-reqs: ignore php, hhvm, lib-* and ext-* requirements and force the installation even if the local machine does not fulfill these. See also the platform config option.
透過執行以下命令,使用者可以覆蓋 PHP 依賴項並繼續安裝 Composer:
composer install --ignore-platform-reqs
以上是如何使用 Composer 安裝 Laravel 5.1 和 PHP 5.5.6?的詳細內容。更多資訊請關注PHP中文網其他相關文章!