How to install composer on app service?

余生颓废 提交于 2019-12-17 07:50:10

问题


I am new to using Microsoft Azure. My application requires composer to be installed on the server, how can I have it installed on the system of App services service? Application is in PHP.


回答1:


You can install composer extension in the manage portal of your App Services.

  • Login on your Azure Account at https://portal.azure.com
  • Click the "tools" button, select "extensions" bar in the list on the right. Click "Add" button, open the extension list allowed to install in App Services. You can choose "Composer" there.

After installing, you also can install Visual Studio Online extension or leverage Kudu console site to handle or run commands of your Apps.




回答2:


Another way to install composer

  • Navigate to your azure portal
  • Click on SSH
  • Type curl -sS https://getcomposer.org/installer | php


来源:https://stackoverflow.com/questions/35035504/how-to-install-composer-on-app-service

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!