覆盖作曲家中的PHP基础依赖

前端之家收集整理的这篇文章主要介绍了覆盖作曲家中的PHP基础依赖前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我尝试在只有 PHP 5.5.6的主机上安装Laravel 5.1.当我要求客户进行升级时,这可能是不可行的/可行的.

所以我得到:

- This package requires PHP >=5.5.9 but your PHP version (5.5.6)
   does not satisfy that requirement.

在composer.phar安装.

有没有办法做一个忽略这种依赖的作曲家安装?

我认为这应该是安全的,因为只有从5.5.6到5.5.9的错误修复.

您可以使用–ignore-platform-reqs选项来进行编辑器命令,如安装,更新等.

–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.

https://getcomposer.org/doc/03-cli.md

所以你可以试试

composer install --ignore-platform-reqs
原文链接:https://www.f2er.com/php/131206.html

猜你在找的PHP相关文章