catch-e / api-sdk
Catch-e API Client SDK
Requires
- php: >= 7.3
- jane-php/open-api-runtime: ~7.2.2
- nyholm/psr7: ^1.2
- symfony/http-client: ^4.3
- symfony/property-access: ^5.3
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.4.0
- jane-php/open-api-2: ~7.2.2
This package is auto-updated.
Last update: 2025-03-01 00:28:21 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.