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

后端 未结 6 1519
醉酒成梦
醉酒成梦 2020-12-07 22:19

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 checke

6条回答
  •  一向
    一向 (楼主)
    2020-12-07 23:10

    You might have some missing dependencies, so first run

    sudo apt-get -f install
    

    Then install php-xml

    sudo apt-get install php-xml
    

    This worked for me.

提交回复
热议问题