PHPackages                             portable/eloquent-zoho - 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. portable/eloquent-zoho

ActiveLibrary

portable/eloquent-zoho
======================

A rudimentary Eloquent driver for Zoho Analytics

v1.0.10(2y ago)15.7k↓100%2PHPPHP ^8.1

Since Sep 1Pushed 2y ago1 watchersCompare

[ Source](https://github.com/PortableStudios/eloquent-zoho)[ Packagist](https://packagist.org/packages/portable/eloquent-zoho)[ RSS](/packages/portable-eloquent-zoho/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (8)Versions (14)Used By (0)

[![CI](https://github.com/PortableStudios/eloquent-zoho/actions/workflows/laravel.yml/badge.svg)](https://github.com/PortableStudios/eloquent-zoho/actions/workflows/laravel.yml)

Eloquent Zoho
=============

[](#eloquent-zoho)

This package provides a rudimentary(aka, far from complete) implementation of the Zoho API as an Eloquent driver for Laravel, to enable the use of Zoho data models as eloquent models.

Database definitions in `config/databases.php` need to provide the following configuration values

```
'driver' => 'zoho',
'host' => // the base URL for your Zoho workspace, e.g. 'bi.myorg.com',
'port' => // Usually 443, assuming you have SSL for your workspace,
'username' => // the API email for your zoho workspace,
'database' => // The workspace name,
'prefix' => // The folder where your tables are stored within Zoho.  This is used when manipulating data schemas using ZohoSchema
'email' => // Your *user* email, used for generating tokens
'password' => // Your *user* password, used for generating tokens

```

The driver assumes that your database connection key is 'zoho'.

(E.g within `config/database.php`, you will define `connections['zoho']` with your config).

Database schema
---------------

[](#database-schema)

You can create and manipulate Schemas as normal with the `ZohoSchema` facade:

```
use Portable\EloquentZoho\Eloquent\Facades\ZohoSchema;

ZohoSchema::hasTable('my_zoho_table')

// or

ZohoSchema::create('my_zoho_table', function(Blueprint $table){
    $table->id();
    $table->timestamps();
});

```

Model definitions
-----------------

[](#model-definitions)

Models should be defined as a subclass of `Portable\EloquentZoho\Eloquent\ZohoModel`

Models currently support basic query, insert, update and delete, as well as upserts.

PRs Welcome!
------------

[](#prs-welcome)

As stated, this driver is rudimentary and was written for a specific use case. As such, much of the possible grammar is left unimplemented, and PRs are welcome.

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity21

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 94.6% 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 ~2 days

Total

11

Last Release

956d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/c82b610b5fb1b52cd981e56d04a4841eb5a54ff428795d1f38e9ac5271ba7b09?d=identicon)[kyoung\_portable](/maintainers/kyoung_portable)

![](https://www.gravatar.com/avatar/5f40f1b240a9079c17c193bfa2c6ad97b735adac3102f12774d8af60f90771dd?d=identicon)[n.rogers.portable](/maintainers/n.rogers.portable)

---

Top Contributors

[![kyoungportable](https://avatars.githubusercontent.com/u/111816258?v=4)](https://github.com/kyoungportable "kyoungportable (35 commits)")[![samlev](https://avatars.githubusercontent.com/u/462466?v=4)](https://github.com/samlev "samlev (2 commits)")

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/portable-eloquent-zoho/health.svg)

```
[![Health](https://phpackages.com/badges/portable-eloquent-zoho/health.svg)](https://phpackages.com/packages/portable-eloquent-zoho)
```

PHPackages © 2026

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