PHPackages                             exchangecore/yii2-progress-driver - 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. exchangecore/yii2-progress-driver

ActiveYii2-extension

exchangecore/yii2-progress-driver
=================================

A Yii2 driver for Progress OpenEdge

079PHP

Since Sep 21Pushed 10y ago2 watchersCompare

[ Source](https://github.com/ExchangeCore/yii2-progress-driver)[ Packagist](https://packagist.org/packages/exchangecore/yii2-progress-driver)[ RSS](/packages/exchangecore-yii2-progress-driver/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

License
-------

[](#license)

This library is licensed under the [MIT License](https://github.com/ExchangeCore/yii2-progress-driver/blob/master/LICENSE).

Purpose
-------

[](#purpose)

The purpose of this library is to allow [Yii2](https://github.com/yiisoft/yii2) to leverage Progress OpenEdge databases. Each version of Progress OpenEdge may receive it's own tagged version in the repository if appropriate which will directly correspond to the version of Progress OpenEdge driver being used.

Installing &amp; Setup
----------------------

[](#installing--setup)

To install this library simply add the appropriate branch to your composer.json file in your yii application and run the `composer update` command. Your composer.json require section might look something like this:

```
    "require": {
        "exchangecore/yii2-progress-driver": "*"
    },

```

Once composer has added the library you can configure your database the same as you would other yii databases except you will now need to use the modified connection class. Here is a sample of connecting to an ODBC DSN on windows that is called `MyProgressDb`:

```
   'db' => [
       'class' => 'exchangecore\yii2\progress\driver\db\Connection',
       'driverName' => 'progress',
       'dsn' => 'odbc:MyProgressDb',
       'username' => 'testuser',
       'password' => 'testpass',
   ];

```

Usage Notes
-----------

[](#usage-notes)

### Handling Primary Keys

[](#handling-primary-keys)

Because Progress does not use primary keys as constraints or unique identifiers the driver makes a best guess at what might actually be a primary key constraint and what probably isn't. It does this by checking for a key marked as primary and unique; if it is primary but not unique it will not be treated as a primary key. Because it's possible that not every table will have a primary key you may need to add one manually to your model in order to leverage certain Yii functionality. Additionally, if you find the driver has inaccurately determined a primary key you may need to set it manually. Example of manually setting a primary key in a model:

```
    /**
     * @inheritdoc
     */
    public static function primaryKey()
    {
        return ['usr_userid'];
    }

```

###  Health Score

21

—

LowBetter than 19% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/f2be2a4934b85bdeef65e4920ebab4d93694596d28934c5eaf9710de3a113d73?d=identicon)[EC-Joe](/maintainers/EC-Joe)

---

Top Contributors

[![joe-meyer](https://avatars.githubusercontent.com/u/1292766?v=4)](https://github.com/joe-meyer "joe-meyer (15 commits)")

### Embed Badge

![Health badge](/badges/exchangecore-yii2-progress-driver/health.svg)

```
[![Health](https://phpackages.com/badges/exchangecore-yii2-progress-driver/health.svg)](https://phpackages.com/packages/exchangecore-yii2-progress-driver)
```

PHPackages © 2026

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