From e99cee188f978c704c6d64ad587b4489634adf7c Mon Sep 17 00:00:00 2001 From: kalashjain72 <kalashjain72@gmail.com> Date: Wed, 5 Feb 2025 12:53:09 +0530 Subject: [PATCH] Issue #3490609 : Fixed the error. --- composer.json | 16 ++++++++++++++++ user_email_verification.info.yml | 1 + 2 files changed, 17 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..5b02fc4 --- /dev/null +++ b/composer.json @@ -0,0 +1,16 @@ +{ + "name": "drupal/user_email_verification", + "type": "drupal-module", + "license": "GPL-2.0-or-later", + "homepage": "https://www.drupal.org/project/user_email_verification", + "description": "Verify the user Email. If the Email of the user is not verified the system will block the user.", + "support": { + "issues": "https://www.drupal.org/project/issues/user_email_verification", + "source": "https://git.drupalcode.org/project/user_email_verification" + }, + "require": { + "drupal/rules": "^3.0" + }, + "minimum-stability": "dev" +} + diff --git a/user_email_verification.info.yml b/user_email_verification.info.yml index 8cce4d0..f01d4fc 100644 --- a/user_email_verification.info.yml +++ b/user_email_verification.info.yml @@ -8,3 +8,4 @@ configure: user_email_verification.settings_form dependencies: - drupal:user + - rules:rules -- GitLab