PHPackages                             fabricio872/register-command - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [CLI &amp; Console](/categories/cli)
4. /
5. fabricio872/register-command

ActiveSymfony-bundle[CLI &amp; Console](/categories/cli)

fabricio872/register-command
============================

Symfony bundle for registering new users from terminal

v2.0.0(2y ago)11.5k↓100%MITPHPPHP ^8.2

Since Apr 12Pushed 2y ago1 watchersCompare

[ Source](https://github.com/Fabricio872/RegisterCommandBundle)[ Packagist](https://packagist.org/packages/fabricio872/register-command)[ RSS](/packages/fabricio872-register-command/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (13)Versions (43)Used By (0)

[![GitHub tag (latest by date)](https://camo.githubusercontent.com/962ff8873b251b9c1b5011a5e01b63479ce13bf28cab64d5457c0d114dde5a5d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f762f7461672f466162726963696f3837322f5265676973746572436f6d6d616e64)](https://camo.githubusercontent.com/962ff8873b251b9c1b5011a5e01b63479ce13bf28cab64d5457c0d114dde5a5d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f762f7461672f466162726963696f3837322f5265676973746572436f6d6d616e64)[![GitHub last commit](https://camo.githubusercontent.com/9f94535739d84f4e35ac68af21295dfdca4520736ec58db12f001ba37188df3d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6173742d636f6d6d69742f466162726963696f3837322f5265676973746572436f6d6d616e64)](https://camo.githubusercontent.com/9f94535739d84f4e35ac68af21295dfdca4520736ec58db12f001ba37188df3d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6173742d636f6d6d69742f466162726963696f3837322f5265676973746572436f6d6d616e64)[![PHP Composer Test and Tag](https://github.com/Fabricio872/RegisterCommandBundle/actions/workflows/php-composer.yml/badge.svg)](https://github.com/Fabricio872/RegisterCommandBundle/actions/workflows/php-composer.yml)[![Packagist Downloads](https://camo.githubusercontent.com/8424e008e55021cc5c98f56a23bb195bd02e0e6052dad2dbf1658511e8bb6816/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f466162726963696f3837322f72656769737465722d636f6d6d616e64)](https://camo.githubusercontent.com/8424e008e55021cc5c98f56a23bb195bd02e0e6052dad2dbf1658511e8bb6816/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f466162726963696f3837322f72656769737465722d636f6d6d616e64)[![GitHub Repo stars](https://camo.githubusercontent.com/a9612aa1c78241d0f19a11b17d40a0af23ec400b85f2b0e441b3b689f95746db/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f466162726963696f3837322f5265676973746572436f6d6d616e643f7374796c653d736f6369616c)](https://camo.githubusercontent.com/a9612aa1c78241d0f19a11b17d40a0af23ec400b85f2b0e441b3b689f95746db/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f466162726963696f3837322f5265676973746572436f6d6d616e643f7374796c653d736f6369616c)

Valuable partners:
==================

[](#valuable-partners)

[![PhpStorm logo](https://camo.githubusercontent.com/1e31d98d23a59aa7fddbdae1155126adeac9ad6cded9a478fc8c5d377942c433/68747470733a2f2f7265736f75726365732e6a6574627261696e732e636f6d2f73746f726167652f70726f64756374732f636f6d70616e792f6272616e642f6c6f676f732f50687053746f726d2e737667)](https://camo.githubusercontent.com/1e31d98d23a59aa7fddbdae1155126adeac9ad6cded9a478fc8c5d377942c433/68747470733a2f2f7265736f75726365732e6a6574627261696e732e636f6d2f73746f726167652f70726f64756374732f636f6d70616e792f6272616e642f6c6f676f732f50687053746f726d2e737667)

Installation
============

[](#installation)

Make sure Composer is installed globally, as explained in the [installation chapter](https://getcomposer.org/doc/00-intro.md)of the Composer documentation.

Applications that use Symfony Flex
----------------------------------

[](#applications-that-use-symfony-flex)

Open a command console, enter your project directory and execute:

```
$ composer require fabricio872/register-command
```

Applications that don't use Symfony Flex
----------------------------------------

[](#applications-that-dont-use-symfony-flex)

### Step 1: Download the Bundle

[](#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 fabricio872/register-command
```

### Step 2: Enable the 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 [
    // ...
    Fabricio872\RegisterCommand\RegisterCommandBundle::class => ['all' => true],
];
```

Usage
=====

[](#usage)

Configuration example:

```
# config/services.yaml

# ...
# Default configuration for extension with alias: "register_command"
RegisterBundle:

    # Entity for your user
    user_class:           App\Entity\User

    # Sets default value for maximum rows on single page of list table
    table_limit:          10

    # Sets maximum width for single column in characters
    max_col_width:        64
# ...
```

Configure Entity
----------------

[](#configure-entity)

> note: In case of combining Annotations and Attributes of this bundle only Attributes will be used.

- Documentation for Attributes usage is [here](https://github.com/Fabricio872/RegisterCommandBundle/tree/main/docs/ATTRIBUTE_EXAMPLES.md)

Finally, you are ready to register some users.
----------------------------------------------

[](#finally-you-are-ready-to-register-some-users)

Execute this command:

```
$ bin/console user:register
```

To list all existing users execute this:

```
$ bin/console user:list
```

> In list view you can switch to edit mode with 'e' and quit with 'q' option

To jump to exact page execute this:

```
$ bin/console user:list {page_number}
```

example for page 2:

```
$ bin/console user:list 2
```

To change maximum rows in table use option -l or --limit:

```
$ bin/console user:list -l {table_limit}
```

example for showing maximum 5 rows:

```
$ bin/console user:list -l 5
```

To change maximum width of each column use option -w or --col-width:

```
$ bin/console user:list -w {table_limit}
```

example for col width 32 characters:

```
$ bin/console user:list -w 32
```

###  Health Score

37

—

LowBetter than 82% of packages

Maintenance31

Infrequent updates — may be unmaintained

Popularity18

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity76

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~28 days

Recently: every ~104 days

Total

40

Last Release

760d ago

Major Versions

v0.6.2 → v1.12021-10-01

v1.5.1 → v2.0.02024-04-09

PHP version history (6 changes)v0.1.0PHP ^7.4

v0.1.2PHP ^7.2

v0.5.0PHP ^7.2|^8.0

v1.3PHP ^7.3|^8.0

v1.3.3PHP ^8.1

v2.0.0PHP ^8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/932c1684f2ac3360d3230023377029d9f7ea388a55dfc509c4f5501e2208ddd4?d=identicon)[Fabricio872](/maintainers/Fabricio872)

---

Top Contributors

[![Fabricio872](https://avatars.githubusercontent.com/u/29705379?v=4)](https://github.com/Fabricio872 "Fabricio872 (108 commits)")

---

Tags

phpsymfonysymfony-clisymfony-consolesymfony-flexsymfony5cliconsolesymfonylibraryselectSymfony Bundlecheckboxradio

###  Code Quality

Static AnalysisPHPStan, Rector

Code StyleECS

Type Coverage Yes

### Embed Badge

![Health badge](/badges/fabricio872-register-command/health.svg)

```
[![Health](https://phpackages.com/badges/fabricio872-register-command/health.svg)](https://phpackages.com/packages/fabricio872-register-command)
```

###  Alternatives

[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.4k5.6M647](/packages/sylius-sylius)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.3M152](/packages/sulu-sulu)[prestashop/prestashop

PrestaShop is an Open Source e-commerce platform, committed to providing the best shopping cart experience for both merchants and customers.

9.0k15.4k](/packages/prestashop-prestashop)[ec-cube/ec-cube

EC-CUBE EC open platform.

78527.0k1](/packages/ec-cube-ec-cube)[eddiriarte/console-select

A fancy selection interface for symfony's console component.

117.2k2](/packages/eddiriarte-console-select)[open-dxp/opendxp

Content &amp; Product Management Framework (CMS/PIM)

7310.3k29](/packages/open-dxp-opendxp)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
