PHPackages                             keboola/orchestrator-php-client - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. keboola/orchestrator-php-client

ActiveLibrary

keboola/orchestrator-php-client
===============================

PHP Client for KBC Orchestrator

1.2.4(2y ago)02.6k[1 issues](https://github.com/keboola/orchestrator-php-client/issues)PHPPHP &gt;=5.6

Since Mar 31Pushed 2y ago16 watchersCompare

[ Source](https://github.com/keboola/orchestrator-php-client)[ Packagist](https://packagist.org/packages/keboola/orchestrator-php-client)[ Docs](https://connection.keboola.com)[ RSS](/packages/keboola-orchestrator-php-client/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (5)Dependencies (3)Versions (20)Used By (0)

Keboola Orchestrator API PHP client
===================================

[](#keboola-orchestrator-api-php-client)

[![Branch workflow](https://github.com/keboola/orchestrator-php-client/actions/workflows/branch.yml/badge.svg?branch=master)](https://github.com/keboola/orchestrator-php-client/actions/workflows/branch.yml)

Simple PHP wrapper library for [Keboola Orchestrator REST API](http://docs.keboolaorchestratorv2api.apiary.io/)

Installation
------------

[](#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](http://getcomposer.org/doc/01-basic-usage.md)

Usage
-----

[](#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
-----

[](#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 endpoint
- `ORCHESTRATOR_API_TOKEN` - Valid Storage API token. Token must have `canManageTokens` permissions.
- `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
-------

[](#license)

MIT licensed, see [LICENSE](./LICENSE) file.

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity16

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity67

Established project with proven stability

 Bus Factor1

Top contributor holds 84.8% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~217 days

Recently: every ~699 days

Total

17

Last Release

952d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/686cb55a914d5644c19e35edb72b092f2242768c44801236a671aebb8dd5e8b3?d=identicon)[ErikZigo](/maintainers/ErikZigo)

---

Top Contributors

[![ErikZigo](https://avatars.githubusercontent.com/u/1726727?v=4)](https://github.com/ErikZigo "ErikZigo (78 commits)")[![ujovlado](https://avatars.githubusercontent.com/u/419849?v=4)](https://github.com/ujovlado "ujovlado (10 commits)")[![Halama](https://avatars.githubusercontent.com/u/903531?v=4)](https://github.com/Halama "Halama (2 commits)")[![odinuv](https://avatars.githubusercontent.com/u/4319320?v=4)](https://github.com/odinuv "odinuv (2 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/keboola-orchestrator-php-client/health.svg)

```
[![Health](https://phpackages.com/badges/keboola-orchestrator-php-client/health.svg)](https://phpackages.com/packages/keboola-orchestrator-php-client)
```

###  Alternatives

[coincheck/coincheck

Bindings of coincheck API

202.2k](/packages/coincheck-coincheck)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
