Skip to content

Installation

Brad Ploeger edited this page Apr 2, 2019 · 2 revisions

Installing via Composer (recommended)

Composer is a dependency management tool for PHP that allows you to declare the dependencies your project needs and installs them into your project. In order to use the Rezdy API PHP SDK through composer, you must add "bploeger/rezdy-api-v1" as a dependency in your project's composer.json file.

 {
    "require": {
        "bploeger/rezdy-api-v1": "^1.0"
    }
 }

Manual Installation

If you are unable to install using composer, we have provided a zip file that includes a version of the dependencies at the time of our release, as well as our library. Unzip the vendor file in the standalone directory, and require the autoload.php file to use our methods.

Clone this wiki locally