Skip to main content
Version: 1.2.0-beta

Getting started

Installation#

You can install servebolt-php-sdk via composer or by downloading the source.

Via Composer:#

servebolt-php-sdk is available at Packagist.org as the servebolt/sdk-package:

composer require servebolt/sdk

From source:#

You can also build the source code yourself.

  1. Check out source: git checkout [email protected]:Servebolt/php-sdk.git
  2. Navigate into directory: cd php-sdk
  3. Run composer install

Usage#

Remember to include the Composer autoload-file!

require __DIR__ . '/vendor/autoload.php';use Servebolt\Sdk\Client;$client = new Client([    'apiToken' => 'your-api-token',]);$response = $client->cron->list(); // Example call - get all cron jobs