0
votes

I am trying to do composer install but it needs some php extension to be installed like php-soap

besimple/soap-client v0.2.6 requires ext-soap * -> the requested PHP extension soap is missing from your system.

Linux OS is: Debian GNU/Linux 8

So, How can i enable php-soap in azure web app?

1
You bake that into your container then bring the container to run on App Service - azure.microsoft.com/en-us/services/app-service/containersevilSnobu
I am using Azure php7.0 built-in container!Ayman Hussein
Don't. Build you own, you can start with the built-in one as your base: github.com/Azure-App-Service/phpevilSnobu

1 Answers

1
votes

Please check this blog that explain how to install PHP extension on Azure App Service plan on Linux.

Also there is a great document available on how to do this at Microsoft docs link here.