Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

laravel composer update : the requested PHP extension dom is missing from your system

I am using ubuntu 16.04, laravel 5.2 when i run update composer in my project directory its showing "the requested PHP extension dom is missing from your system" i checked installed packages of PHP, its available there

like image 319
Vivek Chaudhari Avatar asked Jun 17 '16 05:06

Vivek Chaudhari


3 Answers

Installing xml-extension (php7.0-xml in my case) solved the problem

sudo apt-get install php-xml
like image 95
Abaza Avatar answered Oct 12 '22 11:10

Abaza


If PHP version is 7.2, execute the following command

sudo apt-get install php7.2-xml
like image 35
Joyal Avatar answered Oct 12 '22 09:10

Joyal


Managed to fix it with a php version 5.6* :

$ sudo apt-get update
$ sudo apt-get install php5.6-xml
like image 11
Manoj Thapliyal Avatar answered Oct 12 '22 10:10

Manoj Thapliyal