php7 extension ext error composer laravel composer-php laravel-5.4 php-7

laravel - extension - phpunit phpunit 5.3 5 requires ext dom



PHP7: instala el problema ext-dom (3)

Estoy ejecutando laravel 5.4 en el servidor Ubuntu 16.04 con PHP7. tratando de instalar el cviebrock/eloquent-sluggable arroja algún error:

pish@let:/home/sherk/ftp/www$ sudo composer require cviebrock/eloquent-sluggable Do not run Composer as root/super user! See https://getcomposer.org/root for details Using version ^4.2 for cviebrock/eloquent-sluggable ./composer.json has been updated Loading composer repositories with package information Updating dependencies (including require-dev) Your requirements could not be resolved to an installable set of packages. Problem 1 - phpunit/php-code-coverage 4.0.7 requires ext-dom * -> the requested PHP extension dom is missing from your system. - phpunit/php-code-coverage 4.0.7 requires ext-dom * -> the requested PHP extension dom is missing from your system. - Installation request for phpunit/php-code-coverage (installed at 4.0.7) -> satisfiable by phpunit/php-code-coverage[4.0.7]. To enable extensions, verify that they are enabled in those .ini files: - /etc/php/7.0/cli/php.ini - /etc/php/7.0/cli/conf.d/10-mysqlnd.ini - /etc/php/7.0/cli/conf.d/10-opcache.ini - /etc/php/7.0/cli/conf.d/10-pdo.ini - /etc/php/7.0/cli/conf.d/20-calendar.ini - /etc/php/7.0/cli/conf.d/20-ctype.ini - /etc/php/7.0/cli/conf.d/20-exif.ini - /etc/php/7.0/cli/conf.d/20-fileinfo.ini - /etc/php/7.0/cli/conf.d/20-ftp.ini - /etc/php/7.0/cli/conf.d/20-gd.ini - /etc/php/7.0/cli/conf.d/20-gettext.ini - /etc/php/7.0/cli/conf.d/20-iconv.ini - /etc/php/7.0/cli/conf.d/20-json.ini - /etc/php/7.0/cli/conf.d/20-mbstring.ini - /etc/php/7.0/cli/conf.d/20-mcrypt.ini - /etc/php/7.0/cli/conf.d/20-mysqli.ini - /etc/php/7.0/cli/conf.d/20-pdo_mysql.ini - /etc/php/7.0/cli/conf.d/20-phar.ini - /etc/php/7.0/cli/conf.d/20-posix.ini - /etc/php/7.0/cli/conf.d/20-readline.ini - /etc/php/7.0/cli/conf.d/20-shmop.ini - /etc/php/7.0/cli/conf.d/20-sockets.ini - /etc/php/7.0/cli/conf.d/20-sysvmsg.ini - /etc/php/7.0/cli/conf.d/20-sysvsem.ini - /etc/php/7.0/cli/conf.d/20-sysvshm.ini - /etc/php/7.0/cli/conf.d/20-tokenizer.ini You can also run `php --ini` inside terminal to see which files are used by PHP in CLI mode. Installation failed, reverting ./composer.json to its original content.

No tengo problemas para instalar este paquete en la versión local de la aplicación.


En primer lugar, lea la advertencia! ¡Dice que no ejecutes el compositor como root ! En segundo lugar, probablemente esté utilizando Xammp en su local que tiene las bibliotecas de php requeridas por defecto.

Pero en tu servidor te falta ext-dom . php7.1-xml tiene todos los paquetes relacionados que necesita. Entonces, simplemente puede instalarlo ejecutando:

sudo apt-get update sudo apt-get install php7.1-xml

Lo más probable es que también te falte mbstring . Si recibe el error, instale este paquete también con:

sudo apt-get install php-mbstring

Entonces corre:

composer update composer require cviebrock/eloquent-sluggable


Para CentOS, RHEL, Fedora:

$ yum search php-xml ============================================================================================================ N/S matched: php-xml ============================================================================================================ php-xml.x86_64 : A module for PHP applications which use XML php-xmlrpc.x86_64 : A module for PHP applications which use the XML-RPC protocol php-xmlseclibs.noarch : PHP library for XML Security php54-php-xml.x86_64 : A module for PHP applications which use XML php54-php-xmlrpc.x86_64 : A module for PHP applications which use the XML-RPC protocol php55-php-xml.x86_64 : A module for PHP applications which use XML php55-php-xmlrpc.x86_64 : A module for PHP applications which use the XML-RPC protocol php56-php-xml.x86_64 : A module for PHP applications which use XML php56-php-xmlrpc.x86_64 : A module for PHP applications which use the XML-RPC protocol php70-php-xml.x86_64 : A module for PHP applications which use XML php70-php-xmlrpc.x86_64 : A module for PHP applications which use the XML-RPC protocol php71-php-xml.x86_64 : A module for PHP applications which use XML php71-php-xmlrpc.x86_64 : A module for PHP applications which use the XML-RPC protocol php72-php-xml.x86_64 : A module for PHP applications which use XML php72-php-xmlrpc.x86_64 : A module for PHP applications which use the XML-RPC protocol php73-php-xml.x86_64 : A module for PHP applications which use XML php73-php-xmlrpc.x86_64 : A module for PHP applications which use the XML-RPC protocol

Luego seleccione la versión php-xml que coincida con su versión php:

# php -v PHP 7.2.11 (cli) (built: Oct 10 2018 10:00:29) ( NTS ) Copyright (c) 1997-2018 The PHP Group Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies # sudo yum install -y php72-php-xml.x86_64


Para quienes quieran instalar ext-dom en php 7.1 y superior, ejecuten este comando:

sudo apt install php-xml