PHPackages                             fatrbaby/hellobase - 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. fatrbaby/hellobase

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

fatrbaby/hellobase
==================

Hbase client php wrapper, via thirft

1.0.0(6y ago)93.7k↑60%6MITPHPPHP &gt;=7.0.0

Since Aug 1Pushed 6y ago1 watchersCompare

[ Source](https://github.com/fatrbaby/hellobase)[ Packagist](https://packagist.org/packages/fatrbaby/hellobase)[ RSS](/packages/fatrbaby-hellobase/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependencies (1)Versions (10)Used By (0)

Hellobase
=========

[](#hellobase)

> H(ello)base

installation
------------

[](#installation)

`composer require fatrbaby/hellobase`

usage
-----

[](#usage)

```
use HelloBase\Connection;

$config = [
    'host' => 'localhost',
    'port' => '9090',
    'auto_connect' => false,
    'persist' => false,
    'debug_handler' => null,
    'send_timeout' => 1000000,
    'recv_timeout' => 1000000,
    'transport' => Connection::TRANSPORT_BUFFERED,
    'protocol' => Connection::PROTOCOL_BINARY_ACCELERATED,
];

$connection = new Connection($config);
$connection->connect();

# get tables
$connection->tables();

# get table instance
$table = $connection->table('tableName');

# put data
$table->put('row-name', ['cf:foo' => 'bar']);

# get row
$table->row('row-name', ['column1', ...]);

# get rows
$table->rows(['row-name1', 'row-name2', ...], ['column1', ...]);

# increment
$table->increment('row-name', 'column-name', int amount)

# scan
foreach($table->scan(, , , ) as $row => $columns) {
    // do something
}
```

run test
--------

[](#run-test)

```
# create hbase service by docker (docker-compose)
$ cd docker
$ docker-compose up -d

# create table in docker
$ docker exec -it hbase bash
$ hbase shell

> create 'hellobase', 'hb'
> list
> quit

$ exit

# run test
cd ../
vendor/bin/phpunit
```

TODO
----

[](#todo)

more features

###  Health Score

34

—

LowBetter than 77% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity27

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity63

Established project with proven stability

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

Recently: every ~103 days

Total

8

Last Release

2429d ago

Major Versions

0.7.2 → 1.0.02019-09-18

### Community

Maintainers

![](https://www.gravatar.com/avatar/e8ea6052fe93a14e5c89b98c0828601cd9d4ed87b966a5e7399d85465cf0205f?d=identicon)[fatrbaby](/maintainers/fatrbaby)

---

Top Contributors

[![fatrbaby](https://avatars.githubusercontent.com/u/4350262?v=4)](https://github.com/fatrbaby "fatrbaby (28 commits)")

---

Tags

big-datahbasethirfthadoopfatrbaby

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/fatrbaby-hellobase/health.svg)

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

PHPackages © 2026

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