cadmus / api
There is no license information available for the latest version (v1.0) of this package.
CadmusApi hub client library
v1.0
2017-11-08 10:17 UTC
Requires
- php: ^5.3.3 || ^7.0
- kriswallsmith/buzz: @dev
- stephenhill/base58: ~1.0
This package is not auto-updated.
Last update: 2025-03-21 22:44:49 UTC
README
CadmusApi hub client library
Install
composer require cadmus/api @dev
Example
<?php use Cadmus\API\Client; include_once("vendor/autoload.php"); $api = new Client("01904164d2e2db20400612e9d70d24b3dc2db17567ec92cb93c51b87697793c1"); // Ключ к api $response = $api->call("pg/demo", [ "assoc" => "array", "of" => "parameters", ]); if ($response !== false) { echo "Post Result: " . print_r($response, true) . "\n"; } else { echo "Post Error: " . $api->getError() . "\n"; }