All Projects → msgphp → eav-bundle

msgphp / eav-bundle

Licence: MIT license
A Symfony bundle for basic EAV management

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to eav-bundle

User Bundle
A new Symfony user bundle
Stars: ✭ 116 (+510.53%)
Mutual labels:  uuid, cqrs, symfony-bundle, doctrine, domain-driven-design, event-sourcing
user
A domain layer providing basic user management
Stars: ✭ 14 (-26.32%)
Mutual labels:  uuid, cqrs, doctrine, domain-driven-design, event-sourcing, message-driven
domain
A dependency-free package to help building a business domain layer
Stars: ✭ 33 (+73.68%)
Mutual labels:  uuid, cqrs, doctrine, domain-driven-design, event-sourcing, message-driven
Msgphp
Reusable domain layers. Shipped with industry standard infrastructure.
Stars: ✭ 182 (+857.89%)
Mutual labels:  uuid, cqrs, symfony-bundle, doctrine, domain-driven-design, event-sourcing
Symfony Demo App
A Symfony demo application with basic user management
Stars: ✭ 122 (+542.11%)
Mutual labels:  uuid, cqrs, doctrine, domain-driven-design, event-sourcing
Flux
A simple CQRS Framework for go
Stars: ✭ 206 (+984.21%)
Mutual labels:  cqrs, domain-driven-design, event-sourcing
Dotnet New Caju
Learn Clean Architecture with .NET Core 3.0 🔥
Stars: ✭ 228 (+1100%)
Mutual labels:  cqrs, domain-driven-design, event-sourcing
eda
eda is a library for implementing event-driven architectures.
Stars: ✭ 31 (+63.16%)
Mutual labels:  cqrs, domain-driven-design, event-sourcing
Kreta
Modern project management solution
Stars: ✭ 177 (+831.58%)
Mutual labels:  cqrs, domain-driven-design, event-sourcing
fee-office
A DDD, CQRS, ES demo application
Stars: ✭ 35 (+84.21%)
Mutual labels:  cqrs, domain-driven-design, event-sourcing
EcommerceDDD
Experimental full-stack application using Domain-Driven Design, CQRS, and Event Sourcing.
Stars: ✭ 178 (+836.84%)
Mutual labels:  cqrs, domain-driven-design, event-sourcing
Messagebus
A MessageBus (CommandBus, EventBus and QueryBus) implementation in PHP7
Stars: ✭ 178 (+836.84%)
Mutual labels:  cqrs, domain-driven-design, event-sourcing
financial
POC de uma aplicação de domínio financeiro.
Stars: ✭ 62 (+226.32%)
Mutual labels:  cqrs, domain-driven-design, event-sourcing
e-shop
Sample Spring Cloud microservices e-shop.
Stars: ✭ 48 (+152.63%)
Mutual labels:  cqrs, domain-driven-design, event-sourcing
cqrs-event-sourcing-example
Example of a list-making Web API using CQRS, Event Sourcing and DDD.
Stars: ✭ 28 (+47.37%)
Mutual labels:  cqrs, domain-driven-design, event-sourcing
nest-convoy
[WIP] An opinionated framework for building distributed domain driven systems using microservices architecture
Stars: ✭ 20 (+5.26%)
Mutual labels:  cqrs, domain-driven-design, event-sourcing
Event Sourcing Jambo
An Hexagonal Architecture with DDD + Aggregates + Event Sourcing using .NET Core, Kafka e MongoDB (Blog Engine)
Stars: ✭ 159 (+736.84%)
Mutual labels:  cqrs, domain-driven-design, event-sourcing
Revo
Event Sourcing, CQRS and DDD framework for C#/.NET Core.
Stars: ✭ 162 (+752.63%)
Mutual labels:  cqrs, domain-driven-design, event-sourcing
microservice-template
📖 Nest.js based microservice repository template
Stars: ✭ 131 (+589.47%)
Mutual labels:  cqrs, domain-driven-design, event-sourcing
node-cqrs-saga
Node-cqrs-saga is a node.js module that helps to implement the sagas in cqrs. It can be very useful as domain component if you work with (d)ddd, cqrs, eventdenormalizer, host, etc.
Stars: ✭ 59 (+210.53%)
Mutual labels:  cqrs, domain-driven-design, event-sourcing

Entity-Attribute-Value Bundle

A Symfony bundle for basic EAV management.

Latest Stable Version

Installation

composer require msgphp/eav-bundle

Configuration

<?php
// config/packages/msgphp_eav.php

use MsgPhp\Eav\Attribute;
use MsgPhp\Eav\AttributeValue;
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;

return function (ContainerConfigurator $container) {
    $container->extension('msgphp_eav', [
        'class_mapping' => [
            Attribute::class => \App\Entity\Attribute::class,
            AttributeValue::class => \App\Entity\AttributeValue::class,
        ],
    ]);
};

Documentation

Contributing

This repository is READ ONLY. Issues and pull requests should be submitted in the main development repository.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].