PHPackages                             reactmore/support-adapter - 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. reactmore/support-adapter

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

reactmore/support-adapter
=========================

v1.0.3(9mo ago)0461MITPHPPHP ^8.1

Since Sep 23Pushed 9mo agoCompare

[ Source](https://github.com/reactmore/support-adapter)[ Packagist](https://packagist.org/packages/reactmore/support-adapter)[ RSS](/packages/reactmore-support-adapter/feed)WikiDiscussions main Synced today

READMEChangelog (4)Dependencies (4)Versions (5)Used By (1)

Support Adapter Guzzle for CodeIgniter 4
========================================

[](#support-adapter-guzzle-for-codeigniter-4)

Support Adapter is a lightweight package that provides a Guzzle HTTP Adapter with a flexible approach for both CodeIgniter 4 and standalone PHP projects.

Its main goal is to simplify HTTP communication with external APIs through the PSR-7 and PSR-18 standards, keeping your code clean, consistent, and testable.

📦 Installation
--------------

[](#-installation)

1. **Install via Composer**

```
composer require reactmore/support-adapter
```

📖 Example Usage
---------------

[](#-example-usage)

```
use Reactmore\SupportAdapter\Adapter\Guzzle;
use Reactmore\SupportAdapter\Adapter\Auth\None;

// Auth adapter (no authentication)
$auth = new None();

// Initialize the adapter
$adapter = new Guzzle($auth, 'https://api.example.com/');

// Perform a GET request
$response = $adapter->get('users');

// Get response body
$data = json_decode($response->getBody()->getContents(), true);

print_r($data);
```

🚀 CodeIgniter 4 Integration
---------------------------

[](#-codeigniter-4-integration)

With Support Adapter, you can register a service in app/Config/Services.php for dependency injection into your CodeIgniter 4 project:

```
public static function apiClient($getShared = true)
{
    if ($getShared) {
        return static::getSharedInstance('apiClient');
    }

    $auth = new \Reactmore\SupportAdapter\Adapter\Auth\None();
    return new \Reactmore\SupportAdapter\Adapter\Guzzle($auth, 'https://api.example.com/');
}
```

🤝 Contributing
--------------

[](#-contributing)

Contributions are always welcome!

If you’d like to improve Support Adapter, here’s how you can help:

```
1. Fork the repository
2. Create a new feature branch (git checkout -b feature/my-new-feature)
3. Commit your changes (git commit -m 'Add new feature')
4. Push to the branch (git push origin feature/my-new-feature)
5. Open a Pull Request

```

###  Health Score

33

—

LowBetter than 72% of packages

Maintenance57

Moderate activity, may be stable

Popularity10

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity48

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

Every ~0 days

Total

4

Last Release

283d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/3570cc985c6b8a72d6c662e81a23ef79c03cea6b4ad9e82da64365a5a641afe5?d=identicon)[reactmore](/maintainers/reactmore)

---

Top Contributors

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

---

Tags

codeigniter4-libraryguzzle-php-libraryphp

### Embed Badge

![Health badge](/badges/reactmore-support-adapter/health.svg)

```
[![Health](https://phpackages.com/badges/reactmore-support-adapter/health.svg)](https://phpackages.com/packages/reactmore-support-adapter)
```

###  Alternatives

[aws/aws-sdk-php

AWS SDK for PHP - Use Amazon Web Services in your PHP project

6.3k543.5M2.6k](/packages/aws-aws-sdk-php)[neuron-core/neuron-ai

The PHP Agentic Framework.

2.0k656.1k38](/packages/neuron-core-neuron-ai)[tempest/framework

The PHP framework that gets out of your way.

2.2k34.4k15](/packages/tempest-framework)[google/cloud-core

Google Cloud PHP shared dependency, providing functionality useful to all components.

346132.9M112](/packages/google-cloud-core)[spatie/laravel-export

Create a static site bundle from a Laravel app

674146.0k6](/packages/spatie-laravel-export)[oat-sa/tao-core

TAO core extension

66143.7k122](/packages/oat-sa-tao-core)

PHPackages © 2026

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