jensone / profile-generator
Symfony User Profile Generator to speed up your workflow 🚀
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires (Dev)
- php: >=8.1
- symfony/console: ^5.0
- symfony/filesystem: ^5.0
- symfony/http-client: ^5.0
README
Profile Generator
About
Profile Generator is PHP package that generates a user profile page for your Symfony application. It provides a simple command to generate a profile page with a controller, a template, and a few assets. The generated page is based on TailwindCSS and Bootstrap 5.
Installation
Install Profile Generator using Composer:
composer require jensone/profile-generator
Register the bundle in your config/bundles.php
file:
return [ // ... Jensone\ProfileGenerator\ProfileGeneratorBundle::class => ['all' => true], ];
Usage
Run the following command to generate a profile page:
bin/console profile:generator
Ensure that you have an entity to manage users in your application. If not, use the make:user
command to create one.
Thanks for using Profile Generator! 🚀