From 5bf251fe549654a0052ab280ab218ca27497993e Mon Sep 17 00:00:00 2001 From: magento packaging service Date: Wed, 5 Feb 2025 17:55:42 +0000 Subject: [PATCH] Updating composer versions for version-setter for 1.1.7-beta2 --- ReCaptchaAdminUi/composer.json | 8 ++- ReCaptchaCheckout/composer.json | 18 +++--- ReCaptchaCheckoutSalesRule/composer.json | 20 ++++--- ReCaptchaContact/composer.json | 8 ++- ReCaptchaCustomer/composer.json | 12 ++-- ReCaptchaFrontendUi/composer.json | 8 ++- ReCaptchaMigration/composer.json | 6 +- ReCaptchaNewsletter/composer.json | 12 ++-- ReCaptchaPaypal/composer.json | 14 +++-- .../composer.json | 12 ++-- ReCaptchaReview/composer.json | 12 ++-- ReCaptchaSendFriend/composer.json | 12 ++-- ReCaptchaStorePickup/composer.json | 8 ++- ReCaptchaUi/composer.json | 22 ++++---- ReCaptchaUser/composer.json | 10 ++-- ReCaptchaValidation/composer.json | 8 ++- ReCaptchaValidationApi/composer.json | 6 +- ReCaptchaVersion2Checkbox/composer.json | 14 +++-- ReCaptchaVersion2Invisible/composer.json | 14 +++-- ReCaptchaVersion3Invisible/composer.json | 14 +++-- ReCaptchaWebapiApi/composer.json | 8 ++- ReCaptchaWebapiGraphQl/composer.json | 14 +++-- ReCaptchaWebapiRest/composer.json | 10 ++-- ReCaptchaWebapiUi/composer.json | 8 ++- ReCaptchaWishlist/composer.json | 4 +- Securitytxt/composer.json | 24 ++++---- TwoFactorAuth/composer.json | 6 +- _metapackage/composer.json | 56 ++++++++++--------- 28 files changed, 212 insertions(+), 156 deletions(-) diff --git a/ReCaptchaAdminUi/composer.json b/ReCaptchaAdminUi/composer.json index fa041b97..a4823dbb 100644 --- a/ReCaptchaAdminUi/composer.json +++ b/ReCaptchaAdminUi/composer.json @@ -1,15 +1,16 @@ { "name": "magento/module-re-captcha-admin-ui", "description": "Google reCAPTCHA integration for Magento2", + "type": "magento2-module", + "license": "OSL-3.0", + "version": "1.1.5-beta2", "require": { "php": "~8.2.0||~8.3.0||~8.4.0", "magento/framework": "*", "magento/module-config": "*", - "magento/module-re-captcha-ui": "*", + "magento/module-re-captcha-ui": "1.1.*", "magento/module-store": "*" }, - "type": "magento2-module", - "license": "OSL-3.0", "autoload": { "files": [ "registration.php" @@ -19,3 +20,4 @@ } } } + diff --git a/ReCaptchaCheckout/composer.json b/ReCaptchaCheckout/composer.json index b30e0cb0..13785ab6 100644 --- a/ReCaptchaCheckout/composer.json +++ b/ReCaptchaCheckout/composer.json @@ -1,19 +1,20 @@ { "name": "magento/module-re-captcha-checkout", "description": "Google reCAPTCHA integration for Magento2", + "type": "magento2-module", + "license": "OSL-3.0", + "version": "1.1.5-beta2", "require": { "php": "~8.2.0||~8.3.0||~8.4.0", "magento/framework": "*", "magento/module-checkout": "*", - "magento/module-re-captcha-ui": "*", - "magento/module-re-captcha-validation-api": "*", - "magento/module-re-captcha-admin-ui": "*", - "magento/module-re-captcha-frontend-ui": "*", - "magento/module-re-captcha-webapi-api": "*", - "magento/module-re-captcha-webapi-ui": "*" + "magento/module-re-captcha-ui": "1.1.*", + "magento/module-re-captcha-validation-api": "1.1.*", + "magento/module-re-captcha-admin-ui": "1.1.*", + "magento/module-re-captcha-frontend-ui": "1.1.*", + "magento/module-re-captcha-webapi-api": "1.0.*", + "magento/module-re-captcha-webapi-ui": "1.0.*" }, - "type": "magento2-module", - "license": "OSL-3.0", "autoload": { "files": [ "registration.php" @@ -23,3 +24,4 @@ } } } + diff --git a/ReCaptchaCheckoutSalesRule/composer.json b/ReCaptchaCheckoutSalesRule/composer.json index 2d4005d7..d474068b 100644 --- a/ReCaptchaCheckoutSalesRule/composer.json +++ b/ReCaptchaCheckoutSalesRule/composer.json @@ -1,20 +1,21 @@ { "name": "magento/module-re-captcha-checkout-sales-rule", "description": "Google ReCaptcha integration for Magento2 coupons", + "type": "magento2-module", + "license": "OSL-3.0", + "version": "1.1.4-beta2", "require": { "php": "~8.2.0||~8.3.0||~8.4.0", "magento/framework": "*", "magento/module-checkout": "*", "magento/module-sales-rule": "*", - "magento/module-re-captcha-ui": "*", - "magento/module-re-captcha-validation-api": "*", - "magento/module-re-captcha-admin-ui": "*", - "magento/module-re-captcha-frontend-ui": "*", - "magento/module-re-captcha-webapi-api": "*", - "magento/module-re-captcha-webapi-ui": "*" + "magento/module-re-captcha-ui": "1.1.*", + "magento/module-re-captcha-validation-api": "1.1.*", + "magento/module-re-captcha-admin-ui": "1.1.*", + "magento/module-re-captcha-frontend-ui": "1.1.*", + "magento/module-re-captcha-webapi-api": "1.0.*", + "magento/module-re-captcha-webapi-ui": "1.0.*" }, - "type": "magento2-module", - "license": "OSL-3.0", "autoload": { "files": [ "registration.php" @@ -22,5 +23,6 @@ "psr-4": { "Magento\\ReCaptchaCheckoutSalesRule\\": "" } - } + } } + diff --git a/ReCaptchaContact/composer.json b/ReCaptchaContact/composer.json index c4e01be6..cc74c6df 100644 --- a/ReCaptchaContact/composer.json +++ b/ReCaptchaContact/composer.json @@ -1,13 +1,14 @@ { "name": "magento/module-re-captcha-contact", "description": "Google reCAPTCHA integration for Magento2", + "type": "magento2-module", + "license": "OSL-3.0", + "version": "1.1.4-beta2", "require": { "php": "~8.2.0||~8.3.0||~8.4.0", "magento/framework": "*", - "magento/module-re-captcha-ui": "*" + "magento/module-re-captcha-ui": "1.1.*" }, - "type": "magento2-module", - "license": "OSL-3.0", "autoload": { "files": [ "registration.php" @@ -17,3 +18,4 @@ } } } + diff --git a/ReCaptchaCustomer/composer.json b/ReCaptchaCustomer/composer.json index c00e4e5f..e94b9286 100644 --- a/ReCaptchaCustomer/composer.json +++ b/ReCaptchaCustomer/composer.json @@ -1,16 +1,17 @@ { "name": "magento/module-re-captcha-customer", "description": "Google reCAPTCHA integration for Magento2", + "type": "magento2-module", + "license": "OSL-3.0", + "version": "1.1.6-beta2", "require": { "php": "~8.2.0||~8.3.0||~8.4.0", "magento/framework": "*", "magento/module-customer": "*", - "magento/module-re-captcha-ui": "*", - "magento/module-re-captcha-validation-api": "*", - "magento/module-re-captcha-webapi-api": "*" + "magento/module-re-captcha-ui": "1.1.*", + "magento/module-re-captcha-validation-api": "1.1.*", + "magento/module-re-captcha-webapi-api": "1.0.*" }, - "type": "magento2-module", - "license": "OSL-3.0", "autoload": { "files": [ "registration.php" @@ -20,3 +21,4 @@ } } } + diff --git a/ReCaptchaFrontendUi/composer.json b/ReCaptchaFrontendUi/composer.json index 5e819008..d6780ad9 100644 --- a/ReCaptchaFrontendUi/composer.json +++ b/ReCaptchaFrontendUi/composer.json @@ -1,14 +1,15 @@ { "name": "magento/module-re-captcha-frontend-ui", "description": "Google reCAPTCHA integration for Magento2", + "type": "magento2-module", + "license": "OSL-3.0", + "version": "1.1.6-beta2", "require": { "php": "~8.2.0||~8.3.0||~8.4.0", "magento/framework": "*", "magento/module-store": "*", - "magento/module-re-captcha-ui": "*" + "magento/module-re-captcha-ui": "1.1.*" }, - "type": "magento2-module", - "license": "OSL-3.0", "autoload": { "files": [ "registration.php" @@ -18,3 +19,4 @@ } } } + diff --git a/ReCaptchaMigration/composer.json b/ReCaptchaMigration/composer.json index f89e9fda..174ead69 100644 --- a/ReCaptchaMigration/composer.json +++ b/ReCaptchaMigration/composer.json @@ -1,13 +1,14 @@ { "name": "magento/module-re-captcha-migration", "description": "Google reCAPTCHA config migration for Magento2", + "type": "magento2-module", + "license": "OSL-3.0", + "version": "1.1.5-beta2", "require": { "php": "~8.2.0||~8.3.0||~8.4.0", "magento/framework": "*", "magento/module-config": "*" }, - "type": "magento2-module", - "license": "OSL-3.0", "autoload": { "files": [ "registration.php" @@ -17,3 +18,4 @@ } } } + diff --git a/ReCaptchaNewsletter/composer.json b/ReCaptchaNewsletter/composer.json index 1436b931..611247a0 100644 --- a/ReCaptchaNewsletter/composer.json +++ b/ReCaptchaNewsletter/composer.json @@ -1,15 +1,16 @@ { "name": "magento/module-re-captcha-newsletter", "description": "Google reCAPTCHA integration for Magento2", + "type": "magento2-module", + "license": "OSL-3.0", + "version": "1.1.5-beta2", "require": { "php": "~8.2.0||~8.3.0||~8.4.0", "magento/framework": "*", - "magento/module-re-captcha-ui": "*", - "magento/module-re-captcha-validation-api": "*", - "magento/module-re-captcha-webapi-api": "*" + "magento/module-re-captcha-ui": "1.1.*", + "magento/module-re-captcha-validation-api": "1.1.*", + "magento/module-re-captcha-webapi-api": "1.0.*" }, - "type": "magento2-module", - "license": "OSL-3.0", "autoload": { "files": [ "registration.php" @@ -19,3 +20,4 @@ } } } + diff --git a/ReCaptchaPaypal/composer.json b/ReCaptchaPaypal/composer.json index 8da56051..a71d60cf 100644 --- a/ReCaptchaPaypal/composer.json +++ b/ReCaptchaPaypal/composer.json @@ -1,19 +1,20 @@ { "name": "magento/module-re-captcha-paypal", "description": "Google reCaptcha integration for Magento2 PayPal PayflowPro payment form", + "type": "magento2-module", + "license": "OSL-3.0", + "version": "1.1.5-beta2", "require": { "php": "~8.2.0||~8.3.0||~8.4.0", "magento/framework": "*", - "magento/module-re-captcha-ui": "*", - "magento/module-re-captcha-validation-api": "*", + "magento/module-re-captcha-ui": "1.1.*", + "magento/module-re-captcha-validation-api": "1.1.*", "magento/module-checkout": "*", - "magento/module-re-captcha-webapi-api": "*", + "magento/module-re-captcha-webapi-api": "1.0.*", "magento/module-quote": "*", "magento/module-paypal": "*", - "magento/module-re-captcha-checkout": "*" + "magento/module-re-captcha-checkout": "1.1.*" }, - "type": "magento2-module", - "license": "OSL-3.0", "autoload": { "files": [ "registration.php" @@ -23,3 +24,4 @@ } } } + diff --git a/ReCaptchaResendConfirmationEmail/composer.json b/ReCaptchaResendConfirmationEmail/composer.json index 9c1ef2d9..3c66aa06 100644 --- a/ReCaptchaResendConfirmationEmail/composer.json +++ b/ReCaptchaResendConfirmationEmail/composer.json @@ -1,16 +1,17 @@ { "name": "magento/module-re-captcha-resend-confirmation-email", "description": "Google reCAPTCHA integration for Magento2", + "type": "magento2-module", + "license": "OSL-3.0", + "version": "1.1.0-beta2", "require": { "php": "~8.2.0||~8.3.0||~8.4.0", "magento/framework": "*", - "magento/module-re-captcha-ui": "*", - "magento/module-re-captcha-validation-api": "*", - "magento/module-re-captcha-webapi-api": "*", + "magento/module-re-captcha-ui": "1.1.*", + "magento/module-re-captcha-validation-api": "1.1.*", + "magento/module-re-captcha-webapi-api": "1.0.*", "magento/module-customer-graph-ql": "*" }, - "type": "magento2-module", - "license": "OSL-3.0", "autoload": { "files": [ "registration.php" @@ -20,3 +21,4 @@ } } } + diff --git a/ReCaptchaReview/composer.json b/ReCaptchaReview/composer.json index aaeb865f..f467b5fb 100644 --- a/ReCaptchaReview/composer.json +++ b/ReCaptchaReview/composer.json @@ -1,15 +1,16 @@ { "name": "magento/module-re-captcha-review", "description": "Google reCAPTCHA integration for Magento2", + "type": "magento2-module", + "license": "OSL-3.0", + "version": "1.1.5-beta2", "require": { "php": "~8.2.0||~8.3.0||~8.4.0", "magento/framework": "*", - "magento/module-re-captcha-ui": "*", - "magento/module-re-captcha-validation-api": "*", - "magento/module-re-captcha-webapi-api": "*" + "magento/module-re-captcha-ui": "1.1.*", + "magento/module-re-captcha-validation-api": "1.1.*", + "magento/module-re-captcha-webapi-api": "1.0.*" }, - "type": "magento2-module", - "license": "OSL-3.0", "autoload": { "files": [ "registration.php" @@ -19,3 +20,4 @@ } } } + diff --git a/ReCaptchaSendFriend/composer.json b/ReCaptchaSendFriend/composer.json index dd6aa448..c6846884 100644 --- a/ReCaptchaSendFriend/composer.json +++ b/ReCaptchaSendFriend/composer.json @@ -1,15 +1,16 @@ { "name": "magento/module-re-captcha-send-friend", "description": "Google reCAPTCHA integration for Magento2", + "type": "magento2-module", + "license": "OSL-3.0", + "version": "1.1.5-beta2", "require": { "php": "~8.2.0||~8.3.0||~8.4.0", "magento/framework": "*", - "magento/module-re-captcha-ui": "*", - "magento/module-re-captcha-validation-api": "*", - "magento/module-re-captcha-webapi-api": "*" + "magento/module-re-captcha-ui": "1.1.*", + "magento/module-re-captcha-validation-api": "1.1.*", + "magento/module-re-captcha-webapi-api": "1.0.*" }, - "type": "magento2-module", - "license": "OSL-3.0", "autoload": { "files": [ "registration.php" @@ -19,3 +20,4 @@ } } } + diff --git a/ReCaptchaStorePickup/composer.json b/ReCaptchaStorePickup/composer.json index 3d4701a2..6ebf40cd 100644 --- a/ReCaptchaStorePickup/composer.json +++ b/ReCaptchaStorePickup/composer.json @@ -1,17 +1,18 @@ { "name": "magento/module-re-captcha-store-pickup", "description": "Google reCaptcha integration for Magento2 Inventory Store Pickup shipping form", + "type": "magento2-module", + "license": "OSL-3.0", + "version": "1.0.4-beta2", "require": { "php": "~8.2.0||~8.3.0||~8.4.0", "magento/framework": "*", "magento/module-checkout": "*", - "magento/module-re-captcha-ui": "*" + "magento/module-re-captcha-ui": "1.1.*" }, "suggest": { "magento/module-inventory-in-store-pickup-frontend": "*" }, - "type": "magento2-module", - "license": "OSL-3.0", "autoload": { "files": [ "registration.php" @@ -21,3 +22,4 @@ } } } + diff --git a/ReCaptchaUi/composer.json b/ReCaptchaUi/composer.json index 045822ae..242afb95 100644 --- a/ReCaptchaUi/composer.json +++ b/ReCaptchaUi/composer.json @@ -1,19 +1,14 @@ { "name": "magento/module-re-captcha-ui", "description": "Google reCAPTCHA integration for Magento2", + "type": "magento2-module", + "license": "OSL-3.0", + "version": "1.1.5-beta2", "require": { "php": "~8.2.0||~8.3.0||~8.4.0", "magento/framework": "*", - "magento/module-re-captcha-validation-api": "*" + "magento/module-re-captcha-validation-api": "1.1.*" }, - "authors": [ - { - "name": "Riccardo Tempesta", - "email": "riccardo.tempesta@magespecialist.it" - } - ], - "type": "magento2-module", - "license": "OSL-3.0", "autoload": { "files": [ "registration.php" @@ -21,5 +16,12 @@ "psr-4": { "Magento\\ReCaptchaUi\\": "" } - } + }, + "authors": [ + { + "email": "riccardo.tempesta@magespecialist.it", + "name": "Riccardo Tempesta" + } + ] } + diff --git a/ReCaptchaUser/composer.json b/ReCaptchaUser/composer.json index b19869e7..2d98fcd3 100644 --- a/ReCaptchaUser/composer.json +++ b/ReCaptchaUser/composer.json @@ -1,14 +1,15 @@ { "name": "magento/module-re-captcha-user", "description": "Google reCAPTCHA integration for Magento2", + "type": "magento2-module", + "license": "OSL-3.0", + "version": "1.1.5-beta2", "require": { "php": "~8.2.0||~8.3.0||~8.4.0", "magento/framework": "*", - "magento/module-re-captcha-ui": "*", - "magento/module-re-captcha-validation-api": "*" + "magento/module-re-captcha-ui": "1.1.*", + "magento/module-re-captcha-validation-api": "1.1.*" }, - "type": "magento2-module", - "license": "OSL-3.0", "autoload": { "files": [ "registration.php" @@ -18,3 +19,4 @@ } } } + diff --git a/ReCaptchaValidation/composer.json b/ReCaptchaValidation/composer.json index d47fedcd..de9cd19e 100644 --- a/ReCaptchaValidation/composer.json +++ b/ReCaptchaValidation/composer.json @@ -1,14 +1,15 @@ { "name": "magento/module-re-captcha-validation", "description": "Google reCAPTCHA integration for Magento2", + "type": "magento2-module", + "license": "OSL-3.0", + "version": "1.1.4-beta2", "require": { "php": "~8.2.0||~8.3.0||~8.4.0", "magento/framework": "*", - "magento/module-re-captcha-validation-api": "*", + "magento/module-re-captcha-validation-api": "1.1.*", "phpfui/recaptcha": "^2.0.0" }, - "type": "magento2-module", - "license": "OSL-3.0", "autoload": { "files": [ "registration.php" @@ -18,3 +19,4 @@ } } } + diff --git a/ReCaptchaValidationApi/composer.json b/ReCaptchaValidationApi/composer.json index a497dd9b..ed4a8e11 100644 --- a/ReCaptchaValidationApi/composer.json +++ b/ReCaptchaValidationApi/composer.json @@ -1,12 +1,13 @@ { "name": "magento/module-re-captcha-validation-api", "description": "Google reCAPTCHA integration for Magento2", + "type": "magento2-module", + "license": "OSL-3.0", + "version": "1.1.4-beta2", "require": { "php": "~8.2.0||~8.3.0||~8.4.0", "magento/framework": "*" }, - "type": "magento2-module", - "license": "OSL-3.0", "autoload": { "files": [ "registration.php" @@ -16,3 +17,4 @@ } } } + diff --git a/ReCaptchaVersion2Checkbox/composer.json b/ReCaptchaVersion2Checkbox/composer.json index f659a22f..38f58d4f 100644 --- a/ReCaptchaVersion2Checkbox/composer.json +++ b/ReCaptchaVersion2Checkbox/composer.json @@ -1,20 +1,21 @@ { "name": "magento/module-re-captcha-version-2-checkbox", "description": "Google reCAPTCHA integration for Magento2", + "type": "magento2-module", + "license": "OSL-3.0", + "version": "2.0.5-beta2", "require": { "php": "~8.2.0||~8.3.0||~8.4.0", "magento/framework": "*", "magento/module-store": "*", - "magento/module-re-captcha-ui": "*", - "magento/module-re-captcha-validation-api": "*", - "magento/module-re-captcha-webapi-graph-ql": "*" + "magento/module-re-captcha-ui": "1.1.*", + "magento/module-re-captcha-validation-api": "1.1.*", + "magento/module-re-captcha-webapi-graph-ql": "1.0.*" }, "suggest": { "magento/module-config": "*", - "magento/module-re-captcha-admin-ui": "*" + "magento/module-re-captcha-admin-ui": "1.1.*" }, - "type": "magento2-module", - "license": "OSL-3.0", "autoload": { "files": [ "registration.php" @@ -24,3 +25,4 @@ } } } + diff --git a/ReCaptchaVersion2Invisible/composer.json b/ReCaptchaVersion2Invisible/composer.json index cdd6a94b..00b011a2 100644 --- a/ReCaptchaVersion2Invisible/composer.json +++ b/ReCaptchaVersion2Invisible/composer.json @@ -1,20 +1,21 @@ { "name": "magento/module-re-captcha-version-2-invisible", "description": "Google reCAPTCHA integration for Magento2", + "type": "magento2-module", + "license": "OSL-3.0", + "version": "2.0.5-beta2", "require": { "php": "~8.2.0||~8.3.0||~8.4.0", "magento/framework": "*", "magento/module-store": "*", - "magento/module-re-captcha-ui": "*", - "magento/module-re-captcha-validation-api": "*", - "magento/module-re-captcha-webapi-graph-ql": "*" + "magento/module-re-captcha-ui": "1.1.*", + "magento/module-re-captcha-validation-api": "1.1.*", + "magento/module-re-captcha-webapi-graph-ql": "1.0.*" }, "suggest": { "magento/module-config": "*", - "magento/module-re-captcha-admin-ui": "*" + "magento/module-re-captcha-admin-ui": "1.1.*" }, - "type": "magento2-module", - "license": "OSL-3.0", "autoload": { "files": [ "registration.php" @@ -24,3 +25,4 @@ } } } + diff --git a/ReCaptchaVersion3Invisible/composer.json b/ReCaptchaVersion3Invisible/composer.json index 518af1c1..37615bd9 100644 --- a/ReCaptchaVersion3Invisible/composer.json +++ b/ReCaptchaVersion3Invisible/composer.json @@ -1,20 +1,21 @@ { "name": "magento/module-re-captcha-version-3-invisible", "description": "Google reCAPTCHA integration for Magento2", + "type": "magento2-module", + "license": "OSL-3.0", + "version": "2.0.5-beta2", "require": { "php": "~8.2.0||~8.3.0||~8.4.0", "magento/framework": "*", "magento/module-store": "*", - "magento/module-re-captcha-ui": "*", - "magento/module-re-captcha-validation-api": "*", - "magento/module-re-captcha-webapi-graph-ql": "*" + "magento/module-re-captcha-ui": "1.1.*", + "magento/module-re-captcha-validation-api": "1.1.*", + "magento/module-re-captcha-webapi-graph-ql": "1.0.*" }, "suggest": { "magento/module-config": "*", - "magento/module-re-captcha-admin-ui": "*" + "magento/module-re-captcha-admin-ui": "1.1.*" }, - "type": "magento2-module", - "license": "OSL-3.0", "autoload": { "files": [ "registration.php" @@ -24,3 +25,4 @@ } } } + diff --git a/ReCaptchaWebapiApi/composer.json b/ReCaptchaWebapiApi/composer.json index 619cde30..7d31a57b 100644 --- a/ReCaptchaWebapiApi/composer.json +++ b/ReCaptchaWebapiApi/composer.json @@ -1,13 +1,14 @@ { "name": "magento/module-re-captcha-webapi-api", "description": "Google reCAPTCHA integration for Magento2", + "type": "magento2-module", + "license": "OSL-3.0", + "version": "1.0.4-beta2", "require": { "php": "~8.2.0||~8.3.0||~8.4.0", "magento/framework": "*", - "magento/module-re-captcha-validation-api": "*" + "magento/module-re-captcha-validation-api": "1.1.*" }, - "type": "magento2-module", - "license": "OSL-3.0", "autoload": { "files": [ "registration.php" @@ -17,3 +18,4 @@ } } } + diff --git a/ReCaptchaWebapiGraphQl/composer.json b/ReCaptchaWebapiGraphQl/composer.json index f581895c..95ba1fb9 100644 --- a/ReCaptchaWebapiGraphQl/composer.json +++ b/ReCaptchaWebapiGraphQl/composer.json @@ -1,17 +1,18 @@ { "name": "magento/module-re-captcha-webapi-graph-ql", "description": "Google reCAPTCHA integration for Magento2", + "type": "magento2-module", + "license": "OSL-3.0", + "version": "1.0.4-beta2", "require": { "php": "~8.2.0||~8.3.0||~8.4.0", "magento/framework": "*", "magento/module-authorization": "*", - "magento/module-re-captcha-frontend-ui": "*", - "magento/module-re-captcha-version-3-invisible": "*", - "magento/module-re-captcha-validation-api": "*", - "magento/module-re-captcha-webapi-api": "*" + "magento/module-re-captcha-frontend-ui": "1.1.*", + "magento/module-re-captcha-version-3-invisible": "2.0.*", + "magento/module-re-captcha-validation-api": "1.1.*", + "magento/module-re-captcha-webapi-api": "1.0.*" }, - "type": "magento2-module", - "license": "OSL-3.0", "autoload": { "files": [ "registration.php" @@ -21,3 +22,4 @@ } } } + diff --git a/ReCaptchaWebapiRest/composer.json b/ReCaptchaWebapiRest/composer.json index 39219e0a..c730a8f0 100644 --- a/ReCaptchaWebapiRest/composer.json +++ b/ReCaptchaWebapiRest/composer.json @@ -1,16 +1,17 @@ { "name": "magento/module-re-captcha-webapi-rest", "description": "Google reCAPTCHA integration for Magento2", + "type": "magento2-module", + "license": "OSL-3.0", + "version": "1.0.4-beta2", "require": { "php": "~8.2.0||~8.3.0||~8.4.0", "magento/framework": "*", "magento/module-authorization": "*", - "magento/module-re-captcha-validation-api": "*", - "magento/module-re-captcha-webapi-api": "*", + "magento/module-re-captcha-validation-api": "1.1.*", + "magento/module-re-captcha-webapi-api": "1.0.*", "magento/module-webapi": "*" }, - "type": "magento2-module", - "license": "OSL-3.0", "autoload": { "files": [ "registration.php" @@ -20,3 +21,4 @@ } } } + diff --git a/ReCaptchaWebapiUi/composer.json b/ReCaptchaWebapiUi/composer.json index 3e4e03e2..0e8f68db 100644 --- a/ReCaptchaWebapiUi/composer.json +++ b/ReCaptchaWebapiUi/composer.json @@ -1,13 +1,14 @@ { "name": "magento/module-re-captcha-webapi-ui", "description": "Google reCAPTCHA integration for Magento2", + "type": "magento2-module", + "license": "OSL-3.0", + "version": "1.0.4-beta2", "require": { "php": "~8.2.0||~8.3.0||~8.4.0", "magento/framework": "*", - "magento/module-re-captcha-frontend-ui": "*" + "magento/module-re-captcha-frontend-ui": "1.1.*" }, - "type": "magento2-module", - "license": "OSL-3.0", "autoload": { "files": [ "registration.php" @@ -17,3 +18,4 @@ } } } + diff --git a/ReCaptchaWishlist/composer.json b/ReCaptchaWishlist/composer.json index 20186ae6..f4fc9b2b 100644 --- a/ReCaptchaWishlist/composer.json +++ b/ReCaptchaWishlist/composer.json @@ -3,10 +3,11 @@ "description": "Google reCAPTCHA integration for Magento2", "type": "magento2-module", "license": "OSL-3.0", + "version": "1.1.0-beta2", "require": { "php": "~8.2.0||~8.3.0||~8.4.0", "magento/framework": "*", - "magento/module-re-captcha-ui": "*" + "magento/module-re-captcha-ui": "1.1.*" }, "autoload": { "files": [ @@ -17,3 +18,4 @@ } } } + diff --git a/Securitytxt/composer.json b/Securitytxt/composer.json index 327970e6..02cd4483 100644 --- a/Securitytxt/composer.json +++ b/Securitytxt/composer.json @@ -2,22 +2,17 @@ "name": "magento/module-securitytxt", "description": "Security.txt file for Magento 2 websites", "type": "magento2-module", + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "version": "1.1.4-beta2", "require": { "php": "~8.2.0||~8.3.0||~8.4.0", "magento/framework": "*", "magento/module-config": "*", "magento/module-store": "*" }, - "authors": [ - { - "name": "Kalpesh Mehta", - "email": "k@lpe.sh" - } - ], - "license": [ - "OSL-3.0", - "AFL-3.0" - ], "autoload": { "files": [ "registration.php" @@ -25,5 +20,12 @@ "psr-4": { "Magento\\Securitytxt\\": "" } - } + }, + "authors": [ + { + "email": "k@lpe.sh", + "name": "Kalpesh Mehta" + } + ] } + diff --git a/TwoFactorAuth/composer.json b/TwoFactorAuth/composer.json index 89e154fe..07f810f7 100644 --- a/TwoFactorAuth/composer.json +++ b/TwoFactorAuth/composer.json @@ -1,6 +1,9 @@ { "name": "magento/module-two-factor-auth", "description": "Two Factor Authentication module for Magento2", + "type": "magento2-module", + "license": "OSL-3.0", + "version": "1.1.7-beta2", "require": { "php": "~8.2.0||~8.3.0||~8.4.0", "magento/framework": "*", @@ -19,8 +22,6 @@ "duosecurity/duo_api_php": "^1.1", "duosecurity/duo_universal_php": "^1.0" }, - "type": "magento2-module", - "license": "OSL-3.0", "autoload": { "files": [ "registration.php" @@ -30,3 +31,4 @@ } } } + diff --git a/_metapackage/composer.json b/_metapackage/composer.json index 79cf1a37..90350108 100644 --- a/_metapackage/composer.json +++ b/_metapackage/composer.json @@ -2,34 +2,36 @@ "name": "magento/security-package", "description": "Magento Security Package", "type": "metapackage", + "version": "1.1.7-beta2", "require": { - "magento/module-re-captcha-admin-ui": "*", - "magento/module-re-captcha-checkout": "*", - "magento/module-re-captcha-contact": "*", - "magento/module-re-captcha-customer": "*", - "magento/module-re-captcha-frontend-ui": "*", - "magento/module-re-captcha-migration": "*", - "magento/module-re-captcha-newsletter": "*", - "magento/module-re-captcha-paypal": "*", - "magento/module-re-captcha-resend-confirmation-email": "*", - "magento/module-re-captcha-review": "*", - "magento/module-re-captcha-send-friend": "*", - "magento/module-re-captcha-store-pickup": "*", - "magento/module-re-captcha-ui": "*", - "magento/module-re-captcha-user": "*", - "magento/module-re-captcha-validation": "*", - "magento/module-re-captcha-validation-api": "*", - "magento/module-re-captcha-version-2-checkbox": "*", - "magento/module-re-captcha-version-2-invisible": "*", - "magento/module-re-captcha-version-3-invisible": "*", - "magento/module-re-captcha-webapi-api": "*", - "magento/module-re-captcha-webapi-rest": "*", - "magento/module-re-captcha-webapi-graph-ql": "*", - "magento/module-re-captcha-webapi-ui": "*", - "magento/module-re-captcha-wishlist": "*", - "magento/module-securitytxt": "*", - "magento/module-two-factor-auth": "*", + "magento/module-re-captcha-admin-ui": "1.1.5-beta2", + "magento/module-re-captcha-checkout": "1.1.5-beta2", + "magento/module-re-captcha-contact": "1.1.4-beta2", + "magento/module-re-captcha-customer": "1.1.6-beta2", + "magento/module-re-captcha-frontend-ui": "1.1.6-beta2", + "magento/module-re-captcha-migration": "1.1.5-beta2", + "magento/module-re-captcha-newsletter": "1.1.5-beta2", + "magento/module-re-captcha-paypal": "1.1.5-beta2", + "magento/module-re-captcha-resend-confirmation-email": "1.1.0-beta2", + "magento/module-re-captcha-review": "1.1.5-beta2", + "magento/module-re-captcha-send-friend": "1.1.5-beta2", + "magento/module-re-captcha-store-pickup": "1.0.4-beta2", + "magento/module-re-captcha-ui": "1.1.5-beta2", + "magento/module-re-captcha-user": "1.1.5-beta2", + "magento/module-re-captcha-validation": "1.1.4-beta2", + "magento/module-re-captcha-validation-api": "1.1.4-beta2", + "magento/module-re-captcha-version-2-checkbox": "2.0.5-beta2", + "magento/module-re-captcha-version-2-invisible": "2.0.5-beta2", + "magento/module-re-captcha-version-3-invisible": "2.0.5-beta2", + "magento/module-re-captcha-webapi-api": "1.0.4-beta2", + "magento/module-re-captcha-webapi-rest": "1.0.4-beta2", + "magento/module-re-captcha-webapi-graph-ql": "1.0.4-beta2", + "magento/module-re-captcha-webapi-ui": "1.0.4-beta2", + "magento/module-re-captcha-wishlist": "1.1.0-beta2", + "magento/module-securitytxt": "1.1.4-beta2", + "magento/module-two-factor-auth": "1.1.7-beta2", "phpfui/recaptcha": "^2.0.0", - "magento/module-re-captcha-checkout-sales-rule": "*" + "magento/module-re-captcha-checkout-sales-rule": "1.1.4-beta2" } } +