This library utilizes GuzzlePHP
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 Constant Contact PHP SDK through composer, you must add "constantcontact/constantcontact" as a dependency in your project's composer.json file.
{
"require": {
"constantcontact/constantcontact": "2.1.*"
}
}
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.
The source documentation is hosted at http://constantcontact.github.io/php-sdk
API Documentation is located at http://developer.constantcontact.com/docs/developer-guides/api-documentation-index.html
The ConstantContact class contains the underlying services that hold the methods that use the API.
use Ctct\ConstantContact;
$cc = new ConstantContact('your api key');
$contacts = $cc->contactService->getContacts('your access token')
Many methods will take an array of parameters for use in the calls. Available params are documented in the PHPDoc of the method.
$params = array("limit" => 500);
$contacts = $cc->contactService->getContacts('your access token', $params);
Use of this library requires PHP 5.4+, and PHP cURL extension (http://php.net/manual/en/book.curl.php)
If you are being required to use an older version of PHP, it is highly recommended that you update to at least 5.4 - but you can use version 1.3.* via composer, or manually.