我正在嘗試安裝一個較舊的Laravel項目。Laravel Composer看到錯誤的PHP版本
當我運行作曲家安裝我收到以下錯誤
This package requires php >=5.6.4 but your PHP version (5.5.35) does not satisfy that requirement.
當我運行
php -v
我得到以下結果
PHP 7.1.10 (cli) (built: Oct 12 2017 14:00:12) (ZTS)
這是我作曲的內容.json
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"type": "project",
"require": {
"php": ">=5.6.4",
"doctrine/dbal": "^2.6",
"guzzlehttp/guzzle": "^6.3",
"intervention/image": "^2.4",
"intervention/imagecache": "^2.3",
"laravel/framework": "5.4.*",
"laravel/tinker": "~1.0",
"laravelcollective/html": "^5.4",
"maatwebsite/excel": "^2.1",
"sentry/sentry-laravel": "^0.8.0",
"spatie/laravel-glide": "^3.2",
"spatie/laravel-permission": "^2.6",
"spatie/laravel-pjax": "^1.3"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~5.7"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-root-package-install": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
],
"post-install-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postInstall",
"php artisan optimize"
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
"php artisan optimize"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
}
}
這個項目怎麼可能認爲我有php 5.6運行?
謝謝。
您使用的是什麼環境,Homestead?嘗試並刪除您的composer.lock文件並再次運行 –
您的系統中可能安裝了多個PHP版本,並且您的Web服務器配置爲使用5.5.35。檢查您的Web服務器的配置文件。 –
@JoshGriggs這只是Laravel代客。 – Notflip