2017 © Pedro Peláez
 

symfony-bundle user-bundle

Basic user management (the `User` domain)

image

msgphp/user-bundle

Basic user management (the `User` domain)

  • Wednesday, July 11, 2018
  • by ro0NL
  • Repository
  • 11 Watchers
  • 63 Stars
  • 3,315 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 6 Forks
  • 0 Open issues
  • 27 Versions
  • 62 % Grown

The README.md

NOT ACTIVELY SUPPORTED ANY MORE!!

msgphp/* repositories are not actively developed/supported anymore., (*1)

Use in production on your own risks., (*2)

If you want to do some hotfixes - please do PR directly in target repository instead of previous msgphp/msgphp monorepository, (*3)

User Bundle

A new Symfony bundle for basic user management., (*4)

![Latest Stable Version][packagist:img], (*5)

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

The Versions