Hi @Nelson Mendaros ,
Your app service should run composer if you're utilizing build automation.
However, once you're SSH'd into your app service:
- Create an
ext
directory inside/home/site
and download composer into that directory:mkdir /home/site/ext
cd /home/site/ext
curl -sS https://getcomposer.org/installer | php
- Once installed, you can run it locally but to access globally, it needs to be added into
/usr/local/bin/composer
during app startup. To do that, createstartup.sh
under/home
usingvi startup.sh
(press "i") and addcp /home/site/ext/composer.phar /usr/local/bin/composer
and save (press "Esc" then ":wq!") - Change the Configuration > General Settings Startup Command to
/home/startup.sh