溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何處理PHP開發(fā)版本的問題

發(fā)布時間:2020-12-04 11:42:23 來源:億速云 閱讀:273 作者:小新 欄目:編程語言

這篇文章主要介紹了如何處理PHP開發(fā)版本的問題,具有一定借鑒價值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。

在安裝一個開源項(xiàng)目時,作者本地用了 PHP 7.1 進(jìn)行開發(fā),而我本地是 PHP 7.0, 于是悲劇發(fā)生了,出現(xiàn)了這樣的錯誤:requires php ^7.1 -> your PHP version (7.0.13) does not satisfy that requirement..

一、Composer 安裝包

composer install 之后報錯

vagrant@homestead:~/Code/sample$ composer install
Loading composer repositories with package information
Installing dependencies (including require-dev) from lock file
Your 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 文件,重新執(zhí)行 composer install,這樣就能重新生成 composer.lock 文件了。

composer 包自動加載后,會生成一個 composer.lock 鎖文件,所以,在從GitHub拉取別人的代碼后,需要對這個文件進(jìn)行刪除。

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享如何處理PHP開發(fā)版本的問題內(nèi)容對大家有幫助,同時也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,遇到問題就找億速云,詳細(xì)的解決方法等著你來學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI