https://sandboxes.keboola.com/documentation
Library is available as composer package. To start using composer in your project follow these steps:
Install composer
curl -s http://getcomposer.org/installer | php
mv ./composer.phar ~/bin/composer # or /usr/local/bin/composerCreate composer.json file in your project root folder:
{
"require": {
"keboola/sandboxes-api-php-client": "~1.0"
}
}Install package:
composer installAdd autoloader in your bootstrap script:
require 'vendor/autoload.php';Read more in Composer documentation
CI is running in GitHub and requires setup of these secrets:
KBC_STORAGE_TOKEN- a Storage token working for connection.keboola.com stackKBC_MANAGE_TOKEN- Manage token withprovisioning:managescope
MIT licensed, see LICENSE file.