PHPackages                             snelg/cakephp-3-oracle - 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. [Database &amp; ORM](/categories/database)
4. /
5. snelg/cakephp-3-oracle

ActiveLibrary[Database &amp; ORM](/categories/database)

snelg/cakephp-3-oracle
======================

Oracle datasource for CakePHP 3

1.2.1(6y ago)111.5k7[4 issues](https://github.com/snelg/cakephp-3-oracle/issues)MITPHPCI failing

Since Jul 2Pushed 6y ago3 watchersCompare

[ Source](https://github.com/snelg/cakephp-3-oracle)[ Packagist](https://packagist.org/packages/snelg/cakephp-3-oracle)[ RSS](/packages/snelg-cakephp-3-oracle/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (4)Versions (24)Used By (0)

Oracle Datasource for CakePHP 3.x
=================================

[](#oracle-datasource-for-cakephp-3x)

This is an alpha version of an Oracle Datasource for CakePHP 3.0. Currently the only functionality is basic data reading; Inserting, deleting, and updating have only been tested minimally.

Installing via composer
-----------------------

[](#installing-via-composer)

Install into your project using [composer](http://getcomposer.org). For existing applications you can add the following to your composer.json file:

```
"require": {
    "snelg/cakephp-3-oracle": "~1.0"
}

```

And run `php composer.phar update`

Defining a connection
---------------------

[](#defining-a-connection)

Sample connection info:

```
// in config/app.php
    'Datasources' => [
        // other datasources
        'my_oracle_db' => [
            'className' => 'Cake\Database\Connection',
            'driver' => 'Cake\Oracle\Driver\Oracle',
            /* 'host' => '', //Usually unused for Oracle connections */
            'username' => 'you know what goes here',
            'password' => 'and here',
            'database' => 'TNS entry name or full conn string, e.g. (DESCRIPTION=(ADDRESS_LIST=( [...] )))',
            'schema' => 'SCHEMA_NAME', //The schema that owns the tables, not necessarily your login schema
        ],
    ]
```

If your data tables are owned by a different schema than your login user, then make sure you put the table-owning schema name in the "schema" field instead of your login schema.

If you want to access data from multiple schemas, then you do *not* need multiple datasources. Instead, you can specify the schema in a Table's "initialize" function:

```
class UsersTable extends Table
{
    public function initialize(array $config)
    {
        $this->table('some_other_schema.users');
    }
}
```

###  Health Score

35

—

LowBetter than 80% of packages

Maintenance13

Infrequent updates — may be unmaintained

Popularity25

Limited adoption so far

Community16

Small or concentrated contributor base

Maturity73

Established project with proven stability

 Bus Factor1

Top contributor holds 89.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 ~72 days

Recently: every ~280 days

Total

23

Last Release

2377d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/93d82c78714b6af2fc1197d8179383dad13f385d79456cceeb260f12b7742840?d=identicon)[snelg](/maintainers/snelg)

---

Top Contributors

[![snelg](https://avatars.githubusercontent.com/u/5741887?v=4)](https://github.com/snelg "snelg (43 commits)")[![alphp](https://avatars.githubusercontent.com/u/8992091?v=4)](https://github.com/alphp "alphp (3 commits)")[![ahmyi](https://avatars.githubusercontent.com/u/630603?v=4)](https://github.com/ahmyi "ahmyi (1 commits)")[![kasmonaut](https://avatars.githubusercontent.com/u/7266228?v=4)](https://github.com/kasmonaut "kasmonaut (1 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/snelg-cakephp-3-oracle/health.svg)

```
[![Health](https://phpackages.com/badges/snelg-cakephp-3-oracle/health.svg)](https://phpackages.com/packages/snelg-cakephp-3-oracle)
```

###  Alternatives

[yajra/laravel-oci8

Oracle DB driver for Laravel via OCI8

8703.0M17](/packages/yajra-laravel-oci8)[dereuromark/cakephp-databaselog

A CakePHP plugin for storing and viewing application logs in the database

44165.0k2](/packages/dereuromark-cakephp-databaselog)[pgbi/cakephp3-soft-delete

SoftDelete plugin for CakePHP

87291.9k](/packages/pgbi-cakephp3-soft-delete)[liqueurdetoile/cakephp-orm-json

Cakephp plugin to provide easy control over JSON type fields in database

1461.1k](/packages/liqueurdetoile-cakephp-orm-json)

PHPackages © 2026

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