magento/product-community-edition 2.2.3 requires ext-intl
Error: Installation request for magento/product-community-edition 2.2.3 -> satisfiable by magento/product-community-edition[2.2.3].
- magento/product-community-edition 2.2.3 requires ext-intl * -> the requested PHP extension intl is missing from your system.
cause: not able to find an extension intl as you can see in the error message ext stands for extension
Solution: we need to install intl extension to do that simply use below command
yum install php-intl (cent os)
apt install php-intl (ubuntu)
- magento/product-community-edition 2.2.3 requires ext-intl * -> the requested PHP extension intl is missing from your system.
cause: not able to find an extension intl as you can see in the error message ext stands for extension
Solution: we need to install intl extension to do that simply use below command
yum install php-intl (cent os)
apt install php-intl (ubuntu)
Comments
Post a Comment