mrgoodbytes8667 / user-bundle
User management commands inspired by FOSUserBundle
Installs: 3 197
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: ^8.1
- doctrine/doctrine-bundle: ^2.3
- doctrine/orm: ^2.8 | ^3.0
- mrgoodbytes8667/command-bundle: ^1.2.2 | ^2.0
- symfony/console: ^6.4 | ^7.0
- symfony/framework-bundle: ^6.4 | ^7.0
- symfony/property-access: ^6.4 | ^7.0
- symfony/property-info: ^6.4 | ^7.0
- symfony/security-core: ^6.4 | ^7.0
- symfony/validator: ^6.4 | ^7.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.4
- mrgoodbytes8667/test-common: >=0.0.23
- mrgoodbytes8667/test-common-faker: ^0.4.5
- phpunit/phpunit: ^9.6
- rector/rector: >= 0.16 <0.20.0
- symfony/test-pack: ^1.0.8
Conflicts
- phpunit/phpunit: <9.5 >=10
This package is auto-updated.
Last update: 2024-10-24 21:05:09 UTC
README
User management commands inspired by FOSUserBundle
Installation
Make sure Composer is installed globally, as explained in the installation chapter of the Composer documentation.
Applications that use Symfony Flex
Open a command console, enter your project directory and execute:
$ composer require mrgoodbytes8667/user-bundle
Applications that don't use Symfony Flex
Step 1: Download the Bundle
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
$ composer require mrgoodbytes8667/user-bundle
Step 2: Enable the Bundle
Then, enable the bundle by adding it to the list of registered bundles
in the config/bundles.php
file of your project:
// config/bundles.php return [ // ... Bytes\UserBundle\BytesUserBundle::class => ['all' => true], ];