-
Notifications
You must be signed in to change notification settings - Fork 4
Installation
Brad Ploeger edited this page Apr 2, 2019
·
2 revisions
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"
}
}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.
Rezdy API V1 PHP Wrapper