PHPackages                             opendbs/client - 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. opendbs/client

ActiveLibrary

opendbs/client
==============

Official PHP Client Library for OpenDBS

00PHP

Since Jan 29Pushed 3mo agoCompare

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

READMEChangelogDependenciesVersions (1)Used By (0)

OpenDBS PHP Client
==================

[](#opendbs-php-client)

Official PHP client library for OpenDBS.

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

[](#installation)

Using Composer:

```
composer require opendbs/client
```

Usage
-----

[](#usage)

### Initialization

[](#initialization)

```
require 'vendor/autoload.php';

use OpenDBS\OpenDBS;

// Initialize with Base URL
$client = new OpenDBS('http://localhost:4402');

// Login
$client->login('admin', 'admin123');
```

### Basic Operations

[](#basic-operations)

```
// Create Database
$client->createDatabase('shop');

// Create Racks
$client->createRack('shop', 'products', 'sql', [
    'name' => ['type' => 'string'],
    'price' => ['type' => 'number']
]);
$client->createRack('shop', 'users', 'nosql');

// Insert Data
$client->insert('shop', 'users', ['name' => 'Alice']);
$client->sql('shop', "INSERT INTO products (name, price) VALUES ('Laptop', 999)");

// Find Data
$users = $client->find('shop', 'users', ['name' => 'Alice']);
```

### Advanced Search

[](#advanced-search)

```
// Fuzzy Search
$results = $client->fuzzySearch('shop', 'users', 'name', 'Alice');

// Vector Search
$results = $client->vectorSearch('shop', 'products', 'embedding', [0.1, 0.2, 0.3]);
```

###  Health Score

18

—

LowBetter than 8% of packages

Maintenance53

Moderate activity, may be stable

Popularity0

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity12

Early-stage or recently created project

 Bus Factor1

Top contributor holds 66.7% 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/56c4be80d8243814f9d8846ee0ef2b2772e1a244404118e36402bc54da5e5ad8?d=identicon)[endurasolution](/maintainers/endurasolution)

---

Top Contributors

[![endurasolution](https://avatars.githubusercontent.com/u/258029576?v=4)](https://github.com/endurasolution "endurasolution (2 commits)")[![abhirambhaskar](https://avatars.githubusercontent.com/u/81792268?v=4)](https://github.com/abhirambhaskar "abhirambhaskar (1 commits)")

### Embed Badge

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

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

PHPackages © 2026

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