PHPackages                             robo/robo-connector-sdk - 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. [API Development](/categories/api)
4. /
5. robo/robo-connector-sdk

ActiveLibrary[API Development](/categories/api)

robo/robo-connector-sdk
=======================

Robo Connector SDK for App Store and external service integrations

v0.1(4mo ago)0267↓50%proprietaryPHPPHP &gt;=8.2

Since Jan 10Pushed 4mo agoCompare

[ Source](https://github.com/Robo-Meister/robo-connector-sdk-php)[ Packagist](https://packagist.org/packages/robo/robo-connector-sdk)[ RSS](/packages/robo-robo-connector-sdk/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (2)Used By (0)

Robo Connector SDK (PHP)
========================

[](#robo-connector-sdk-php)

Lightweight PHP SDK for the Robo Connector APIs. This package is framework-free and designed to be Packagist-friendly.

Install
-------

[](#install)

```
composer require robo/robo-connector-sdk
```

App Store usage
---------------

[](#app-store-usage)

```
use Robo\ConnectorSdk\AppStoreClient;

$client = new AppStoreClient(
    baseUrl: 'https://app.robo.dev',
    accessToken: 'app-store-user-token'
);

$intent = $client->getPurchaseIntent('marketplace', 'flowbeacon-ai', [
    'version' => '1.2.3',
]);

$install = $client->installPackage(
    'marketplace',
    'flowbeacon-ai',
    $intent['install_request']['payload'],
    idempotencyKey: 'install-'.bin2hex(random_bytes(8))
);

$status = $client->getInstallJob($install['job_id']);
```

External service usage (Integration API)
----------------------------------------

[](#external-service-usage-integration-api)

```
use Robo\ConnectorSdk\ExternalServiceClient;

$client = new ExternalServiceClient(
    baseUrl: 'https://app.robo.dev',
    apiToken: 'organisation-api-token',
    productId: 'flowbeacon-ai'
);

$providers = $client->listProviders();

$clientData = $client->upsertClient([
    'email' => 'customer@example.com',
    'name' => 'Customer Name',
    'product_id' => 'flowbeacon-ai',
], idempotencyKey: 'client-'.bin2hex(random_bytes(8)));

$payment = $client->createPayment([
    'product_id' => 'flowbeacon-ai',
    'provider' => 'stripe',
    'amount' => 249.00,
    'currency' => 'EUR',
    'client' => 'customer@example.com',
    'metadata' => ['source' => 'integration-demo'],
], idempotencyKey: 'payment-'.bin2hex(random_bytes(8)));
```

Notes
-----

[](#notes)

- The App Store endpoints use a **user access token** (OAuth) or a system token with equivalent permissions.
- The Integration API uses an **organisation API token** and often requires `X-Product-ID` or `product_id`.
- POST/PATCH endpoints require an `Idempotency-Key`. The SDK exposes this as an optional argument.
- Use the `request()` method on each client if you need to call an endpoint that is not wrapped yet.

###  Health Score

36

—

LowBetter than 82% of packages

Maintenance78

Regular maintenance activity

Popularity16

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity36

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% 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

Unknown

Total

1

Last Release

120d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/211215651?v=4)[Robo Meister](/maintainers/Robo-Meister)[@Robo-Meister](https://github.com/Robo-Meister)

---

Top Contributors

[![Apacz](https://avatars.githubusercontent.com/u/1978681?v=4)](https://github.com/Apacz "Apacz (1 commits)")

### Embed Badge

![Health badge](/badges/robo-robo-connector-sdk/health.svg)

```
[![Health](https://phpackages.com/badges/robo-robo-connector-sdk/health.svg)](https://phpackages.com/packages/robo-robo-connector-sdk)
```

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M480](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M271](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M187](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)[google/gax

Google API Core for PHP

263103.1M454](/packages/google-gax)

PHPackages © 2026

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