PHP7 : install ext-dom issue

前端 未结 5 1738
情歌与酒
情歌与酒 2020-11-27 10:48

I\'m running laravel 5.4 on Ubuntu 16.04 server with PHP7. trying to install cviebrock/eloquent-sluggable package throw some error:

pish@let:/ho         


        
5条回答
  •  北荒
    北荒 (楼主)
    2020-11-27 11:08

    sudo apt install php-xml will work but the thing is it will download the plugin for the latest PHP version.

    If your PHP version is not the latest, then you can add version in it:

    # PHP 7.1
    sudo apt install php7.1-xml
    
    # PHP 7.2:
    sudo apt install php7.2-xml
    
    # PHP 7.3
    sudo apt install php7.3-xml
    
    # PHP 7.4 (latest)
    sudo apt install php-xml
    

提交回复
热议问题