PHPackages                             phpcloudnative/clients - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. phpcloudnative/clients

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

phpcloudnative/clients
======================

The various cloud native base clients that can accept adapters.

00PHP

Since May 13Pushed 4y ago1 watchersCompare

[ Source](https://github.com/phpcloudnative/clients)[ Packagist](https://packagist.org/packages/phpcloudnative/clients)[ RSS](/packages/phpcloudnative-clients/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (2)Used By (0)

PHPCloudNative
==============

[](#phpcloudnative)

Active Development - Don't Use
------------------------------

[](#active-development---dont-use)

This system is actively being developed. There will be breaking changes. It would not be wise to use.

Description
-----------

[](#description)

An adapter system to use cloud-native architecture without vendor lock-in.

How to use
----------

[](#how-to-use)

This architecture follows the adapter pattern. You will need to include a library that follows the various service interfaces. All interfaces exist within the associated service namespace.

### 1. Add base PHPCloudNative clients package

[](#1-add-base-phpcloudnative-clients-package)

`composer require phpcloudnative/clients@^1.0.0 `

### 2. Add cloud adapter package

[](#2-add-cloud-adapter-package)

***(example: Aws)***

`composer require phpcloudnative/aws@^1.0.0 `

### 3. Initialize &amp; use in your application

[](#3-initialize--use-in-your-application)

```
require_once "vendor/autoload.php"

// Create a new queue
// Be careful with the config object. You will need it
// but you can & likely will put infrastructure specific configuration

$queue = new PHPCloudNative/Clients/Queue(
  PHPCloudNativeAWS::class,
  [
    "name" => "sample queue",
    "attributes" => [
      "DelaySeconds" => 5,
      "MaximumMessageSize" => 3050
    ]
  ]
);
$queue->send("sample message", "queueName", [
  'delay' => 10,
  'attributes' => [
    'title' => 'hitchhikers guide.'
  ]
]
]);

```

Questions
---------

[](#questions)

### What's the point?

[](#whats-the-point)

Many applications are going cloud native to take advantage of their various infrastructure services instead of running everything on a server instance that you manage. You get several benefits when you go cloud native such as giving infrastructure related concerns to your infrastructure platform, reducing costs &amp; ease of scale. On the flipside, the infrastructure provider gives you their SDK and you become "locked-in" to this vendor which is a bad smell. You don't want your application to be stuck if something happens to your infrastructure without doing a major overhaul.

The goal of this system is to help prevent that lock-in, give you the benefits of going cloud-native without risking your app to be held hostage buy an infrastructure platform.

###  Health Score

14

—

LowBetter than 2% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity0

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity28

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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/34e81943c38f632d6d75665e90e7c0e5fc7511ff60cbdfe7b3cc9cae372ea144?d=identicon)[thatmiracle](/maintainers/thatmiracle)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/phpcloudnative-clients/health.svg)

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

###  Alternatives

[lvzhao1995/amap-sdk

高德地图SDK

1211.7k](/packages/lvzhao1995-amap-sdk)[moura137/laravel-elephantio

ElephantIO Service Provider for the Laravel PHP Framework

107.0k](/packages/moura137-laravel-elephantio)

PHPackages © 2026

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