time of installing migration tool in magento2.2.7 getting error vertex/sdk 1.0.0 requires ext-soap * -> the requested PHP extension soap is missing from your system.But soap is already installed and enabled. Attached error and phpinfo screen shot. Please help
Hello,
The issue appears because, when you are installing the module using the composer, you should also define from which php the composer should run. This case arrises when different php are installed.
Check the php which you are using by command :
which php php -v
After that mention the php path before the composer like :
/opt/lampp/bin/php composer require vendor/module-name OR /vendor/composer/composer/bin/composer require vendor/module-name
Problem solved? Click Kudos and "Accept as Solution".