PHPackages                             pengboomouch/audere - 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. pengboomouch/audere

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

pengboomouch/audere
===================

Automatic Dependency Resolution

20PHP

Since Mar 20Pushed 3y ago2 watchersCompare

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

READMEChangelogDependenciesVersions (1)Used By (0)

audere · [![GitHub Actions](https://github.com/pengboomouch/audere/actions/workflows/php.yml/badge.svg?event=push)](https://github.com/pengboomouch/audere/actions/workflows/php.yml/badge.svg?event=push) [![GitHub license](https://camo.githubusercontent.com/7013272bd27ece47364536a221edb554cd69683b68a46fc0ee96881174c4214c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e737667)](https://github.com/pengboomouch/regulus/LICENSE)
=======================================================================================================================================================================================================================================================================================================================================================================================================================================================================================

[](#audere---)

Automatic Dependency Resolution

### Install

[](#install)

```
composer require pengboomouch/audere

```

### Basic usage

[](#basic-usage)

```
$myClass = $container->get('MyClass');

$myClass->doSomethingUseful();
```

### With attribute Injection

[](#with-attribute-injection)

```
use Audere\Inject;

class MyAttributeClass
{
    private string $sayHello;

    public function __construct(
        #[Inject('say.hello')] $sayHello
    ) {
        $this->sayHello = $sayHello;
    }

    public function getGreeting(): string
    {
        return $this->sayHello;
    }
}

$builder = new InjectionBuilder();
$builder->add('say.hello', 'Hello World');

$container = new Audere\Container($builder);
$myAttributeClass = $container->get('MyAttributeClass');
echo $myAttributeClass->getGreeting(); //prints: Hello World
```

###  Health Score

14

—

LowBetter than 2% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity22

Early-stage or recently created project

 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/84a99bd6903d73f1c12b5ef19c0fd0f67d60e45bc4dce2c11bf3bf3061de5f1d?d=identicon)[pengboomouch](/maintainers/pengboomouch)

---

Top Contributors

[![cris-the-creator](https://avatars.githubusercontent.com/u/5107947?v=4)](https://github.com/cris-the-creator "cris-the-creator (1 commits)")

### Embed Badge

![Health badge](/badges/pengboomouch-audere/health.svg)

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

PHPackages © 2026

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