jkabat / user-bundle

A new Symfony user bundle

Home Page:https://github.com/msgphp/msgphp

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

A new Symfony user bundle

https://github.com/msgphp/msgphp

License:MIT License


Languages

Language:PHP 100.0%