wodby / wodby-sdk-php
Wodby SDK for PHP
3.0.18
2023-04-26 11:35 UTC
Requires
- php: >=7.0
- ext-curl: *
- ext-json: *
- ext-mbstring: *
- guzzlehttp/guzzle: ^6.2
Requires (Dev)
- codeception/codeception: ^2.4 || ^3.0
README
PHP client for the Wodby 2.0 Public API.
Documentation
- API reference
- OpenAPI schema
- Generated SDK docs:
SwaggerClient-php/docs
Install
composer require wodby/wodby-sdk-php
Authentication
Wodby API requests use an API key in the X-API-KEY header.
<?php require_once __DIR__ . '/vendor/autoload.php'; $config = Wodby\Api\Configuration::getDefaultConfiguration() ->setApiKey('X-API-KEY', getenv('WODBY_API_KEY'));