wbtranslator/wbt-sdk-php

There is no license information available for the latest version (v0.1.7) of this package.

WBTranslator SDK-PHP

Installs: 108

Dependents: 2

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 1

pkg:composer/wbtranslator/wbt-sdk-php

v0.1.7 2017-12-20 14:52 UTC

This package is not auto-updated.

Last update: 2025-10-18 19:54:57 UTC


README

Examples

Get all translations

define('WBT_API_KEY', 'ea84db77506cd5bc8586af4ec4b7a347');

$config = new \WBTranslator\Sdk\Config();
$config->setApiKey(WBT_API_KEY);

$sdk = new \WBTranslator\Sdk\WBTranslatorSdk($config);
$result = $sdk->translations()->all();

Other examples can viewed in folder ./examples/