Answers for "Your Composer dependencies require the following PHP extensions to be installed: dom, xml, xmlwriter"

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
0

Your Composer dependencies require the following PHP extensions to be installed: dom, xml, xmlwriter

//i used this code and it worked with me, try it if the 1st sol. dosen't worked :

sudo apt-get update

//check that it is like this "sudo apt-get update", exactly.
Posted by: Guest on October-06-2021

Code answers related to "Your Composer dependencies require the following PHP extensions to be installed: dom, xml, xmlwriter"

Browse Popular Code Answers by Language