Getting started
#
InstallationYou 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.
- Check out source:
git checkout [email protected]:Servebolt/php-sdk.git
- Navigate into directory:
cd php-sdk
- Run
composer install
#
UsageRemember 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