Answers for "the requested PHP extension dom is missing from your system."

PHP
4

phpunit/phpunit 7.5.20 requires ext-dom * -> the requested PHP extension dom is missing from your system.

//First of all, read the warning! It says do not run composer as root! Secondly, you're probably using Xammp on your local which has the required php libraries as default.
// But in your server you're missing ext-dom. php-xml has all the related packages you need. So, you can simply install it by running:

sudo apt-get update
sudo apt install php-xml


//Most likely you are missing mbstring too. If you get the error, install this package as well with:

sudo apt-get install php-mbstring

//Then run:
composer update
composer require cviebrock/eloquent-sluggable
Posted by: Guest on August-10-2020
1

- The requested PHP extension ext-http * is missing from your system. Install or enable PHP's http extension.

find "ext-http": "*" in  composer.json and remve it
Posted by: Guest on August-18-2020

Code answers related to "the requested PHP extension dom is missing from your system."

Browse Popular Code Answers by Language