From 94803d818f3abef8fd7ee0f80575a1775ae5c1f2 Mon Sep 17 00:00:00 2001 From: Jesse Rushlow Date: Sat, 28 Mar 2020 00:26:00 -0400 Subject: [PATCH] adds recipe for symfony casts reset password bundle --- .../1.0/config/packages/reset_password.yaml | 5 +++++ symfonycasts/reset-password-bundle/1.0/manifest.json | 8 ++++++++ 2 files changed, 13 insertions(+) create mode 100644 symfonycasts/reset-password-bundle/1.0/config/packages/reset_password.yaml create mode 100644 symfonycasts/reset-password-bundle/1.0/manifest.json diff --git a/symfonycasts/reset-password-bundle/1.0/config/packages/reset_password.yaml b/symfonycasts/reset-password-bundle/1.0/config/packages/reset_password.yaml new file mode 100644 index 00000000..d878392f --- /dev/null +++ b/symfonycasts/reset-password-bundle/1.0/config/packages/reset_password.yaml @@ -0,0 +1,5 @@ +symfonycasts_reset_password: + # Replace symfonycasts.reset_password.fake_request_repository with the full + # namespace of the password reset request repository after it has been created. + # i.e. App\Repository\ResetPasswordRequestRepository + request_password_repository: symfonycasts.reset_password.fake_request_repository \ No newline at end of file diff --git a/symfonycasts/reset-password-bundle/1.0/manifest.json b/symfonycasts/reset-password-bundle/1.0/manifest.json new file mode 100644 index 00000000..42ff14e5 --- /dev/null +++ b/symfonycasts/reset-password-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "SymfonyCasts\\Bundle\\ResetPassword\\SymfonyCastsResetPasswordBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} \ No newline at end of file