Instalação

Esta extensão está habilitada por padrão. Ela pode ser desabilitada usando a seguinte opção em tempo de compilação: --disable-dom

add a note add a note

User Contributed Notes 2 notes

up
6
atom_box at example dot com
2 years ago
This dom extension was *not* enabled by default on Ubuntu 20.

Composer had thrown this during phpunit installation: `must enable php dom extension`.

That problem went away once I ran `sudo apt-get install php-xml`. Now everything is fine; phpunit installed fine.
up
-73
smleimberg at NOSPAM dot gmail dot com
6 years ago
For Ubuntu:
sudo apt-get install php7.0-xml

For Fedora:
yum -y install php-xml
To Top