zinobe/zdk

There is no license information available for the latest version (dev-master) of this package.

ZDK(is SDK) for Zinobe API's

Maintainers

Package info

github.com/SandoDev/zdk-php

pkg:composer/zinobe/zdk

Statistics

Installs: 16

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

dev-master 2020-07-14 21:57 UTC

This package is auto-updated.

Last update: 2026-03-15 10:51:38 UTC


README

ZDK for PHP of Zinobe API's

See the official documentation here

Quick Start

Instalation

  1. Download and install composer here
  2. initialize composer in your project
composer init
  1. Install ZDK
composer require zinobe/zdk

Implement

include __DIR__ . "/vendor/autoload.php";

use Zinobe\Zdk\ClientServices;

$client = new ClientServices();
$api = $client->service("zevents");
$postdata = '{"identity":"1032498297"}';
$result = $api->download_profile($postdata);
print_r($result);