PHPackages                             alexandrebulete/ddd-apiplatform-bundle - 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. [API Development](/categories/api)
4. /
5. alexandrebulete/ddd-apiplatform-bundle

ActiveSymfony-bundle[API Development](/categories/api)

alexandrebulete/ddd-apiplatform-bundle
======================================

Symfony Bundle for DDD API Platform Bridge - Service wiring and configuration

1.0.1(5mo ago)02MITPHPPHP ^8.2

Since Jan 26Pushed 5mo agoCompare

[ Source](https://github.com/AlexandreBulete/ddd-apiplatform-bundle)[ Packagist](https://packagist.org/packages/alexandrebulete/ddd-apiplatform-bundle)[ RSS](/packages/alexandrebulete-ddd-apiplatform-bundle/feed)WikiDiscussions main Synced today

READMEChangelogDependencies (4)Versions (3)Used By (0)

DDD API Platform Bundle
=======================

[](#ddd-api-platform-bundle)

Symfony Bundle for the DDD API Platform Bridge. Provides service wiring and configuration for API Platform integration.

Installation
------------

[](#installation)

```
composer require alexandrebulete/ddd-apiplatform-bundle
```

Configuration
-------------

[](#configuration)

Add the bundle to your `config/bundles.php`:

```
return [
    // ...
    AlexandreBulete\DddApiPlatformBundle\DddApiPlatformBundle::class => ['all' => true],
];
```

Features
--------

[](#features)

This bundle automatically registers services from `ddd-apiplatform-bridge`:

- `Paginator` available for use in your State Providers

Usage
-----

[](#usage)

Create your own State Providers using the Paginator:

```
use AlexandreBulete\DddApiPlatformBridge\State\Paginator;
use ApiPlatform\Metadata\Operation;
use ApiPlatform\State\ProviderInterface;

class GetPostsProvider implements ProviderInterface
{
    public function __construct(
        private QueryBusInterface $queryBus,
    ) {}

    public function provide(Operation $operation, array $uriVariables = [], array $context = []): object|array|null
    {
        $posts = $this->queryBus->ask(new GetPostsQuery(/* ... */));

        // Return Paginator for pagination support
        return new Paginator(/* ... */);
    }
}
```

###  Health Score

34

—

LowBetter than 75% of packages

Maintenance73

Regular maintenance activity

Popularity2

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity48

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

Every ~9 days

Total

2

Last Release

150d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/15733a17c9dd08fc7def3be016f324453d4f0de828438858d13f63e7c3388353?d=identicon)[Alexandre Buleté](/maintainers/Alexandre%20Bulet%C3%A9)

---

Top Contributors

[![AlexandreBulete](https://avatars.githubusercontent.com/u/40428152?v=4)](https://github.com/AlexandreBulete "AlexandreBulete (2 commits)")

### Embed Badge

![Health badge](/badges/alexandrebulete-ddd-apiplatform-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/alexandrebulete-ddd-apiplatform-bundle/health.svg)](https://phpackages.com/packages/alexandrebulete-ddd-apiplatform-bundle)
```

###  Alternatives

[easycorp/easyadmin-bundle

Admin generator for Symfony applications

4.3k17.9M388](/packages/easycorp-easyadmin-bundle)[2lenet/crudit-bundle

The easy like Crud'it Bundle.

1616.4k14](/packages/2lenet-crudit-bundle)

PHPackages © 2026

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