wodby/wodby-sdk-php

Wodby SDK for PHP

3.0.18 2023-04-26 11:35 UTC

This package is auto-updated.

Last update: 2024-03-26 13:30:18 UTC


README

TravisCI Latest stable

The Wodby SDK for PHP makes it easy for developers to access Wodby in their PHP code. You can get started in minutes by installing the SDK through Composer or by downloading a single zip.

Documentation

Install

composer require wodby/wodby-sdk-php

Basic usage

require_once './vendor/autoload.php';

$config = \Wodby\Api\Configuration::getDefaultConfiguration()
    ->setApiKey('X-API-KEY', 'YOUR_API_KEY');

$appApi = new \Wodby\Api\Client\ApplicationApi(new GuzzleHttp\Client(), $config);

// Fetch apps and print them.
$apps = $appApi->getApps();

/** @var \Wodby\Api\Model\App $app */
foreach ($apps as $app) {
    echo sprintf('ID: %d, Name: %s', $app->getId(), $app->getName()), PHP_EOL;
}