PHPackages                             oramacloud/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. [Utility &amp; Helpers](/categories/utility)
4. /
5. oramacloud/client

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

oramacloud/client
=================

Orama Cloud SDK

v1.0.2(1y ago)1350Apache-2.0PHPPHP &gt;=7.3

Since Jul 19Pushed 1y ago2 watchersCompare

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

READMEChangelog (2)Dependencies (2)Versions (4)Used By (0)

OramaCloud Client PHP
=====================

[](#oramacloud-client-php)

[![Package Version](https://camo.githubusercontent.com/12120ca01caef87f0e36ed1dc5fbe29fedcf1b3ac7ac5ffec7ca094fa97bc30a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6f72616d61636c6f75642f636c69656e74)](https://packagist.org/packages/oramacloud/client)[![PHP Version](https://camo.githubusercontent.com/3af151f7681cfec306181415345099ec0780d897acc8dbfb4315d7cf6901549a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f6f72616d61636c6f75642f636c69656e74)](https://packagist.org/packages/oramacloud/client)[![Tests](https://github.com/askorama/oramacloud-client-php/actions/workflows/tests.yml/badge.svg)](https://github.com/askorama/oramacloud-client-php/actions/workflows/tests.yml)

With the OramaCloud PHP Client SDK, you can [perform search queries](https://docs.orama.com/cloud/performing-search/full-text-search) on your [Orama index](https://cloud.orama.com), or programmatically update your index data and trigger new deployments. Integrate Orama Cloud in your PHP application using the [REST APIs](https://docs.orama.com/cloud/data-sources/custom-integrations/rest-apis) to insert and upsert your index data and trigger deployments when it's convinient for your use case.

Install
-------

[](#install)

```
composer require oramacloud/client
```

#### Compatibility

[](#compatibility)

PHP: 7.3 or later

Integrating with Orama Cloud
----------------------------

[](#integrating-with-orama-cloud)

```
use OramaCloud\Client;
use OramaCloud\Client\Query;

$client = new Client([
    'api_key' => '',
    'endpoint' => ''
]);

$query = (new Query('red shoes'))
    ->where('price', 'gt', 99.99);

$results = $client->search($query);
```

Advanced search
---------------

[](#advanced-search)

```
use OramaCloud\Client;
use OramaCloud\Client\Query;
use OramaCloud\Client\QueryParams/WhereOperator;
use OramaCloud\Client\QueryParams/SortByOrder;

$client = new Client([
    'api_key' => '',
    'endpoint' => ''
]);

$query = new Query();
$query->term('red shoes')
      ->mode('hybrid')
      ->where('price', WhereOperator::LTE, 9.99)
      ->where('gender', WhereOperator::EQ, 'unisex')
      ->sortBy('price' SortByOrder::DESC)
      ->limit(5)
      ->offset(1);

$results = $client->search($query);
```

Managing your index
-------------------

[](#managing-your-index)

```
use OramaCloud\Manager\IndexManager;

$index = new IndexManager('', '');

// Empty data
$index->empty();

// Insert records
$index->insert([
    ['id' => '1', 'name' => 'John Doe', 'age' => 20 ],
    ['id' => '2', 'name' => 'Mario Rossi', 'age' => 25 ],
    ['id' => '3', 'name' => 'John Smith', 'age' => 35 ],
]);

// Update records
$index->update([[ 'id' => '1', 'name' => 'Jane Doe', 'age' => 30 ]]);

// Delete records
$index->delete(['1', '2']);

// Trigger deployment
$index->deploy();
```

Run Tests
---------

[](#run-tests)

```
composer test
```

### License

[](#license)

Apache-2.0 license. Please see [License File](LICENSE.md) for more information.

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance33

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity37

Early-stage or recently created project

 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

3

Last Release

667d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/7d41237f0baba0ba822d39c50fa7d54c47eedb3c35cd7f75aeae389724c1b307?d=identicon)[faustoq](/maintainers/faustoq)

---

Top Contributors

[![faustoq](https://avatars.githubusercontent.com/u/6349671?v=4)](https://github.com/faustoq "faustoq (74 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[shlinkio/shlink

A self-hosted and PHP-based URL shortener application with CLI and REST interfaces

4.8k4.3k](/packages/shlinkio-shlink)[ralphjsmit/laravel-helpers

A package containing handy helpers for your Laravel-application.

13704.6k2](/packages/ralphjsmit-laravel-helpers)[dhlparcel/magento2-plugin

DHL Parcel plugin for Magento 2

11180.5k2](/packages/dhlparcel-magento2-plugin)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

245.2k](/packages/aedart-athenaeum)

PHPackages © 2026

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