PHPackages                             gentor/userengage-php - 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. gentor/userengage-php

ActiveLibrary

gentor/userengage-php
=====================

UserEngage.io Rest API PHP SDK

16511[1 PRs](https://github.com/gentor/userengage-php/pulls)PHP

Since Aug 27Pushed 7y ago2 watchersCompare

[ Source](https://github.com/gentor/userengage-php)[ Packagist](https://packagist.org/packages/gentor/userengage-php)[ RSS](/packages/gentor-userengage-php/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

UserEngage.io PHP SDK
=====================

[](#userengageio-php-sdk)

PHP 5.6 SDK for UserEngage Rest API

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

[](#installation)

Installation using composer:

```
composer require gentor/userengage-php

```

Usage
-----

[](#usage)

```
$client = new UserengageClient('REST_API_KEY');
$users = new UserengageUsers($client);
```

- Create User

```
$user = $users->create([
    'first_name' => 'API',
    'last_name' => 'User',
    'email' => 'api.user@test.com'
]);
```

- Update User

```
$user = $users->update($id, [
    'first_name' => 'API',
    'last_name' => 'Update',
]);
```

- Delete User

```
$users->delete($id);
```

- Find User

```
// By ID
$user = $users->find($id);

// By Key
$user = $users->findByKey($key);

// By Date
$users = $users->findByDate($minTimestamp, $maxTimestamp, $type);
```

- List User Details

```
$results = $users->details();

// Pagination
$users = $client->nextPage($results);
$users = $client->previousPage($results);
```

Documentation
-------------

[](#documentation)

[UserEngage API](https://userengage.io/en-us/api/introduction/)

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity16

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity40

Maturing project, gaining track record

 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/210fd495e96c05caab1d50c09165794ff73175a9b49c43f91df0c8524dfa8add?d=identicon)[gentor](/maintainers/gentor)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/gentor-userengage-php/health.svg)

```
[![Health](https://phpackages.com/badges/gentor-userengage-php/health.svg)](https://phpackages.com/packages/gentor-userengage-php)
```

PHPackages © 2026

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