PHPackages                             poirot/client-tenderbin - 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. [HTTP &amp; Networking](/categories/http)
4. /
5. poirot/client-tenderbin

ActiveLibrary[HTTP &amp; Networking](/categories/http)

poirot/client-tenderbin
=======================

HttpClient(SDK) Of TenderBin Object Store.

0263PHP

Since May 25Pushed 7y ago2 watchersCompare

[ Source](https://github.com/phPoirot/Client-TenderBin)[ Packagist](https://packagist.org/packages/poirot/client-tenderbin)[ RSS](/packages/poirot-client-tenderbin/feed)WikiDiscussions devel Synced 2d ago

READMEChangelogDependenciesVersions (2)Used By (0)

TenderBinClient
===============

[](#tenderbinclient)

HttpClient(SDK) Of TenderBin Object Store

Create SDK Instance
-------------------

[](#create-sdk-instance)

```
$c = new \Poirot\TenderBinClient\Client(
    'http://172.17.0.1:8080/bin'
    , new \Poirot\ApiClient\TokenProviderSolid(
        new \Poirot\ApiClient\AccessTokenObject([
            'access_token' => '#accesstoken',
            'client_id'    => '#clientid',
            'expires_in'   => 3600,
            'scopes'       => 'scope otherscope'
        ])
    )
);

$resource = $c->getBinMeta('58eca65857077400155a1bd2');
```

Store Bin-Data in Storage
-------------------------

[](#store-bin-data-in-storage)

```
$r = $c->store(
    serialize( ['your_data_any_type'] )
    , 'application/php-serialized'
    , 'TenderBin Client'
    , [
        'some_tag' => 'tag value',
        'is_file'  => true, // force store as a file
    ]
);
```

Load BinData Content Into Local Stream
--------------------------------------

[](#load-bindata-content-into-local-stream)

```
list($resource, $meta) = $c->loadBin('58eca65857077400155a1bd2');
header('Content-Type: '. $meta['content_type']); // read header (tags) included with bin
while ($content = fread($resource, 2048)) { // Read in 2048-byte chunks
    echo $content; // or output it somehow else.
    flush(); // force output so far
}
```

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity43

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 93.3% 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/1f784f9dfb58e36b6a876f3057e5664bb904af71d30bb2023583118138dffe9a?d=identicon)[Payam](/maintainers/Payam)

---

Top Contributors

[![E1101](https://avatars.githubusercontent.com/u/427575?v=4)](https://github.com/E1101 "E1101 (70 commits)")[![zimberkazmiz](https://avatars.githubusercontent.com/u/2890831?v=4)](https://github.com/zimberkazmiz "zimberkazmiz (5 commits)")

### Embed Badge

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

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

###  Alternatives

[friendsofsymfony/rest-bundle

This Bundle provides various tools to rapidly develop RESTful API's with Symfony

2.8k73.3M319](/packages/friendsofsymfony-rest-bundle)[php-http/discovery

Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations

1.3k309.5M1.2k](/packages/php-http-discovery)[nyholm/psr7

A fast PHP7 implementation of PSR-7

1.3k235.4M2.4k](/packages/nyholm-psr7)[pusher/pusher-php-server

Library for interacting with the Pusher REST API

1.5k94.8M293](/packages/pusher-pusher-php-server)[spatie/crawler

Crawl all internal links found on a website

2.8k16.3M52](/packages/spatie-crawler)[react/http

Event-driven, streaming HTTP client and server implementation for ReactPHP

78126.4M414](/packages/react-http)

PHPackages © 2026

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