PHPackages                             hakimrazalan/chip-php-sdk - 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. hakimrazalan/chip-php-sdk

ActiveLibrary[API Development](/categories/api)

hakimrazalan/chip-php-sdk
=========================

PHP framework agnostic to work with CHIP Asia API

1.3(3mo ago)0171[3 issues](https://github.com/h2akim/chip-php-sdk/issues)MITPHPPHP ^8.2

Since Apr 5Pushed 3mo ago1 watchersCompare

[ Source](https://github.com/h2akim/chip-php-sdk)[ Packagist](https://packagist.org/packages/hakimrazalan/chip-php-sdk)[ RSS](/packages/hakimrazalan-chip-php-sdk/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (5)Dependencies (7)Versions (7)Used By (0)

PHP framework agnostic to work with CHIP API
============================================

[](#php-framework-agnostic-to-work-with-chip-api)

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

[](#installation)

#### Composer

[](#composer)

To install through composer by using the following command:

```
composer require php-http/guzzle7-adapter hakimrazalan/chip-php-sdk

```

#### HTTP Adapter

[](#http-adapter)

Refer [PHP-HTTP Clients &amp; Adapters](http://docs.php-http.org/en/latest/clients.html) for other supported clients and adapters.

Get Started
-----------

[](#get-started)

### Creating client

[](#creating-client)

To create CHIP client, you need to know which service you want to use - **Collect** / **Send**. Use the following codes:

```
use Chip\Client;

// To use Collect
$collect = Client::makeCollect("myApiKey");

// To use Send
$send = Client::makeSend("myApiKey", "secretKey");

```

You can also use a config object to make the client easier to extend:

```
use Chip\Client;
use Chip\Config;

$collect = Client::makeCollect(
    Config::collect("myApiKey")->withVersion("v1")
);

$send = Client::makeSend(
    Config::send("myApiKey", "secretKey")
        ->withSandbox(true)
);

```

Alternatively, you could configure `Http\Client\Common\HttpMethodsClient` manually

```
use Chip\Client;

// To use Collect
$http = Laravie\Codex\Discovery::client();
$collect = Client::makeCollect("myApiKey", $http);

// To use Send
$send = Client::makeSend("myApiKey", "secretKey", $http);

```

### Use Sandbox

[](#use-sandbox)

Sandbox options is only supported for **Send** API. To use sandbox environment:

```
$send->useSandbox();

```

Usages
======

[](#usages)

For Collect → [Here](docs/collect.md)

For Send → [Here](docs/send.md)

###  Health Score

41

—

FairBetter than 89% of packages

Maintenance82

Actively maintained with recent releases

Popularity10

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity54

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 ~78 days

Total

5

Last Release

97d ago

PHP version history (2 changes)1.2PHP ^8.2

0.1PHP ^7.4 || ^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/175e0f9aeb3bc0c716a25d7a84be027bc76e2545b9daaebe43af888b6f0838e9?d=identicon)[hakimrazalan](/maintainers/hakimrazalan)

---

Top Contributors

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

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/hakimrazalan-chip-php-sdk/health.svg)

```
[![Health](https://phpackages.com/badges/hakimrazalan-chip-php-sdk/health.svg)](https://phpackages.com/packages/hakimrazalan-chip-php-sdk)
```

###  Alternatives

[temporal/sdk

Temporal SDK

4002.2M18](/packages/temporal-sdk)[storyblok/php-content-api-client

PHP Client for Storyblok Content API

11136.8k4](/packages/storyblok-php-content-api-client)[storyblok/php-management-api-client

Storyblok PHP Client for Management API

1224.4k1](/packages/storyblok-php-management-api-client)[smnandre/pagespeed-api

PageSpeed Insight PHP Api Client 🚀 Analyse web pages for performances metrics, core web vitals...

1511.5k](/packages/smnandre-pagespeed-api)

PHPackages © 2026

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