PHPackages                             marm/yamm - 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. marm/yamm

ActiveOxid-module

marm/yamm
=========

2.0.2(7y ago)117.7k21MITPHPCI failing

Since Nov 9Pushed 5y ago2 watchersCompare

[ Source](https://github.com/marmaladeDE/yamm)[ Packagist](https://packagist.org/packages/marm/yamm)[ RSS](/packages/marm-yamm/feed)WikiDiscussions stable Synced 2mo ago

READMEChangelog (1)Dependencies (5)Versions (17)Used By (1)

YAMM :: Yet Another Meta Module
===============================

[](#yamm--yet-another-meta-module)

English
-------

[](#english)

This meta module provides generally desired functionality, like:

- A reusable Dependency Injection Container
- Sensible logging facilities

### DIC Usage

[](#dic-usage)

The DIC is an extension of [Pimple](http://pimple.sensiolabs.org/) which allows service tagging and is integrated with Oxid eSales.

To use the DIC just put a `dic.php` in the root of yourproject and register all your services in there. A variable `$dic` will be available in this fileyou can operate with:

```
/** @var \Marm\Yamm\DIC $dic */
$dic['acme_module_service'] = function (\Marm\Yamm\DIC $dic) {
    return new Acme\Module\Service(/* ... */);
};

```

On top of that we allow tagging of services and receiving of all services which are tagged with a defined tag when constructing services:

```
/** @var \Marm\Yamm\DIC $dic */
$dic->tag('acme_module_service', 'acme:tag');
$dic['acme_module_service'] = function (\Marm\Yamm\DIC $dic) {
    return new Acme\Module\Service(/* ... */);
};

// Somewhere else or later
$dic['acme_module_aggregator'] = function (\Marm\Yamm\DIC $dic) {
    return new Acme\Module\Aggregator(
        // Array of all services tagged with "acme:tag"
        $dic->getTagged('acme:tag')
    );
};

```

To get the DIC anywhere else in your project, just fetch it from `oxRegistry`:

```
/** @var \Marm\Yamm\DIC $dic */
$dic = oxRegistry::get('yamm_dic');

```

### Licence Terms

[](#licence-terms)

YAMM is released under MIT.

Use this module in your project but keep the author notice. Thank you!

Authors
-------

[](#authors)

- [Kore Nordmann](https://qafoo.com)
- [Joscha Krug](http://www.marmalade.de)

###  Health Score

35

—

LowBetter than 79% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity23

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity71

Established project with proven stability

 Bus Factor1

Top contributor holds 90.5% 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 ~56 days

Recently: every ~68 days

Total

14

Last Release

2746d ago

Major Versions

1.4.1 → 2.0.02018-06-08

### Community

Maintainers

![](https://www.gravatar.com/avatar/1dffbd09a16bca6a67f4aa94c377b7ca8a3f9427bed652a3e890dbacf3df226e?d=identicon)[marmalade](/maintainers/marmalade)

---

Top Contributors

[![kore](https://avatars.githubusercontent.com/u/154398?v=4)](https://github.com/kore "kore (19 commits)")[![bizzl-greekdog](https://avatars.githubusercontent.com/u/424349?v=4)](https://github.com/bizzl-greekdog "bizzl-greekdog (1 commits)")[![kyoya-de](https://avatars.githubusercontent.com/u/799103?v=4)](https://github.com/kyoya-de "kyoya-de (1 commits)")

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/marm-yamm/health.svg)

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

###  Alternatives

[jaxon-php/jaxon-core

Jaxon is an open source PHP library for easily creating Ajax web applications

73142.3k25](/packages/jaxon-php-jaxon-core)[oat-sa/tao-core

TAO core extension

66136.7k74](/packages/oat-sa-tao-core)[sweatshop/sweatshop

Abstraction layer for message brokers and job servers, including process management

1112.3k](/packages/sweatshop-sweatshop)[moriony/silex-mongo-provider

Mongo service provider for the Silex framwork.

118.5k](/packages/moriony-silex-mongo-provider)[benjam1/symfttpd

PHP webserver

151.7k](/packages/benjam1-symfttpd)

PHPackages © 2026

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