PHPackages                             maaf/core - 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. [Framework](/categories/framework)
4. /
5. maaf/core

ActiveLibrary[Framework](/categories/framework)

maaf/core
=========

MAAF Core Framework - Dependency Injection, Module Loader, EventBus, Config Engine, HTTP Kernel, CLI

1.0.0(4mo ago)03019MITPHPPHP &gt;=8.1CI passing

Since Jan 12Pushed 4mo agoCompare

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

READMEChangelogDependencies (6)Versions (2)Used By (19)

MAAF Core 1.0
=============

[](#maaf-core-10)

MAAF Core Framework - Stabil kiadás

Komponensek
-----------

[](#komponensek)

- ✅ **DI Container 1.0** - Stabil Dependency Injection API
- ✅ **Module Loader 3.0** - Modul betöltő rendszer
- ✅ **EventBus 1.0** - Eseménykezelő rendszer
- ✅ **Async EventBus 2.0** - Aszinkron EventBus RabbitMQ/Redis Streams támogatással
- ✅ **Config Engine 1.0** - Konfigurációs motor
- ✅ **HTTP Kernel 1.0** - HTTP kernel
- ✅ **CLI 1.0** - Command Line Interface
- ✅ **Module Generator** - Modul generátor skeleton sablonokkal
- ✅ **Testing Toolkit 1.0** - Tesztelési segédeszközök

Telepítés
---------

[](#telepítés)

```
composer require maaf/core
```

Gyors Kezdés
------------

[](#gyors-kezdés)

### Application Bootstrap

[](#application-bootstrap)

```
use MAAF\Core\Application;

$app = new Application(__DIR__);
$app->run();
```

### Modul Létrehozása

[](#modul-létrehozása)

```
namespace App\Modules\MyModule;

use DI\ContainerBuilder;
use MAAF\Core\ModuleLoader\ModuleInterface;
use MAAF\Core\Routing\Router;

final class Module implements ModuleInterface
{
    public static function registerServices(ContainerBuilder $builder): void
    {
        // Service regisztráció
    }

    public static function registerRoutes(Router $router): void
    {
        $router->get('/my-route', [MyController::class, 'index']);
    }
}
```

### Controller

[](#controller)

```
namespace App\Modules\MyModule\Controllers;

use MAAF\Core\Http\Request;
use MAAF\Core\Http\Response;

final class MyController
{
    public function index(Request $request): Response
    {
        return Response::json(['message' => 'Hello MAAF!']);
    }
}
```

### Tesztelés

[](#tesztelés)

```
use MAAF\Core\Testing\TestCase;

class MyModuleTest extends TestCase
{
    public function testModuleLoads(): void
    {
        $this->moduleHelper->loadModule(MyModule::class, 'MyModule');
        $this->moduleHelper->assertModuleLoaded('MyModule');
    }
}
```

Dokumentáció
------------

[](#dokumentáció)

- [Általános Dokumentáció](docs/README.md)
- [Module Generator](docs/MODULE_GENERATOR.md)
- [Async EventBus](docs/ASYNC_EVENTBUS.md)
- [Testing Toolkit](docs/TESTING_TOOLKIT.md)

Verzió
------

[](#verzió)

**2.1.0** - Testing Toolkit hozzáadva

Licenc
------

[](#licenc)

MIT License

###  Health Score

37

—

LowBetter than 83% of packages

Maintenance77

Regular maintenance activity

Popularity7

Limited adoption so far

Community16

Small or concentrated contributor base

Maturity43

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.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

126d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/fcbdf6b9a95f30a19389f1dfb7aa650c1cd77aa24f7e706d3cee50af78172047?d=identicon)[mimimami](/maintainers/mimimami)

---

Top Contributors

[![mimimami](https://avatars.githubusercontent.com/u/10872937?v=4)](https://github.com/mimimami "mimimami (20 commits)")

---

Tags

httpcliframeworkconfigdicoreeventbusmaafmodule-loader

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Type Coverage Yes

### Embed Badge

![Health badge](/badges/maaf-core/health.svg)

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

###  Alternatives

[clue/framework-x

Framework X – the simple and fast micro framework for building reactive web applications that run anywhere.

936736.7k8](/packages/clue-framework-x)

PHPackages © 2026

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