All Projects → msgphp → User Bundle

msgphp / User Bundle

Licence: mit
A new Symfony user bundle

Projects that are alternatives of or similar to User Bundle

Msgphp
Reusable domain layers. Shipped with industry standard infrastructure.
Stars: ✭ 182 (+56.9%)
Mutual labels:  cli, twig, event-sourcing, doctrine, symfony-bundle, user-management, cqrs, domain-driven-design, uuid
Symfony Demo App
A Symfony demo application with basic user management
Stars: ✭ 122 (+5.17%)
Mutual labels:  cli, twig, event-sourcing, doctrine, user-management, cqrs, domain-driven-design, uuid
eav-bundle
A Symfony bundle for basic EAV management
Stars: ✭ 19 (-83.62%)
Mutual labels:  uuid, cqrs, symfony-bundle, doctrine, domain-driven-design, event-sourcing
user
A domain layer providing basic user management
Stars: ✭ 14 (-87.93%)
Mutual labels:  uuid, cqrs, doctrine, domain-driven-design, event-sourcing, user-management
domain
A dependency-free package to help building a business domain layer
Stars: ✭ 33 (-71.55%)
Mutual labels:  uuid, cqrs, doctrine, domain-driven-design, event-sourcing
Event Sourcing Cqrs Examples
Event Sourcing and CQRS in practice.
Stars: ✭ 265 (+128.45%)
Mutual labels:  event-sourcing, cqrs, domain-driven-design
Event Source Cqrs Sample
Sample ES/CQRS application
Stars: ✭ 380 (+227.59%)
Mutual labels:  event-sourcing, cqrs, domain-driven-design
Awesome Elixir Cqrs
A curated list of awesome Elixir and Command Query Responsibility Segregation (CQRS) resources.
Stars: ✭ 467 (+302.59%)
Mutual labels:  event-sourcing, cqrs, domain-driven-design
Kimai2
Kimai v2 is a web-based multiuser time-tracking application. Free for everyone: freelancers, agencies, companies, organizations - all can track their times, generate invoices and more. SaaS version available at https://www.kimai.cloud
Stars: ✭ 1,216 (+948.28%)
Mutual labels:  twig, doctrine, user-management
dudulina
CQRS + Event Sourcing library for PHP
Stars: ✭ 53 (-54.31%)
Mutual labels:  cqrs, domain-driven-design, event-sourcing
Modular Monolith With Ddd
Full Modular Monolith application with Domain-Driven Design approach.
Stars: ✭ 6,210 (+5253.45%)
Mutual labels:  event-sourcing, cqrs, domain-driven-design
Productcontext Eventsourcing
A practical/experimental Event Sourcing application on Product Bounded Context in an e-commerce
Stars: ✭ 88 (-24.14%)
Mutual labels:  event-sourcing, cqrs, domain-driven-design
event-sourcing
A lightweight but also all-inclusive event sourcing library with a focus on developer experience and based on doctrine dbal
Stars: ✭ 65 (-43.97%)
Mutual labels:  doctrine, domain-driven-design, event-sourcing
Akkatecture
a cqrs and event sourcing framework for dotnet core using akka.net
Stars: ✭ 414 (+256.9%)
Mutual labels:  event-sourcing, cqrs, domain-driven-design
delta
DDD-centric event-sourcing library for the JVM
Stars: ✭ 15 (-87.07%)
Mutual labels:  cqrs, domain-driven-design, event-sourcing
Eventsourcing
A library for event sourcing in Python.
Stars: ✭ 760 (+555.17%)
Mutual labels:  event-sourcing, cqrs, domain-driven-design
Foxoffice
Sample application demonstrating how to build a distributed cloud .NET Core application based on CQRS and Event Sourcing.
Stars: ✭ 33 (-71.55%)
Mutual labels:  event-sourcing, cqrs, domain-driven-design
Eventhorizon
CQRS/ES toolkit for Go
Stars: ✭ 961 (+728.45%)
Mutual labels:  event-sourcing, cqrs, domain-driven-design
Asombroso Ddd
Una lista cuidadosamente curada de recursos sobre Domain Driven Design, Eventos, Event Sourcing, Command Query Responsibility Segregation (CQRS).
Stars: ✭ 41 (-64.66%)
Mutual labels:  event-sourcing, cqrs, domain-driven-design
cqrs-event-sourcing-example
Example of a list-making Web API using CQRS, Event Sourcing and DDD.
Stars: ✭ 28 (-75.86%)
Mutual labels:  cqrs, domain-driven-design, event-sourcing

User Bundle

A new Symfony bundle for basic user management.

Latest Stable Version

Installation

composer require msgphp/user-bundle

Configuration

<?php
// config/packages/msgphp_user.php

use MsgPhp\User\User;
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;

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

Feeling Lazy?

composer require maker --dev
bin/console make:user:msgphp

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].