PHPackages                             brunogasparetto/adobe-connect-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. [API Development](/categories/api)
4. /
5. brunogasparetto/adobe-connect-client

AbandonedArchivedLibrary[API Development](/categories/api)

brunogasparetto/adobe-connect-client
====================================

PHP Cliente for Adobe Connect API

3.1.1(5y ago)105.8k7MITPHPPHP ^7.0

Since Aug 3Pushed 5y ago1 watchersCompare

[ Source](https://github.com/brunogasparetto/AdobeConnectClient)[ Packagist](https://packagist.org/packages/brunogasparetto/adobe-connect-client)[ Docs](https://github.com/brunogasparetto/AdobeConnectClient)[ RSS](/packages/brunogasparetto-adobe-connect-client/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (2)Versions (19)Used By (0)

[![Build Status](https://camo.githubusercontent.com/f181566a1fb09b7bf1ed15949c1f90c798116b7550dcdd6dd9fd81615367479b/68747470733a2f2f7472617669732d63692e636f6d2f6272756e6f6761737061726574746f2f41646f6265436f6e6e656374436c69656e742e7376673f6272616e63683d6d6173746572)](https://travis-ci.com/brunogasparetto/AdobeConnectClient)

Currently I no longer have access to Adobe Connect, so I am unable to continue to maintain this project.

Client for Adobe Connect API v9.5.4
===================================

[](#client-for-adobe-connect-api-v954)

PHP library to comunicate with the [Adobe Connect Web Service](https://helpx.adobe.com/adobe-connect/webservices/topics.html).

There are many actions implemented. Some of them are a sequence of actions, like the RecordingPasscode.

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

[](#installation)

The package is available on [Packagist](https://packagist.org/packages/brunogasparetto/adobe-connect-client). You can install it using [Composer](http://getcomposer.org/)

```
$ composer require brunogasparetto/adobe-connect-client
```

Usage
-----

[](#usage)

```
use AdobeConnectClient\Connection\Curl\Connection;
use AdobeConnectClient\Client;

$connection = new Connection('https://hostname.adobeconnect.com');
$client =  new Client($connection);
$commonInfo = $client->commonInfo();
```

You can use filters and sorters in some actions.

```
use AdobeConnectClient\Connection\Curl\Connection;
use AdobeConnectClient\Client;
use AdobeConnectClient\Entities\SCO;
use AdobeConnectClient\Filter;
use AdobeConnectClient\Sorter;

$connection = new Connection('https://hostname.adobeconnect.com');
$client =  new Client($connection);

$client->login('username', 'password');

$folderId = 123;

$filter = Filter::instance()
  ->dateAfter('dateBegin', new DateTimeImmutable())
  ->like('name', 'ClassRoom');

$sorter = Sorter::instance()
  ->asc('dateBegin');

$scos = $client->scoContents($folderId, $filter, $sorter);
```

The entities, filters and sorter use Fluent Interface.

The **AdobeConnectClient\\Connection\\Curl\\Connection** class accept an array of options to configure the CURL.

```
use AdobeConnectClient\Connection\Curl\Connection;
use AdobeConnectClient\Client;

// For tests with no SSL
$connection = new Connection(
  'https://hostname.adobeconnect.com',
  [
    CURLOPT_SSL_VERIFYHOST => 0,
    CURLOPT_SSL_VERIFYPEER => 0,
  ]
);
$client =  new Client($connection);
$commonInfo = $client->commonInfo();
```

### IMPORTANT

[](#important)

All Client actions are throwable.

```
use AdobeConnectClient\Connection\Curl\Connection;
use AdobeConnectClient\Client;
use AdobeConnectClient\Exceptions\NoAccessException;

$connection = new Connection('https://hostname.adobeconnect.com');
$client = new Client($connection);

// Throws NoAccessException if not logged in
$client->scoInfo(123);
```

---

- [License](LICENSE)

###  Health Score

35

—

LowBetter than 79% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity27

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity67

Established project with proven stability

 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

Every ~94 days

Recently: every ~227 days

Total

17

Last Release

2061d ago

Major Versions

1.1.4 → 2.0.12017-08-17

2.0.4 → 3.0.02018-03-24

PHP version history (3 changes)1.0.4PHP &gt;=5.6.0

3.0.0PHP ^5.6 || ^7.0

3.0.3PHP ^7.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/dba74170e750b9b48b6657526cef7a9c185a069cab394c3bf868b658a78dae18?d=identicon)[brunogasparetto](/maintainers/brunogasparetto)

---

Top Contributors

[![brunogasparetto](https://avatars.githubusercontent.com/u/1617042?v=4)](https://github.com/brunogasparetto "brunogasparetto (163 commits)")

---

Tags

adobeadobe-connectapiphpphpapiclientconnectadobe

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/brunogasparetto-adobe-connect-client/health.svg)

```
[![Health](https://phpackages.com/badges/brunogasparetto-adobe-connect-client/health.svg)](https://phpackages.com/packages/brunogasparetto-adobe-connect-client)
```

###  Alternatives

[kunalvarma05/dropbox-php-sdk

Dropbox PHP API V2 SDK (Unofficial)

3633.0M18](/packages/kunalvarma05-dropbox-php-sdk)[platforg/adobe-connect

Provides a PHP Client to interact with the Adobe Connect's API

1510.1k2](/packages/platforg-adobe-connect)[mozex/anthropic-php

Anthropic PHP is a supercharged community-maintained PHP API client that allows you to interact with Anthropic API.

46365.1k13](/packages/mozex-anthropic-php)[google-gemini-php/symfony

Symfony Bundle for Gemini

149.4k1](/packages/google-gemini-php-symfony)

PHPackages © 2026

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