A new Symfony bundle for basic user management.
composer require msgphp/user-bundle<?php// config/packages/msgphp_user.phpuseMsgPhp\User\User;
useSymfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
returnfunction (ContainerConfigurator$container) {
$container->extension('msgphp_user', [
'class_mapping' => [
User::class => \App\Entity\User::class,
],
]);
};composer require maker --dev
bin/console make:user:msgphp- Read the bundle documentation
- Try the Symfony demo application
- Get support on Symfony's Slack
#msgphpchannel or raise an issue
This repository is READ ONLY. Issues and pull requests should be submitted in the main development repository.