处理 PHP 开发版本问题

处理 PHP 开发版本问题,第1张

概述处理 PHP 开发版本问题
在安装一个开源项目时,作者本地用了 PHP 7.1 进行开发,而我本地是 PHP 7.0, 于是悲剧发生了,出现了这样的错误:requires PHP ^7.1 -> your PHP version (7.0.13) does not satisfy that requirement..
一、Composer 安装包

composer install 之后报错

vagrant@homestead:~/Code/sample$ composer installLoading composer repositorIEs with package informationInstalling dependencIEs (including require-dev) from lock fileYour requirements Could not be resolved to an installable set of packages.  Problem 1    - Installation request for doctrine/instantiator 1.1.0 -> satisfiable by doctrine/instantiator[1.1.0].    - doctrine/instantiator 1.1.0 requires PHP ^7.1 -> your PHP version (7.0.13) does not satisfy that requirement.  Problem 2    - doctrine/instantiator 1.1.0 requires PHP ^7.1 -> your PHP version (7.0.13) does not satisfy that requirement.    - PHPunit/PHPunit-mock-objects 2.3.8 requires doctrine/instantiator ^1.0.2 -> satisfiable by doctrine/instantiator[1.1.0].    - Installation request for PHPunit/PHPunit-mock-objects 2.3.8 -> satisfiable by PHPunit/PHPunit-mock-objects[2.3.8].
二、解决方法

删除 composer.lock 文件,重新执行 composer install,这样就能重新生成 composer.lock 文件了。

composer 包自动加载后,会生成一个 composer.lock 锁文件,所以,在从GitHub拉取别人的代码后,需要对这个文件进行删除。

推荐:《PHP视频教程》 总结

以上是内存溢出为你收集整理的处理 PHP 开发版本问题全部内容,希望文章能够帮你解决处理 PHP 开发版本问题所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1010614.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-22
下一篇 2022-05-22

发表评论

登录后才能评论

评论列表(0条)

保存