PHPackages                             enhavo/cleverreach - 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. enhavo/cleverreach

ActiveLibrary[API Development](/categories/api)

enhavo/cleverreach
==================

CleverReach REST API v3 client

v0.15.13(1y ago)16.7k41MITPHPPHP ^8.0

Since Oct 12Pushed 2mo ago6 watchersCompare

[ Source](https://github.com/enhavo/cleverreach)[ Packagist](https://packagist.org/packages/enhavo/cleverreach)[ Docs](https://github.com/enhavo/cleverreach)[ RSS](/packages/enhavo-cleverreach/feed)WikiDiscussions master Synced 3w ago

READMEChangelog (1)Dependencies (8)Versions (56)Used By (1)

[![alt text](enhavo.svg "enhavo")](enhavo.svg)

CleverReach REST API v3 client
==============================

[](#cleverreach-rest-api-v3-client)

This library makes it easy to interact with the CleverReach REST API v3.

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

[](#installation)

```
composer require enhavo/cleverreach
```

Usage
-----

[](#usage)

**Initialize an API manager**

```
use Enhavo\Component\CleverReach\ApiManager;
use Enhavo\Component\CleverReach\Http\SymfonyAdapter;

$adapter = new SymfonyAdapter();

// Authorize your app by credentials
$adapter->authorize('', '');

// Create the API manager
$apiManager = new ApiManager($adapter);
```

**Create an inactive subscriber**

```
$response = $apiManager->createSubscriber(
    '',
    '',
    false, // not activated
    [
        'salutation' => 'Mr.',
        'firstname' => 'John',
        'lastname' => 'Doe',
    ]
);

if (isset($response['id'])) {
    // ...
}
```

**Trigger Double-Opt-In email for an inactive subscriber**

```
$response = $apiManager->triggerDoubleOptInEmail('', '');

if (isset($response['success'])) {
    // ...
}
```

**Trigger Double-Opt-Out email for an active subscriber**

```
$response = $apiManager->triggerDoubleOptOutEmail('', '');

if (isset($response['success'])) {
    // ...
}
```

**Get subscriber**

```
$response = $apiManager->getSubscriber('', '');

if (isset($response['id'])) {
    // ...
}
```

**Set active status of a subscriber**

```
$response = $apiManager->getSubscriber('', '', '');

if (true === $response) {
    // ...
}
```

**Delete subscriber**

```
$response = $apiManager->deleteSubscriber('', '');

if (true === $response) {
    // ...
}
```

###  Health Score

48

—

FairBetter than 94% of packages

Maintenance70

Regular maintenance activity

Popularity26

Limited adoption so far

Community22

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 50% 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 ~37 days

Recently: every ~67 days

Total

54

Last Release

143d ago

PHP version history (2 changes)v0.15.9PHP ^8.0

0.16.x-devPHP ^8.4

### Community

Maintainers

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

---

Top Contributors

[![gseidel](https://avatars.githubusercontent.com/u/4236925?v=4)](https://github.com/gseidel "gseidel (8 commits)")[![indivisualvj](https://avatars.githubusercontent.com/u/7021685?v=4)](https://github.com/indivisualvj "indivisualvj (2 commits)")[![JoniHoffi](https://avatars.githubusercontent.com/u/70387173?v=4)](https://github.com/JoniHoffi "JoniHoffi (2 commits)")[![nsd0sbock](https://avatars.githubusercontent.com/u/168078094?v=4)](https://github.com/nsd0sbock "nsd0sbock (2 commits)")[![FabianLiebl](https://avatars.githubusercontent.com/u/13798029?v=4)](https://github.com/FabianLiebl "FabianLiebl (1 commits)")[![ma4nn](https://avatars.githubusercontent.com/u/26252058?v=4)](https://github.com/ma4nn "ma4nn (1 commits)")

---

Tags

REST APInewslettercleverreach

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/enhavo-cleverreach/health.svg)

```
[![Health](https://phpackages.com/badges/enhavo-cleverreach/health.svg)](https://phpackages.com/packages/enhavo-cleverreach)
```

###  Alternatives

[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.5k5.8M712](/packages/sylius-sylius)[temporal/sdk

Temporal SDK

4102.7M22](/packages/temporal-sdk)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.4M196](/packages/sulu-sulu)[web-auth/webauthn-framework

FIDO2/Webauthn library for PHP and Symfony Bundle.

51390.8k2](/packages/web-auth-webauthn-framework)[rdoepner/cleverreach

CleverReach REST API v3 client

34330.9k](/packages/rdoepner-cleverreach)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

585.4M519](/packages/shopware-core)

PHPackages © 2026

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