Files
symfony-flex-recipes-contrib/fastfony/identity-bundle/1.0/post-install.txt
T
9d40969561 Recipe for fastfony/identity-bundle (#1939)
* Recipe for fastfony/identity-bundle

* fix: remove post-install in manifest.json

* add add-lines instructions in manifest.json and change post-install.txt

* fix: order of add-lines key

* fix: add new lines and not use before_target

* fix: wrong indentation

* fix: wrong indentation

* improve post-install.txt

* Update fastfony/identity-bundle/1.0/post-install.txt

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update fastfony/identity-bundle/1.0/post-install.txt

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update fastfony/identity-bundle/1.0/manifest.json

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2026-02-26 15:46:05 +04:00

21 lines
1011 B
Plaintext

<info>Fastfony/IdentityBundle is almost ready:</info>
1. A <fg=yellow>config/packages/fastfony_identity.yaml</> and a <fg=yellow>config/routes/fastfony_identity.yaml</> file has been created for you.
2. The <fg=yellow>config/packages/security.yaml</> and <fg=yellow>config/packages/stof_doctrine_extensions.yaml</> files have been updated where the expected configuration lines were found; please verify these changes.
3. Merge the content of <fg=yellow>config/packages/mailer.yaml.dist</> into your <fg=yellow>config/packages/mailer.yaml</> file and set your <fg=yellow>MAILER_DSN</> environment variable if it is not already done.
4. Create the database schema:
Option 1 - Generate and run migrations to create the database tables:
<fg=green>php bin/console doctrine:migrations:diff
php bin/console doctrine:migrations:migrate</>
Option 2 - Or without migrations, you can create the schema directly:
<fg=green>php bin/console doctrine:schema:update --force</>
<info>Enjoy!</info>