keboola/orchestrator-php-client
最新稳定版本:1.2.4
Composer 安装命令:
composer require keboola/orchestrator-php-client
包简介
PHP Client for KBC Orchestrator
README 文档
README
Simple PHP wrapper library for Keboola Orchestrator REST API
Installation
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/composer
Create composer.json file in your project root folder:
{
"require": {
"php" : ">=5.6",
"keboola/orchestrator-php-client": "1.3.*"
}
}
Install package:
composer install
Add autoloader in your bootstrap script:
require 'vendor/autoload.php';
Read more in Composer documentation
Usage
Execute all orchestrations in KBC project example:
use Keboola\Orchestrator\Client; $client = Client::factory(array( 'token' => 'YOUR_TOKEN', )); // retrieve all orchestrations in KBC project $orchestrations = $client->getOrchestrations(); foreach ($orchestrations AS $orchestration) { // manually execute orchestration $client->createJob($orchestration['id']); }
Tests
To run tests you need Storage API token to an empty project in Keboola Connection. The project must be in US region.
Create .env file with environment variables:
ORCHESTRATOR_API_URL=https://syrup.keboola.com/orchestrator/
ORCHESTRATOR_API_TOKEN=your_token
ERROR_NOTIFICATION_EMAIL={your_email}
ORCHESTRATOR_API_URL- Url of Orchestrator Rest API endpointORCHESTRATOR_API_TOKEN- Valid Storage API token. Token must havecanManageTokenspermissions.ERROR_NOTIFICATION_EMAIL- Your email address. It will be used in orchestrator notification settings.
Build image and run tests
docker network create orchestrator-router_api-tests docker-compose build tests docker-compose run --rm tests ./vendor/bin/phpunit
License
MIT licensed, see LICENSE file.
统计信息
- 总下载量: 2.66k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2014-03-31