catch-e/api-sdk

Catch-e API Client SDK

1.0.2 2022-05-31 06:54 UTC

This package is auto-updated.

Last update: 2024-04-29 04:53:37 UTC


README

Reference Docs
https://github.com/catch-e/catch-e-api-php-sdk
License
Apache 2.0

The Catch-e API Client SDK enables you to work with Catch-e APIs on your server.

These client libraries are officially supported by Catch-e.

Requirements

Installation

You can use Composer or simply Download the Release

Composer

The preferred method is via composer. Follow the installation instructions if you do not already have composer installed.

Once composer is installed, execute the following command in your project root to install this library:

composer require catch-e/api-sdk

Finally, be sure to include the autoloader:

require_once '/path/to/your-project/vendor/autoload.php';

Download the Release

If you prefer not to use composer, you can download the package in its entirety. The Releases page lists all stable versions. Download any file with the name catch-e-api-php-sdk-[RELEASE_NAME].zip for a package including this library and its dependencies.

Uncompress the zip file you download, and include the autoloader in your project:

require_once '/path/to/catch-e-api-php-sdk/vendor/autoload.php';

Examples

See the examples/ directory for examples of the key client features.