Reputation: 749
I've got a client on a shared hosting environment (which I can't change) and I'm needing to install the Parse PHP SDK, but the host won't allow me to install the Composer package manager. Does anyone else know of a manual install method?
Upvotes: 1
Views: 682
Reputation: 70863
Composer isn't meant to be an installer, so you are not expected to run Composer on the production machine. What would happen if during your update process Github would be down? No new website version! And maybe also no old version.
Run Composer somewhere else, and then upload the result to the server, after you verified that everything went well.
Upvotes: 0
Reputation: 24280
If you have wget
/unzip
available, just download latest release zip (bellow the release, this file).
Use unzip
to unpack package and load it with PSR-4 autoloading (the composer's approach).
Upvotes: 1