johngeek
johngeek

Reputation: 749

Manually install Parse PHP SDK without Composer

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

Answers (2)

Sven
Sven

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

Tomas Votruba
Tomas Votruba

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

Related Questions