Обновление Composer в Digital Ocean Ubuntu через ошибки терминала - PullRequest
0 голосов
/ 16 апреля 2020

Я использую ма c и в командной строке я вошел на сервер и хочу установить composer, однако у меня возникает ряд проблем (см. Ниже). Мне не нужен блок PHP, поэтому я также попробовал composer install --no-dev, но появляются те же ошибки. Любая идея или решение?

Warning: The lock file is not up to date with the latest changes in composer.json. You may be getting outdated dependencies. It is recommended that you run `composer update` or `composer update <package name>`.
Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - Installation request for tijsverkoyen/css-to-inline-styles 2.2.2 -> satisfiable by tijsverkoyen/css-to-inline-styles[2.2.2].
    - tijsverkoyen/css-to-inline-styles 2.2.2 requires ext-dom * -> the requested PHP extension dom is missing from your system.
  Problem 2
    - tijsverkoyen/css-to-inline-styles 2.2.2 requires ext-dom * -> the requested PHP extension dom is missing from your system.
    - laravel/framework v7.3.0 requires tijsverkoyen/css-to-inline-styles ^2.2.2 -> satisfiable by tijsverkoyen/css-to-inline-styles[2.2.2].
    - Installation request for laravel/framework v7.3.0 -> satisfiable by laravel/framework[v7.3.0].

Я также пытался установить tijsverkoyen через Sudo и получить другой список проблем

Problem 1
    - phpunit/phpunit 8.5.x-dev requires ext-dom * -> the requested PHP extension dom is missing from your system.
    - phpunit/phpunit 8.5.3 requires ext-dom * -> the requested PHP extension dom is missing from your system.
    - phpunit/phpunit 8.5.2 requires ext-dom * -> the requested PHP extension dom is missing from your system.
    - phpunit/phpunit 8.5.1 requires ext-dom * -> the requested PHP extension dom is missing from your system.
    - phpunit/phpunit 8.5.0 requires ext-dom * -> the requested PHP extension dom is missing from your system.
    - Installation request for phpunit/phpunit ^8.5 -> satisfiable by phpunit/phpunit[8.5.0, 8.5.1, 8.5.2, 8.5.3, 8.5.x-dev].

1 Ответ

2 голосов
/ 16 апреля 2020

В сообщении об ошибке говорится, что вам не хватает PHP расширения ext-dom.

Вам нужно будет установить его, запустив sudo apt install php-xml.

...