PHPackages                             zendframework/zend-config-aggregator-modulemanager - 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. zendframework/zend-config-aggregator-modulemanager

Abandoned → [laminas/laminas-config-aggregator-modulemanager](/?search=laminas%2Flaminas-config-aggregator-modulemanager)ArchivedLibrary[Utility &amp; Helpers](/categories/utility)

zendframework/zend-config-aggregator-modulemanager
==================================================

Consume zend-mvc modules as configuration providers within zend-config-aggregator.

1.0.1(6y ago)242.0k5[1 PRs](https://github.com/zendframework/zend-config-aggregator-modulemanager/pulls)1BSD-3-ClausePHPPHP ^7.1

Since Apr 4Pushed 6y ago8 watchersCompare

[ Source](https://github.com/zendframework/zend-config-aggregator-modulemanager)[ Packagist](https://packagist.org/packages/zendframework/zend-config-aggregator-modulemanager)[ RSS](/packages/zendframework-zend-config-aggregator-modulemanager/feed)WikiDiscussions master Synced 5d ago

READMEChangelog (2)Dependencies (6)Versions (4)Used By (1)

zend-config-aggregator-modulemanager
====================================

[](#zend-config-aggregator-modulemanager)

> ## Repository abandoned 2019-12-31
>
> [](#repository-abandoned-2019-12-31)
>
> This repository has moved to [laminas/laminas-config-aggregator-modulemanager](https://github.com/laminas/laminas-config-aggregator-modulemanager).

[![Build Status](https://camo.githubusercontent.com/a245ccc9da964f1d4858aaee4097f72ffdc9c2ca83dc8f6d4b64dbb1cb85b214/68747470733a2f2f7365637572652e7472617669732d63692e6f72672f7a656e646672616d65776f726b2f7a656e642d636f6e6669672d61676772656761746f722d6d6f64756c656d616e616765722e7376673f6272616e63683d6d6173746572)](https://secure.travis-ci.org/zendframework/zend-config-aggregator-modulemanager)[![Coverage Status](https://camo.githubusercontent.com/c91e59b3cf454d46ba042751f751dd26d21526d3ef78ec813def8d0db3a0f959/68747470733a2f2f636f766572616c6c732e696f2f7265706f732f6769746875622f7a656e646672616d65776f726b2f7a656e642d636f6e6669672d61676772656761746f722d6d6f64756c656d616e616765722f62616467652e7376673f6272616e63683d6d6173746572)](https://coveralls.io/github/zendframework/zend-config-aggregator-modulemanager?branch=master)

Provides an extension to the `zendframework/zend-config-aggregator` so `zendframework/zend-mvc`modules can be parsed into the new config structure, e.g. for `zendframework/zend-expressive`or other projects.

Usage
-----

[](#usage)

```
use Zend\ConfigAggregator\ConfigAggregator;
use Zend\ConfigAggregatorModuleManager\ZendModuleProvider;
use My\Zend\MvcModule\Module as MyZendMvcModule;

namespace My\Zend\MvcModule
{
    class Module
    {
        public function getConfig()
        {
            return [
                'service_manager' => [
                    'invokables' => [
                        Service\MyService::class => Service\MyService::class,
                    ],
                ],
            ];
        }
    }
}

namespace My\Zend\MvcModule\Service {
    class MyService
    {
    }
}

$aggregator = new ConfigAggregator([
    new ZendModuleProvider(new MyZendMvcModule()),
]);

var_dump($aggregator->getMergedConfig());
```

Using this provider, the Module class is being parsed for `zendframework/zend-modulemanager` interfaces or methods. Just the same way as `zendframework/zend-mvc` does. Therefore, the output of the example would be:

```
array(1) {
  'dependencies' =>
  array(1) {
    'invokables' =>
    array(1) {
       'My\Zend\MvcModule\Service\MyService' =>
       string(35) "My\Zend\MvcModule\Service\MyService"
    }
  }
}
```

For more details, please refer to the [documentation](https://docs.zendframework.com/zend-config-aggregator-modulemanager/).

---

- File issues at
- Documentation is at

###  Health Score

35

—

LowBetter than 80% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity30

Limited adoption so far

Community20

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

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 ~446 days

Total

2

Last Release

2518d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/296074?v=4)[Zend Framework](/maintainers/zendframework)[@zendframework](https://github.com/zendframework)

---

Top Contributors

[![boesing](https://avatars.githubusercontent.com/u/2189546?v=4)](https://github.com/boesing "boesing (14 commits)")[![weierophinney](https://avatars.githubusercontent.com/u/25943?v=4)](https://github.com/weierophinney "weierophinney (10 commits)")[![Xerkus](https://avatars.githubusercontent.com/u/725842?v=4)](https://github.com/Xerkus "Xerkus (4 commits)")[![michalbundyra](https://avatars.githubusercontent.com/u/7423207?v=4)](https://github.com/michalbundyra "michalbundyra (2 commits)")[![samsonasik](https://avatars.githubusercontent.com/u/459648?v=4)](https://github.com/samsonasik "samsonasik (1 commits)")

---

Tags

configmoduleszendframeworkzf

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/zendframework-zend-config-aggregator-modulemanager/health.svg)

```
[![Health](https://phpackages.com/badges/zendframework-zend-config-aggregator-modulemanager/health.svg)](https://phpackages.com/packages/zendframework-zend-config-aggregator-modulemanager)
```

###  Alternatives

[zf-commons/zfc-base

A set of genetic (abstract) classes which are commonly used across multiple modules.

1441.1M25](/packages/zf-commons-zfc-base)[bitweb/zf2-cron-module

BitWeb ZF2 module for cron.

1341.6k](/packages/bitweb-zf2-cron-module)

PHPackages © 2026

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