PHPackages                             aellopus/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. [Database &amp; ORM](/categories/database)
4. /
5. aellopus/client

ActiveLibrary[Database &amp; ORM](/categories/database)

aellopus/client
===============

Official Aellopus client for PHP — a synchronous, zero-dependency AWP/1 client.

v1.0.0(today)01↑2900%Apache-2.0PHPPHP ^8.2CI passing

Since Jun 26Pushed todayCompare

[ Source](https://github.com/Aellopus/php-aellopus)[ Packagist](https://packagist.org/packages/aellopus/client)[ Docs](https://github.com/Aellopus/php-aellopus)[ GitHub Sponsors](https://github.com/sponsors/adibhauzan)[ RSS](/packages/aellopus-client/feed)WikiDiscussions main Synced today

READMEChangelog (1)Dependencies (3)Versions (2)Used By (0)

Aellopus PHP Client (`aellopus/client`)
=======================================

[](#aellopus-php-client-aellopusclient)

Official, synchronous, zero-dependency PHP client for [Aellopus](https://github.com/Aellopus) over the AWP/1 wire protocol.

> Stable. See [`CHANGELOG.md`](CHANGELOG.md) for release notes.

Requirements
------------

[](#requirements)

- PHP `^8.2` (64-bit)

Install
-------

[](#install)

```
composer require aellopus/client
```

Usage
-----

[](#usage)

```
use Aellopus\Client\Client;
use Aellopus\Client\Exception\NotFoundError;

$client = Client::connect('127.0.0.1:6969'); // timeoutMs defaults to 5000

$client->set('user:1', 'John');
echo $client->get('user:1');                 // "John"

try {
    $client->get('absent');
} catch (NotFoundError) {
    // a miss is distinct from an empty value
}

$client->set('counter', '0');
$client->incr('counter');                     // 1

// Lazily walk the keyspace:
foreach ($client->scan('user:*') as $key) {
    echo $key, PHP_EOL;
}

$client->close();
```

Values are raw bytes — they may contain CR, LF, or NUL and round-trip byte-exact. An empty string `""` is a stored value (a hit), never a miss.

License
-------

[](#license)

Apache-2.0

###  Health Score

40

—

FairBetter than 86% of packages

Maintenance100

Actively maintained with recent releases

Popularity2

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity45

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.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

0d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/87602803?v=4)[Adib Hauzan](/maintainers/adibhauzan)[@adibhauzan](https://github.com/adibhauzan)

---

Top Contributors

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

---

Tags

clientdatabasecacheKey valuekvaellopusawp

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Code StyleLaravel Pint

Type Coverage Yes

### Embed Badge

![Health badge](/badges/aellopus-client/health.svg)

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

###  Alternatives

[basho/riak

Official Riak client for PHP

162247.7k7](/packages/basho-riak)[renoki-co/l1

Laravel integration for Cloudflare Workers services.

16218.8k](/packages/renoki-co-l1)[ytake/laravel-couchbase

Couchbase providers for Laravel

3052.1k](/packages/ytake-laravel-couchbase)[mroosz/php-cassandra

A pure-PHP client for Apache Cassandra and ScyllaDB with support for CQL binary protocol v3, v4 and v5 (Cassandra 2.1+ incl. 3.x-5.x; ScyllaDB 6.2 and 2025.x), synchronous and asynchronous APIs, prepared statements, batches, result iterators, object mapping, SSL/TLS, and LZ4 compression.

206.8k3](/packages/mroosz-php-cassandra)

PHPackages © 2026

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