web-dev-qa-db-ja.com

Laravel 5.1デプロイ要件をインストール可能なパッケージセットに解決できませんでした

laravelプロジェクトをデプロイしてphpcomposer.pharをインストールしようとすると、この厄介なエラーが発生します。gitクローンを使用してgit経由でプロジェクトをプルしました。 domainname明らかに私のアプリを見たいです:)。正しいバージョンのApache、mysql、およびphpをインストールしました。すべてが稼働しています。

エラー:

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 brianmcdo/image-palette dev-master -> satisfiable by brianmcdo/image-palette[dev-master].
- brianmcdo/image-palette dev-master requires ext-Gd * -> the requested PHP extension Gd is missing from your system.
Problem 2
- Installation request for phpunit/phpunit 4.8.18 -> satisfiable by phpunit/phpunit[4.8.18].
- phpunit/phpunit 4.8.18 requires ext-dom * -> the requested PHP extension dom is missing from your system.

Php-Gdまたはdomをインストールしようとすると、次のエラーが発生します。

Error: php56w-common conflicts with php-common-5.4.16-36.el7_1.x86_64

私のphpバージョン:(php -v)

PHP 5.6.14 (cli) (built: Oct 16 2015 07:11:57)
Copyright (c) 1997-2015 The PHP Group
Zend Engine v2.6.0, Copyright (c) 1998-2015 Zend Technologies
with Zend OPcache v7.0.6-dev, Copyright (c) 1999-2015, by Zend Technologies

rpm-qaの結果| grep php:

php56w-mbstring-5.6.14-2.w7.x86_64
php56w-cli-5.6.14-2.w7.x86_64
php56w-common-5.6.14-2.w7.x86_64
php56w-5.6.14-2.w7.x86_64
php56w-opcache-5.6.14-2.w7.x86_64
1
Moussa Chaabar

Php-common-5.4 *を削除して、インストールを再実行してみてください。交換品をインストールする前に、古いPHPパッケージを削除する必要があります。

1
Linuxer