Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHP-Composer, locally installed, remote installation need?

Tags:

composer-php

This is a very simple question and I think that there will be someone who will mark me down for this, but I developed in PHP / CakePHP on my local Ubuntu system, and then install / ftp my code to my hosting company.

With CakePHP which is only PHP code, there is nothing to install, you have to set-up DB connections e.c.t but that is simple stuff but I have just come across PHP Composer, looks very easy to use and install locally.

My question is does it need to be re-installed on my hosting server, e.g once the code / php archive file is loaded into my project and its all working do I need to re-install it via SSH / curl, if so this might not be usable has I would not have access to my server to install it as root but it is only downloading code archive PHP file for use then would this work?

Sorry again for the newbe question but I can not seem to find a simple answer to my question.

Many Thanks

Glenn.

like image 405
Glenn Curtis Avatar asked Aug 18 '13 18:08

Glenn Curtis


1 Answers

No, you'll be able to run Composer locally and then ftp the result to the target server. This is the preferred setup, because otherwise you'd need a shell on the remote server, or some replacement, and that could mean less security, or it is even impossible with most shared hosting.

like image 64
Sven Avatar answered Oct 18 '22 17:10

Sven