Require the bundle
composer require carcel/user-bundle
vendor/carcel/user-bundle/config/fos_user.yaml into app/config/config.yml.vendor/carcel/user-bundle/config/security.yaml into app/config/security.yml.vendor/carcel/user-bundle/config/routes.yaml into app/config/routes.yamlCopy the files bower.json and .bowerrc from the CarcelUserBundle to the root of your application, then run the following command to download and install JQuery and Bootstrap.
bower update
However, you can skip this step if you intend to customize the the bundle forms and not make use of Bootstrap and JQuery.
Run the following commands to create the database table and create an admin user:
bin/console doctrine:schema:update --force
bin/console fos:user:create admin --super-admin
The application is now ready to run. You can either configure a HTTP server of your choice (Apache, nginx…) or use the Symfony internal server:
bin/console server:run
You should now be able to display the login page (localhost:8000/login if using the Symfony server).
How can I help you explore Laravel packages today?