Answers for "Composer detected issues in your platform: Your Composer dependencies require the following PHP extensions to be installed: mysqli, xml"

PHP
1

Composer detected issues in your platform: Your Composer dependencies require the following PHP extensions to be installed:

sudo yum search php-THE_EXTENSION

sudo yum install THE_EXTENSION_FROM_LIST
Posted by: Guest on July-06-2021
0

composer detected issues in your platform: your composer dependencies require the following php extensions to be installed: xml

//make a config file
/*Follow this trick

add this line in config object of composer.json file

"platform-check": false

run php artisan config:cache

then run composer dump-autoload in terminal*/

{

"config": {

    "platform-check": false
}

}
Posted by: Guest on September-11-2021

Code answers related to "Composer detected issues in your platform: Your Composer dependencies require the following PHP extensions to be installed: mysqli, xml"

Browse Popular Code Answers by Language