From 26bcc5ba3392ad68bd4df43b750dd525d9cc616b Mon Sep 17 00:00:00 2001 From: Iftakharul Alam Date: Sat, 26 Sep 2020 02:38:18 +0600 Subject: [PATCH 001/143] remove redundant variable --- src/guides/v2.3/extension-dev-guide/price-adjustments.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/guides/v2.3/extension-dev-guide/price-adjustments.md b/src/guides/v2.3/extension-dev-guide/price-adjustments.md index 5dc8b43cf4a..503af259b62 100644 --- a/src/guides/v2.3/extension-dev-guide/price-adjustments.md +++ b/src/guides/v2.3/extension-dev-guide/price-adjustments.md @@ -98,8 +98,7 @@ class Adjustment implements AdjustmentInterface */ public function applyAdjustment($amount, SaleableInterface $saleableItem, $context = []) { - $return = $amount + self::ADJUSTMENT_VALUE; - return $return; + return $amount + self::ADJUSTMENT_VALUE; } /** From 9a434591f5e5b5c1c3822efcdb3f9983d118b6d7 Mon Sep 17 00:00:00 2001 From: Falco Nogatz Date: Wed, 30 Sep 2020 00:35:30 +0200 Subject: [PATCH 002/143] Add missing leading dot for `.well-known` --- src/guides/v2.4/security/security-txt.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guides/v2.4/security/security-txt.md b/src/guides/v2.4/security/security-txt.md index 6ad563c677d..c0bb8a56105 100644 --- a/src/guides/v2.4/security/security-txt.md +++ b/src/guides/v2.4/security/security-txt.md @@ -12,7 +12,7 @@ When security vulnerabilities are discovered by researchers, proper reporting ch Magento merchants can enter their contact information for [security issue reporting](https://docs.magento.com/user-guide/stores/security-issue-reporting.html) from the Magento _Admin_. For developers, the `Magento_Securitytxt` module provides the following functionality: - Allows security configurations to be saved from the _Admin_. -- Contains a router to match application action class for requests to the `well-known/security.txt` and `.well-known/security.txt.sig` files. +- Contains a router to match application action class for requests to the `.well-known/security.txt` and `.well-known/security.txt.sig` files. - Serves the content of the `.well-known/security.txt` and `.well-known/security.txt.sig` files. A valid `security.txt` file might look like the following: From 107f963c4ce3122a1719f77305500f964ba7192a Mon Sep 17 00:00:00 2001 From: Donald Booth Date: Mon, 12 Oct 2020 11:31:15 -0500 Subject: [PATCH 003/143] Updated with missing annotations --- src/guides/v2.4/test/integration/annotations.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/guides/v2.4/test/integration/annotations.md b/src/guides/v2.4/test/integration/annotations.md index 5b1d3d30eef..5d891a3c3ec 100644 --- a/src/guides/v2.4/test/integration/annotations.md +++ b/src/guides/v2.4/test/integration/annotations.md @@ -12,12 +12,15 @@ The following annotations are available in integration tests: Name|Annotation|Format|Description ---|---|---|--- +Admin Configuration Fixture|`@magentoAdminConfigFixture`|`@magentoAdminConfigFixture `| Configures an admin setting for the test run. For example, to enabled Captcha, you would use `@magentoAdminConfigFixture admin/captcha/enable 1`. Application Isolation|`@magentoAppIsolation`|`@magentoAppIsolation enabled|disabled`|Enables or disables application isolation when you run tests. When enabled, an application state after a test run will be the same as before the test run. For example, you should enable it, when you want to create sessions in a test, but you don't want them to affect other tests. Configuration Fixture|`@magentoConfigFixture`|`@magentoConfigFixture [_store] `|Sets up configuration settings for a particular test. The list of settings is stored in the `core_config_data` database table. After the test execution, the settings revert to their original state. Database Isolation|`@magentoDbIsolation`|`@magentoDbIsolation enabled|disabled`|Enables or disables database isolation. Disabled by default, unless you are using `@magentoDataFixture`, in which case it is enabled by default. All data, required for a test, live during transaction only. Any test results won't be written in a database. Data Fixture|`@magentoDataFixture`|`@magentoDataFixture |`|Points to a class or a method which creates testing entities (fixtures) for test execution. +Data Fixture Before Transaction|`@magentoDataFixtureBeforeTransaction`|`@magentoDataFixtureBeforeTransaction |`|Points to a class or a method which creates testing entities (fixtures) for test execution before the transaction has begun. Application Area|`@magentoAppArea`|`@magentoAppArea adminhtml|frontend|global`|Configures test environment in the context of specified application area. Enable/Disable Cache|`@magentoCache`|`@magentoCache |all enabled|disabled`|Enables or disables certain cache segment or all of them to prevent isolation problems. +Indexer Dimension Mode|`@magentoIndexerDimensionMode`|`@magentoIndexerDimensionMode `|Sets the indexer dimension mode for the test run. Register Components|`@magentoComponentsDir`|`@magentoComponentsDir `|Registers fixture components from specified directory (recursively). Unregisters the components after the test is finished. ### Applying annotations From f709d07809b72fba533749e0b002de219370118e Mon Sep 17 00:00:00 2001 From: Donald Booth Date: Mon, 12 Oct 2020 11:35:10 -0500 Subject: [PATCH 004/143] Added to list --- src/guides/v2.4/test/integration/annotations.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/guides/v2.4/test/integration/annotations.md b/src/guides/v2.4/test/integration/annotations.md index 5d891a3c3ec..a18ef855480 100644 --- a/src/guides/v2.4/test/integration/annotations.md +++ b/src/guides/v2.4/test/integration/annotations.md @@ -29,12 +29,16 @@ The Magento-specific annotations for integration tests are applied in the follow 1. `@magentoAppIsolation` 1. `@magentoDbIsolation` +1. `@magentoDataFixtureBeforeTransaction` 1. `@magentoDataFixture` +1. `@magentoIndexerDimensionMode` 1. `@magentoComponentsDir` 1. `@magentoAppArea` 1. `@magentoCache` +1. `@magentoAdminConfigFixture` 1. `@magentoConfigFixture` + This order is necessary to meet the requirement of setting up the store-scoped configuration values for fixture stores (stores that are created by data fixtures). From d0ea2d4b742e37750fbb329b1da3a46138525f39 Mon Sep 17 00:00:00 2001 From: Donald Booth Date: Mon, 12 Oct 2020 11:58:10 -0500 Subject: [PATCH 005/143] Added details --- src/guides/v2.4/test/integration/annotations.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/guides/v2.4/test/integration/annotations.md b/src/guides/v2.4/test/integration/annotations.md index a18ef855480..4cc492574b8 100644 --- a/src/guides/v2.4/test/integration/annotations.md +++ b/src/guides/v2.4/test/integration/annotations.md @@ -16,11 +16,11 @@ Admin Configuration Fixture|`@magentoAdminConfigFixture`|`@magentoAdminConfigFix Application Isolation|`@magentoAppIsolation`|`@magentoAppIsolation enabled|disabled`|Enables or disables application isolation when you run tests. When enabled, an application state after a test run will be the same as before the test run. For example, you should enable it, when you want to create sessions in a test, but you don't want them to affect other tests. Configuration Fixture|`@magentoConfigFixture`|`@magentoConfigFixture [_store] `|Sets up configuration settings for a particular test. The list of settings is stored in the `core_config_data` database table. After the test execution, the settings revert to their original state. Database Isolation|`@magentoDbIsolation`|`@magentoDbIsolation enabled|disabled`|Enables or disables database isolation. Disabled by default, unless you are using `@magentoDataFixture`, in which case it is enabled by default. All data, required for a test, live during transaction only. Any test results won't be written in a database. -Data Fixture|`@magentoDataFixture`|`@magentoDataFixture |`|Points to a class or a method which creates testing entities (fixtures) for test execution. -Data Fixture Before Transaction|`@magentoDataFixtureBeforeTransaction`|`@magentoDataFixtureBeforeTransaction |`|Points to a class or a method which creates testing entities (fixtures) for test execution before the transaction has begun. +Data Fixture|`@magentoDataFixture`|`@magentoDataFixture |`|Points to a class or a method which creates testing entities (fixtures) for test execution. These are applied during the transaction. +Data Fixture Before Transaction|`@magentoDataFixtureBeforeTransaction`|`@magentoDataFixtureBeforeTransaction |`|Points to a class or a method which creates testing entities (fixtures) for test execution before the transaction has begun. You will need to implement a rollback for changes made here. Application Area|`@magentoAppArea`|`@magentoAppArea adminhtml|frontend|global`|Configures test environment in the context of specified application area. Enable/Disable Cache|`@magentoCache`|`@magentoCache |all enabled|disabled`|Enables or disables certain cache segment or all of them to prevent isolation problems. -Indexer Dimension Mode|`@magentoIndexerDimensionMode`|`@magentoIndexerDimensionMode `|Sets the indexer dimension mode for the test run. +Indexer Dimension Mode|`@magentoIndexerDimensionMode`|`@magentoIndexerDimensionMode `|Sets the indexer dimension mode for the test run. More information can be found in the [DevBlog](https://community.magento.com/t5/Magento-DevBlog/Indexers-parallelization-and-optimization/ba-p/104922_). Register Components|`@magentoComponentsDir`|`@magentoComponentsDir `|Registers fixture components from specified directory (recursively). Unregisters the components after the test is finished. ### Applying annotations From 89ddc82f2ff329084ba4a65212f05857a1085723 Mon Sep 17 00:00:00 2001 From: Donald Booth Date: Mon, 12 Oct 2020 12:02:48 -0500 Subject: [PATCH 006/143] Extra line --- src/guides/v2.4/test/integration/annotations.md | 1 - 1 file changed, 1 deletion(-) diff --git a/src/guides/v2.4/test/integration/annotations.md b/src/guides/v2.4/test/integration/annotations.md index 4cc492574b8..9ae6150f24e 100644 --- a/src/guides/v2.4/test/integration/annotations.md +++ b/src/guides/v2.4/test/integration/annotations.md @@ -38,7 +38,6 @@ The Magento-specific annotations for integration tests are applied in the follow 1. `@magentoAdminConfigFixture` 1. `@magentoConfigFixture` - This order is necessary to meet the requirement of setting up the store-scoped configuration values for fixture stores (stores that are created by data fixtures). From 8676988d46cefd94cd7383729a1ac345075c69fc Mon Sep 17 00:00:00 2001 From: Jeff Matthews Date: Thu, 15 Oct 2020 08:27:06 -0500 Subject: [PATCH 007/143] Q4 2020 Commerce & Open Source release (2.3.6, 2.4.0-p1, 2.4.1) (#8051) * Update src/_includes/graphql/cart-object-24.md Co-authored-by: Yaroslav Rogoza * Remove ee-only designations * Add uid to various product types * Update BIC reference Updated reference documentation on backward incompatible changes for 2.4.0-2.4.1-develop versions delta. * Add CE product-related uid attributes * more customization instances * Update examples * Add attribute to updateCartItems * Removed attribute. Wrong branch * Add attribute to updateCartItems * revert changes made in wrong file * Apply suggestions from code review Co-authored-by: Erik Marr <45772211+erikmarr@users.noreply.github.com> * Fix link * GraphQL: Add coverage for wishlist items * update schema * review comments * Update BIC reference Updated reference documentation on backward incompatible changes for 2.4.0-2.4.1-develop versions delta. * Apply suggestions from code review Updating the schema where GraphiQL failed me. Co-authored-by: Yaroslav Rogoza * GraphQL: Add coverage for product reviews * Break symlinks * checkpoint * Add example and links * typos * magento/devdocs#7367: Added the article "addProductsToCart mutation" * Apply suggestions from code review Review comments Co-authored-by: Yaroslav Rogoza * Add storeConfig attributes * Update add-products-to-cart.md I reorganized the content so that selected and entered options are discussed toward the beginning. I would like to know more about the selected option example. Is this way more efficient than the traditional way of adding a configurable product by specifying a parent SKU like `WSH12` and a child SKU like `WSH12-29-Green`? Do we need to specify how to find `uid` values? * Update entered-option-input.md This file was created in another PR that was merged after you submitted this PR. Changing the contents so that they'll match exactly, avoiding a merge conflict. * added enties for core issue fixes * Update TOC * Update BIC reference Updated reference documentation on backward incompatible changes for 2.4.0-2.4.1-develop versions delta. * Add example * GraphQL: Minor fixes * fix links * move files to new location * Update links * 2.4 redirects * 2.3 redirects * Added the contributor name and contributor link * added community contribution tables and highlights * test build after adding include files * recreated mising file * added additional highlights * Revert "GraphQL: Add section about CORS" * Update BIC reference Updated reference documentation on backward incompatible changes for 2.4.0-2.4.1-develop versions delta. * GraphQL: Move *ItemInterface docs to their own topics * Beta version of the release notes * Add examples * Apply suggestions from code review Co-authored-by: Yaroslav Rogoza * Adding B2B table data * Add 2.4.1 * EOF line * entered review comments * final review comment * completed adding review comments * Changed file names to comply with naming convention * GraphQL: availableStores query * Added include references * Review comments * Fix spacing problem * GraphQL: Add/update customer query examples * Added mutation reference * Added mutation ref to TOC * Added klarna payment overview/workflow * Add the file for real * Added diagrams * Fixed code sample * CAPTCHA endpoints * CAPTCHA and WebAPIs * Fill out the createKlarnaPaymentsSession doc * Apply suggestions from peer review Co-authored-by: Kevin Harper * Move paragraph, delete paragraph * Fixed diagrams and linting * Reorganized info per internal review * Apply suggestions from second peer review Co-authored-by: Kevin Harper * Updated graphics per second peer review * Fixed code sample and renamed section * added 236 release notes * Inventory release notes * Update src/guides/v2.3/inventory/release-notes.md Co-authored-by: Barny Shergold * Inventory 1.2.1. 1.1.6 release notes. - Review fixes * Update klarna.md * Updated diagram * Fix trailing space * Added Pagebuilder * Added Amazon * Update src/_data/mde.yml Co-authored-by: Ken Hicks <46905350+hickskenh@users.noreply.github.com> * Updated * fixed incorrect value * review copy * review copy * review copy for Misha * added hostep's initial comments * added new issue descriptions * Update src/guides/v2.4/release-notes/open-source-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/open-source-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/open-source-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/open-source-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/open-source-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/open-source-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/open-source-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/commerce-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/open-source-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/open-source-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/open-source-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/open-source-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/open-source-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/open-source-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/open-source-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/open-source-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/open-source-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/open-source-2-4-1.md Co-authored-by: Kevin Harper * entered keharper's comments * removed invalid link * added issue descriptions, first known issues, VDE bug fixes * Update Compatibility table (#8009) Added Amazon 4.3.0 to the release compatibility table. * added known issues * removed duplicate ASC 4.2 entries * Removed old code * review copy * Removed dupe spaces * added review comment for known issue * entered dobooth's review comments * removed Commerce-only issues from OS notes * re-categorized issues * fixed broken links and minor typos * Update src/guides/v2.4/release-notes/open-source-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.3/release-notes/commerce-2-3-6.md Co-authored-by: Kevin Harper * Update src/guides/v2.3/release-notes/commerce-2-3-6.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/open-source-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.3/release-notes/commerce-2-3-6.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/open-source-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/open-source-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.3/release-notes/commerce-2-3-6.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/open-source-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.3/release-notes/commerce-2-3-6.md Co-authored-by: Kevin Harper * Update src/guides/v2.3/release-notes/open-source-2-3-6.md Co-authored-by: Kevin Harper * Update src/guides/v2.3/release-notes/open-source-2-3-6.md Co-authored-by: Kevin Harper * Update src/guides/v2.3/release-notes/open-source-2-3-6.md Co-authored-by: Kevin Harper * Update src/guides/v2.3/release-notes/open-source-2-3-6.md Co-authored-by: Kevin Harper * Update src/guides/v2.3/release-notes/open-source-2-3-6.md Co-authored-by: Kevin Harper * Update src/guides/v2.3/release-notes/open-source-2-3-6.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/commerce-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/commerce-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/commerce-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/commerce-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/commerce-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/commerce-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/commerce-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/commerce-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/commerce-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/commerce-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/open-source-2-4-1.md Co-authored-by: Kevin Harper * Update src/guides/v2.4/release-notes/open-source-2-4-1.md Co-authored-by: Kevin Harper * entered keharper's review comments * corrected problematic link and added B2B links * corrected links * corrected links * added new highlights * added new highlights * added new known issue to both sets of notes * Update GraphQL release notes (#8047) * Fix broken link * Fix all broken links * Fix open source links * Added whatsnew for Q4 2020 release * Pull in revision to 7436 * Changed date * Update whats-new.yml Co-authored-by: Kevin Harper Co-authored-by: Yaroslav Rogoza Co-authored-by: Kevin Harper Co-authored-by: magedocs Co-authored-by: Erik Marr <45772211+erikmarr@users.noreply.github.com> Co-authored-by: jfrontain Co-authored-by: Andrii Beziazychnyi Co-authored-by: Donald Booth Co-authored-by: Stanislav Idolov Co-authored-by: Barny Shergold Co-authored-by: Ken Hicks <46905350+hickskenh@users.noreply.github.com> Co-authored-by: Jeanne Frontain Co-authored-by: Donald Booth --- src/_data/mde.yml | 223 +- src/_data/toc/graphql.yml | 107 +- src/_data/toc/release-notes.yml | 12 + src/_data/toc/rest-api.yml | 3 + src/_data/whats-new.yml | 158 +- .../commerce/2.4.0-2.4.1-develop.html | 28 + .../open-source/2.4.0-2.4.1-develop.html | 160 ++ .../config/es-elasticsearch-magento.md | 5 +- src/_includes/config/es-version-23.md | 6 + src/_includes/graphql/cart-object-24.md | 34 + .../graphql/credit-memo-item-interface.md | 9 + .../graphql/customer-address-output.md | 6 +- .../graphql/customer-orders-output.md | 391 ++++ src/_includes/graphql/customer-output-24.md | 17 +- .../graphql/downloadable-items-links.md | 9 + src/_includes/graphql/entered-option-input.md | 6 + src/_includes/graphql/gift-card-item.md | 11 + src/_includes/graphql/gift-message.md | 7 + src/_includes/graphql/gift-wrapping.md | 17 + .../graphql/invoice-item-interface.md | 9 + .../graphql/item-selected-bundle-option.md | 19 + src/_includes/graphql/order-item-interface.md | 18 + src/_includes/graphql/product-review.md | 20 + .../graphql/shipment-item-interface.md | 8 + src/_includes/graphql/store-config.md | 108 + .../graphql/wishlist-user-input-errors.md | 6 + src/_includes/graphql/wishlist.md | 21 + .../release-notes/engcomm-2-4-1-issues.md | 274 +++ .../release-notes/engcomm-2-4-1-partner.md | 18 + src/cloud/env/variables-build.md | 2 +- src/cloud/env/variables-deploy.md | 2 +- src/cloud/env/variables-global.md | 2 +- .../graphql/paypal-payflow-pro-vault.svg | 3 + .../elasticsearch/es-downgrade.md | 6 +- .../config-guide/elasticsearch/es-overview.md | 11 +- .../message-queues/message-queues.md | 49 +- .../v2.3/get-started/gs-web-api-request.md | 3 +- .../payment-methods/braintree-vault.md | 2 +- .../v2.3/graphql/protected-mutations.md | 28 + src/guides/v2.3/graphql/send-request.md | 9 +- .../install-gde/system-requirements-tech.md | 14 +- src/guides/v2.3/inventory/release-notes.md | 14 + .../v2.3/release-notes/b2b-release-notes.md | 32 +- .../v2.3/release-notes/bk-release-notes.md | 3 + .../v2.3/release-notes/commerce-2-3-6.md | 841 +++++++ .../v2.3/release-notes/open-source-2-3-6.md | 702 ++++++ src/guides/v2.3/rest/protected-endpoints.md | 30 + src/guides/v2.4/comp-mgr/cli/cli-upgrade.md | 10 - .../build/module-file-structure.md | 106 +- .../message-queues/config-mq.md | 285 ++- .../responsive-web-design/rwd_js.md | 7 - .../klarna-payments-cart-updates.drawio | 1 + .../images/klarna-payments-cart-updates.svg | 3 + .../graphql/images/klarna-payments.drawio | 1 + .../v2.4/graphql/images/klarna-payments.svg | 3 + .../graphql/images/reset-password-email.png | Bin 0 -> 28319 bytes .../v2.4/graphql/interfaces/bundle-product.md | 28 +- .../interfaces/configurable-product.md | 80 +- .../interfaces/credit-memo-item-interface.md | 148 ++ .../customizable-option-interface.md | 10 +- .../interfaces/downloadable-product.md | 14 +- .../graphql/interfaces/gift-card-product.md | 2 + .../interfaces/invoice-item-interface.md | 224 ++ .../interfaces/order-item-interface.md | 234 ++ .../graphql/interfaces/product-interface.md | 16 + .../interfaces/shipment-item-interface.md | 191 ++ .../graphql/mutations/add-bundle-products.md | 252 ++- .../mutations/add-configurable-products.md | 152 +- .../mutations/add-downloadable-products.md | 267 ++- .../graphql/mutations/add-products-to-cart.md | 371 ++++ .../mutations/add-products-to-wishlist.md | 226 ++ .../graphql/mutations/add-simple-products.md | 286 ++- .../graphql/mutations/add-virtual-products.md | 144 +- .../v2.4/graphql/mutations/apply-coupon.md | 128 +- .../v2.4/graphql/mutations/apply-giftcard.md | 100 +- .../graphql/mutations/apply-reward-points.md | 136 ++ .../graphql/mutations/apply-store-credit.md | 105 +- .../mutations/change-customer-password.md | 77 +- .../graphql/mutations/create-customer-v2.md | 101 + .../v2.4/graphql/mutations/create-customer.md | 7 +- .../create-klarna-payments-session.md | 113 + .../mutations/create-product-review.md | 120 + .../mutations/handle-payflow-pro-response.md | 84 +- .../v2.4/graphql/mutations/merge-carts.md | 96 +- .../v2.4/graphql/mutations/remove-coupon.md | 114 +- .../v2.4/graphql/mutations/remove-giftcard.md | 72 +- .../v2.4/graphql/mutations/remove-item.md | 110 +- .../remove-products-from-wishlist.md | 150 ++ .../graphql/mutations/remove-reward-points.md | 96 + .../graphql/mutations/remove-store-credit.md | 98 +- .../v2.4/graphql/mutations/reorder-items.md | 2 +- .../mutations/request-password-reset-email.md | 74 + .../v2.4/graphql/mutations/reset-password.md | 70 + .../graphql/mutations/set-billing-address.md | 2 +- .../graphql/mutations/set-gift-options.md | 186 ++ .../v2.4/graphql/mutations/set-guest-email.md | 82 +- .../graphql/mutations/set-payment-method.md | 3 +- .../graphql/mutations/set-shipping-address.md | 2 +- .../graphql/mutations/set-shipping-method.md | 2 +- .../subscribe-email-to-newsletter.md | 79 + .../graphql/mutations/update-cart-items.md | 153 +- .../mutations/update-customer-email.md | 64 + .../graphql/mutations/update-customer-v2.md | 86 + .../v2.4/graphql/mutations/update-customer.md | 7 +- .../mutations/update-products-in-wishlist.md | 209 ++ .../v2.4/graphql/payment-methods/klarna.md | 135 ++ .../payment-methods/payflow-pro-vault.md | 98 + .../graphql/payment-methods/payflow-pro.md | 96 +- .../v2.4/graphql/protected-mutations.md | 1 + .../v2.4/graphql/queries/available-stores.md | 60 + src/guides/v2.4/graphql/queries/cart.md | 41 +- .../v2.4/graphql/queries/customer-cart.md | 83 +- .../v2.4/graphql/queries/customer-orders.md | 100 +- src/guides/v2.4/graphql/queries/customer.md | 380 +++- .../product-review-ratings-metadata.md | 155 ++ src/guides/v2.4/graphql/queries/products.md | 2 +- .../v2.4/graphql/queries/store-config.md | 162 +- src/guides/v2.4/graphql/release-notes.md | 11 +- .../cli/install-cli-subcommands-enable.md | 79 +- .../v2.4/release-notes/b2b-release-notes.md | 71 + .../reference.md | 6 + .../v2.4/release-notes/bk-release-notes.md | 3 + .../v2.4/release-notes/commerce-2-4-1.md | 1957 +++++++++++++++++ .../v2.4/release-notes/open-source-2-4-1.md | 1699 ++++++++++++++ src/guides/v2.4/rest/protected-endpoints.md | 1 + 125 files changed, 14093 insertions(+), 299 deletions(-) create mode 100644 src/_includes/backward-incompatible-changes/commerce/2.4.0-2.4.1-develop.html create mode 100644 src/_includes/backward-incompatible-changes/open-source/2.4.0-2.4.1-develop.html create mode 100644 src/_includes/config/es-version-23.md create mode 100644 src/_includes/graphql/cart-object-24.md create mode 100644 src/_includes/graphql/credit-memo-item-interface.md create mode 100644 src/_includes/graphql/customer-orders-output.md create mode 100644 src/_includes/graphql/downloadable-items-links.md create mode 100644 src/_includes/graphql/entered-option-input.md create mode 100644 src/_includes/graphql/gift-card-item.md create mode 100644 src/_includes/graphql/gift-message.md create mode 100644 src/_includes/graphql/gift-wrapping.md create mode 100644 src/_includes/graphql/invoice-item-interface.md create mode 100644 src/_includes/graphql/item-selected-bundle-option.md create mode 100644 src/_includes/graphql/order-item-interface.md create mode 100644 src/_includes/graphql/product-review.md create mode 100644 src/_includes/graphql/shipment-item-interface.md create mode 100644 src/_includes/graphql/store-config.md create mode 100644 src/_includes/graphql/wishlist-user-input-errors.md create mode 100644 src/_includes/graphql/wishlist.md create mode 100644 src/_includes/release-notes/engcomm-2-4-1-issues.md create mode 100644 src/_includes/release-notes/engcomm-2-4-1-partner.md create mode 100644 src/common/images/graphql/paypal-payflow-pro-vault.svg create mode 100644 src/guides/v2.3/graphql/protected-mutations.md create mode 100644 src/guides/v2.3/release-notes/commerce-2-3-6.md create mode 100644 src/guides/v2.3/release-notes/open-source-2-3-6.md create mode 100644 src/guides/v2.3/rest/protected-endpoints.md mode change 120000 => 100644 src/guides/v2.4/extension-dev-guide/build/module-file-structure.md mode change 120000 => 100644 src/guides/v2.4/extension-dev-guide/message-queues/config-mq.md create mode 100644 src/guides/v2.4/graphql/images/klarna-payments-cart-updates.drawio create mode 100644 src/guides/v2.4/graphql/images/klarna-payments-cart-updates.svg create mode 100644 src/guides/v2.4/graphql/images/klarna-payments.drawio create mode 100644 src/guides/v2.4/graphql/images/klarna-payments.svg create mode 100644 src/guides/v2.4/graphql/images/reset-password-email.png create mode 100644 src/guides/v2.4/graphql/interfaces/credit-memo-item-interface.md create mode 100644 src/guides/v2.4/graphql/interfaces/invoice-item-interface.md create mode 100644 src/guides/v2.4/graphql/interfaces/order-item-interface.md create mode 100644 src/guides/v2.4/graphql/interfaces/shipment-item-interface.md mode change 120000 => 100644 src/guides/v2.4/graphql/mutations/add-bundle-products.md mode change 120000 => 100644 src/guides/v2.4/graphql/mutations/add-configurable-products.md mode change 120000 => 100644 src/guides/v2.4/graphql/mutations/add-downloadable-products.md create mode 100644 src/guides/v2.4/graphql/mutations/add-products-to-cart.md create mode 100644 src/guides/v2.4/graphql/mutations/add-products-to-wishlist.md mode change 120000 => 100644 src/guides/v2.4/graphql/mutations/add-simple-products.md mode change 120000 => 100644 src/guides/v2.4/graphql/mutations/add-virtual-products.md mode change 120000 => 100644 src/guides/v2.4/graphql/mutations/apply-coupon.md mode change 120000 => 100644 src/guides/v2.4/graphql/mutations/apply-giftcard.md create mode 100644 src/guides/v2.4/graphql/mutations/apply-reward-points.md mode change 120000 => 100644 src/guides/v2.4/graphql/mutations/apply-store-credit.md mode change 120000 => 100644 src/guides/v2.4/graphql/mutations/change-customer-password.md create mode 100644 src/guides/v2.4/graphql/mutations/create-customer-v2.md create mode 100644 src/guides/v2.4/graphql/mutations/create-klarna-payments-session.md create mode 100644 src/guides/v2.4/graphql/mutations/create-product-review.md mode change 120000 => 100644 src/guides/v2.4/graphql/mutations/handle-payflow-pro-response.md mode change 120000 => 100644 src/guides/v2.4/graphql/mutations/merge-carts.md mode change 120000 => 100644 src/guides/v2.4/graphql/mutations/remove-coupon.md mode change 120000 => 100644 src/guides/v2.4/graphql/mutations/remove-giftcard.md mode change 120000 => 100644 src/guides/v2.4/graphql/mutations/remove-item.md create mode 100644 src/guides/v2.4/graphql/mutations/remove-products-from-wishlist.md create mode 100644 src/guides/v2.4/graphql/mutations/remove-reward-points.md mode change 120000 => 100644 src/guides/v2.4/graphql/mutations/remove-store-credit.md create mode 100644 src/guides/v2.4/graphql/mutations/request-password-reset-email.md create mode 100644 src/guides/v2.4/graphql/mutations/reset-password.md create mode 100644 src/guides/v2.4/graphql/mutations/set-gift-options.md mode change 120000 => 100644 src/guides/v2.4/graphql/mutations/set-guest-email.md create mode 100644 src/guides/v2.4/graphql/mutations/subscribe-email-to-newsletter.md mode change 120000 => 100644 src/guides/v2.4/graphql/mutations/update-cart-items.md create mode 100644 src/guides/v2.4/graphql/mutations/update-customer-email.md create mode 100644 src/guides/v2.4/graphql/mutations/update-customer-v2.md create mode 100644 src/guides/v2.4/graphql/mutations/update-products-in-wishlist.md create mode 100644 src/guides/v2.4/graphql/payment-methods/klarna.md create mode 100644 src/guides/v2.4/graphql/payment-methods/payflow-pro-vault.md mode change 120000 => 100644 src/guides/v2.4/graphql/payment-methods/payflow-pro.md create mode 120000 src/guides/v2.4/graphql/protected-mutations.md create mode 100644 src/guides/v2.4/graphql/queries/available-stores.md mode change 120000 => 100644 src/guides/v2.4/graphql/queries/customer-cart.md mode change 120000 => 100644 src/guides/v2.4/graphql/queries/customer-orders.md create mode 100644 src/guides/v2.4/graphql/queries/product-review-ratings-metadata.md mode change 120000 => 100644 src/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.md create mode 100644 src/guides/v2.4/release-notes/commerce-2-4-1.md create mode 100644 src/guides/v2.4/release-notes/open-source-2-4-1.md create mode 120000 src/guides/v2.4/rest/protected-endpoints.md diff --git a/src/_data/mde.yml b/src/_data/mde.yml index 281fa21e4d9..73028681443 100644 --- a/src/_data/mde.yml +++ b/src/_data/mde.yml @@ -5,7 +5,9 @@ versions: - 2.3.3 - 2.3.4 - 2.3.5-p1 + - 2.3.6 - 2.4.0 + - 2.4.1 extensions: - name: Amazon Sales Channel @@ -19,7 +21,9 @@ extensions: 2.3.3: compatible 2.3.4: compatible 2.3.5-p1: compatible + 2.3.6: compatible 2.4.0: compatible + 2.4.1: supported - name: 4.2.0 support: @@ -29,8 +33,9 @@ extensions: 2.3.3: compatible 2.3.4: compatible 2.3.5-p1: compatible - 2.4.0: supported - + 2.3.6: compatible + 2.4.0: compatible + 2.4.1: supported - name: 4.1.0 support: @@ -40,7 +45,9 @@ extensions: 2.3.3: supported 2.3.4: supported 2.3.5-p1: supported + 2.3.6: compatible 2.4.0: not supported + 2.4.1: not supported - name: 4.0.0 support: @@ -50,7 +57,9 @@ extensions: 2.3.3: compatible 2.3.4: compatible 2.3.5-p1: not supported + 2.3.6: not supported 2.4.0: not supported + 2.4.1: not supported - name: 3.0.1 support: @@ -60,7 +69,9 @@ extensions: 2.3.3: compatible 2.3.4: compatible 2.3.5-p1: compatible + 2.3.6: not supported 2.4.0: not supported + 2.4.1: not supported - name: 3.0.0 support: @@ -70,7 +81,9 @@ extensions: 2.3.3: compatible 2.3.4: compatible 2.3.5-p1: compatible + 2.3.6: not supported 2.4.0: not supported + 2.4.1: not supported - name: 2.0.0 support: @@ -80,10 +93,24 @@ extensions: 2.3.3: compatible 2.3.4: compatible 2.3.5-p1: compatible + 2.3.6: not supported 2.4.0: not supported + 2.4.1: not supported - name: Magento Inventory versions: + - + name: 1.2.1 + support: + 2.3.0: compatible + 2.3.1: compatible + 2.3.2: compatible + 2.3.3: compatible + 2.3.4: compatible + 2.3.5-p1: compatible + 2.3.6: compatible + 2.4.0: compatible + 2.4.1: supported - name: 1.2.0 support: @@ -93,7 +120,21 @@ extensions: 2.3.3: compatible 2.3.4: compatible 2.3.5-p1: compatible + 2.3.6: compatible 2.4.0: supported + 2.4.1: compatible + - + name: 1.1.6 + support: + 2.3.0: compatible + 2.3.1: compatible + 2.3.2: compatible + 2.3.3: compatible + 2.3.4: compatible + 2.3.5-p1: compatible + 2.3.6: supported + 2.4.0: compatible + 2.4.1: compatible - name: 1.1.5 support: @@ -103,7 +144,9 @@ extensions: 2.3.3: compatible 2.3.4: compatible 2.3.5-p1: supported + 2.3.6: compatible 2.4.0: compatible + 2.4.1: compatible - name: 1.1.4 support: @@ -113,7 +156,9 @@ extensions: 2.3.3: compatible 2.3.4: supported 2.3.5-p1: compatible + 2.3.6: compatible 2.4.0: compatible + 2.4.1: compatible - name: 1.1.3 support: @@ -123,7 +168,9 @@ extensions: 2.3.3: supported 2.3.4: compatible 2.3.5-p1: compatible + 2.3.6: compatible 2.4.0: compatible + 2.4.1: compatible - name: 1.1.2 support: @@ -133,7 +180,9 @@ extensions: 2.3.3: compatible 2.3.4: compatible 2.3.5-p1: compatible + 2.3.6: compatible 2.4.0: compatible + 2.4.1: compatible - name: 1.1.1 support: @@ -143,7 +192,9 @@ extensions: 2.3.3: compatible 2.3.4: compatible 2.3.5-p1: compatible + 2.3.6: compatible 2.4.0: compatible + 2.4.1: compatible - name: 1.1.0 support: @@ -153,10 +204,24 @@ extensions: 2.3.3: compatible 2.3.4: compatible 2.3.5-p1: compatible + 2.3.6: compatible 2.4.0: compatible + 2.4.1: compatible - name: Page Builder versions: + - + name: 1.5.0 + support: + 2.3.0: not supported + 2.3.1: not supported + 2.3.2: not supported + 2.3.3: not supported + 2.3.4: not supported + 2.3.5-p1: not supported + 2.3.6: not supported + 2.4.0: not supported + 2.4.1: supported - name: 1.4.0 support: @@ -166,7 +231,21 @@ extensions: 2.3.3: not supported 2.3.4: not supported 2.3.5-p1: not supported + 2.3.6: not supported 2.4.0: supported + 2.4.1: not supported + - + name: 1.3.6 + support: + 2.3.0: not supported + 2.3.1: not supported + 2.3.2: not supported + 2.3.3: not supported + 2.3.4: not supported + 2.3.5-p1: not supported + 2.3.6: supported + 2.4.0: not supported + 2.4.1: not supported - name: 1.3.1 support: @@ -176,7 +255,9 @@ extensions: 2.3.3: not supported 2.3.4: not supported 2.3.5-p1: supported + 2.3.6: not supported 2.4.0: not supported + 2.4.1: not supported - name: 1.2.0 support: @@ -186,7 +267,9 @@ extensions: 2.3.3: not supported 2.3.4: supported 2.3.5-p1: not supported + 2.3.6: not supported 2.4.0: not supported + 2.4.1: not supported - name: 1.1.0 support: @@ -196,7 +279,9 @@ extensions: 2.3.3: supported 2.3.4: not supported 2.3.5-p1: not supported + 2.3.6: not supported 2.4.0: not supported + 2.4.1: not supported - name: 1.0.1 support: @@ -206,7 +291,9 @@ extensions: 2.3.3: not supported 2.3.4: not supported 2.3.5-p1: not supported + 2.3.6: not supported 2.4.0: not supported + 2.4.1: not supported - name: 1.0.0 support: @@ -216,7 +303,9 @@ extensions: 2.3.3: not supported 2.3.4: not supported 2.3.5-p1: not supported + 2.3.6: not supported 2.4.0: not supported + 2.4.1: not supported - name: Product Recommendations versions: @@ -229,7 +318,9 @@ extensions: 2.3.3: supported 2.3.4: supported 2.3.5-p1: supported + 2.3.6: supported 2.4.0: supported + 2.4.1: supported - name: 3.0.5 support: @@ -239,7 +330,9 @@ extensions: 2.3.3: compatible 2.3.4: compatible 2.3.5-p1: compatible + 2.3.6: compatible 2.4.0: compatible + 2.4.1: compatible - name: 3.0.4 support: @@ -249,7 +342,9 @@ extensions: 2.3.3: compatible 2.3.4: compatible 2.3.5-p1: compatible + 2.3.6: compatible 2.4.0: compatible + 2.4.1: compatible - name: 3.0.3 support: @@ -259,8 +354,9 @@ extensions: 2.3.3: compatible 2.3.4: compatible 2.3.5-p1: compatible + 2.3.6: compatible 2.4.0: not supported - + 2.4.1: compatible - name: 3.0.2 support: @@ -270,7 +366,9 @@ extensions: 2.3.3: compatible 2.3.4: compatible 2.3.5-p1: compatible + 2.3.6: compatible 2.4.0: not supported + 2.4.1: compatible - name: 3.0.1 support: @@ -280,7 +378,9 @@ extensions: 2.3.3: compatible 2.3.4: compatible 2.3.5-p1: compatible + 2.3.6: compatible 2.4.0: not supported + 2.4.1: compatible - name: 3.0.0 support: @@ -290,7 +390,9 @@ extensions: 2.3.3: compatible 2.3.4: compatible 2.3.5-p1: compatible + 2.3.6: compatible 2.4.0: not supported + 2.4.1: not supported - name: 2.0.0 support: @@ -300,7 +402,9 @@ extensions: 2.3.3: compatible 2.3.4: compatible 2.3.5-p1: compatible + 2.3.6: compatible 2.4.0: not supported + 2.4.1: not supported - name: 1.x.x support: @@ -310,4 +414,117 @@ extensions: 2.3.3: not supported 2.3.4: not supported 2.3.5-p1: not supported + 2.3.6: not supported 2.4.0: not supported + 2.4.1: not supported + - + name: B2B + versions: + - + name: 1.3.0 + support: + 2.3.0: compatible + 2.3.1: compatible + 2.3.2: compatible + 2.3.3: compatible + 2.3.4: compatible + 2.3.5-p1: compatible + 2.3.6: compatible + 2.4.0: compatible + 2.4.1: supported + - + name: 1.2.0 + support: + 2.3.0: compatible + 2.3.1: compatible + 2.3.2: compatible + 2.3.3: compatible + 2.3.4: compatible + 2.3.5-p1: compatible + 2.3.6: compatible + 2.4.0: supported + 2.4.1: compatible + - + name: 1.1.6 + support: + 2.3.0: compatible + 2.3.1: compatible + 2.3.2: compatible + 2.3.3: compatible + 2.3.4: compatible + 2.3.5-p1: compatible + 2.3.6: supported + 2.4.0: compatible + 2.4.1: compatible + - + name: 1.1.5 + support: + 2.3.0: compatible + 2.3.1: compatible + 2.3.2: compatible + 2.3.3: compatible + 2.3.4: compatible + 2.3.5-p1: supported + 2.3.6: compatible + 2.4.0: compatible + 2.4.1: compatible + - + name: 1.1.4 + support: + 2.3.0: compatible + 2.3.1: compatible + 2.3.2: compatible + 2.3.3: compatible + 2.3.4: supported + 2.3.5-p1: compatible + 2.3.6: compatible + 2.4.0: compatible + 2.4.1: compatible + - + name: 1.1.3 + support: + 2.3.0: compatible + 2.3.1: compatible + 2.3.2: compatible + 2.3.3: supported + 2.3.4: compatible + 2.3.5-p1: compatible + 2.3.6: compatible + 2.4.0: compatible + 2.4.1: compatible + - + name: 1.1.2 + support: + 2.3.0: compatible + 2.3.1: compatible + 2.3.2: supported + 2.3.3: compatible + 2.3.4: compatible + 2.3.5-p1: compatible + 2.3.6: compatible + 2.4.0: compatible + 2.4.1: compatible + - + name: 1.1.1 + support: + 2.3.0: compatible + 2.3.1: supported + 2.3.2: compatible + 2.3.3: compatible + 2.3.4: compatible + 2.3.5-p1: compatible + 2.3.6: compatible + 2.4.0: compatible + 2.4.1: compatible + - + name: 1.1.0 + support: + 2.3.0: supported + 2.3.1: compatible + 2.3.2: compatible + 2.3.3: compatible + 2.3.4: compatible + 2.3.5-p1: compatible + 2.3.6: compatible + 2.4.0: compatible + 2.4.1: compatible diff --git a/src/_data/toc/graphql.yml b/src/_data/toc/graphql.yml index 38e2c661ffd..61aabe1b2dd 100644 --- a/src/_data/toc/graphql.yml +++ b/src/_data/toc/graphql.yml @@ -12,6 +12,9 @@ pages: - label: Authorization tokens url: /graphql/authorization-tokens.html + - label: Protected mutations + url: /graphql/protected-mutations.html + - label: GraphQL caching url: /graphql/caching.html @@ -49,6 +52,10 @@ pages: - label: Using queries url: /graphql/queries/index.html + - label: availableStores query + url: /graphql/queries/available-stores.html + exclude_versions: ["2.3"] + - label: cart query url: /graphql/queries/cart.html @@ -106,10 +113,15 @@ pages: - label: giftCardAccount query url: /graphql/queries/giftcard-account.html + edition: ee-only - label: isEmailAvailable query url: /graphql/queries/is-email-available.html + - label: productReviewRatingsMetadata query + url: /graphql/queries/product-review-ratings-metadata.html + exclude_versions: ["2.3"] + - label: products query url: /graphql/queries/products.html @@ -131,6 +143,10 @@ pages: - label: Using mutations url: /graphql/mutations/index.html + - label: addProductsToCart mutation + url: /graphql/mutations/add-products-to-cart.html + exclude_versions: ["2.3"] + - label: addBundleProductsToCart mutation url: /graphql/mutations/add-bundle-products.html @@ -140,20 +156,31 @@ pages: - label: addDownloadableProductsToCart mutation url: /graphql/mutations/add-downloadable-products.html + - label: addProductsToWishlist mutation + url: /graphql/mutations/add-products-to-wishlist.html + exclude_versions: ["2.3"] + - label: addSimpleProductsToCart mutation url: /graphql/mutations/add-simple-products.html - label: addVirtualProductsToCart mutation url: /graphql/mutations/add-virtual-products.html + - label: applyCouponToCart mutation + url: /graphql/mutations/apply-coupon.html + - label: applyGiftCardToCart mutation url: /graphql/mutations/apply-giftcard.html + edition: ee-only - - label: applyCouponToCart mutation - url: /graphql/mutations/apply-coupon.html + - label: applyRewardPointsToCart mutation + url: /graphql/mutations/apply-reward-points.html + edition: ee-only + exclude_versions: ["2.3"] - label: applyStoreCreditToCart mutation url: /graphql/mutations/apply-store-credit.html + edition: ee-only - label: changeCustomerPassword mutation url: /graphql/mutations/change-customer-password.html @@ -164,18 +191,30 @@ pages: - label: createCustomer mutation url: /graphql/mutations/create-customer.html + - label: createCustomerV2 mutation + url: /graphql/mutations/create-customer-v2.html + exclude_versions: ["2.3"] + - label: createCustomerAddress mutation url: /graphql/mutations/create-customer-address.html - label: createEmptyCart mutation url: /graphql/mutations/create-empty-cart.html + - label: createKlarnaPaymentsSession mutation + url: /graphql/mutations/create-klarna-payments-session.html + exclude_versions: ["2.3"] + - label: createPayflowProToken mutation url: /graphql/mutations/create-payflow-pro-token.html - label: createPayPalExpressToken mutation url: /graphql/mutations/create-paypal-express-token.html + - label: createProductReview mutation + url: /graphql/mutations/create-product-review.html + exclude_versions: ["2.3"] + - label: deleteCustomerAddress mutation url: /graphql/mutations/delete-customer-address.html @@ -196,32 +235,56 @@ pages: - label: redeemGiftCardBalanceAsStoreCredit mutation url: /graphql/mutations/redeem-giftcard-balance.html + edition: ee-only - label: removeCouponFromCart mutation url: /graphql/mutations/remove-coupon.html - label: removeGiftCardFromCart mutation url: /graphql/mutations/remove-giftcard.html + edition: ee-only - label: removeItemFromCart mutation url: /graphql/mutations/remove-item.html + - label: removeProductsFromWishlist mutation + url: /graphql/mutations/remove-products-from-wishlist.html + exclude_versions: ["2.3"] + + - label: removeRewardPointsFromCart mutation + url: /graphql/mutations/remove-reward-points.html + edition: ee-only + exclude_versions: ["2.3"] + - label: removeStoreCreditFromCart mutation url: /graphql/mutations/remove-store-credit.html + edition: ee-only - label: reorderItems mutation url: /graphql/mutations/reorder-items.html exclude_versions: ["2.3"] + - label: requestPasswordResetEmail mutation + url: /graphql/mutations/request-password-reset-email.html + exclude_versions: ["2.3"] + - label: revokeCustomerToken mutation url: /graphql/mutations/revoke-customer-token.html + - label: resetPassword mutation + url: /graphql/mutations/reset-password.html + exclude_versions: ["2.3"] + - label: sendEmailToFriend mutation url: /graphql/mutations/send-email-to-friend.html - label: setBillingAddressesOnCart mutation url: /graphql/mutations/set-billing-address.html + - label: setGiftOptionsOnCart mutation + url: /graphql/mutations/set-gift-options.html + exclude_versions: ["2.3"] + - label: setGuestEmailOnCart mutation url: /graphql/mutations/set-guest-email.html @@ -237,15 +300,31 @@ pages: - label: setShippingMethodsOnCart mutation url: /graphql/mutations/set-shipping-method.html + - label: subscribeEmailToNewsletter mutation + url: /graphql/mutations/subscribe-email-to-newsletter.html + exclude_versions: ["2.3"] + - label: updateCartItems mutation url: /graphql/mutations/update-cart-items.html - label: updateCustomer mutation url: /graphql/mutations/update-customer.html + - label: updateCustomerEmail mutation + url: /graphql/mutations/update-customer-email.html + exclude_versions: ["2.3"] + + - label: updateCustomerV2 mutation + url: /graphql/mutations/update-customer-v2.html + exclude_versions: ["2.3"] + - label: updateCustomerAddress mutation url: /graphql/mutations/update-customer-address.html + - label: updateProductsInWishlist mutation + url: /graphql/mutations/update-products-in-wishlist.html + exclude_versions: ["2.3"] + - label: Interfaces children: - label: Product interface implementations @@ -281,6 +360,22 @@ pages: - label: Virtual product data types url: /graphql/interfaces/virtual-product.html + - label: CreditMemoItemInterface attributes and implementations + url: /graphql/interfaces/credit-memo-item-interface.html + exclude_versions: ["2.3"] + + - label: InvoiceItemInterface attributes and implementations + url: /graphql/interfaces/invoice-item-interface.html + exclude_versions: ["2.3"] + + - label: OrderItemInterface attributes and implementations + url: /graphql/interfaces/order-item-interface.html + exclude_versions: ["2.3"] + + - label: ShipmentItemInterface attributes and implementations + url: /graphql/interfaces/shipment-item-interface.html + exclude_versions: ["2.3"] + - label: Payment methods children: @@ -294,6 +389,10 @@ pages: - label: Braintree Vault url: /graphql/payment-methods/braintree-vault.html + - label: Klarna + url: /graphql/payment-methods/klarna.html + exclude_versions: ["2.3"] + - label: PayPal Express Checkout url: /graphql/payment-methods/paypal-express-checkout.html @@ -306,6 +405,10 @@ pages: - label: PayPal Payflow Pro url: /graphql/payment-methods/payflow-pro.html + - label: PayPal Payflow Pro Vault + url: /graphql/payment-methods/payflow-pro-vault.html + exclude_versions: ["2.3"] + - label: PayPal Payments Advanced url: /graphql/payment-methods/payments-advanced.html diff --git a/src/_data/toc/release-notes.yml b/src/_data/toc/release-notes.yml index b54b1a76682..705bcd3f866 100644 --- a/src/_data/toc/release-notes.yml +++ b/src/_data/toc/release-notes.yml @@ -7,6 +7,12 @@ pages: include_versions: ["2.4"] children: + - label: Magento Open Source 2.4.1 Release Notes + url: /release-notes/open-source-2-4-1.html + + - label: Magento Commerce 2.4.1 Release Notes + url: /release-notes/commerce-2-4-1.html + - label: Magento Open Source 2.4.0 Release Notes url: /release-notes/release-notes-2-4-0-open-source.html @@ -24,6 +30,12 @@ pages: - label: Component Status url: /release-notes/component-status.html + - label: Magento Open Source 2.3.6 Release Notes + url: /release-notes/open-source-2-3-6.html + + - label: Magento Commerce 2.3.6 Release Notes + url: /release-notes/commerce-2-3-6.html + - label: Magento Open Source 2.3.5 Release Notes url: /release-notes/release-notes-2-3-5-open-source.html diff --git a/src/_data/toc/rest-api.yml b/src/_data/toc/rest-api.yml index f566b987093..17dde608e8e 100644 --- a/src/_data/toc/rest-api.yml +++ b/src/_data/toc/rest-api.yml @@ -65,6 +65,9 @@ pages: - label: Retrieve filtered search responses url: /rest/retrieve-filtered-responses.html + - label: Protected endpoints + url: /rest/protected-endpoints.html + - label: Restricting access to anonymous web APIs url: /rest/anonymous-api-security.html diff --git a/src/_data/whats-new.yml b/src/_data/whats-new.yml index 9934416c404..663e92ec85e 100644 --- a/src/_data/whats-new.yml +++ b/src/_data/whats-new.yml @@ -4,8 +4,164 @@ description: This page contains recent changes that we think you'd like to know We exclude from this list proofreading, spelling checks, and all minor updates. link: "/whats-new.html" thread: "/whatsnew-feed.xml" -updated: Thu Oct 8 18:38:18 2020 +updated: Wed Oct 14 19:58:40 2020 entries: +- description: Added release notes to describe the Magento 2.3.6 and Magento 2.4.1 + release notes. See [2.4 Release Information](https://devdocs.magento.com/guides/v2.4/release-notes/bk-release-notes.html) + and [2.3 Release Information](https://devdocs.magento.com/guides/v2.3/release-notes/bk-release-notes.html). + versions: 2.3.6, 2.4.1 + type: Major Update + date: October 15, 2020 + link: https://github.com/magento/devdocs/pull/8036 + contributor: jfrontain + profile: https://github.com/jfrontain +- description: Fixed invalid `env.php` code sample for [message queue configuration](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/message-queues/message-queues.html). + versions: 2.3.6 + type: Technical + date: October 15, 2020 + link: https://github.com/magento/devdocs/pull/7896 + contributor: jeff-matthews + profile: https://github.com/jeff-matthews +- description: Added a new overview page for [Klarna's payment method](https://devdocs.magento.com/guides/v2.4/graphql/payment-methods/klarna.html) + and a new reference page for Klarna's [`createKlarnaPaymentsSession`](https://devdocs.magento.com/guides/v2.4/graphql/mutations/create-klarna-payments-session.html) + GraphQL mutation. + versions: 2.4.1 + type: New Topic + date: October 15, 2020 + link: https://github.com/magento/devdocs/pull/7891 + contributor: jeff-matthews + profile: https://github.com/jeff-matthews +- description: Added release notes for [Inventory Management](https://devdocs.magento.com/guides/v2.3/inventory/release-notes.html). + versions: 2.4.1 + type: Major Update + date: October 15, 2020 + link: https://github.com/magento/devdocs/pull/7925 + contributor: sidolov + profile: https://github.com/sidolov +- description: Added a list of [REST endpoints](https://devdocs.magento.com/guides/v2.4/rest/protected-endpoints.html) + and a list of [GraphQL mutations](https://devdocs.magento.com/guides/v2.4/graphql/protected-mutations.html) + that require an `X-Captcha` header when CAPTCHA is enabled for various storefront + forms. + versions: 2.3.6, 2.4.1 + type: New Topic + date: October 15, 2020 + link: https://github.com/magento/devdocs/pull/7906 + contributor: keharper + profile: https://github.com/keharper +- description: Added the [`availableStores` query](https://devdocs.magento.com/guides/v2.4/graphql/queries/available-stores.html), + which returns system configuration information from multiple store views. The + query provides the context needed for a store switcher. + versions: 2.4.1 + type: New Topic + date: October 15, 2020 + link: https://github.com/magento/devdocs/pull/7853 + contributor: keharper + profile: https://github.com/keharper +- description: Added 2.4.1 beta [release notes](https://devdocs.magento.com/guides/v2.4/release-notes/bk-release-notes.html). + versions: 2.4.1 + type: Major Update + date: October 15, 2020 + link: https://github.com/magento/devdocs/pull/7846 + contributor: jfrontain + profile: https://github.com/jfrontain +- description: The [`addProductsToCart` mutation](https://devdocs.magento.com/guides/v2.4/graphql/mutations/add-products-to-cart.html) + allows you to add any type of product to the active cart. We recommend using this + mutation instead of single-purpose mutations such as `addSimpleProductsToCart`. + versions: 2.4.1 + type: New Topic + date: October 15, 2020 + link: https://github.com/magento/devdocs/pull/7774 + contributor: andrewbess + profile: https://github.com/andrewbess +- description: Added support for product reviews in GraphQL. Use the [createProductReview + mutation](https://devdocs.magento.com/guides/v2.4/graphql/mutations/create-product-review.html) + to add a review and the [productReviewRatingsMetadata query](https://devdocs.magento.com/guides/v2.4/graphql/queries/product-review-ratings-metadata.html) + to retrieve information about the reviews infrastructure. + versions: 2.4.1 + type: New Topic + date: October 15, 2020 + link: https://github.com/magento/devdocs/pull/7775 + contributor: keharper + profile: https://github.com/keharper +- description: Added the ability to [add items](https://devdocs.magento.com/guides/v2.4/graphql/mutations/add-products-to-wishlist.html) + to, [update items](https://devdocs.magento.com/guides/v2.4/graphql/mutations/update-products-in-wishlist.html) + in, and [remove items](https://devdocs.magento.com/guides/v2.4/graphql/mutations/remove-products-from-wishlist.html) + from a wish list in GraphQL. + versions: 2.4.1 + type: New Topic + date: October 15, 2020 + link: https://github.com/magento/devdocs/pull/7770 + contributor: keharper + profile: https://github.com/keharper +- description: Added the [`setGiftOptionsOnCart` mutation](https://devdocs.magento.com/guides/v2.4/graphql/mutations/set-gift-options.html) + to set gift messages, gift wrapping, gift receipts, and printed cards to an entire + order. The [`updateCartItems` mutation](https://devdocs.magento.com/guides/v2.4/graphql/mutations/update-cart-items.html) + has been updated to allow adding a gift message or gift wrapping to individual + products. + versions: 2.4.1 + type: New Topic + date: October 15, 2020 + link: https://github.com/magento/devdocs/pull/7745 + contributor: keharper + profile: https://github.com/keharper +- description: We have added the [`createCustomerV2`](https://devdocs.magento.com/guides/v2.4/graphql/mutations/create-customer-v2.html) + and [`updateCustomerV2`](https://devdocs.magento.com/guides/v2.4/graphql/mutations/update-customer-v2.html) + mutations to manage customer accounts. These new mutations require different input + objects than the `createCustomer` and `updateCustomer` mutations. To change a + customer's email address, use the new [`updateCustomerEmail`](https://devdocs.magento.com/guides/v2.4/graphql/mutations/update-customer-email.html) + mutation. + versions: 2.4.1 + type: New Topic + date: October 15, 2020 + link: https://github.com/magento/devdocs/pull/7673 + contributor: keharper + profile: https://github.com/keharper +- description: Added GraphQL support for rewards points. Use the [`applyRewardPointsToCart`](https://devdocs.magento.com/guides/v2.4/graphql/mutations/apply-reward-points.html) + and [`removeRewardPointsFromCart`](https://devdocs.magento.com/guides/v2.4/graphql/mutations/remove-reward-points.html) + mutation to manage reward points within a cart. The [cart](https://devdocs.magento.com/guides/v2.4/graphql/queries/cart.html), + [customer](https://devdocs.magento.com/guides/v2.4/graphql/queries/customer.html), + and [storeConfig](https://devdocs.magento.com/guides/v2.4/graphql/queries/store-config.html) + queries also return information related to reward points. + versions: 2.4.1 + type: New Topic + date: October 15, 2020 + link: https://github.com/magento/devdocs/pull/7662 + contributor: keharper + profile: https://github.com/keharper +- description: Added GraphQL Vault support with the [Payflow Pro Vault](https://devdocs.magento.com/guides/v2.4/graphql/payment-methods/payflow-pro-vault.html) + payment method. + versions: 2.4.1 + type: New Topic + date: October 15, 2020 + link: https://github.com/magento/devdocs/pull/7714 + contributor: keharper + profile: https://github.com/keharper +- description: Added a [deprecation notice](https://devdocs.magento.com/guides/v2.3/install-gde/system-requirements-tech.html#technologies-magento-can-use) + for Elasticsearch 6.x. + versions: 2.3.6 + type: Technical + date: October 15, 2020 + link: https://github.com/magento/devdocs/pull/7512 + contributor: jeff-matthews + profile: https://github.com/jeff-matthews +- description: Added the [`subscribeEmailToNewsletter` mutation](https://devdocs.magento.com/guides/v2.4/graphql/mutations/subscribe-email-to-newsletter.html) + to the _GraphQL Developer Guide_. + versions: 2.4.1 + type: New Topic + date: October 15, 2020 + link: https://github.com/magento/devdocs/pull/7422 + contributor: atwixfirster + profile: https://github.com/atwixfirster +- description: The GraphQL [`customer` query](https://devdocs.magento.com/guides/v2.4/graphql/queries/customer.html) + now returns detailed information about any order in the logged-in customer's order + history. The query can now replicate what is displayed in the My Orders page + in the storefront. + versions: 2.4.1 + type: Major Update + date: October 15, 2020 + link: https://github.com/magento/devdocs/pull/7436 + contributor: keharper + profile: https://github.com/keharper - description: Added a [deprecation notice](https://devdocs.magento.com/cloud/configure/import-url-rewrites.html) for `magento/url-rewrite-import-export` module, which is no longer supported on Magento 2.4.x or later. diff --git a/src/_includes/backward-incompatible-changes/commerce/2.4.0-2.4.1-develop.html b/src/_includes/backward-incompatible-changes/commerce/2.4.0-2.4.1-develop.html new file mode 100644 index 00000000000..6d424299dcb --- /dev/null +++ b/src/_includes/backward-incompatible-changes/commerce/2.4.0-2.4.1-develop.html @@ -0,0 +1,28 @@ + +

Class changes

+ + + + + + + + + +
What changedHow it changed
Magento\CustomerSegment\Model\ResourceModel\Segment::createSelect[public] Method return typing changed.
+ +

Class API membership changes

+ + + + + + + + + + + + + +
What changedHow it changed
Magento\TargetRule\Block\Product\AbstractProductClass was added.
Magento\AdvancedCheckout\Block\Adminhtml\Sku\AbstractSkuClass was added.
diff --git a/src/_includes/backward-incompatible-changes/open-source/2.4.0-2.4.1-develop.html b/src/_includes/backward-incompatible-changes/open-source/2.4.0-2.4.1-develop.html new file mode 100644 index 00000000000..960d70a9dfd --- /dev/null +++ b/src/_includes/backward-incompatible-changes/open-source/2.4.0-2.4.1-develop.html @@ -0,0 +1,160 @@ + +

Class changes

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
What changedHow it changed
Magento\Framework\Stdlib\Cookie\CookieMetadata::setSameSite[public] Method has been added.
Magento\Framework\Stdlib\Cookie\CookieMetadata::getSameSite[public] Method has been added.
Magento\Framework\Stdlib\Cookie\CookieMetadata::KEY_SAME_SITEConstant has been added.
Magento\User\Model\User::$_cacheTag[protected] Property has been added.
Magento\Catalog\Model\Category::getCacheTags[public] Method has been added.
Magento\Catalog\Model\Product::getCacheTags[public] Method has been added.
Magento\Authorization\Model\Role::$_cacheTag[protected] Property has been added.
+ +

Interface changes

+ + + + + + + + + + + + + +
What changedHow it changed
Magento\Eav\Api\AttributeOptionUpdateInterfaceInterface was added.
Magento\Catalog\Api\ProductAttributeOptionUpdateInterfaceInterface was added.
+ +

Database changes

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
What changedHow it changed
media_gallery_asset/MEDIA_GALLERY_ID_PATH_TITLE_CONTENT_TYPE_WIDTH_HEIGHTUnique key was removed
media_gallery_asset/MEDIA_GALLERY_ID_PATH_TITLE_CONTENT_TYPE_WIDTH_HEIGHTUnique key was removed
media_gallery_asset/MEDIA_GALLERY_ID_PATH_TITLE_CONTENT_TYPE_WIDTH_HEIGHTUnique key was removed
media_gallery_asset/constraintModule db schema whitelist reduced (media_gallery_asset/constraint).
login_as_customer_assistance_allowedTable was added
login_as_customer_assistance_allowedTable was added
login_as_customer_assistance_allowedTable was added
login_as_customer_assistance_allowedTable was added
login_as_customer_assistance_allowedTable was added
login_as_customer_assistance_allowedTable was added
login_as_customer_assistance_allowedTable was added
+ +

System changes

+ + + + + + + + + + + + + + + + + +
What changedHow it changed
system.xmlSystem configuration file was added
system.xmlSystem configuration file was added
checkout/cart/enable_clear_shopping_cartA field-node was added
+ +

Xsd changes

+ + + + + + + + + + + + + + + + + +
What changedHow it changed
maxIdleTimeAn optional attribute was added
sleepAn optional attribute was added
onlySpawnWhenMessageAvailableAn optional attribute was added
+ +

Class API membership changes

+ + + + + + + + + + + + + +
What changedHow it changed
Magento\Framework\View\Page\BuilderClass was added.
Magento\SalesRule\Model\ValidatorClass was added.
diff --git a/src/_includes/config/es-elasticsearch-magento.md b/src/_includes/config/es-elasticsearch-magento.md index d88122dd1fc..7aaf39ff5a6 100644 --- a/src/_includes/config/es-elasticsearch-magento.md +++ b/src/_includes/config/es-elasticsearch-magento.md @@ -1,10 +1,7 @@ This section discusses the minimum settings you must choose to test Elasticsearch with Magento 2. For additional details about configuring Elasticsearch, see the [{{site.data.var.ee}} User Guide](http://docs.magento.com/m2/ee/user_guide/catalog/search-elasticsearch.html). -{:.bs-callout-warning} -Magento 2.3.5 adds support for Elasticsearch 7.x.x and 6.8.x. -Versions 2.x and 5.x are [End of Life](https://www.elastic.co/support/eol) and are not supported. -Follow the instructions in [Change the Elasticsearch Client]({{page.baseurl}}/config-guide/elasticsearch/es-downgrade.html). +{% include config/es-version-23.md %} ## Configure Elasticsearch within Magento diff --git a/src/_includes/config/es-version-23.md b/src/_includes/config/es-version-23.md new file mode 100644 index 00000000000..bd780798348 --- /dev/null +++ b/src/_includes/config/es-version-23.md @@ -0,0 +1,6 @@ +{:.bs-callout-warning} +As of version 2.3.6, {{site.data.var.ee}} supports Elasticsearch 7.x, with a preference for 7.6.x. Support for Elasticsearch 6.x has been deprecated, but it can still be used. Both Elasticsearch 2.x and 5.x have reached [end-of-life][] and are no longer supported. + + + +[end-of-life]: https://www.elastic.co/support/eol diff --git a/src/_includes/graphql/cart-object-24.md b/src/_includes/graphql/cart-object-24.md new file mode 100644 index 00000000000..87911498ab1 --- /dev/null +++ b/src/_includes/graphql/cart-object-24.md @@ -0,0 +1,34 @@ +Attribute | Data Type | Description +--- | --- | --- +`applied_coupon` | [`AppliedCoupon`][AppliedCoupon] | Deprecated. Use `applied_coupons` instead +`applied_coupons` | [[`AppliedCoupon`]][AppliedCoupon] | An array of `AppliedCoupon` objects. Each object contains the `code` text attribute, which specifies the coupon code +`applied_gift_cards` | [[`AppliedGiftCard`]][AppliedGiftCard] | An array of `AppliedGiftCard` objects. An `AppliedGiftCard` object contains the `code` text attribute, which specifies the gift card code. `applied_gift_cards` is a Commerce-only attribute, defined in the GiftCardAccountGraphQl module +`applied_reward_points`| [`RewardPointsAmount`][RewardPointsAmount] | The amount of reward points applied to the cart +`applied_store_credit` | [`AppliedStoreCredit`][AppliedStoreCredit] | Contains store credit information applied to the cart. `applied_store_credit` is a Commerce-only attribute, defined in the CustomerBalanceGraphQl module +`available_gift_wrappings` | [GiftWrapping]! | The list of available gift wrapping options for the cart +`available_payment_methods` | [[AvailablePaymentMethod]][AvailablePaymentMethod] | Available payment methods +`billing_address` | [BillingCartAddress][BillingCartAddress] | Contains the billing address specified in the customer's cart +`email` | String | The customer's email address +`gift_message` | [GiftMessage][GiftMessage] | A gift message added to the cart +`gift_receipt_included` | Boolean! | Indicates if the customer requested a gift receipt for the cart +`gift_wrapping` | GiftWrapping | The selected gift wrapping for the cart +`id` | ID! | The ID of the cart +`is_virtual` | Boolean! | Indicates whether the cart contains only virtual products +`items` | [[CartItemInterface]][CartItemInterface] | Contains the items in the customer's cart +`prices` | [CartPrices][CartPrices] | Contains subtotals and totals +`printed_card_included` | Boolean! | Indicates if the customer requested a printed card for the cart +`selected_payment_method` | [SelectedPaymentMethod][SelectedPaymentMethod] | Selected payment method +`shipping_addresses` | [[ShippingCartAddress]][ShippingCartAddress]! | Contains one or more shipping addresses +`total_quantity` | Float! | Total Quantity of products in the cart + +[AppliedCoupon]: {{page.baseurl}}/graphql/queries/cart.html#AppliedCoupon +[AppliedGiftCard]: {{page.baseurl}}/graphql/queries/cart.html#AppliedGiftCard +[AppliedStoreCredit]: {{page.baseurl}}/graphql/queries/cart.html#AppliedStoreCredit +[AvailablePaymentMethod]: {{page.baseurl}}/graphql/queries/cart.html#AvailablePaymentMethod +[BillingCartAddress]: {{page.baseurl}}/graphql/queries/cart.html#BillingCartAddress +[CartItemInterface]: {{page.baseurl}}/graphql/queries/cart.html#CartItemInterface +[CartPrices]: {{page.baseurl}}/graphql/queries/cart.html#CartPrices +[GiftMessage]: {{page.baseurl}}/graphql/queries/cart.html#GiftMessage +[RewardPointsAmount]: {{page.baseurl}}/graphql/queries/cart.html#RewardPointsAmount +[SelectedPaymentMethod]: {{page.baseurl}}/graphql/queries/cart.html#SelectedPaymentMethod +[ShippingCartAddress]: {{page.baseurl}}/graphql/queries/cart.html#ShippingCartAddress diff --git a/src/_includes/graphql/credit-memo-item-interface.md b/src/_includes/graphql/credit-memo-item-interface.md new file mode 100644 index 00000000000..626321a71b7 --- /dev/null +++ b/src/_includes/graphql/credit-memo-item-interface.md @@ -0,0 +1,9 @@ +Attribute | Data type | Description +--- | --- | --- +`discounts` | [Discount] | Contains information about the final discount amount for the base product, including discounts on options +`id` | ID! | The unique ID of the credit memo item +`order_item` | [OrderItemInterface]({{page.baseurl}}/graphql/interfaces/order-item-interface.html) | The order item the credit memo is applied to +`product_name` | String | The name of the base product +`product_sale_price` | Money! | The sale price for the base product, including selected options +`product_sku` | String! | The SKU of the base product +`quantity_refunded` | Float | The number of refunded items diff --git a/src/_includes/graphql/customer-address-output.md b/src/_includes/graphql/customer-address-output.md index c819ee29ce7..f333ee5a1f5 100644 --- a/src/_includes/graphql/customer-address-output.md +++ b/src/_includes/graphql/customer-address-output.md @@ -1,4 +1,4 @@ -### CustomerAddress attributes {#customerAddressOutput} +### Address attributes (CustomerAddress) {#customerAddressOutput} The values assigned to attributes such as `firstname` and `lastname` in this object may be different from those defined in the `Customer` object. @@ -29,7 +29,7 @@ Attribute | Data Type | Description `telephone` | String | The telephone number `vat_id` | String | The customer's Tax/VAT number (for corporate customers) -### CustomerAddressAttribute attributes {#customerAddressAttributeOutput} +#### CustomerAddressAttribute attributes {#customerAddressAttributeOutput} The `CustomerAddressAttribute` output data type has been deprecated because the contents are not applicable for GraphQL. It can contain the following attributes: @@ -38,7 +38,7 @@ Attribute | Data Type | Description `attribute_code` | String | Attribute code `value` | String | Attribute value -### CustomerAddressRegion attributes {#customerAddressRegionOutput} +#### CustomerAddressRegion attributes {#customerAddressRegionOutput} The `customerAddressRegion` output returns the following attributes: diff --git a/src/_includes/graphql/customer-orders-output.md b/src/_includes/graphql/customer-orders-output.md new file mode 100644 index 00000000000..5d84468f304 --- /dev/null +++ b/src/_includes/graphql/customer-orders-output.md @@ -0,0 +1,391 @@ + +The `orders` attribute defines a filter that returns details about one or more of the logged-in customer's previous orders. It takes the following attributes as input: + +Attribute | Data type | Description +--- | --- | --- +`filter` | CustomerOrdersFilterInput | Defines the criteria to search for. If no filter is specified, the query returns and paginates all of the customer's orders +`currentPage` | Int | Specifies which page of results to return. The default value is 1 +`pageSize` | Int | Specifies the maximum number of results to return at once. The default value is 20 + +The `customers` query returns a [`CustomerOrders`](#customerOrders) object. + +#### CustomerOrdersFilterInput attributes + +Attribute | Data type | Description +--- | --- | --- +`number` | FilterStringTypeInput | Filter orders by order number + +#### FilterStringTypeInput attributes {#FilterStringTypeInput} + +The `FilterStringTypeInput` object defines a filter for an input string. + +Attribute | Data type | Description +--- | --- | --- +`eq` | String | Filters items that are exactly the same as the specified string. For example, to filter on a specific order number, specify a value like `5` +`in` | [String] | Filters items that are exactly the same as entries specified in an array of strings. For example, to filter on order number 4, 5, and 6, specify a value of `["4", "5", "6"]` +`match` | String | Defines a filter that performs a fuzzy search on the specified string. For example, if you specify a value of `20`, the query returns all order IDs that contain the string `20` + +### orders output attributes (CustomerOrders) {#customerOrders} + +The `CustomerOrders` object contains the results of the filter defined in the `orders` attribute. + +Attribute | Data type | Description +--- | --- | --- +`items` | [[CustomerOrder]!](#customerOrder) | An array of items in an order +`page_info` | [SearchResultPageInfo](#SearchResultPageInfo) | An object that includes the `current_page`, `page_info`, and `page_size` values specified in the query +`total_count` | Int | The total count of customer orders + +### CustomerOrder attributes {#customerOrder} + +The `CustomerOrder` object contains details about each order returned by the `orders` attribute. + +Attribute | Data type | Description +--- | --- | --- +`billing_address` | [OrderAddress](#OrderAddress) | The billing address for the order +`carrier` | String | The shipping carrier for the order delivery +`comments` | [[SalesCommentItem](#SalesCommentItem)] | Comments on the order +`created_at` | String | Deprecated. Use the `order_date` attribute instead +`credit_memos` | [[CreditMemo](#CreditMemo)] | Contains a list of credit memos for the order +`grand_total` | Float | Deprecated. Use the `totals.grand_total` attribute instead +`gift_message` | [GiftMessage](#GiftMessage) | The entered gift message for the order +`gift_receipt_included` | Boolean! | Indicates if the customer requested a gift receipt for the order +`gift_wrapping` | [GiftWrapping](#GiftWrapping) | The selected gift wrapping for the order +`id` | ID! | Unique identifier for the order +`increment_id` | String | Deprecated. Use the `id` attribute instead +`invoices` | [[Invoice](#Invoice)]! | Contains a list of invoices for the order +`items` | [[OrderItemInterface](#OrderItemInterface)] | An array containing the items purchased in this order +`number` | String! | The order number +`order_date` | String! | The date the order was placed +`order_number` | String! | Deprecated. Use the `number` attribute instead +`payment_methods` | [[PaymentMethod](#PaymentMethod)] | Payment details for the order +`printed_card_included` | Boolean! | Indicates if the customer requested a printed card for the order +`shipments` | [[OrderShipment](#OrderShipment)] | Shipment list for the order +`shipping_address` | [OrderAddress](#OrderAddress) | Shipping address for the order +`shipping_method` | String | Shipping method for the order +`status` | String! | The current status of the order +`total` | [OrderTotal](#OrderTotal) | Contains details about the calculated totals for this order + +The deprecated attributes were previously defined in the `CustomerOrder` object in the `customerOrders` query, but have been deprecated for the `customer` query. + +#### CreditMemo attributes {#CreditMemo} + +The `CreditMemo` object contains details about credit memos applied to an order. + +Attribute | Data type | Description +--- | --- | --- +`comments` | [[SalesCommentItem](#SalesCommentItem)] | Comments on the credit memo +`id` | ID! | The unique ID of the credit memo +`items` | [[CreditMemoItemInterface](#CreditMemoItemInterface)] | An array containing details about refunded items +`number` | String! | The sequential credit memo number +`total` | [CreditMemoTotal](#CreditMemoTotal) | Contains details about the total refunded amount + +#### CreditMemoItemInterface attributes {#CreditMemoItemInterface} + +`CreditMemoItemInterface` defines the following attributes. + +{% include graphql/credit-memo-item-interface.md %} + +[CreditMemoItemInterface attributes and implementations]({{page.baseurl}}/graphql/interfaces/credit-memo-item-interface.html) provides additional information about the implementations of this interface. + +#### CreditMemoTotal attributes {#CreditMemoTotal} + +The `CreditMemoTotal` object contains details about the totals of a credit memo. + +Attribute | Data type | Description +--- | --- | --- +`adjustment` | Money! | An adjustment manually applied to the order +`base_grand_total` | Money! | The final base grand total amount in the base currency +`discounts` | [Discount] | The applied discounts to the order +`grand_total` | Money! | The final total amount, including shipping, discounts, and taxes +`shipping_handling` | [ShippingHandling](#ShippingHandling) | Contains details about the shipping and handling costs for the credit memo +`subtotal` | Money! | The subtotal of the order, excluding shipping, discounts, and taxes +`taxes` | [[TaxItem](#TaxItem)]! | An array containing information about taxes on individual orders +`total_shipping` | Money! | The shipping amount for the credit memo +`total_tax` | Money! | The amount of tax applied to all orders + +#### Discount attributes {#Discount} + +The `Discount` object contains a description of a discount and the amount. + +Attribute | Data type | Description +--- | --- | --- +`amount` | Money! | The amount of the discount +`label` | String! | A description of the discount + +### GiftMessage attributes {#GiftMessage} + +{% include graphql/gift-message.md %} + +### GiftWrapping attributes {#GiftWrapping} + +{% include graphql/gift-wrapping.md %} + +#### Invoice attributes {#Invoice} + +The `Invoice` object provides details about a customer invoice. + +Attribute | Data type | Description +--- | --- | --- +`comments` | [[SalesCommentItem](#SalesCommentItem)] | Comments on the invoice +`id` | ID! | The internal ID of the invoice +`items` | [[InvoiceItemInterface](#InvoiceItemInterface)]! | Contains details about invoiced products +`number` | String! | The sequential number of the invoice +`total` | [InvoiceTotal](#InvoiceTotal)! | Invoice total amount details + +#### InvoiceItemInterface {#InvoiceItemInterface} + +`InvoiceItemInterface` defines the following attributes. + +{% include graphql/invoice-item-interface.md %} + +[InvoiceItemInterface attributes and implementations]({{page.baseurl}}/graphql/interfaces/invoice-item-interface.html) provides additional information about the implementations of this interface. + +`InvoiceItemInterface` is implemented by the `InvoiceItem` and `BundleInvoiceItem` data types. + +#### InvoiceTotal attributes {#InvoiceTotal} + +The InvoiceTotal object contains details about the totals of an invoice. + +Attribute | Data type | Description +--- | --- | --- +`base_grand_total` | Money! | The final base grand total amount in the base currency +`discounts` | [Discount] | The applied discounts to the invoice +`grand_total` | Money! | The final total amount, including shipping, discounts, and taxes +`shipping_handling` | [ShippingHandling](#ShippingHandling) | Contains details about the shipping and handling costs for the invoice +`subtotal` | Money! | The subtotal of the invoice, excluding shipping, discounts, and taxes +`taxes` | [[TaxItem](#TaxItem)] | An array containing information about taxes on individual invoices +`total_shipping` | Money! | The shipping amount for the invoice +`total_tax` | Money! | The amount of tax applied to all invoices + +#### ItemSelectedBundleOption attributes {#ItemSelectedBundleOption} + +The ItemSelectedBundleOption object contains a list of bundle options that are assigned to the bundle product. + +Attribute | Data type | Description +--- | --- | --- +`id` | ID! | The unique identifier of the option +`label` | String! | The label of the option +`values` | [[ItemSelectedBundleOptionValue!](#ItemSelectedBundleOptionValue)]! | A list of products that represent the values of the parent option + +#### ItemSelectedBundleOptionValue attributes {#ItemSelectedBundleOptionValue} + +Attribute | Data type | Description +--- | --- | --- +`id` | ID! | The unique identifier of the option +`price` | Money! | The price of the child bundle product +`product_name` | String! | The name of the child bundle product +`product_sku` | String! | The SKU of the child bundle product +`quantity` | Float! | Indicates how many of this bundle product were ordered + +#### KeyValue attributes {#KeyValue} + +The `KeyValue` object defines key/attribute pairs that are passed to or from the payment processor. + +Attribute | Data type | Description +--- | --- | --- +`name` | String | The name part of the name/value pair +`value` | String | The value part of the name/value pair + +#### OrderAddress attributes {#OrderAddress} + +The `OrderAddress` object can contain the following attributes: + +Attribute | Data Type | Description +--- | --- | --- +`city` | String! | The city or town +`company` | String | The customer's company +`country_code` | CountryCodeEnum | The customer's country +`fax` | String | The fax number +`firstname` | String! | The first name of the person associated with the shipping/billing address +`lastname` | String! | The family name of the person associated with the shipping/billing address +`middlename` | String | The middle name of the person associated with the shipping/billing address +`postcode` | String | The customer's ZIP or postal code +`prefix` | String | An honorific, such as Dr., Mr., or Mrs. +`region` | String | The state or province name +`region_id` | ID | The unique ID for a pre-defined region +`street` | [String!]! | An array of strings that define the street number and name +`suffix` | String | A value such as Sr., Jr., or III +`telephone` | String! | The telephone number +`vat_id` | String | The customer's Tax/VAT number (for corporate customers) + +#### OrderItemInterface {#OrderItemInterface} + +`OrderItemInterface` defines the following attributes. + +{% include graphql/order-item-interface.md %} + +[OrderItemInterface attributes and implementations]({{page.baseurl}}/graphql/interfaces/order-item-interface.html) provides additional information about the implementations of this interface. + +#### OrderItemOption attributes {#OrderItemOption} + +Attribute | Data type | Description +--- | --- | --- +`label` | String! | The name of the option +`value` | String! | The value of the option + +#### OrderShipment attributes {#OrderShipment} + +Attribute | Data type | Description +--- | --- | --- +`comments` | [[SalesCommentItem](#SalesCommentItem)] | Comments added to the shipment +`id` | ID! | The unique ID of the shipment +`items` | [[ShipmentItemInterface](#ShipmentItemInterface)] | Contains items included in the shipment +`number` | String! | The sequential credit shipment number +`tracking` | [[ShipmentTracking](#ShipmentTracking)] | Contains shipment tracking detail + +#### OrderTotal attributes {#OrderTotal} + +The `OrderTotal` object contains details about the sales total amounts used to calculate the final price. + +Attribute | Data type | Description +--- | --- | --- +`base_grand_total` | Money! | The final base grand total amount in the base currency +`discounts` | [Discount] | The applied discounts to the order +`grand_total` | Money! | The final total amount, including shipping, discounts, and taxes +`shipping_handling` | [ShippingHandling](#ShippingHandling) | The shipping and handling costs for the order +`subtotal` | Money! | The subtotal of the order, excluding shipping, discounts, and taxes +`taxes` | [[TaxItem](#TaxItem)]! | An array containing information about taxes on individual orders +`total_shipping` | Money! | The shipping costs for the order +`total_tax` | Money! | The amount of tax applied to the order + +#### PaymentMethod attributes {#PaymentMethod} + +The PaymentMethod data type contains details about the payment method used to pay for the order. + +Attribute | Data type | Description +--- | --- | --- +`additional_data` | [[KeyValue](#KeyValue)] | Additional data per payment method type +`name` | String! | The label that describes the payment method +`type` | String! | The payment method code that indicates how the order was paid for + +#### RewardPoints attributes {#RewardPoints} + +The `RewardPoints` object provides details about the customer's reward points balance, history, and related information. + +Attribute | Data type | Description +--- | --- | --- +`balance`| [RewardPointsAmount](#RewardPointsAmount) | The current balance of reward points +`balance_history` | [[RewardPointsBalanceHistoryItem]](#RewardPointsBalanceHistoryItem) | The balance history of reward points. If the ability for customers to view the balance history has been disabled in the Admin, this field will be set to null +`exchange_rates`| [RewardPointsExchangeRates](#RewardPointsExchangeRates) | The current exchange rates for reward points +`subscription_status` | [RewardPointsSubscriptionStatus](#RewardPointsSubscriptionStatus) | The subscription status of emails related to reward points + +#### RewardPointsAmount attributes {#RewardPointsAmount} + +The `RewardPointsAmount` object lists the customer's current reward points balance. + +Attribute | Data type | Description +--- | --- | --- +`money` | Money! | The amount of reward points, expressed in the currency of the store +`points` | Float! | The amount of reward points, expressed in points + +#### RewardPointsBalanceHistoryItem {#RewardPointsBalanceHistoryItem} + +The `RewardPointsBalanceHistoryItem` object contains details about individual events in which the customer earned or redeemed reward points. + +Attribute | Data type | Description +--- | --- | --- +`balance` | [RewardPointsAmount](#RewardPointsAmount) | Reward points balance after the completion of the transaction +`change_reason` | String! | The reason the balance changed +`date` | String! | Transaction date +`points_change` | Float! | The number of points added or deducted in the transaction + +#### RewardPointsExchangeRates attributes {#RewardPointsExchangeRates} + +The `RewardPointsExchangeRates` object contains information needed to exchange reward points into the store's currency. Exchange rates depend on the customer group. + +Attribute | Data type | Description +--- | --- | --- +`earning` | [RewardPointsRate](#RewardPointsRate) | The number of points earned for the amount spent +`redemption` | [RewardPointsRate](#RewardPointsRate) | The number points must be redeemed to get a currency discount at checkout + +#### RewardPointsRate attributes {#RewardPointsRate} + +The `RewardPointsRate` object contains details about reward points exchange rates. + +Attribute | Data type | Description +--- | --- | --- +`currency_amount` | Float! | The monetary value of the exchange rate. For earnings, this is amount spent to earn the specified points. For redemptions, this is the amount of money the number of points represents +`points` | Float! | The number of points for the exchange rate. For earnings, this is the number of points earned. For redemptions, this is the number of points needed for to redeem points + +#### RewardPointsSubscriptionStatus attributes {#RewardPointsSubscriptionStatus} + +The `RewardPointsSubscriptionStatus` object indicates whether the customer is subscribed to newsletters that provide reward points balances and expiration notifications. The possible values of these attribtutes are `NOT SUBSCRIBED` and `SUBSCRIBED`. + +Attribute | Data type | Description +--- | --- | --- +`balance_updates` | RewardPointsSubscriptionStatusesEnum! | Customer subscription status to 'Reward points balance updates' emails +`points_expiration_notifications` | RewardPointsSubscriptionStatusesEnum! | Customer subscription status to 'Reward points expiration notifications' emails + +#### SalesCommentItem attributes {#SalesCommentItem} + +The `SalesCommentItem` object contains details about a comment applied to an order. + +Attribute | Data type | Description +--- | --- | --- +`message` | String!| The text of the message +`timestamp` | String! | The timestamp of the comment + +#### SalesItemOption attributes {#SalesItemOption} + +The `SalesItemOption` data type contains the ID and value for the selected or entered options. + +Attribute | Data type | Description +--- | --- | --- +`id` | String! | The name of the option +`value` | String! | The value of the option + +#### SearchResultPageInfo attributes {#SearchResultPageInfo} + +The `SearchResultPageInfo` data type provides pagination for the items returned by the `orders` filter. + +Attribute | Data type | Description +--- | --- | --- +`current_page` | Int | Specifies which page of results to return +`page_size` | Int | Specifies the maximum number of items to return +`total_pages` | Int | Total pages + +#### ShipmentItemInterface attributes {#ShipmentItemInterface} + +`ShipmentItemInterface` defines the following attributes. + +{% include graphql/shipment-item-interface.md %} + +[ShipmentItemInterface attributes and implementations]({{page.baseurl}}/graphql/interfaces/order-item-interface.html) provides additional information about the implementations of this interface. + +#### ShipmentTracking attributes {#ShipmentTracking} + +The ShipmentTracking object contains the shipping carrier name and other tracking details. + +Attribute | Data type | Description +--- | --- | --- +`carrier` | String! | The shipping carrier for the order delivery +`number` | String | The tracking number of the order shipment +`title` | String! | The shipment tracking title + +#### ShippingDiscount attributes {#ShippingDiscount} + +The ShippingDiscount object defines an individual discount that can be applied to shipping. + +Attribute | Data type | Description +--- | --- | --- +`amount` | Money! | The amount of the discount + +#### ShippingHandling attributes {#ShippingHandling} + +The `ShippingHandling` object provides details about shipping and handling charges. + +Attribute | Data type | Description +--- | --- | --- +`amount_excluding_tax` | Money | The shipping amount, excluding tax +`amount_including_tax` | Money | The shipping amount, including tax +`discounts` | [ShippingDiscount] | The applied discounts to the shipping +`taxes` | [[TaxItem](#TaxItem)] | Contains details about taxes applied for shipping +`total_amount`| Money! | The total amount for shipping + +#### TaxItem attributes {#TaxItem} + +Attribute | Data type | Description +--- | --- | --- +`amount` | Money! | The amount of tax applied to an order +`rate` | Float | The tax rate applied to an order +`title` | String! | A label that describes the tax diff --git a/src/_includes/graphql/customer-output-24.md b/src/_includes/graphql/customer-output-24.md index d403b4ce21e..65377603b01 100644 --- a/src/_includes/graphql/customer-output-24.md +++ b/src/_includes/graphql/customer-output-24.md @@ -1,6 +1,16 @@ +{% if page.url contains 'graphql/queries/customer.html' %} +{% assign customeraddress_text = '[CustomerAddress](#customerAddressOutput)' %} +{% assign customeroutput_text = '[CustomerOrders](#customerOrders)' %} +{% assign crossref_text = '. See [`orders` input attributes](#orders) for details' %} +{% else %} +{% assign customeraddress_text = 'CustomerAddress' %} +{% assign customeroutput_text = '[CustomerOrders]' %} +{% assign crossref_text = '' %} +{% endif %} + Attribute | Data Type | Description --- | --- | --- -`addresses` | [CustomerAddress](#customerAddressOutput) | An array containing the customer's shipping and billing addresses +`addresses` | {{ customeraddress_text }} | An array containing the customer's shipping and billing addresses `created_at` | String | Timestamp indicating when the account was created `date_of_birth` | String | The customer's date of birth `default_billing` | String | The ID assigned to the billing address @@ -14,9 +24,10 @@ Attribute | Data Type | Description `is_subscribed` | Boolean | Indicates whether the customer is subscribed to the company's newsletter `lastname` | String | The customer's family name `middlename` |String | The customer's middle name +`orders()` | {{ customeroutput_text }} | A list of the customer's placed orders{{ crossref_text }} `prefix` | String | An honorific, such as Dr., Mr., or Mrs. +`reviews(pageSize: Int = 20 currentPage: Int = 1)` | ProductReviews! | The list of reviews of the product +`reward_points` | RewardPoints | Details about the customer's reward points `suffix` | String | A value such as Sr., Jr., or III `taxvat` | String | The customer's Tax/VAT number (for corporate customers) `wishlist` | Wishlist! | Contains the contents of the customer's wish lists - -{% include graphql/customer-address-output-24.md %} diff --git a/src/_includes/graphql/downloadable-items-links.md b/src/_includes/graphql/downloadable-items-links.md new file mode 100644 index 00000000000..0ee816ac7c0 --- /dev/null +++ b/src/_includes/graphql/downloadable-items-links.md @@ -0,0 +1,9 @@ +#### DownloadableItemsLinks attributes {#DownloadableItemsLinks} + +The `DownloadableItemsLinks` object defines characteristics of a downloadable product. + +Attribute | Data type | Description +--- | --- | --- +`sort_order` | Int | A number indicating the sort order +`title`| String | The display name of the link +`uid` | ID! | A string that encodes option details \ No newline at end of file diff --git a/src/_includes/graphql/entered-option-input.md b/src/_includes/graphql/entered-option-input.md new file mode 100644 index 00000000000..b3a84b11175 --- /dev/null +++ b/src/_includes/graphql/entered-option-input.md @@ -0,0 +1,6 @@ +The `EnteredOptionInput` object must contain the following attributes. + +Attribute | Data Type | Description +--- | --- | --- +`uid` | ID! | An encoded ID +`value` | String! | Text the customer entered diff --git a/src/_includes/graphql/gift-card-item.md b/src/_includes/graphql/gift-card-item.md new file mode 100644 index 00000000000..d5c18109fe8 --- /dev/null +++ b/src/_includes/graphql/gift-card-item.md @@ -0,0 +1,11 @@ +#### GiftCardItem attributes {#GiftCardItem} + +The `GiftCardItem` object contains selected buyer-entered gift card properties for an order item. + +Attribute | Data type | Description +--- | --- | --- +`message`| String | A message provided by the sender to the recipient +`recipient_email` | String | The email provided for the recipient of a virtual gift card +`recipient_name` | String | The name provided for the recipient of a physical or virtual gift card +`sender_email` | String | The sender email provided for a virtual gift card +`sender_name` | String | The sender name provided for a physical or virtual gift card diff --git a/src/_includes/graphql/gift-message.md b/src/_includes/graphql/gift-message.md new file mode 100644 index 00000000000..4bbc63b9aae --- /dev/null +++ b/src/_includes/graphql/gift-message.md @@ -0,0 +1,7 @@ +The `GiftMessage` object can contain the following attributes. + +Attribute | Data Type | Description +--- | --- | --- +`from` | String! | The name of the gift sender +`message` | String! | The text of the gift message +`to` | String! | The name of the gift recipient diff --git a/src/_includes/graphql/gift-wrapping.md b/src/_includes/graphql/gift-wrapping.md new file mode 100644 index 00000000000..878fd99db5b --- /dev/null +++ b/src/_includes/graphql/gift-wrapping.md @@ -0,0 +1,17 @@ +The `GiftWrapping` object can contain the following attributes. + +Attribute | Data Type | Description +--- | --- | --- +`design` | String! | The name of the gift wrapping design +`id` | ID! | The unique identifier for the gift wrapping option +`image` | [GiftWrappingImage](#GiftWrappingImage) | The preview image for the gift wrapping option +`price` | Money! | The price of the gift wrapping option + +### GiftWrappingImage object {#GiftWrappingImage} + +The `GiftWrappingImage` object must contain the following attributes. + +Attribute | Data Type | Description +--- | --- | --- +`label` | String! | The label of the gift wrapping preview image +`url` | String! | The URL of the gift wrapping preview image diff --git a/src/_includes/graphql/invoice-item-interface.md b/src/_includes/graphql/invoice-item-interface.md new file mode 100644 index 00000000000..48799c6a6b5 --- /dev/null +++ b/src/_includes/graphql/invoice-item-interface.md @@ -0,0 +1,9 @@ +Attribute | Data type | Description +--- | --- | --- +`discounts` | [Discount] | Contains information about the final discount amount for the base product, including discounts on options +`id` | ID! | The unique ID of the invoice item +`order_item` | OrderItemInterface | Contains details about an individual order item +`product_name` | String | The name of the base product +`product_sale_price` | Money! | The sale price for the base product including selected options +`product_sku` | String! | The SKU of the base product +`quantity_invoiced` | Float |The number of invoiced items \ No newline at end of file diff --git a/src/_includes/graphql/item-selected-bundle-option.md b/src/_includes/graphql/item-selected-bundle-option.md new file mode 100644 index 00000000000..dc8814a8711 --- /dev/null +++ b/src/_includes/graphql/item-selected-bundle-option.md @@ -0,0 +1,19 @@ +#### ItemSelectedBundleOption attributes {#ItemSelectedBundleOption} + +The ItemSelectedBundleOption object contains a list of bundle options that are assigned to the bundle product. + +Attribute | Data type | Description +--- | --- | --- +`id` | ID! | The unique identifier of the option +`label` | String! | The label of the option +`values` | [[ItemSelectedBundleOptionValue](#ItemSelectedBundleOptionValue)] | A list of products that represent the values of the parent option + +#### ItemSelectedBundleOptionValue attributes {#ItemSelectedBundleOptionValue} + +Attribute | Data type | Description +--- | --- | --- +`id` | ID! | The unique identifier of the option +`price` | Money! | The price of the child bundle product +`product_name` | String! | The name of the child bundle product +`product_sku` | String! | The SKU of the child bundle product +`quantity` | Float! | Indicates how many of this bundle product were ordered diff --git a/src/_includes/graphql/order-item-interface.md b/src/_includes/graphql/order-item-interface.md new file mode 100644 index 00000000000..2df31613a76 --- /dev/null +++ b/src/_includes/graphql/order-item-interface.md @@ -0,0 +1,18 @@ +Attribute | Data Type | Description +--- | --- | --- +`discounts` | [Discount] | Final discount information for the product +`entered_options` | [OrderItemOption] | The entered option for the base product, such as a logo or image +`id` | ID! | The unique identifier for the order item +`product_name` | String | The name of the base product +`product_sale_price` | Money! | The sale price of the base product, including selected options +`product_sku` | String! | SKU of the base product +`product_type` | String | The type of product, such as simple or configurable +`product_url_key` | String | URL key of the base product +`quantity_canceled` | Float | The number of canceled items +`quantity_invoiced` | Float | The number of invoiced items +`quantity_ordered` | Float | The number of units ordered for this item +`quantity_refunded` | Float | The number of refunded items +`quantity_returned` | Float | The number of returned items +`quantity_shipped` | Float | The number of shipped items +`selected_options` | [OrderItemOption] | The selected options for the base product, such as color or size +`status` | String | The status of the order item \ No newline at end of file diff --git a/src/_includes/graphql/product-review.md b/src/_includes/graphql/product-review.md new file mode 100644 index 00000000000..5123474cd05 --- /dev/null +++ b/src/_includes/graphql/product-review.md @@ -0,0 +1,20 @@ +The `ProductReview` object contains details about a product review. It contains the following attributes. + +Attribute | Data Type | Description +--- | --- | --- +`average_rating` | Float! | The average rating for product review +`created_at` | String! | Date indicating when the review was created +`nickname` | String! | The customer's nickname. Defaults to the customer name, if logged in +`product` | ProductInterface! | Contains details about the reviewed product +`ratings_breakdown` | [ProductReviewRating!]! | An array of ratings by rating category, such as quality, price, and value +`summary` | String! | The summary (title) of the review +`text` | String! | The review text + +### ProductReviewRating attributes {#ProductReviewRating} + +The `ProductReviewRating` object contains the following attributes. + +Attribute | Data Type | Description +--- | --- | --- +`name` | String! | The label assigned to an aspect of a product that is being rated, such as quality or price +`value` | String! | The rating value given by customer. By default, possible values range from 1 to 5 diff --git a/src/_includes/graphql/shipment-item-interface.md b/src/_includes/graphql/shipment-item-interface.md new file mode 100644 index 00000000000..3f4d4c6e7f0 --- /dev/null +++ b/src/_includes/graphql/shipment-item-interface.md @@ -0,0 +1,8 @@ +Attribute | Data type | Description +--- | --- | --- +`id` | ID! | The unique ID of the shipment item +`order_item`| [OrderItemInterface]({{page.baseurl}}/graphql/interfaces/order-item-interface.html) | The shipped order item +`product_name` | String | The name of the base product +`product_sale_price` | Money! | The sale price for the base product +`product_sku` | String! | The SKU of the base product +`quantity_shipped` | Float! | The number of shipped items diff --git a/src/_includes/graphql/store-config.md b/src/_includes/graphql/store-config.md new file mode 100644 index 00000000000..341ef19c896 --- /dev/null +++ b/src/_includes/graphql/store-config.md @@ -0,0 +1,108 @@ +The `StoreConfig` object can contain the following attributes. + +Attribute | Data Type | Description | Default or example value +--- | --- | --- | --- +`absolute_footer` | String | Contains scripts that must be included in the HTML before the closing `` tag | null +`allow_gift_wrapping_on_order` | String | Indicates whether gift wrapping can be added for the entire order. Possible values: 1 (Yes) and 0 (No) | 1 +`allow_gift_wrapping_on_order_items` | String | Indicates whether gift wrapping can be added for individual order items. Possible values: 1 (Yes) and 0 (No) | 1 +`allow_gift_receipt` | String | Indicates if the gift sender has the option to send a gift receipt. Possible values: 1 (Yes) and 0 (No) | 1 +`allow_guests_to_write_product_reviews` | String | Indicates whether guest users can write product reviews. Possible values: 1 (Yes) and 0 (No) | 1 +`allow_items` | String | Allows gift messages for order items. Possible values: 1 (Yes) and 0 (No).
Configuration path: sales/gift_options/allow_items | 0 +`allow_order` | String | Allows gift messages at the order level. Possible values: 1 (Yes) and 0 (No).
Configuration path: sales/gift_options/allow_order | 0 +`allow_printed_card` | String | Indicates if a printed card can accompany an order. Possible values: 1 (Yes) and 0 (No) | 1 +`autocomplete_on_storefront` | Boolean | Enable autocomplete on login and forgot password forms.
Configuration path: customer/password/autocomplete_on_storefront | true +`base_currency_code` | String | The code representing the currency in which Magento processes all payment transactions | `USD` +`base_link_url` | String | A fully-qualified URL that is used to create relative links to the `base_url` | `http://magentohost.example.com/` +`base_media_url` | String | The fully-qualified URL that specifies the location of user media files | `http://magentohost.example.com/pub/media/` +`base_static_url` | String | The fully-qualified URL that specifies the location of static view files | `http://magentohost.example.com/pub/static/` +`base_url` | String | The store's fully-qualified base URL | `http://magentohost.example.com/` +`cart_gift_wrapping` | String | Indicates if gift wrapping prices are displayed on the Shopping Cart page. Possible values: 1 (Yes) and 0 (No) | 1 +`cart_printed_card` | String | Indicates if printed card prices are displayed on the Shopping Cart page. Possible values: 1 (Yes) and 0 (No) | 1 +`catalog_default_sort_by` | String | The default sort order of the search results list | `position` +`category_fixed_product_tax_display_setting` | [FixedProductTaxDisplaySettings](#FixedProductTaxDisplaySettings) | Corresponds to the **Display Prices In Product Lists** field. It indicates how Fixed Product Tax information is displayed on category pages | FPT_DISABLED +`category_url_suffix` | String | The suffix applied to category pages, such as `.htm` or `.html` | `.html` +`cms_home_page` | String | Returns the name of the CMS page that identifies the home page for the store | `home` +`cms_no_cookies` | String | Identifies a specific CMS page that appears when cookies are not enabled for the browser | `enable-cookies` +`cms_no_route` | String | Identifies a specific CMS page that you want to appear when a 404 “Page Not Found” error occurs | `no-route` +`code` | String | A unique identifier for the store | `default` +`copyright` | String | The copyright statement that appears at the bottom of each page | Copyright © 2013-present Magento, Inc. All rights reserved. +`default_description` | String | The description that provides a summary of your site for search engine listings and should not be more than 160 characters in length | null +`default_display_currency_code` | String | The code representing the currency displayed on the store | `USD` +`default_keywords` | String | A series of keywords that describe your store, each separated by a comma | `Magento, Varien, E-commerce` +`default_title` | String | The title that appears at the title bar of each page when viewed in a browser | Magento Enterprise Edition +`demonotice` | Int | Controls the display of the demo store notice at the top of the page. Options: `0` (No) or `1` (Yes) | 0 +`front` | String | Indicates the landing page that is associated with the base URL | `cms` +`grid_per_page` | Int | The default number of products per page in Grid View | `9` +`grid_per_page_values` | String | A list of numbers that define how many products can be displayed in List View | `9,15,30` +`head_includes` | String | Contains scripts that must be included in the HTML before the closing `` tag | `` +`head_shortcut_icon` | String | Uploads the small graphic image that appears in the address bar and tab of the browser | null +`header_logo_src` | String | The path to the logo that appears in the header | null +`id` | Int | The ID number assigned to the store | `1` +`list_mode` | String | The format of the search results list | `grid-list` +`list_per_page` | Int | The default number of products per page in List View | `10` +`list_per_page_values` | String | A list of numbers that define how many products can be displayed in List View | `5,10,15,20,25` +`locale` | String | The store's locale | `en_US` +`logo_alt` | String | The Alt text that is associated with the logo | null +`logo_height` | Int | The height of your logo image in pixels | null +`logo_width` | Int | The width of your logo image in pixels | null +`magento_reward_general_is_enabled_on_front` | String | Indicates whether reward points functionality is enabled on the storefront | `1` (enabled) +`magento_reward_general_is_enabled` | String | Indicates whether reward points are enabled. | `1` (enabled) +`magento_reward_general_min_points_balance` | String | The minimum point balance customers must have before they can redeem them. A null value indicates no minimum | null +`magento_reward_general_publish_history` | String | When enabled, customers can see a detailed history of their reward points | `1` (enabled) +`magento_reward_points_invitation_customer_limit` | String | The maximum number of registration referrals that qualify for rewards. A null value indicates no limit | null +`magento_reward_points_invitation_customer` | String | The number of points for a referral when the invitee registers on the site | null +`magento_reward_points_invitation_order_limit` | String | The number of order conversions that can earn points for the customer who sends the invitation. A null value indicates no limit | null +`magento_reward_points_invitation_order` | String | The number of points for a referral when the invitee places their first order on the site | null +`magento_reward_points_newsletter` | String | The number of points earned by registered customers who subscribe to a newsletter | null +`magento_reward_points_order` | String | Indicates whether customers earn points for shopping according to the reward point exchange rate. In Luma, this also controls whether to show a message in the shopping cart about the rewards points earned for the purchase, as well as the customer’s current reward point balance | null +`magento_reward_points_register` | String | The number of points a customer gets for registering | null +`magento_reward_points_review_limit` | String | The maximum number of reviews that qualify for rewards. A null value indicates no limit | null +`magento_reward_points_review` | String | The number of points for writing a review | null +`magento_wishlist_general_is_enabled` | String | Indicates whether wish lists are enabled (1) or disabled (0) +`minimum_password_length` | String | The minimum number of characters required for a valid password.
Configuration path: customer/password/minimum_password_length | 6 +`no_route` | String | Contains the URL of the default page that you want to appear when if a 404 “Page not Found” error occurs | `cms/noroute/index` +`payment_payflowpro_cc_vault_active` | String | Payflow Pro vault status | `0` (inactive) or `1` (active) +`printed_card_price` | String | The default price of a printed card that accompanies an order | 10 +`product_fixed_product_tax_display_setting` | [FixedProductTaxDisplaySettings](#FixedProductTaxDisplaySettings) | Corresponds to the **Display Prices On Product View Page** field. It indicates how Fixed Product Taxes information is displayed on product pages | FPT_DISABLED +`product_reviews_enabled` | String | Indicates whether product reviews are enabled. Possible values: 1 (Yes) and 0 (No) | 1 +`product_url_suffix` | String | The suffix applied to product pages, such as `.htm` or `.html` | `.html` +`required_character_classes_number` | String | The number of different character classes required in a password (lowercase, uppercase, digits, special characters).
Configuration path: customer/password/required_character_classes_number | 2 +`root_category_id` | Int | The ID of the root category | 2 +`sales_fixed_product_tax_display_setting` | [FixedProductTaxDisplaySettings](#FixedProductTaxDisplaySettings) | Corresponds to the **Display Prices In Sales Modules** field. It indicates how Fixed Product Taxes information is displayed on cart, checkout, and order pages | FPT_DISABLED +`sales_gift_wrapping` | String | Indicates if gift wrapping prices are displayed on the Orders page. Possible values: 1 (Yes) and 0 (No) | 1 +`sales_printed_card` | String | Indicates if printed card prices are displayed on the Orders page. Possible values: 1 (Yes) and 0 (No) | 1 +`secure_base_link_url` | String | A secure fully-qualified URL that is used to create relative links to the `base_url` | `https://magentohost.example.com/` +`secure_base_media_url` | String | The secure fully-qualified URL that specifies the location of user media files | `https://magentohost.example.com/pub/media/` +`secure_base_static_url` | String | The secure fully-qualified URL that specifies the location of static view files | `https://magentohost.example.com/pub/static/` +`secure_base_url` | String | The store's fully-qualified secure base URL | `https://magentohost.example.com/` +`send_friend` | [SendFriendConfiguration](#SendFriendConfiguration) | Email to a Friend configuration | Not applicable +`show_cms_breadcrumbs` | Int | Determines if a breadcrumb trail appears on all CMS pages in the catalog. Options: `0` (No) or `1` (Yes) | 1 +`store_name` | String | The store's name | `My Store` +`timezone` | String | The store's time zone | `America/Chicago` +`title_prefix` | String | A prefix that appears before the title to create a two- or three-part title | null +`title_separator` | String | Identifies the character that separates the category name and subcategory in the browser title bar | `-` +`title_suffix` | String | A suffix that appears after the title to create a two-or three part title | null +`website_id` | Integer | The ID number assigned to the parent website | `1` +`weight_unit` | String | The weight unit for products | `lbs`, `kgs`, or similar +`welcome` | String | Text that appears in the header of the page and includes the name of customers who are logged in | Default welcome msg! + +### SendFriendConfiguration attributes {#SendFriendConfiguration} + +Attribute | Data Type | Description +--- | --- | --- +`enabled_for_customers` | Boolean! | Indicates whether the Email to a Friend feature is enabled for customers +`enabled_for_guests` | Boolean! | Indicates whether the Email to a Friend feature is enabled for guests + +### FixedProductTaxDisplaySettings attributes {#FixedProductTaxDisplaySettings} + +The **Stores** > Settings > **Configuration** > **Sales** > **Tax** > **Fixed Product Taxes** panel contains several fields that determine how to display fixed product tax (FPT) values and descriptions. + +The `FixedProductTaxDisplaySettings` data type is an enumeration that describes whether displayed prices include fixed product taxes and whether Magento separately displays detailed information about the FPTs. These attributes are defined in the `WeeeGraphQl` module. + +Value | Description +--- | --- +EXCLUDE_FPT_AND_INCLUDE_WITH_DETAILS | The displayed price does not include the FPT amount. You must display the values of `ProductPrice.fixed_product_taxes` and the price including the FPT separately. This value corresponds to **Excluding FPT, Including FPT description and final price** +EXCLUDE_FPT_WITHOUT_DETAILS | The displayed price does not include the FPT amount. The values from `ProductPrice.fixed_product_taxes` are not displayed. This value corresponds to **Excluding FPT** +FPT_DISABLED | The FPT feature is not enabled. You can omit `ProductPrice.fixed_product_taxes` from your query +INCLUDE_FPT_WITH_DETAILS | The displayed price includes the FPT amount while displaying the values of `ProductPrice.fixed_product_taxes` separately. This value corresponds to **Including FPT and FPT description** +INCLUDE_FPT_WITHOUT_DETAILS | The displayed price includes the FPT amount without displaying the `ProductPrice.fixed_product_taxes` values. This value corresponds to **Including FPT only** diff --git a/src/_includes/graphql/wishlist-user-input-errors.md b/src/_includes/graphql/wishlist-user-input-errors.md new file mode 100644 index 00000000000..2e08887a9e9 --- /dev/null +++ b/src/_includes/graphql/wishlist-user-input-errors.md @@ -0,0 +1,6 @@ +The `WishListUserInputError` object contains information about errors that are specific to wish lists. + +Attribute | Data Type | Description +--- | --- | --- +`code` | WishListUserInputErrorType! | A wish list-specific error code. Possible values include `PRODUCT_NOT_FOUND` and `UNDEFINED` +`message` | String! | A localized error message diff --git a/src/_includes/graphql/wishlist.md b/src/_includes/graphql/wishlist.md new file mode 100644 index 00000000000..5bc13a10beb --- /dev/null +++ b/src/_includes/graphql/wishlist.md @@ -0,0 +1,21 @@ +The `Wishlist` object contains all the items in the customer's wish list. + +Attribute | Data type | Description +--- | --- | --- +`id` | ID | The unique identifier of the wish list +`items` | [[WishlistItem](#WishlistItem)] | An array of items in the customer's wish list +`items_count` | Int | The number of items in the wish list +`sharing_code` | String | An encrypted code that Magento uses to link to the wish list +`updated_at` | String | The time of the last modification to the wish list + +#### WishlistItem attributes {#WishlistItem} + +The `WishlistItem` object can contain the following attributes. + +Attribute | Data type | Description +--- | --- | --- +`added_at` | String | The time when the customer added the item to the wish list +`description` | String | The customer's comment about this item +`id` | Int | The wish list item ID +`product` | [ProductInterface]({{ page.baseurl }}/graphql/interfaces/product-interface.html) | The ProductInterface contains attributes that are common to all types of products. Note that descriptions may not be available for custom and EAV attributes +`qty` | Float | The quantity of this wish list item \ No newline at end of file diff --git a/src/_includes/release-notes/engcomm-2-4-1-issues.md b/src/_includes/release-notes/engcomm-2-4-1-issues.md new file mode 100644 index 00000000000..9bbb7087c30 --- /dev/null +++ b/src/_includes/release-notes/engcomm-2-4-1-issues.md @@ -0,0 +1,274 @@ + +| Contributing community member | Pull Requests | Related GitHub Issues | +| ------- | ------- | ------- | +| Nazar Klovanych | [#28048](https://github.com/magento/magento2/pull/28048) | | +| Volodymyr Zaets | [#27948](https://github.com/magento/magento2/pull/27948) | | +| Volodymyr Zaets | [#27662](https://github.com/magento/magento2/pull/27662) | | +| Ajith | [#26704](https://github.com/magento/magento2/pull/26704) | | +| Tu Nguyen | [#27572](https://github.com/magento/magento2/pull/27572) | [27058](https://github.com/magento/magento2/issues/27058) | +| Dzung Nguyen | [#27455](https://github.com/magento/magento2/pull/27455) | [23440](https://github.com/magento/magento2/issues/23440) | +| Rohan Hapani | [#27359](https://github.com/magento/magento2/pull/27359) | [27358](https://github.com/magento/magento2/issues/27358) | +| Mateusz Krzeszowiak | [#27622](https://github.com/magento/magento2/pull/27622) | [28110](https://github.com/magento/magento2/issues/28110) | +| Mateusz Krzeszowiak | [#27270](https://github.com/magento/magento2/pull/27270) | [26026](https://github.com/magento/magento2/issues/26026) | +| Serhii Dzhepa | [#28168](https://github.com/magento/magento2/pull/28168) | | +| Oleg Aleksin | [#28150](https://github.com/magento/magento2/pull/28150) | [28149](https://github.com/magento/magento2/issues/28149) | +| Sathish Subramanian | [#28113](https://github.com/magento/magento2/pull/28113) | [28165](https://github.com/magento/magento2/issues/28165) | +| Nikola Lardev | [#27957](https://github.com/magento/magento2/pull/27957) | [28215](https://github.com/magento/magento2/issues/28215) | +| Marvin Hinz| [#26572](https://github.com/magento/magento2/pull/26572) | [26550](https://github.com/magento/magento2/issues/26550) | +| Sathish Subramanian | [#28174](https://github.com/magento/magento2/pull/28174) | [28201](https://github.com/magento/magento2/issues/28201) | +| Vadim Malesh | [#28108](https://github.com/magento/magento2/pull/28108) | [5477](https://github.com/magento/magento2/issues/5477) | +| Dmitry Tsymbal | [#28112](https://github.com/magento/magento2/pull/28112) | [28202](https://github.com/magento/magento2/issues/28202) | +| Tu Nguyen | [#27828](https://github.com/magento/magento2/pull/27828) | [27543](https://github.com/magento/magento2/issues/27543) | +| Tu Nguyen | [#27642](https://github.com/magento/magento2/pull/27642) | [27633](https://github.com/magento/magento2/issues/27633) | +| Alok Patel | [#27134](https://github.com/magento/magento2/pull/27134) | [28167](https://github.com/magento/magento2/issues/28167) | +| Tu Nguyen | [#28084](https://github.com/magento/magento2/pull/28084) | [28059](https://github.com/magento/magento2/issues/28059) | +| Tu Nguyen | [#28083](https://github.com/magento/magento2/pull/28083) | [27095](https://github.com/magento/magento2/issues/27095) | +| Ajith | [#28039](https://github.com/magento/magento2/pull/28039) | | +| Tu Nguyen | [#28032](https://github.com/magento/magento2/pull/28032) | [22702](https://github.com/magento/magento2/issues/22702), [26022](https://github.com/magento/magento2/issues/26022) | +| Oleh Usik | [#27670](https://github.com/magento/magento2/pull/27670) | | +| Ivan Chepurnyi | [#22829](https://github.com/magento/magento2/pull/22829) | | +| Oleh Usik | [#28466](https://github.com/magento/magento2/pull/28466) | | +| Oleh Usik | [#28450](https://github.com/magento/magento2/pull/28450) | | +| Oleh Usik | [#28449](https://github.com/magento/magento2/pull/28449) | | +| Kate Kyzyma | [#28418](https://github.com/magento/magento2/pull/28418) | | +| Kate Kyzyma | [#28408](https://github.com/magento/magento2/pull/28408) | | +| Kate Kyzyma | [#28391](https://github.com/magento/magento2/pull/28391) | | +| Kate Kyzyma | [#28361](https://github.com/magento/magento2/pull/28361) | [28393](https://github.com/magento/magento2/issues/28393) | +| Dmitry Tsymbal | [#28330](https://github.com/magento/magento2/pull/28330) | [28377](https://github.com/magento/magento2/issues/28377) | +| Alexander Taranovsky | [#28304](https://github.com/magento/magento2/pull/28304) | [28394](https://github.com/magento/magento2/issues/28394) | +| Nikolaj Malevanec | [#28287](https://github.com/magento/magento2/pull/28287) | [28392](https://github.com/magento/magento2/issues/28392) | +| Oleh Usik | [#28105](https://github.com/magento/magento2/pull/28105) | [253](https://github.com/magento/magento2/issues/253) | +| Alexander Taranovsky | [#28034](https://github.com/magento/magento2/pull/28034) | [28138](https://github.com/magento/magento2/issues/28138) | +| Oleh Usik | [#27956](https://github.com/magento/magento2/pull/27956) | [253](https://github.com/magento/magento2/issues/253) | +| Lukasz Bajsarowicz | [#27903](https://github.com/magento/magento2/pull/27903) | | +| Lukasz Bajsarowicz | [#27902](https://github.com/magento/magento2/pull/27902) | [28383](https://github.com/magento/magento2/issues/28383) | +| Mateusz Krzeszowiak | [#27871](https://github.com/magento/magento2/pull/27871) | [28339](https://github.com/magento/magento2/issues/28339) | +| Evgeny Levinsky | [#27839](https://github.com/magento/magento2/pull/27839) | [28305](https://github.com/magento/magento2/issues/28305) | +| Mateusz Krzeszowiak | [#27690](https://github.com/magento/magento2/pull/27690) | [28340](https://github.com/magento/magento2/issues/28340) | +| Mateusz Krzeszowiak | [#27619](https://github.com/magento/magento2/pull/27619) | [28381](https://github.com/magento/magento2/issues/28381) | +| Mateusz Krzeszowiak | [#27618](https://github.com/magento/magento2/pull/27618) | [28382](https://github.com/magento/magento2/issues/28382) | +| Alexander Taranovsky | [#27586](https://github.com/magento/magento2/pull/27586) | [27337](https://github.com/magento/magento2/issues/27337) | +| Andrii Beziazychnyi | [#27481](https://github.com/magento/magento2/pull/27481) | [19481](https://github.com/magento/magento2/issues/19481) | +| Alexander Taranovsky | [#27373](https://github.com/magento/magento2/pull/27373) | [28040](https://github.com/magento/magento2/issues/28040) | +| Paweł Tylek | [#27356](https://github.com/magento/magento2/pull/27356) | [28433](https://github.com/magento/magento2/issues/28433) | +| Paweł Tylek | [#27357](https://github.com/magento/magento2/pull/27357) | [28166](https://github.com/magento/magento2/issues/28166) | +| Ihor Sviziev | [#27260](https://github.com/magento/magento2/pull/27260) | [28342](https://github.com/magento/magento2/issues/28342) | +| Oleh Usik | [#28467](https://github.com/magento/magento2/pull/28467) | | +| Kate Kyzyma | [#28407](https://github.com/magento/magento2/pull/28407) | | +| WK | [#28547](https://github.com/magento/magento2/pull/28547) | [28685](https://github.com/magento/magento2/issues/28685) | +| Eduard Chitoraga | [#28222](https://github.com/magento/magento2/pull/28222) | [28261](https://github.com/magento/magento2/issues/28261) | +| Bartłomiej Szubert | [#28015](https://github.com/magento/magento2/pull/28015) | [28011](https://github.com/magento/magento2/issues/28011) | +| Kate Kyzyma | [#28631](https://github.com/magento/magento2/pull/28631) | | +| Kate Kyzyma | [#28629](https://github.com/magento/magento2/pull/28629) | | +| Oleh Usik | [#28498](https://github.com/magento/magento2/pull/28498) | | +| Oleh Usik | [#28496](https://github.com/magento/magento2/pull/28496) | | +| Kate Kyzyma | [#28469](https://github.com/magento/magento2/pull/28469) | | +| Vadim Malesh | [#28417](https://github.com/magento/magento2/pull/28417) | [28488](https://github.com/magento/magento2/issues/28488) | +| Lukasz Bajsarowicz | [#28606](https://github.com/magento/magento2/pull/28606) | | +| Lukasz Bajsarowicz | [#28601](https://github.com/magento/magento2/pull/28601) | | +| kishorekumarkesavan | [#28264](https://github.com/magento/magento2/pull/28264) | [28308](https://github.com/magento/magento2/issues/28308) | +| Vitaliy Prokopov| [#27854](https://github.com/magento/magento2/pull/27854) | [27489](https://github.com/magento/magento2/issues/27489) | +| Eduard Chitoraga | [#27451](https://github.com/magento/magento2/pull/27451) | [21101](https://github.com/magento/magento2/issues/21101) | +| Abel Truong | [#27339](https://github.com/magento/magento2/pull/27339) | [26449](https://github.com/magento/magento2/issues/26449) | +| Alexander Menk | [#27338](https://github.com/magento/magento2/pull/27338) | [26682](https://github.com/magento/magento2/issues/26682) | +| Dipesh Rangani | [#27106](https://github.com/magento/magento2/pull/27106) | [27099](https://github.com/magento/magento2/issues/27099) | +| Bartłomiej Szubert | [#28735](https://github.com/magento/magento2/pull/28735) | [26504](https://github.com/magento/magento2/issues/26504) | +| Kate Kyzyma | [#28725](https://github.com/magento/magento2/pull/28725) | | +| Vadim Malesh | [#28332](https://github.com/magento/magento2/pull/28332) | [21237](https://github.com/magento/magento2/issues/21237) | +| Oleh Usik | [#27549](https://github.com/magento/magento2/pull/27549) | [28755](https://github.com/magento/magento2/issues/28755) | +| Oleksandr Melnyk | [#28666](https://github.com/magento/magento2/pull/28666) | | +| Petkovski Marjan | [#28714](https://github.com/magento/magento2/pull/28714) | | +| [Dmitriy Gallyamov | [#28647](https://github.com/magento/magento2/pull/28647) | [28568](https://github.com/magento/magento2/issues/28568), [28572](https://github.com/magento/magento2/issues/28572) | +| Dmitry Tsymbal | [#28641](https://github.com/magento/magento2/pull/28641) | [28720](https://github.com/magento/magento2/issues/28720) | +| Dmitry Tsymbal | [#28632](https://github.com/magento/magento2/pull/28632) | [28721](https://github.com/magento/magento2/issues/28721) | +| Dmitry Tsymbal | [#28635](https://github.com/magento/magento2/pull/28635) | [28744](https://github.com/magento/magento2/issues/28744) | +| Kate Kyzyma | [#28457](https://github.com/magento/magento2/pull/28457) | | +| Eduard Chitoraga | [#28205](https://github.com/magento/magento2/pull/28205) | | +| Oleh Usik | [#28072](https://github.com/magento/magento2/pull/28072) | [253](https://github.com/magento/magento2/issues/253), [246](https://github.com/magento/magento2/issues/246), [28519](https://github.com/magento/magento2/issues/28519) | +| Vitaliy Prokopov | [#28044](https://github.com/magento/magento2/pull/28044) | [27969](https://github.com/magento/magento2/issues/27969) | +| Mateusz Krzeszowiak | [#27616](https://github.com/magento/magento2/pull/27616) | [28807](https://github.com/magento/magento2/issues/28807) | +| Toan Nguyen | [#27064](https://github.com/magento/magento2/pull/27064) | [27063](https://github.com/magento/magento2/issues/27063) | +| Nazar Klovanych | [#28798](https://github.com/magento/magento2/pull/28798) | [1474](https://github.com/magento/magento2/issues/1474) | +| Lukasz Bajsarowicz | [#28605](https://github.com/magento/magento2/pull/28605) | [28850](https://github.com/magento/magento2/issues/28850) | +| Pavel Bystritsky | [#28213](https://github.com/magento/magento2/pull/28213) | [26089](https://github.com/magento/magento2/issues/26089) | +| Sathish Subramanian | [#28004](https://github.com/magento/magento2/pull/28004) | [27985](https://github.com/magento/magento2/issues/27985) | +| Mateusz Krzeszowiak | [#27860](https://github.com/magento/magento2/pull/27860) | [28823](https://github.com/magento/magento2/issues/28823) | +| Nazar Klovanych | [#28739](https://github.com/magento/magento2/pull/28739) | | +| Nathan de Graaf | [#28515](https://github.com/magento/magento2/pull/28515) | [28795](https://github.com/magento/magento2/issues/28795) | +| Vadim Malesh | [#28460](https://github.com/magento/magento2/pull/28460) | [28420](https://github.com/magento/magento2/issues/28420) | +| Vadim Malesh | [#28421](https://github.com/magento/magento2/pull/28421) | [28357](https://github.com/magento/magento2/issues/28357) | +| Lukasz Bajsarowicz | [#28351](https://github.com/magento/magento2/pull/28351) | [28376](https://github.com/magento/magento2/issues/28376) | +| Lukasz Bajsarowicz | [#27965](https://github.com/magento/magento2/pull/27965) | [27962](https://github.com/magento/magento2/issues/27962) | +| Sathish Subramanian | [#27567](https://github.com/magento/magento2/pull/27567) | [27091](https://github.com/magento/magento2/issues/27091) | +| quangdo-aligent | [#27429](https://github.com/magento/magento2/pull/27429) | [28306](https://github.com/magento/magento2/issues/28306) | +| Kate Kyzyma | [#28727](https://github.com/magento/magento2/pull/28727) | | +| Kate Kyzyma | [#28684](https://github.com/magento/magento2/pull/28684) | | +| Kate Kyzyma | [#28679](https://github.com/magento/magento2/pull/28679) | | +| Kate Kyzyma | [#28401](https://github.com/magento/magento2/pull/28401) | | +| jiten-patel | [#27369](https://github.com/magento/magento2/pull/27369) | [27051](https://github.com/magento/magento2/issues/27051) | +| Vadim Malesh | [#28483](https://github.com/magento/magento2/pull/28483) | [22431](https://github.com/magento/magento2/issues/22431) | +| Mateusz Krzeszowiak | [#27617](https://github.com/magento/magento2/pull/27617) | [28811](https://github.com/magento/magento2/issues/28811) | +| Vadim Malesh | [#28822](https://github.com/magento/magento2/pull/28822) | [27098](https://github.com/magento/magento2/issues/27098) | +| Oleksandr Melnyk | [#28855](https://github.com/magento/magento2/pull/28855) | | +| [Dmitriy Gallyamov | [#28745](https://github.com/magento/magento2/pull/28745) | [28628](https://github.com/magento/magento2/issues/28628) | +| Petkovski Marjan | [#28743](https://github.com/magento/magento2/pull/28743) | | +| Michał Derlatka | [#28713](https://github.com/magento/magento2/pull/28713) | [28561](https://github.com/magento/magento2/issues/28561) | +| Ulzii | [#28710](https://github.com/magento/magento2/pull/28710) | [28584](https://github.com/magento/magento2/issues/28584) | +| Alexander Taranovsky | [#28506](https://github.com/magento/magento2/pull/28506) | | +| Alexander Taranovsky | [#28492](https://github.com/magento/magento2/pull/28492) | | +| Alexander Taranovsky | [#28487](https://github.com/magento/magento2/pull/28487) | [28481](https://github.com/magento/magento2/issues/28481) | +| Alexander Taranovsky | [#27349](https://github.com/magento/magento2/pull/27349) | [28262](https://github.com/magento/magento2/issues/28262), [28427](https://github.com/magento/magento2/issues/28427) | +| Oleh Usik | [#28991](https://github.com/magento/magento2/pull/28991) | | +| Dmitry Tsymbal | [#28972](https://github.com/magento/magento2/pull/28972) | [29032](https://github.com/magento/magento2/issues/29032) | +| Kate Kyzyma | [#28869](https://github.com/magento/magento2/pull/28869) | | +| Konstantin | [#28810](https://github.com/magento/magento2/pull/28810) | [28982](https://github.com/magento/magento2/issues/28982) | +| Oleh Usik | [#28696](https://github.com/magento/magento2/pull/28696) | [29012](https://github.com/magento/magento2/issues/29012) | +| Oleh Usik | [#28956](https://github.com/magento/magento2/pull/28956) | | +| Oleh Usik | [#28942](https://github.com/magento/magento2/pull/28942) | | +| Oleh Usik | [#28941](https://github.com/magento/magento2/pull/28941) | | +| Dmitry Tsymbal | [#28872](https://github.com/magento/magento2/pull/28872) | [29039](https://github.com/magento/magento2/issues/29039) | +| Oleh Usik | [#28854](https://github.com/magento/magento2/pull/28854) | | +| Pierre Grimaud | [#28832](https://github.com/magento/magento2/pull/28832) | [28829](https://github.com/magento/magento2/issues/28829) | +| Kate Kyzyma | [#28661](https://github.com/magento/magento2/pull/28661) | | +| Maciej Pawłowski | [#26534](https://github.com/magento/magento2/pull/26534) | [28968](https://github.com/magento/magento2/issues/28968) | +| Vadim Malesh | [#28898](https://github.com/magento/magento2/pull/28898) | [23638](https://github.com/magento/magento2/issues/23638) | +| Oleh Usik | [#28852](https://github.com/magento/magento2/pull/28852) | | +| Dmitry Tsymbal | [#28812](https://github.com/magento/magento2/pull/28812) | [28969](https://github.com/magento/magento2/issues/28969) | +| Oleh Usik | [#28650](https://github.com/magento/magento2/pull/28650) | [29009](https://github.com/magento/magento2/issues/29009) | +| Michał Derlatka | [#28904](https://github.com/magento/magento2/pull/28904) | [26107](https://github.com/magento/magento2/issues/26107) | +| Dmitriy Gallyamov | [#28794](https://github.com/magento/magento2/pull/28794) | [28569](https://github.com/magento/magento2/issues/28569) | +| Petkovski Marjan | [#28757](https://github.com/magento/magento2/pull/28757) | [28563](https://github.com/magento/magento2/issues/28563) | +| Oleksandr Melnyk | [#28747](https://github.com/magento/magento2/pull/28747) | | +| Eduard Chitoraga | [#27882](https://github.com/magento/magento2/pull/27882) | [250](https://github.com/magento/magento2/issues/250) | +| Paweł Tylek | [#29054](https://github.com/magento/magento2/pull/29054) | [29087](https://github.com/magento/magento2/issues/29087) | +| Oleh Usik | [#29002](https://github.com/magento/magento2/pull/29002) | | +| Oleh Usik | [#28959](https://github.com/magento/magento2/pull/28959) | | +| Oleh Usik | [#28955](https://github.com/magento/magento2/pull/28955) | | +| Gabriel da Gama | [#28932](https://github.com/magento/magento2/pull/28932) | [1501](https://github.com/magento/magento2/issues/1501) | +| Oleh Usik | [#28925](https://github.com/magento/magento2/pull/28925) | | +| Vadim Malesh | [#28903](https://github.com/magento/magento2/pull/28903) | [28064](https://github.com/magento/magento2/issues/28064) | +| Andrii Kalinich | [#28839](https://github.com/magento/magento2/pull/28839) | [26723](https://github.com/magento/magento2/issues/26723) | +| Vadim Malesh | [#28799](https://github.com/magento/magento2/pull/28799) | [21811](https://github.com/magento/magento2/issues/21811) | +| Vova Yatsyuk | [#28797](https://github.com/magento/magento2/pull/28797) | [28981](https://github.com/magento/magento2/issues/28981) | +| Vadim Malesh | [#28752](https://github.com/magento/magento2/pull/28752) | [24922](https://github.com/magento/magento2/issues/24922) | +| Ihor Sviziev | [#28749](https://github.com/magento/magento2/pull/28749) | [28900](https://github.com/magento/magento2/issues/28900) | +| Vadim Malesh | [#28549](https://github.com/magento/magento2/pull/28549) | [23290](https://github.com/magento/magento2/issues/23290) | +| Nazar Klovanych | [#28366](https://github.com/magento/magento2/pull/28366) | [824](https://github.com/magento/magento2/issues/824), [972](https://github.com/magento/magento2/issues/972) | +| Madhu Rajawat | [#27516](https://github.com/magento/magento2/pull/27516) | [26191](https://github.com/magento/magento2/issues/26191) | +| Aditya Yadav | [#26660](https://github.com/magento/magento2/pull/26660) | [28143](https://github.com/magento/magento2/issues/28143) | +| Nazar Klovanych | [#29144](https://github.com/magento/magento2/pull/29144) | | +| Nazar Klovanych | [#29071](https://github.com/magento/magento2/pull/29071) | | +| Oleh Usik | [#29053](https://github.com/magento/magento2/pull/29053) | | +| Michał Derlatka | [#28888](https://github.com/magento/magento2/pull/28888) | [28570](https://github.com/magento/magento2/issues/28570) | +| Slava Mankivski| [#29179](https://github.com/magento/magento2/pull/29179) | | +| Max Mezhensky | [#28210](https://github.com/magento/magento2/pull/28210) | | +| Pavlo Sydorenko | [#27850](https://github.com/magento/magento2/pull/27850) | | +| Nazar Klovanych | [#29149](https://github.com/magento/magento2/pull/29149) | | +| Oleh Usik| [#29143](https://github.com/magento/magento2/pull/29143) | | +| Vadim Malesh | [#29001](https://github.com/magento/magento2/pull/29001) | [13210](https://github.com/magento/magento2/issues/13210) | +| Paweł Tylek | [#28838](https://github.com/magento/magento2/pull/28838) | [25934](https://github.com/magento/magento2/issues/25934) | +| Petkovski Marjan | [#28890](https://github.com/magento/magento2/pull/28890) | [26121](https://github.com/magento/magento2/issues/26121) | +| Oleh Usik | [#29156](https://github.com/magento/magento2/pull/29156) | | +| Gabriel da Gama | [#29058](https://github.com/magento/magento2/pull/29058) | [1464](https://github.com/magento/magento2/issues/1464) | +| Oleh Usik | [#29004](https://github.com/magento/magento2/pull/29004) | | +| Rafael Corrêa Gomes | [#28891](https://github.com/magento/magento2/pull/28891) | [29056](https://github.com/magento/magento2/issues/29056) | +| Bartłomiej Szubert | [#28285](https://github.com/magento/magento2/pull/28285) | [26427](https://github.com/magento/magento2/issues/26427) | +| Oleh Usik | [#29162](https://github.com/magento/magento2/pull/29162) | | +| Sean van Zuidam | [#29077](https://github.com/magento/magento2/pull/29077) | [29076](https://github.com/magento/magento2/issues/29076) | +| Oleh Usik | [#28999](https://github.com/magento/magento2/pull/28999) | | +| Anton Evers | [#28922](https://github.com/magento/magento2/pull/28922) | [29218](https://github.com/magento/magento2/issues/29218) | +| Zach Nanninga | [#28856](https://github.com/magento/magento2/pull/28856) | [28656](https://github.com/magento/magento2/issues/28656) | +| Tu Nguyen | [#27340](https://github.com/magento/magento2/pull/27340) | [27162](https://github.com/magento/magento2/issues/27162) | +| Ihor Sviziev | [#27221](https://github.com/magento/magento2/pull/27221) | [28693](https://github.com/magento/magento2/issues/28693) | +| Andrii Kasian | [#27377](https://github.com/magento/magento2/pull/27377) | | +| jmonteros422 | [#29207](https://github.com/magento/magento2/pull/29207) | [1391](https://github.com/magento/magento2/issues/1391) | +| Sathish Subramanian | [#29137](https://github.com/magento/magento2/pull/29137) | [28270](https://github.com/magento/magento2/issues/28270) | +| Oleh Usik | [#29134](https://github.com/magento/magento2/pull/29134) | [29287](https://github.com/magento/magento2/issues/29287) | +| Oleh Usik | [#29133](https://github.com/magento/magento2/pull/29133) | [29289](https://github.com/magento/magento2/issues/29289) | +| Vadim Malesh | [#29066](https://github.com/magento/magento2/pull/29066) | [28943](https://github.com/magento/magento2/issues/28943) | +| Oleh Usik | [#29007](https://github.com/magento/magento2/pull/29007) | [29281](https://github.com/magento/magento2/issues/29281) | +| Oleh Usik | [#29000](https://github.com/magento/magento2/pull/29000) | [29295](https://github.com/magento/magento2/issues/29295) | +| lumnn | [#28963](https://github.com/magento/magento2/pull/28963) | [29160](https://github.com/magento/magento2/issues/29160) | +| lumnn | [#28906](https://github.com/magento/magento2/pull/28906) | [29161](https://github.com/magento/magento2/issues/29161) | +| Tu Nguyen | [#28895](https://github.com/magento/magento2/pull/28895) | [24004](https://github.com/magento/magento2/issues/24004) | +| Tu Nguyen | [#28639](https://github.com/magento/magento2/pull/28639) | [28345](https://github.com/magento/magento2/issues/28345), [29261](https://github.com/magento/magento2/issues/29261) | +| RowenaS | [#29170](https://github.com/magento/magento2/pull/29170) | | +| John Carlo Octabio | [#28594](https://github.com/magento/magento2/pull/28594) | | +| Pavlo Sydorenko | [#27917](https://github.com/magento/magento2/pull/27917) | [28705](https://github.com/magento/magento2/issues/28705) | +| Hazel Joie Caquicla | [#29290](https://github.com/magento/magento2/pull/29290) | | +| Lukasz Bajsarowicz | [#29271](https://github.com/magento/magento2/pull/29271) | [29283](https://github.com/magento/magento2/issues/29283) | +| Anton Evers | [#29244](https://github.com/magento/magento2/pull/29244) | [29329](https://github.com/magento/magento2/issues/29329) | +| [Andrii Kalinich | [#29139](https://github.com/magento/magento2/pull/29139) | [28793](https://github.com/magento/magento2/issues/28793) | +| Oleh Usik | [#29135](https://github.com/magento/magento2/pull/29135) | | +| Lukasz Bajsarowicz | [#28992](https://github.com/magento/magento2/pull/28992) | [29159](https://github.com/magento/magento2/issues/29159) | +| Vitaliy Ryaboy | [#28975](https://github.com/magento/magento2/pull/28975) | [29308](https://github.com/magento/magento2/issues/29308) | +| Anton Evers | [#28930](https://github.com/magento/magento2/pull/28930) | [29240](https://github.com/magento/magento2/issues/29240) | +| Tu Nguyen | [#28842](https://github.com/magento/magento2/pull/28842) | | +| [Oleh Usik | [#27537](https://github.com/magento/magento2/pull/27537) | [28800](https://github.com/magento/magento2/issues/28800) | +| Maciej Pawłowski | [#26032](https://github.com/magento/magento2/pull/26032) | [7213](https://github.com/magento/magento2/issues/7213) | +| Rani Priya | [#23972](https://github.com/magento/magento2/pull/23972) | [23971](https://github.com/magento/magento2/issues/23971) | +| Sathish Subramanian | [#29206](https://github.com/magento/magento2/pull/29206) | [28947](https://github.com/magento/magento2/issues/28947) | +| Oleh Usik | [#29142](https://github.com/magento/magento2/pull/29142) | [29292](https://github.com/magento/magento2/issues/29292) | +| Nazar Klovanych | [#29402](https://github.com/magento/magento2/pull/29402) | | +| Matt Walters | [#29238](https://github.com/magento/magento2/pull/29238) | [543](https://github.com/magento/magento2/issues/543) | +| Nazar Klovanych | [#29422](https://github.com/magento/magento2/pull/29422) | | +| Hazel Joie Caquicla | [#29412](https://github.com/magento/magento2/pull/29412) | | +| Nazar Klovanych | [#29405](https://github.com/magento/magento2/pull/29405) | | +| Hazel Joie Caquicla | [#29404](https://github.com/magento/magento2/pull/29404) | | +| Hazel Joie Caquicla | [#29401](https://github.com/magento/magento2/pull/29401) | | +| jmonteros422 | [#29399](https://github.com/magento/magento2/pull/29399) | | +| Sergii Ivashchenko | [#29396](https://github.com/magento/magento2/pull/29396) | | +| jmonteros422 | [#29393](https://github.com/magento/magento2/pull/29393) | | +| Nazar Klovanych | [#29392](https://github.com/magento/magento2/pull/29392) | [1700](https://github.com/magento/magento2/issues/1700), [1693](https://github.com/magento/magento2/issues/1693) | +| Oleh Usik | [#29386](https://github.com/magento/magento2/pull/29386) | [29420](https://github.com/magento/magento2/issues/29420) | +| Oleh Usik | [#29385](https://github.com/magento/magento2/pull/29385) | [29434](https://github.com/magento/magento2/issues/29434) | +| Lukasz Bajsarowicz | [#29341](https://github.com/magento/magento2/pull/29341) | [29389](https://github.com/magento/magento2/issues/29389) | +| Vadim Malesh | [#29331](https://github.com/magento/magento2/pull/29331) | [28901](https://github.com/magento/magento2/issues/28901) | +| Yevhenii Dumskyi | [#29300](https://github.com/magento/magento2/pull/29300) | [29299](https://github.com/magento/magento2/issues/29299) | +| Nazar Klovanych | [#29285](https://github.com/magento/magento2/pull/29285) | | +| Eden Duong | [#29222](https://github.com/magento/magento2/pull/29222) | [29280](https://github.com/magento/magento2/issues/29280) | +| Eden Duong | [#29199](https://github.com/magento/magento2/pull/29199) | [29198](https://github.com/magento/magento2/issues/29198) | +| Pieter Hoste | [#29035](https://github.com/magento/magento2/pull/29035) | [29034](https://github.com/magento/magento2/issues/29034) | +| Andrii Kalinich | [#29023](https://github.com/magento/magento2/pull/29023) | [22762](https://github.com/magento/magento2/issues/22762) | +| Oleh Usik | [#28993](https://github.com/magento/magento2/pull/28993) | [29388](https://github.com/magento/magento2/issues/29388) | +| Oleh Usik | [#28989](https://github.com/magento/magento2/pull/28989) | [29380](https://github.com/magento/magento2/issues/29380) | +| Konstantin | [#28902](https://github.com/magento/magento2/pull/28902) | [29327](https://github.com/magento/magento2/issues/29327) | +| Chris Snedaker | [#28608](https://github.com/magento/magento2/pull/28608) | [29381](https://github.com/magento/magento2/issues/29381) | +| Chandru Rajendran | [#28250](https://github.com/magento/magento2/pull/28250) | [29344](https://github.com/magento/magento2/issues/29344) | +| Ihor Sviziev | [#28137](https://github.com/magento/magento2/pull/28137) | [24353](https://github.com/magento/magento2/issues/24353) | +| Ajith | [#27977](https://github.com/magento/magento2/pull/27977) | [29097](https://github.com/magento/magento2/issues/29097) | +| Oleksandr Kravchuk | [#27905](https://github.com/magento/magento2/pull/27905) | [28303](https://github.com/magento/magento2/issues/28303) | +| Ledian Hymetllari | [#27582](https://github.com/magento/magento2/pull/27582) | [27570](https://github.com/magento/magento2/issues/27570) | +| Ihor Sviziev | [#27364](https://github.com/magento/magento2/pull/27364) | [17195](https://github.com/magento/magento2/issues/17195), [27355](https://github.com/magento/magento2/issues/27355) | +| Michał Derlatka | [#29256](https://github.com/magento/magento2/pull/29256) | [26110](https://github.com/magento/magento2/issues/26110) | +| [Yaroslav Rogoza | [#27914](https://github.com/magento/magento2/pull/27914) | [28524](https://github.com/magento/magento2/issues/28524) | +| Hazel Joie Caquicla | [#29441](https://github.com/magento/magento2/pull/29441) | | +| Nazar Klovanych | [#29438](https://github.com/magento/magento2/pull/29438) | | +| jmonteros422 | [#29424](https://github.com/magento/magento2/pull/29424) | | +| Nazar Klovanych | [#29367](https://github.com/magento/magento2/pull/29367) | [1747](https://github.com/magento/magento2/issues/1747), [1704](https://github.com/magento/magento2/issues/1704), [1702](https://github.com/magento/magento2/issues/1702), [1699](https://github.com/magento/magento2/issues/1699), [1694](https://github.com/magento/magento2/issues/1694) | +| Benjamin Rosenberger | [#29451](https://github.com/magento/magento2/pull/29451) | [29470](https://github.com/magento/magento2/issues/29470) | +| Kristof, Fooman | [#29305](https://github.com/magento/magento2/pull/29305) | [29345](https://github.com/magento/magento2/issues/29345) | +| Lukasz Bajsarowicz | [#29272](https://github.com/magento/magento2/pull/29272) | [29346](https://github.com/magento/magento2/issues/29346) | +| Tu Nguyen | [#28480](https://github.com/magento/magento2/pull/28480) | [26498](https://github.com/magento/magento2/issues/26498) | +| Vadim Malesh | [#28238](https://github.com/magento/magento2/pull/28238) | [18823](https://github.com/magento/magento2/issues/18823) | +| Matthew O'Loughlin | [#26256](https://github.com/magento/magento2/pull/26256) | [8815](https://github.com/magento/magento2/issues/8815), [26255](https://github.com/magento/magento2/issues/26255) | +| jmonteros422 | [#29493](https://github.com/magento/magento2/pull/29493) | [1742](https://github.com/magento/magento2/issues/1742) | +| Sergii Ivashchenko | [#29449](https://github.com/magento/magento2/pull/29449) | | +| Oleh Usik | [#29427](https://github.com/magento/magento2/pull/29427) | | +| Tu Nguyen | [#28642](https://github.com/magento/magento2/pull/28642) | [29468](https://github.com/magento/magento2/issues/29468) | +| Lukasz Bajsarowicz | [#28599](https://github.com/magento/magento2/pull/28599) | | +| Vitaliy Prokopov | [#27758](https://github.com/magento/magento2/pull/27758) | [26702](https://github.com/magento/magento2/issues/26702) | +| [Pavel Bystritsky | [#26175](https://github.com/magento/magento2/pull/26175) | [28319](https://github.com/magento/magento2/issues/28319), [29313](https://github.com/magento/magento2/issues/29313) | +| Nazar Klovanych | [#29492](https://github.com/magento/magento2/pull/29492) | [1750](https://github.com/magento/magento2/issues/1750) | +| Nazar Klovanych | [#29490](https://github.com/magento/magento2/pull/29490) | [1749](https://github.com/magento/magento2/issues/1749) | +| Oleh Usik | [#29485](https://github.com/magento/magento2/pull/29485) | | +| Sergii Ivashchenko | [#29484](https://github.com/magento/magento2/pull/29484) | | +| Nazar Klovanych | [#29475](https://github.com/magento/magento2/pull/29475) | | +| Oleh Usik | [#29472](https://github.com/magento/magento2/pull/29472) | [29539](https://github.com/magento/magento2/issues/29539) | +| Vadim Malesh | [#29455](https://github.com/magento/magento2/pull/29455) | [25211](https://github.com/magento/magento2/issues/25211) | +| yolouiese | [#29398](https://github.com/magento/magento2/pull/29398) | [1684](https://github.com/magento/magento2/issues/1684) | +| Lukasz Bajsarowicz | [#29376](https://github.com/magento/magento2/pull/29376) | [29453](https://github.com/magento/magento2/issues/29453) | +| iGerchak | [#29291](https://github.com/magento/magento2/pull/29291) | [29286](https://github.com/magento/magento2/issues/29286) | +| Nikita Sarychev | [#29214](https://github.com/magento/magento2/pull/29214) | [29213](https://github.com/magento/magento2/issues/29213) | +| Lukasz Bajsarowicz | [#29202](https://github.com/magento/magento2/pull/29202) | [29477](https://github.com/magento/magento2/issues/29477) | +| Vitaliy Ryaboy | [#28923](https://github.com/magento/magento2/pull/28923) | [29527](https://github.com/magento/magento2/issues/29527) | \ No newline at end of file diff --git a/src/_includes/release-notes/engcomm-2-4-1-partner.md b/src/_includes/release-notes/engcomm-2-4-1-partner.md new file mode 100644 index 00000000000..91a9ebd17b2 --- /dev/null +++ b/src/_includes/release-notes/engcomm-2-4-1-partner.md @@ -0,0 +1,18 @@ +| Partner | Pull Requests | Related GitHub Issues | +| ------- | ------- | ------- | +| Atwix | [magento/magento2#27670](https://github.com/magento/magento2/pull/27670), [magento/magento2#28112](https://github.com/magento/magento2/pull/28112), magento/partners-magento2ee#258, [magento/magento2#28466](https://github.com/magento/magento2/pull/28466), [magento/magento2#28450](https://github.com/magento/magento2/pull/28450), [magento/magento2#28449](https://github.com/magento/magento2/pull/28449), [magento/magento2#28408](https://github.com/magento/magento2/pull/28408), [magento/magento2#28391](https://github.com/magento/magento2/pull/28391), [magento/magento2#28361](https://github.com/magento/magento2/pull/28361), [magento/magento2#28330](https://github.com/magento/magento2/pull/28330), [magento/magento2#28304](https://github.com/magento/magento2/pull/28304), [magento/magento2#27481](https://github.com/magento/magento2/pull/27481), [magento/magento2#27373](https://github.com/magento/magento2/pull/27373), [magento/magento2#28467](https://github.com/magento/magento2/pull/28467), [magento/magento2#28407](https://github.com/magento/magento2/pull/28407), [magento/magento2#28418](https://github.com/magento/magento2/pull/28418), [magento/magento2#28034](https://github.com/magento/magento2/pull/28034), [magento/magento2#28222](https://github.com/magento/magento2/pull/28222), [magento/magento2#27956](https://github.com/magento/magento2/pull/27956), [magento/magento2#28105](https://github.com/magento/magento2/pull/28105), [magento/magento2#27586](https://github.com/magento/magento2/pull/27586), [magento/magento2#28631](https://github.com/magento/magento2/pull/28631), [magento/magento2#28629](https://github.com/magento/magento2/pull/28629), [magento/magento2#28498](https://github.com/magento/magento2/pull/28498), [magento/magento2#28496](https://github.com/magento/magento2/pull/28496), [magento/magento2#28469](https://github.com/magento/magento2/pull/28469), [magento/magento2#27451](https://github.com/magento/magento2/pull/27451), [magento/magento2#28725](https://github.com/magento/magento2/pull/28725), [magento/magento2#27549](https://github.com/magento/magento2/pull/27549), [magento/magento2#28641](https://github.com/magento/magento2/pull/28641), [magento/magento2#28635](https://github.com/magento/magento2/pull/28635), [magento/magento2#28632](https://github.com/magento/magento2/pull/28632), [magento/magento2#28457](https://github.com/magento/magento2/pull/28457), magento/partners-magento2ee#247, [magento/magento2#28205](https://github.com/magento/magento2/pull/28205), [magento/magento2#28072](https://github.com/magento/magento2/pull/28072), [magento/magento2#28727](https://github.com/magento/magento2/pull/28727), [magento/magento2#28684](https://github.com/magento/magento2/pull/28684), [magento/magento2#28679](https://github.com/magento/magento2/pull/28679), [magento/magento2#28401](https://github.com/magento/magento2/pull/28401), [magento/magento2#28506](https://github.com/magento/magento2/pull/28506), [magento/magento2#28492](https://github.com/magento/magento2/pull/28492), [magento/magento2#28487](https://github.com/magento/magento2/pull/28487), [magento/magento2#27349](https://github.com/magento/magento2/pull/27349), [magento/magento2#28991](https://github.com/magento/magento2/pull/28991), [magento/magento2#28972](https://github.com/magento/magento2/pull/28972), [magento/magento2#28869](https://github.com/magento/magento2/pull/28869), [magento/magento2#28696](https://github.com/magento/magento2/pull/28696), [magento/magento2#28956](https://github.com/magento/magento2/pull/28956), [magento/magento2#28942](https://github.com/magento/magento2/pull/28942), [magento/magento2#28941](https://github.com/magento/magento2/pull/28941), [magento/magento2#28872](https://github.com/magento/magento2/pull/28872), [magento/magento2#28854](https://github.com/magento/magento2/pull/28854), [magento/magento2#28661](https://github.com/magento/magento2/pull/28661), [magento/magento2#28852](https://github.com/magento/magento2/pull/28852), [magento/magento2#28812](https://github.com/magento/magento2/pull/28812), [magento/magento2#28650](https://github.com/magento/magento2/pull/28650), [magento/magento2#27882](https://github.com/magento/magento2/pull/27882), magento/partners-magento2ee#250, [magento/magento2#29002](https://github.com/magento/magento2/pull/29002), [magento/magento2#28959](https://github.com/magento/magento2/pull/28959), [magento/magento2#28955](https://github.com/magento/magento2/pull/28955), [magento/magento2#28925](https://github.com/magento/magento2/pull/28925), [magento/magento2#29053](https://github.com/magento/magento2/pull/29053), [magento/magento2#27697](https://github.com/magento/magento2/pull/27697), [magento/magento2#29143](https://github.com/magento/magento2/pull/29143), [magento/magento2#29156](https://github.com/magento/magento2/pull/29156), [magento/magento2#29004](https://github.com/magento/magento2/pull/29004), [magento/magento2#29162](https://github.com/magento/magento2/pull/29162), [magento/magento2#28999](https://github.com/magento/magento2/pull/28999), [magento/magento2#29134](https://github.com/magento/magento2/pull/29134), [magento/magento2#29133](https://github.com/magento/magento2/pull/29133), [magento/magento2#29007](https://github.com/magento/magento2/pull/29007), [magento/magento2#29000](https://github.com/magento/magento2/pull/29000), [magento/magento2#28210](https://github.com/magento/magento2/pull/28210), [magento/magento2#29135](https://github.com/magento/magento2/pull/29135), [magento/magento2#27537](https://github.com/magento/magento2/pull/27537), [magento/magento2#29142](https://github.com/magento/magento2/pull/29142), [magento/magento2#29386](https://github.com/magento/magento2/pull/29386), [magento/magento2#29385](https://github.com/magento/magento2/pull/29385), [magento/magento2#28993](https://github.com/magento/magento2/pull/28993), [magento/magento2#28989](https://github.com/magento/magento2/pull/28989), magento/partners-magento2ee#263, magento/partners-magento2ee#246, [magento/magento2#27914](https://github.com/magento/magento2/pull/27914), [magento/magento2#29427](https://github.com/magento/magento2/pull/29427), [magento/magento2#29485](https://github.com/magento/magento2/pull/29485), [magento/magento2#29472](https://github.com/magento/magento2/pull/29472) | [magento/magento2#28202](https://github.com/magento/magento2/issues/28202), [magento/magento2#28393](https://github.com/magento/magento2/issues/28393), [magento/magento2#28377](https://github.com/magento/magento2/issues/28377), [magento/magento2#28394](https://github.com/magento/magento2/issues/28394), [magento/magento2#19481](https://github.com/magento/magento2/issues/19481), [magento/magento2#28040](https://github.com/magento/magento2/issues/28040), [magento/magento2#28138](https://github.com/magento/magento2/issues/28138), [magento/magento2#28261](https://github.com/magento/magento2/issues/28261), [magento/magento2#253](https://github.com/magento/magento2/issues/253), [magento/magento2#27337](https://github.com/magento/magento2/issues/27337), [magento/magento2#21101](https://github.com/magento/magento2/issues/21101), [magento/magento2#28755](https://github.com/magento/magento2/issues/28755), [magento/magento2#28720](https://github.com/magento/magento2/issues/28720), [magento/magento2#28744](https://github.com/magento/magento2/issues/28744), [magento/magento2#28721](https://github.com/magento/magento2/issues/28721), magento/partners-magento2ee#261, [magento/magento2#246](https://github.com/magento/magento2/issues/246), [magento/magento2#28519](https://github.com/magento/magento2/issues/28519), [magento/magento2#28481](https://github.com/magento/magento2/issues/28481), [magento/magento2#28262](https://github.com/magento/magento2/issues/28262), [magento/magento2#28427](https://github.com/magento/magento2/issues/28427), [magento/magento2#29032](https://github.com/magento/magento2/issues/29032), [magento/magento2#29012](https://github.com/magento/magento2/issues/29012), [magento/magento2#29039](https://github.com/magento/magento2/issues/29039), [magento/magento2#28969](https://github.com/magento/magento2/issues/28969), [magento/magento2#29009](https://github.com/magento/magento2/issues/29009), [magento/magento2#250](https://github.com/magento/magento2/issues/250), [magento/magento2#29287](https://github.com/magento/magento2/issues/29287), [magento/magento2#29289](https://github.com/magento/magento2/issues/29289), [magento/magento2#29281](https://github.com/magento/magento2/issues/29281), [magento/magento2#29295](https://github.com/magento/magento2/issues/29295), [magento/magento2#28800](https://github.com/magento/magento2/issues/28800), [magento/magento2#29292](https://github.com/magento/magento2/issues/29292), [magento/magento2#29420](https://github.com/magento/magento2/issues/29420), [magento/magento2#29434](https://github.com/magento/magento2/issues/29434), [magento/magento2#29388](https://github.com/magento/magento2/issues/29388), [magento/magento2#29380](https://github.com/magento/magento2/issues/29380), [magento/magento2#28524](https://github.com/magento/magento2/issues/28524), [magento/magento2#29539](https://github.com/magento/magento2/issues/29539) | +| Blue Acorn iCi | [magento/magento2#27903](https://github.com/magento/magento2/pull/27903), [magento/magento2#27902](https://github.com/magento/magento2/pull/27902), [magento/magento2#28606](https://github.com/magento/magento2/pull/28606), [magento/magento2#28601](https://github.com/magento/magento2/pull/28601), [magento/magento2#28605](https://github.com/magento/magento2/pull/28605), [magento/magento2#28351](https://github.com/magento/magento2/pull/28351), [magento/magento2#27965](https://github.com/magento/magento2/pull/27965), [magento/magento2#28856](https://github.com/magento/magento2/pull/28856), [magento/magento2#29271](https://github.com/magento/magento2/pull/29271), [magento/magento2#28992](https://github.com/magento/magento2/pull/28992), [magento/magento2#29341](https://github.com/magento/magento2/pull/29341), [magento/magento2#29272](https://github.com/magento/magento2/pull/29272), [magento/magento2#28599](https://github.com/magento/magento2/pull/28599), [magento/magento2#29376](https://github.com/magento/magento2/pull/29376), [magento/magento2#29202](https://github.com/magento/magento2/pull/29202) | [magento/magento2#28383](https://github.com/magento/magento2/issues/28383), [magento/magento2#28850](https://github.com/magento/magento2/issues/28850), [magento/magento2#28376](https://github.com/magento/magento2/issues/28376), [magento/magento2#27962](https://github.com/magento/magento2/issues/27962), [magento/magento2#28656](https://github.com/magento/magento2/issues/28656), [magento/magento2#29283](https://github.com/magento/magento2/issues/29283), [magento/magento2#29159](https://github.com/magento/magento2/issues/29159), [magento/magento2#29389](https://github.com/magento/magento2/issues/29389), [magento/magento2#29346](https://github.com/magento/magento2/issues/29346), [magento/magento2#29453](https://github.com/magento/magento2/issues/29453), [magento/magento2#29477](https://github.com/magento/magento2/issues/29477) | +| creativestyle | [magento/magento2#27622](https://github.com/magento/magento2/pull/27622), [magento/magento2#27270](https://github.com/magento/magento2/pull/27270), [magento/magento2#27871](https://github.com/magento/magento2/pull/27871), [magento/magento2#27690](https://github.com/magento/magento2/pull/27690), [magento/magento2#27619](https://github.com/magento/magento2/pull/27619), [magento/magento2#27618](https://github.com/magento/magento2/pull/27618), [magento/magento2#27357](https://github.com/magento/magento2/pull/27357), [magento/magento2#27356](https://github.com/magento/magento2/pull/27356), [magento/magento2#27616](https://github.com/magento/magento2/pull/27616), [magento/magento2#27860](https://github.com/magento/magento2/pull/27860), [magento/magento2#27617](https://github.com/magento/magento2/pull/27617), [magento/magento2#29054](https://github.com/magento/magento2/pull/29054), [magento/magento2#28838](https://github.com/magento/magento2/pull/28838) | [magento/magento2#28110](https://github.com/magento/magento2/issues/28110), [magento/magento2#26026](https://github.com/magento/magento2/issues/26026), [magento/magento2#28339](https://github.com/magento/magento2/issues/28339), [magento/magento2#28340](https://github.com/magento/magento2/issues/28340), [magento/magento2#28381](https://github.com/magento/magento2/issues/28381), [magento/magento2#28382](https://github.com/magento/magento2/issues/28382), [magento/magento2#28166](https://github.com/magento/magento2/issues/28166), [magento/magento2#28433](https://github.com/magento/magento2/issues/28433), [magento/magento2#28807](https://github.com/magento/magento2/issues/28807), [magento/magento2#28823](https://github.com/magento/magento2/issues/28823), [magento/magento2#28811](https://github.com/magento/magento2/issues/28811), [magento/magento2#29087](https://github.com/magento/magento2/issues/29087), [magento/magento2#25934](https://github.com/magento/magento2/issues/25934) | +| Comwrap | [magento/magento2#28714](https://github.com/magento/magento2/pull/28714), [magento/magento2#28743](https://github.com/magento/magento2/pull/28743), [magento/magento2#28710](https://github.com/magento/magento2/pull/28710), [magento/magento2#28757](https://github.com/magento/magento2/pull/28757), magento/partners-magento2ee#288, magento/partners-magento2ee#271, magento/partners-magento2ee#277, [magento/magento2#28890](https://github.com/magento/magento2/pull/28890), magento/partners-magento2ee#285, [magento/magento2#27850](https://github.com/magento/magento2/pull/27850), [magento/magento2#27917](https://github.com/magento/magento2/pull/27917) | [magento/magento2#28584](https://github.com/magento/magento2/issues/28584), magento/partners-magento2ee#28563, magento/partners-magento2ee#28566, magento/partners-magento2ee#28769, [magento/magento2#26121](https://github.com/magento/magento2/issues/26121), magento/partners-magento2ee#28834, [magento/magento2#28705](https://github.com/magento/magento2/issues/28705) | +| Ziffity | [magento/magento2#26704](https://github.com/magento/magento2/pull/26704), [magento/magento2#28113](https://github.com/magento/magento2/pull/28113), [magento/magento2#28174](https://github.com/magento/magento2/pull/28174), [magento/magento2#28039](https://github.com/magento/magento2/pull/28039), [magento/magento2#28004](https://github.com/magento/magento2/pull/28004), [magento/magento2#27567](https://github.com/magento/magento2/pull/27567), [magento/magento2#28264](https://github.com/magento/magento2/pull/28264), [magento/magento2#29137](https://github.com/magento/magento2/pull/29137), [magento/magento2#29206](https://github.com/magento/magento2/pull/29206), [magento/magento2#28250](https://github.com/magento/magento2/pull/28250), [magento/magento2#27977](https://github.com/magento/magento2/pull/27977) | [magento/magento2#28165](https://github.com/magento/magento2/issues/28165), [magento/magento2#28201](https://github.com/magento/magento2/issues/28201), [magento/magento2#27985](https://github.com/magento/magento2/issues/27985), [magento/magento2#27091](https://github.com/magento/magento2/issues/27091), [magento/magento2#28308](https://github.com/magento/magento2/issues/28308), [magento/magento2#28270](https://github.com/magento/magento2/issues/28270), [magento/magento2#28947](https://github.com/magento/magento2/issues/28947), [magento/magento2#29344](https://github.com/magento/magento2/issues/29344), [magento/magento2#29097](https://github.com/magento/magento2/issues/29097) | +| Aligent Consulting | [magento/magento2#27429](https://github.com/magento/magento2/pull/27429), [magento/magento2#26256](https://github.com/magento/magento2/pull/26256) | [magento/magento2#28306](https://github.com/magento/magento2/issues/28306), [magento/magento2#8815](https://github.com/magento/magento2/issues/8815), [magento/magento2#26255](https://github.com/magento/magento2/issues/26255) | +| Fast White Cat | [magento/magento2#28015](https://github.com/magento/magento2/pull/28015), [magento/magento2#28735](https://github.com/magento/magento2/pull/28735), [magento/magento2#28285](https://github.com/magento/magento2/pull/28285) | [magento/magento2#28011](https://github.com/magento/magento2/issues/28011), [magento/magento2#26504](https://github.com/magento/magento2/issues/26504), [magento/magento2#26427](https://github.com/magento/magento2/issues/26427) | +| Vaimo | [magento/magento2#29300](https://github.com/magento/magento2/pull/29300), [magento/magento2#27905](https://github.com/magento/magento2/pull/27905), [magento/magento2#27582](https://github.com/magento/magento2/pull/27582) | [magento/magento2#29299](https://github.com/magento/magento2/issues/29299), [magento/magento2#28303](https://github.com/magento/magento2/issues/28303), [magento/magento2#27570](https://github.com/magento/magento2/issues/27570) | +| Guidance Solutions | [magento/magento2#28810](https://github.com/magento/magento2/pull/28810), [magento/magento2#28902](https://github.com/magento/magento2/pull/28902) | [magento/magento2#28982](https://github.com/magento/magento2/issues/28982), [magento/magento2#29327](https://github.com/magento/magento2/issues/29327) | +| Cedcommerce | [magento/magento2#27990](https://github.com/magento/magento2/pull/27990), [magento/magento2#26660](https://github.com/magento/magento2/pull/26660) | [magento/magento2#26118](https://github.com/magento/magento2/issues/26118), [magento/magento2#28143](https://github.com/magento/magento2/issues/28143) | +| Balance Internet | [magento/magento2#27064](https://github.com/magento/magento2/pull/27064) | [magento/magento2#27063](https://github.com/magento/magento2/issues/27063) | +| Krish TechnoLabs | [magento/magento2#27359](https://github.com/magento/magento2/pull/27359), [magento/magento2#27106](https://github.com/magento/magento2/pull/27106) | [magento/magento2#27358](https://github.com/magento/magento2/issues/27358), [magento/magento2#27099](https://github.com/magento/magento2/issues/27099) | +| Ranosys Technologies | [magento/magento2#27516](https://github.com/magento/magento2/pull/27516) | [magento/magento2#26191](https://github.com/magento/magento2/issues/26191) | +| Briteskies | [magento/magento2#29301](https://github.com/magento/magento2/pull/29301) | [magento/magento2#104](https://github.com/magento/magento2/issues/104) | +| Le Site | [magento/magento2#28891](https://github.com/magento/magento2/pull/28891) | [magento/magento2#29056](https://github.com/magento/magento2/issues/29056) | +| MediaCT | [magento/magento2#28547](https://github.com/magento/magento2/pull/28547) | [magento/magento2#28685](https://github.com/magento/magento2/issues/28685) | diff --git a/src/cloud/env/variables-build.md b/src/cloud/env/variables-build.md index f9dc605d70c..998a1d01083 100644 --- a/src/cloud/env/variables-build.md +++ b/src/cloud/env/variables-build.md @@ -122,7 +122,7 @@ stage: Allows you to increase the maximum expected execution time for static content deployment. -By default, Magento Commerce sets the maximum expected execution to 400 seconds, but in some scenarios you might need more time to complete the static content deployment for a Cloud project. +By default, Magento Commerce sets the maximum expected execution to 900 seconds, but in some scenarios you might need more time to complete the static content deployment for a Cloud project. ```yaml stage: diff --git a/src/cloud/env/variables-deploy.md b/src/cloud/env/variables-deploy.md index c81a0cf5cc9..45e49bce338 100644 --- a/src/cloud/env/variables-deploy.md +++ b/src/cloud/env/variables-deploy.md @@ -507,7 +507,7 @@ stage: Allows you to increase the maximum expected execution time for static content deployment. -By default, Magento Commerce sets the maximum expected execution to 400 seconds, but in some scenarios you might need more time to complete the static content deployment for a Cloud project. +By default, Magento Commerce sets the maximum expected execution to 900 seconds, but in some scenarios you might need more time to complete the static content deployment for a Cloud project. ```yaml stage: diff --git a/src/cloud/env/variables-global.md b/src/cloud/env/variables-global.md index a43f1ab8d92..548285ae635 100644 --- a/src/cloud/env/variables-global.md +++ b/src/cloud/env/variables-global.md @@ -65,7 +65,7 @@ return array( Allows you to increase the maximum expected execution time for static content deployment. -By default, Magento Commerce sets the maximum expected execution to 400 seconds, but in some scenarios you might need more time to complete the static content deployment for a Cloud project. +By default, Magento Commerce sets the maximum expected execution to 900 seconds, but in some scenarios you might need more time to complete the static content deployment for a Cloud project. ```yaml stage: diff --git a/src/common/images/graphql/paypal-payflow-pro-vault.svg b/src/common/images/graphql/paypal-payflow-pro-vault.svg new file mode 100644 index 00000000000..c7bc71af169 --- /dev/null +++ b/src/common/images/graphql/paypal-payflow-pro-vault.svg @@ -0,0 +1,3 @@ + + +
4
4

Magento returns a Cart object.

Magento returns a Cart...
3
3

Set the payment method and provide the public hash.

Set the payment meth...

Magento returns the tokens stored in the vault.

Magento returns t...
2
2

Run the customer
PaymentTokens query.

Run the customer...
1
1

Client
(PWA)

Client...

Magento

Magento

Braintree

Braintree
8
8

Magento creates an order.

Magento creates an ord...
5
5

Run the placeOrder mutation.

Run the placeOrde...
7
7

Braintree sends the response to Magento.

Braintree sends the re...
6
6

Magento sends an authorization request.

Magento sends an author...
Viewer does not support full SVG 1.1
\ No newline at end of file diff --git a/src/guides/v2.3/config-guide/elasticsearch/es-downgrade.md b/src/guides/v2.3/config-guide/elasticsearch/es-downgrade.md index 750f08f7303..344e7cbe9ce 100644 --- a/src/guides/v2.3/config-guide/elasticsearch/es-downgrade.md +++ b/src/guides/v2.3/config-guide/elasticsearch/es-downgrade.md @@ -8,9 +8,7 @@ functional_areas: - Setup --- -The Magento 2.3.5 update adds support for Elasticsearch (ES) 6.8.x and 7.x.x. - -Both ES 2.x and 5.x are [End of Life][] and are no longer supported in Magento. +{% include config/es-version-23.md %} ## Change the Elasticsearch Client version @@ -30,6 +28,4 @@ Then configure Elasticsearch within [Magento Admin][]. -[End of Life]: https://www.elastic.co/support/eol -[PHP client]: https://github.com/elastic/elasticsearch-php [Magento Admin]: https://docs.magento.com/m2/ee/user_guide/catalog/search-elasticsearch.html diff --git a/src/guides/v2.3/config-guide/elasticsearch/es-overview.md b/src/guides/v2.3/config-guide/elasticsearch/es-overview.md index 487262844fc..80275f1bd76 100644 --- a/src/guides/v2.3/config-guide/elasticsearch/es-overview.md +++ b/src/guides/v2.3/config-guide/elasticsearch/es-overview.md @@ -32,14 +32,7 @@ Using [Elasticsearch][] as your [catalog](https://glossary.magento.com/catalog) ### Supported versions {#es-spt-versions} -Magento 2.3.5 adds support for Elasticsearch 7.x.x (default) and 6.8.x. -Both ES 2.x and 5.x are [End of Life][] and are no longer supported in Magento. -Follow the instructions in [Change Elasticsearch Client][]. - -{{site.data.var.ee}} version 2.3.5 supports the following Elasticsearch versions: - -* Elasticsearch 7.x.x -* Elasticsearch 6.8.x +{% include config/es-version-23.md %} ### Recommended configuration {#es-arch} @@ -133,9 +126,7 @@ For additional information, see [Elasticsearch documentation][]{:target="_blank" [Configure Magento to use Elasticsearch]: {{page.baseurl}}/config-guide/elasticsearch/configure-magento.html [Elasticsearch Ubuntu documentation]: https://www.elastic.co/guide/en/elasticsearch/reference/current/deb.html [Configuring Elasticsearch]: https://www.elastic.co/guide/en/elasticsearch/reference/current/settings.html -[End of Life]: https://www.elastic.co/support/eol [Upgrading Elasticsearch]: https://www.elastic.co/guide/en/elasticsearch/reference/current/setup-upgrade.html [Full cluster restart upgrade]: https://www.elastic.co/guide/en/elasticsearch/reference/current/restart-upgrade.html [Elasticsearch documentation]: https://www.elastic.co/guide/en/elasticsearch/reference/current/index.html -[Change Elasticsearch Client]: {{page.baseurl}}/config-guide/elasticsearch/es-downgrade.html [Installing Elasticsearch]: https://www.elastic.co/guide/en/elasticsearch/reference/current/install-elasticsearch.html diff --git a/src/guides/v2.3/extension-dev-guide/message-queues/message-queues.md b/src/guides/v2.3/extension-dev-guide/message-queues/message-queues.md index 421a7238bdb..3b99c005c90 100644 --- a/src/guides/v2.3/extension-dev-guide/message-queues/message-queues.md +++ b/src/guides/v2.3/extension-dev-guide/message-queues/message-queues.md @@ -46,36 +46,39 @@ Perform the following actions: 1. Decode the message using topic name taken from the `\Magento\Framework\MessageQueue\ConsumerConfigurationInterface`. 1. Invoke callback `Magento\Framework\MessageQueue\ConsumerConfigurationInterface::getCallback` and pass the decoded data as an argument. -## Override topic configuration +## Change message queue from MySQL to AMQP The following sample introduces a runtime configuration that allows you to redefine the adapter for a topic. ```php 'queue' => [ 'topics' => [ - 'customer.created' => [ - 'schema' => [ - 'schema_type' => 'object', - 'schema_value' => 'string' - ], - 'response_schema' => [ - 'schema_type' => 'object', - 'schema_value' => 'string' - ], - 'publisher' = 'default-rabitmq' + 'product_action_attribute.update' => [ + 'publisher' => 'amqp-magento' + ] + ], + 'config' => [ + 'publishers' => [ + 'product_action_attribute.update' => [ + 'connections' => [ + 'amqp' => [ + 'name' => 'amqp', + 'exchange' => 'magento', + 'disabled' => false + ], + 'db' => [ + 'name' => 'db', + 'disabled' => true + ] + ] + ] + ] + ], + 'consumers' => [ + 'product_action_attribute.update' => [ + 'connection' => 'amqp', ], - 'order.created' => [ - 'schema' => [ - 'schema_type' => 'object', - 'schema_value' => 'string' - ], - 'response_schema' => [ - 'schema_type' => 'object', - 'schema_value' => 'string' - ], - 'publisher' = 'default-rabitmq' - ], - ], + ], ], ``` diff --git a/src/guides/v2.3/get-started/gs-web-api-request.md b/src/guides/v2.3/get-started/gs-web-api-request.md index 279d8403894..3be11412dfb 100644 --- a/src/guides/v2.3/get-started/gs-web-api-request.md +++ b/src/guides/v2.3/get-started/gs-web-api-request.md @@ -46,9 +46,10 @@ Specify one or more of the following HTTP headers in your web API calls: HTTP header | Description | Syntax --- | --- | --- -`Authorization` | Required. Specifies the authentication token that proves you as the owner of a Magento account. You specify the token in the `Authorization` request header with the `Bearer` HTTP authorization scheme. | `Authorization: Bearer `

`` is the authentication token returned by the Magento token service. See [Authentication]({{ page.baseurl }}/get-started/authentication/gs-authentication.html). +`Authorization` | Required, except for calls made on behalf of a guest. Specifies the authentication token that proves you as the owner of a Magento account. You specify the token in the `Authorization` request header with the `Bearer` HTTP authorization scheme. | `Authorization: Bearer `

`` is the authentication token returned by the Magento token service. See [Authentication]({{ page.baseurl }}/get-started/authentication/gs-authentication.html). `Accept` | Optional. Specifies the format of the response body. Default is `JSON`. | `Accept: application/`

`` is either `JSON` or `XML`. `Content-Type` | Required for operations with a request body. Specifies the format of the request body. | `Content-Type:application/`

`` is either `JSON` or `XML`. +`X-Captcha` | A shopper-entered CAPTCHA value. It is required when a shopper enters a CAPTCHA value on the frontend, unless an integration token is provided. Forms requiring CAPTCHA values are configured at **Stores** > **Configuration** > **Customers** > **Customer Configuration** > **CAPTCHA** > **Forms**. | String ### Call payload {#payload} diff --git a/src/guides/v2.3/graphql/payment-methods/braintree-vault.md b/src/guides/v2.3/graphql/payment-methods/braintree-vault.md index 662a20440f9..fa5aa37af3e 100644 --- a/src/guides/v2.3/graphql/payment-methods/braintree-vault.md +++ b/src/guides/v2.3/graphql/payment-methods/braintree-vault.md @@ -20,7 +20,7 @@ The following diagram shows the workflow for placing an order when Braintree Vau 1. The client renders the token information, and the customer selects a payment method. - When the customer clicks **Place Order**, the PWA uses the [`setPaymentMethodOnCart`]({{page.baseurl}}/graphql/mutations/set-payment-method.html) mutation to set the payment method to `braintree_cc_vault`. The vaulted public hash is passed with other optional properties in the [`braintree_cc_vault`](#braintree_cc_vault-object). + When the customer selects a stored payment method, the PWA uses the [`setPaymentMethodOnCart`]({{page.baseurl}}/graphql/mutations/set-payment-method.html) mutation to set the payment method to `braintree_cc_vault`. The vaulted public hash is passed with other optional properties in the [`braintree_cc_vault`](#braintree_cc_vault-object). 1. Magento returns a `Cart` object. diff --git a/src/guides/v2.3/graphql/protected-mutations.md b/src/guides/v2.3/graphql/protected-mutations.md new file mode 100644 index 00000000000..f9d4552ccbc --- /dev/null +++ b/src/guides/v2.3/graphql/protected-mutations.md @@ -0,0 +1,28 @@ +--- +group: graphql +title: Protected mutations +--- + +If CAPTCHA is enabled on pages requiring shopper input, then in most cases, the corresponding mutations that send requests to the Magento server must include the shopper's CAPTCHA response. Supply the shopper's response in the HTTP `X-Captcha` header. The exception to this policy is that you do not send the CAPTCHA response if you specify an integration authorization token in the header of the mutation. + +The following table lists the forms that can be configured to require CAPTCHA. Go to **Stores** > **Configuration** > **Customers** > **Customer Configuration** > **CAPTCHA** > **Forms** to enable or disable CAPTCHA on these forms. + +Form name | Mutation +--- | --- +Add Gift Card Code | `applyGiftCardToCart` +Applying Coupon Code | `applyCouponToCart` +Change password | `changeCustomerPassword` +Checkout/Placing Order | `setPaymentMethodOnCart`, `setPaymentMethodAndPlaceOrder` +Contact Us | Not applicable +Create company | Not applicable +Create user | `createCustomer` +Forgot password | Not applicable +Login | `generateCustomerToken` +Payflow Pro | `setPaymentMethodOnCart`, `setPaymentMethodAndPlaceOrder` +Send to Friend Form | `sendEmailToFriend` +Share Wishlist Form | Not applicable + +{:.ref-header} +Related topics + +[Construct a request]({{page.baseurl}}/get-started/gs-web-api-request.html) diff --git a/src/guides/v2.3/graphql/send-request.md b/src/guides/v2.3/graphql/send-request.md index bd2a043e0a0..13716c73592 100644 --- a/src/guides/v2.3/graphql/send-request.md +++ b/src/guides/v2.3/graphql/send-request.md @@ -7,11 +7,11 @@ Magento GraphQL supports the HTTP GET and POST methods. You can send a query as `http:///graphql?query=%7Bproducts(filter%3A%7Bsku%3A%7Beq%3A%2224-WB01%22%7D%7D)%7Bitems%7Bname%20sku%7D%7D%7D` -The previous example is equivalent to the following query. You could send the query as either a GET or POST request, +The previous example is equivalent to the following query. You could send the query as either a GET or POST request. **Request:** -```text +```graphql { products( filter: { sku: { eq: "24-WB01" } } @@ -26,7 +26,7 @@ The previous example is equivalent to the following query. You could send the qu **Response:** -```text +```json { "data": { "products": { @@ -52,8 +52,9 @@ Header name | Value | Description `Authorization` | `Bearer ` | A customer or admin token. [Authorization tokens]({{page.baseurl}}/graphql/authorization-tokens.html) describes how to generate tokens. `Content-Currency` | A valid currency code, such as `USD` | This header is required only if the currency is not the store view's default currency. `Content-Type` | `application/json` | Required for all requests. -`Preview-Version` | A timestamp (seconds since January 1, 1970). Use this header to query products, categories, price rules, and other entities that are scheduled to be in a campaign (staged content). Staging is supported in {{site.data.var.ee}} only. +`Preview-Version` | A timestamp (seconds since January 1, 1970). | Use this header to query products, categories, price rules, and other entities that are scheduled to be in a campaign (staged content). Staging is supported in {{site.data.var.ee}} only. `Store` | `` | The store view code on which to perform the request. The value can be `default` or the code that is defined when a store view is created. +`X-Captcha` | Shopper-entered CAPTCHA value | Required when a shopper enters a CAPTCHA value on the frontend, unless an integration token is provided. Forms requiring CAPTCHA values are configured at **Stores** > **Configuration** > **Customers** > **Customer Configuration** > **CAPTCHA** > **Forms**. ### Specify request headers in a GraphQL browser diff --git a/src/guides/v2.3/install-gde/system-requirements-tech.md b/src/guides/v2.3/install-gde/system-requirements-tech.md index dc2128870f5..dde2f596970 100644 --- a/src/guides/v2.3/install-gde/system-requirements-tech.md +++ b/src/guides/v2.3/install-gde/system-requirements-tech.md @@ -102,18 +102,7 @@ Mail Transfer Agent (MTA) or an SMTP server * [Varnish]({{page.baseurl}}/config-guide/varnish/config-varnish.html) version 6.x (tested with 6.3.1) * [Elasticsearch]({{page.baseurl}}/config-guide/elasticsearch/es-overview.html) - {{site.data.var.ee}} version 2.3.x supports the following Elasticsearch versions: - - * Elasticsearch 6.8.x - - Magento 2.3 supports [Elasticsearch PHP client][]{:target="_blank"} version 6.8. - - * Elasticsearch 7.x.x - - {:.bs-callout-warning} - Magento no longer provides support for Elasticsearch [2.x and 5.x][] as they are End of Life. - - Follow the instructions in [Change Elasticsearch Module][]. + {% include config/es-version-23.md %} * RabbitMQ 3.8.x (compatible with 2.0 and later) @@ -169,5 +158,4 @@ There is a known issue with `xdebug` that can affect Magento installations or ac [Varnish]: {{page.baseurl}}/config-guide/varnish/config-varnish.html [Elasticsearch]: {{page.baseurl}}/config-guide/elasticsearch/es-overview.html [Elasticsearch PHP client]: https://github.com/elastic/elasticsearch-php -[2.x and 5.x]: https://www.elastic.co/support/eol [RabbitMQ]: {{page.baseurl}}/config-guide/mq/rabbitmq-overview.html diff --git a/src/guides/v2.3/inventory/release-notes.md b/src/guides/v2.3/inventory/release-notes.md index 891cab311ed..4747423ac0b 100644 --- a/src/guides/v2.3/inventory/release-notes.md +++ b/src/guides/v2.3/inventory/release-notes.md @@ -20,6 +20,13 @@ The release notes include: - {:.fix}Fixes and improvements - {:.bug}Known issues +### v1.2.1 +{{site.data.var.im}} 1.2.1 (module version: `magento/inventory-metapackage = 1.2.1`) is supported with version 2.4.1 and compatible with version 2.4.0 of {{site.data.var.ce}}, {{site.data.var.ee}}, and {{site.data.var.ece}}. + +- {:.fix} Fixed known issue related to `inventory_cleanup_reservations` cron job, addressed issue related to In-Store Pickup functionality for bundle products, general improvements to stock calculation, bundle product support and backorders functionality. + +- {:.new} **Functional tests.** Introduced new functional tests to provide additional coverage for In-Store Pickup functionality. + ### v1.2.0 {{site.data.var.im}} 1.2.0 (module version: `magento/inventory-metapackage = 1.2.0`) is supported with version 2.4.0 of {{site.data.var.ce}}, {{site.data.var.ee}}, and {{site.data.var.ece}}. @@ -45,6 +52,13 @@ The release notes include: DELETE FROM inventory_reservation where reservation_id IN (result_of_the_first_query); ``` +### v1.1.6 +{{site.data.var.im}} 1.1.6 (module version: `inventory-composer-metapackage = 1.1.6`) is supported with version 2.3.6 and compatible with version 2.3.5, 2.3.4, 2.3.3, 2.3.2, 2.3.1, and 2.3.0 of {{site.data.var.ce}}, {{site.data.var.ee}}, and {{site.data.var.ece}}. + +- {:.new} **Asynchronous stock re-indexing.** Added the ability to asynchronously re-index stock and improved the performance of several critical scenarios. + +- {:.fix} Bug fixes to resolve issues related to backorders, credit memos, low stock report grid, fixes connected to "resolve inconsistencies" CLI tool and general improvements. + ### v1.1.5 {{site.data.var.im}} 1.1.5 (module version: `inventory-composer-metapackage = 1.1.5`) is supported with version 2.3.5 and compatible with version 2.3.4, 2.3.3, 2.3.2, 2.3.1, and 2.3.0 of {{site.data.var.ce}}, {{site.data.var.ee}}, and {{site.data.var.ece}}. diff --git a/src/guides/v2.3/release-notes/b2b-release-notes.md b/src/guides/v2.3/release-notes/b2b-release-notes.md index 4b9086f9874..886117073e3 100644 --- a/src/guides/v2.3/release-notes/b2b-release-notes.md +++ b/src/guides/v2.3/release-notes/b2b-release-notes.md @@ -3,7 +3,37 @@ group: release-notes title: B2B Release Notes --- -### B2B +## B2B + +The release notes for the B2B extension captures additions and bug fixes that Magento has added during a release cycle. + +### Magento 2.3.6 -- Magento B2B + + + +* An SQL error no longer occurs when a merchant assigns a category to a shared catalog in a deployment where B2B is installed. Previously, Magento threw this exception: `SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'THEN -2 END), IF(grant_catalog_category_view = 0, NULL, grant_catalog_category_v' at line 1` + + + +* Magento no longer displays a 404 page when a merchant uses the **Enter** button instead of clicking the **Save** button when creating a requisition list on the storefront. + + + +* When you create or update a B2B Company using the REST API (`http://magento.local/rest/V1/company/2`, where `2` represents the company ID), the response now includes the settings for `applicable_payment_method` or `available_payment_methods` as expected. + + + +* Magento now sends an email notification confirming that a customer has permission to exceed the designated credit limit when a merchant enables the **Allow To Exceed Credit Limit** setting. Previously, the notification email sent by Magento indicated that the customer did not have permission to exceed the limit. + + + +* Magento now provides an `addToCart` DataLayer event for Quick Order and Requisition lists pages. + + + +* Requisition lists now include all grouped products and quantities that have been added to the list. Previously, when a merchant navigated to a requisition list after adding products to it from a product detail page, Magento displayed this error: `1 product(s) require your attention - Options were updated. Please review available configurations`. [GitHub-59](https://github.com/magento/partners-magento2b2b/issues/59) + +### Magento 2.3.5 -- Magento B2B diff --git a/src/guides/v2.3/release-notes/bk-release-notes.md b/src/guides/v2.3/release-notes/bk-release-notes.md index d87bc6daa94..3c865af4a61 100644 --- a/src/guides/v2.3/release-notes/bk-release-notes.md +++ b/src/guides/v2.3/release-notes/bk-release-notes.md @@ -5,6 +5,9 @@ title: 2.3 Release Information ## Magento 2.3.x Release Notes +* [{{site.data.var.ce}} 2.3.6 Release Notes]({{page.baseurl}}/release-notes/open-source-2-3-6.html) +* [{{site.data.var.ee}} 2.3.6 Release Notes]({{page.baseurl}}/release-notes/commerce-2-3-6.html) + * [{{site.data.var.ce}} 2.3.5 Release Notes]({{page.baseurl}}/release-notes/release-notes-2-3-5-open-source.html) * [{{site.data.var.ee}} 2.3.5 Release Notes]({{page.baseurl}}/release-notes/release-notes-2-3-5-commerce.html) diff --git a/src/guides/v2.3/release-notes/commerce-2-3-6.md b/src/guides/v2.3/release-notes/commerce-2-3-6.md new file mode 100644 index 00000000000..cbcea65cb92 --- /dev/null +++ b/src/guides/v2.3/release-notes/commerce-2-3-6.md @@ -0,0 +1,841 @@ +--- +group: release-notes +title: Magento Commerce 2.3.6 Release Notes +--- + +Magento Commerce 2.3.6 offers significant platform upgrades, substantial security changes, and performance improvements. + +This release includes over 160 functional fixes to the core product and over 15 security enhancements. + +{:.bs-callout-info} + +Quarterly releases may contain backward-incompatible changes (BIC). Magento 2.3.6 contains minor backward-incompatible changes. To review minor backward-incompatible changes, see [BIC reference]({{page.baseurl}}/release-notes/backward-incompatible-changes/reference.html). (Major backward-incompatible issues are described in [BIC highlights]({{page.baseurl}}/release-notes/backward-incompatible-changes/index.html). Not all releases introduce major BICs.) + +{:.bs-callout-info} + +We are adding support for PHP 7.4.x in Magento 2.3.7, which is scheduled for release in Q2 2021. This support will introduce breaking changes to Magento 2.3.x deployments. How will this affect your store? See the [PHP 7.4 support for Magento 2.3.x release line](https://community.magento.com/t5/Magento-DevBlog/PHP-7-4-support-for-Magento-2-3-x-release-line/ba-p/458946) DevBlog post. + +## Other release information + +Although code for these features is bundled with quarterly releases of the Magento core code, several of these projects (for example, B2B, Page Builder, Inventory Management, and Progressive Web Applications (PWA) Studio) are also released independently. Bug fixes for these projects are documented in the separate, project-specific release information that is available in the documentation for each project. + +## Highlights + +Look for the following highlights in this release: + +### Substantial security enhancements + +This release includes the following security enhancements: + +#### Over 15 security enhancements that help close remote code execution (RCE) and cross-site scripting (XSS) vulnerabilities + +No confirmed attacks related to these issues have occurred to date. However, certain vulnerabilities can potentially be exploited to access customer information or take over administrator sessions. Most of these issues require that an attacker first obtains access to the Admin. As a result, we remind you to take all necessary steps to protect your Admin, including but not limited to these efforts: IP allowlisting, [two-factor authentication]({{page.baseurl}}/security/two-factor-authentication.html), use of a VPN, the use of a unique location rather than `/admin`, and good password hygiene. See [Security Updates Available for Magento](https://helpx.adobe.com/security/products/magento/apsb20-59.html) for a discussion of these fixed issues. + +#### Security enhancements and fixes to core code + +Additional security enhancements include: + +**CAPTCHA** protection has been added to the following product areas: + +* Place Order storefront page and REST and GraphQL endpoints + +* Payment-related REST and GraphQL endpoints. + +CAPTCHA protection for these additional pages is disabled by default. It can be enabled on the Admin in the same way that other pages covered by CAPTCHA are. This protection has been added as an anti-brute force mechanism to protect stores against carding attacks. See [CAPTCHA](https://docs.magento.com/user-guide/stores/security-captcha.html). + +{:.bs-callout-info} +Starting with the release of Magento Commerce 2.3.2, Magento will assign and publish indexed Common Vulnerabilities and Exposures (CVE) numbers with each security bug reported to us by external parties. This allows users of Magento Commerce to more easily identify unaddressed vulnerabilities in their deployment. You can learn more about CVE identifiers at [CVE](https://cve.mitre.org/). + +## Fixed issues + +We have fixed hundreds of issues in the Magento 2.3.6 core code. + +### Installation, upgrade, deployment + + + +* Magento now displays an informative error message when some themes are not deployed after running `setup:static-content:deploy`. Previously, when deployment completed successfully but not all packages were deployed, Magento did not display an error. When the `setup:static-content:deploy` command is executed with enabled parallel processing and each theme requires more time to be deployed then the specified maximum execution time, this command can finish successfully, although themes are not deployed. + + + +* The **Use default** checkbox for Klarna payments (**Stores** > **Configuration** > **Sales** > **Payment methods** > **Klarna**) now remain checked as expected when website scope changes. + + + +* Upgrade no longer results in the sudden failure of the Galera cluster. Previously, the Galera cluster exited abruptly after re-indexing immediately after upgrade. During Magento upgrade, index tables are altered and the engine is changed from MEMORY to InnoDB. At this point, the content of these tables becomes out-of-sync between the nodes of the Galera cluster. [GitHub-25334](https://github.com/magento/magento2/issues/25334) + + + +* `bin/magento setup:di:compile` no longer throws a fatal error. Previously, Magento threw an error the first time you ran this command, but the second execution resulted in successful compilation. + +### AdminGWS + + + +* Magento no longer throws an error when an administrator with restricted roles for specific websites tries to create a subcategory from the Admin. + + + +* Administrative users with limited role scope can now modify alt text, and Magento saves those values. If an administrative user is not permitted to modify alt text, then the alt text box is grayed out. + + + +* Administrators with restricted access to one website only in a multi-site deployment can now preview a Scheduled Update for that website. Previously, the staging preview used the default store by default, and if the user did not have access to the default store, Magento threw an exception. + +### Amazon Pay + +* Clicking **Return to standard checkout** just before completing checkout with Amazon Pay now returns the shopper to the checkout page that displays all payment methods available to the shopper. Previously, no payment methods were displayed. + +### Analytics + + + +* CSV files that are generated by `analytics_collect_data` are now properly escaped. Previously, these files were not generated with the correct escaping, which prevented the generation of Inventory reports. + + + +* Magento successfully generates advance reporting data files and sends them as expected to Inventory on deployments with split databases. Previously, Magento did not generate or send the `quotes.csv` file to Inventory, and as a result, Inventory did not generate the expected reports. + +### Backend + + + +* The Products in the Comparison List and the Recently Compared Products features now work as expected. Previously, when the comparison list was expanded, Magento did not display products, even though the section indicated that the list contained products. + +### Bundle products + + + +* Re-importing bundle products now works as expected. Previously, the second import did not change the `catalog_product_relation` table, and the storefront did not display the bundled products because parent-child product relations were not generated correctly. + + + +* Magento no longer sets prices for fixed-price bundle product child items in quotes. + +### Cache + + + +* `X-Magento-Tags` headers no longer exceed the size permitted by the HTTP specification. Previously, category pages that contain many products return an `X-Magento-Tag` header that resulted in a 503 error. + +### Cart and checkout + + + +* The **State/Province/Region** input box is now enabled as expected on **My account** > **Address Book** > **Add new address**. + + + +* Custom address attributes are now included as expected in the form displayed for Payment step of the checkout workflow. + + + +* The shipping method estimator now works as expected when custom address attributes are present on the shipping step of the checkout workflow. Previously, Magento displayed this error message: `{"message":"Error occurred during \"custom_attributes\" processing. A custom attribute is specified with a missing attribute code. Verify the code and try again."}` [GitHub-27505](https://github.com/magento/magento2/issues/27505) + + + +* Custom customer address attributes fields are now displayed as expected in the storefront checkout workflow. + + + +* Shoppers can now purchase a virtual gift card using PayPal Braintree without defining a shipment address. Previously, Magento threw an error. + + + +* Magento now displays the waiting/spinning icon while prices are updated on the cart. + + + +* Merchants can now enable **Apply to Shipping Amount** in the Action tab of **Marketing** > **Cart Price Rules** > **Add New Rule** when **Fixed amount discount for whole cart** is applied. [GitHub-24422](https://github.com/magento/magento2/issues/24422) + +### Catalog + + + +* Merchants with multiple websites can now use the REST API to create and update products while preserving image and image-role inheritance. Previously, when a merchant used the REST API to create and update products, and a product was updated for store view, the default image roles were loaded and saved for that store view. As a result, the store-view image roles stopped inheriting from the default scope after update. + + + +* Magento now successfully updates attributes labeled `Product Type`. Previously, because the `product_type` attribute is reserved in Magento core code, Magento displayed this message when you tried to update it: `An attribute with the same code (product_type) already exists.` + + + +* Problems with product sort order on the storefront have been resolved. Previously, when Magento indexed product prices, it occasionally set a configurable product’s `min_price` and `max_price` to 0 in the `catalog_product_index_price` table, which affected price sort order on the storefront. + + + +* Shoppers can now re-order an invoiced order of a product with customizable options as expected. Previously, Magento threw this error when a shopper tried to re-order: `{"0":"The product's required option(s) weren't entered. Make sure the options are entered and try again`. + + + +* Magento now displays all re-enabled products in the storefront as expected. Previously, when a product was disabled and then re-enabled, Magento did not display the product until the Varnish page cache was cleared or the store re-indexed because the page cache was not invalidated after re-enabling a product. + + + +* Magento now displays the Recently Compared Products widget only after at least one product has been deleted from a product comparison. Previously, this widget was displayed immediately after a shopper added a product for comparison. + + + +* You can now successfully save an image to a category from the Admin. Previously, after you saved the image, part of the URL was missing, and you couldn’t re-open the image. + + + +* The **Product in Websites** checkbox of the new product page is now enabled by default for restricted administrative users in multi-site deployments. Previously, the checkbox for the non-default website was not preselected, and if the administrator left the checkbox unselected, Magento displayed an error message. + + + +* The **Price** condition in Page Builder now works as expected for configurable products. + + + +* Saving a category now flushes only the block cache that is related to this category. Previously, Magento flushed cache for all category blocks. + + + +* Magento now correctly represents Arabic thousands grouping and Arabic decimal separator symbols. Previously, Arabic symbols were trimmed. [GitHub-26676](https://github.com/magento/magento2/issues/26676) + + + +* Consecutive asynchronous price updates no longer interfere with each other and correct status is assigned to each operation. Previously, if an asynchronous price update failed, all subsequent asynchronous price updates will fail until the corresponding queue consumer is restarted. + + + +* Changes introduced by an earlier bug fix that resulted in HTML errors on the product list page have been reverted. + +### Catalog Rule + + + +* Product and catalog caches now expire as scheduled. Previously, caches expired daily because `сron` ran the `catalogrule_apply_all` task once daily, which re-indexed all catalog rules and dependent indexers, and cleared the cache for all products and categories. + +### CMS content + + + +* Magento now throws an error when a merchant creates a CMS page with the same URL as the Company Structure page. Previously, Magento displayed the CMS page instead of the Company Structure page. + +### Configurable products + + + +* Admin users accounts created from an admin account with a restricted scope can now create a configurable product with attributes as expected. Previously, Magento threw this error: `Notice: Undefined index: value_index in 23develop/app/code/Magento/ConfigurableProduct/Helper/Product/Options/Factory.php on line 101`. + + + +* Magento no longer links a simple product to a configurable product when the API call to link these products fails. + + + +* Pagination problems with the Configurable Product Edit Current Variations list have been corrected. + +### Custom customer attributes + + + +* The labels for address fields in the checkout workflow and the address book have been edited for consistency. + + + +* Magento no longer throws an error when you include an empty customer attribute field in the **Forms to Use In** field while creating a Company account on the storefront. Previously, Magento threw this error: `PHP Fatal error: Uncaught TypeError: Argument 2 passed to Magento\Eav\Model\Attribute\Data\Text::validateLength() must be of the type string, null given`. + +### Customer + + + +* The **State/Province** fields are now populated as expected on the Edit Address page (**My Account** > **Address book**). + + + +* Customer group is no longer automatically changed for a customer who is assigned to a Company when you edit the customer on the Customer grid. + + + +* Magento no longer resets a customer’s customer group to the default when a customer saves their account information. + + + +* Saving a deleted customer from the Admin now generates an error message only. Previously, Magento displayed a blank page and generated a report that contained this string: `"0":"No such entity with customerId = 3","1":"#1 Magento\\Customer\\Model CustomerRegistry->retrieve() called at [app\/code\/Magento\/Customer\/Model\/ResourceModel\/CustomerRepository.php:340"`. + + + +* Magento now honors customer group settings when you create a new customer from the Admin in a multi-site deployment. + + + +* The validation logic associated with the **Date of Birth** field of the Customer Registration form no longer triggers a JavaScript error. + + + +* The Admin view of a customer cart now displays all the products that were added to the cart from multiple websites in a multi-website deployment. Previously, when a customer added a product to their cart from a non-default website, the product was not displayed in the Admin even when **Share customer account** was set to **Global**. + + + +* The **Invalid Form Key. Please refresh the page** text string on the login page is now translated as expected. + + + +* Magento now displays the **Credit memo** button after the partial refund of an order. Previously, Magento did not display this button after you created a partial refund, and you could not create a credit memo for the rest of the order. + + + +* The shopping cart that is accessed from the Admin customer details page now includes only products from the selected customer’s quote. Previously, this cart listed all items in the `quote_item` table. + + + +* Customer creation from the Admin now honors the default customer group setting as expected. + + + +* The `PHPSessionId` is now changed as expected after a customer logs out and then logs back in. + + + +* Data scripts are no longer re-run whenever you attempt to upgrade the database by running `bin/magento setup:upgrade`. Previously, upgrade scripts were re-run unnecessarily, which affected performance. [GitHub-19469](https://github.com/magento/magento2/issues/19469) + +### Customer segment + + + +* Administrators with the correct permissions can now access Advanced Reporting and Segment Reports. + + + +* We’ve improved the performance of editing and saving customer segments that contain large numbers of customers (more than three million). Previously, when you created or edited a customer segment that contained many customers, Magento threw a 500 error. + +### Directory + + + +* The Default State dropdown menu is now populated by data that is based on the allowed countries that have been assigned to the selected website when you configure a value for the **Default Tax Destination Calculation** field. Previously, this dropdown listed the countries that were assigned to the default website. + + + +* The format of the State/Province drop-down menu is now consistent across the Admin. + +### dotdigital + +* dotdigital now has a Content Security Policy whitelist for specific domains used by this module. + +* Contacts are no longer resubscribed when their `last_subscribed_at` value is `null`. + +* Deletion of automation enrollments and abandoned carts from their respective report grids now works as expected. + +* Handling of the API response dotdigital receives when processing resubscribes has been improved. + +* dotdigital now catches exceptions that are thrown by `unserialize()` to protect against unserializable data being stored for custom attributes. + +### Downloadable + + + +* Clicking on a downloadable product's **Sample** button from the Admin product page now downloads a sample as expected. Previously, when you clicked **Sample**, Magento displayed this error: `The product that was requested doesn't exist. Verify the product and try again`. + + + +* You can now use an import file to update downloadable products in bulk by SKU and description. Previously, validation errors occurred, and import failed. + + + +* Administrators with restricted permissions to Catalog can now create a downloadable product. Previously, these administrators could not create a downloadable product, and Magento threw an error. + +### Dynamic block (formerly banner) + + + +* Table title now matches the data table (as expected) when you create a dynamic block and add a related catalog price rule. + +### Email + + + +* Customers are no longer redirected away from the current website when they report a forgotten password in multi-site deployments where customer accounts are shared globally. Previously, customers were redirected to the website on which the account was created. + + + +* Order confirmation emails sent to customers now include the list of ordered items as expected. Previously, when you created an email template in the Admin by loading and saving the default template, emails generated from this template did not include the list of ordered items. [GitHub-26882](https://github.com/magento/magento2/issues/26882) + +### Frameworks + + + +* `sales_order_shipment_track_save_commit_after` is now triggered as expected when you use the REST API to create a shipment. + + + +* We have improved the performance of the `Magento\Framework\App\DeploymentConfig\Reader::load` function. Previously, when a request was made to Magento, this function was called repetitively, which resulted in `config.php` and `env.php config` files being loaded each time the method was called. + + + +* Magento no longer throws the following fatal error when Redis uses all allowed memory: `report.CRITICAL: OOM command not allowed when used memory > 'maxmemory'.` + +### General fixes + + + +* An expired persistent session is now renewed as expected when the shopper logs back in. + + + +* Merchants can now unassign products from categories as expected. Previously, Magento threw an error similar to this error: `Could not save product "4" with position 0 to category 3`. + + + +* MAP (minimum advertised price ) now works as expected for group products. + + + +* New CMS pages are now added as expected to a website’s store page hierarchy. + + + +* Magento no longer throws an exception when a shopper tries to unset the persistence cookie after beginning checkout and then navigating to the storefront home page. Previously, when the shopper clicked the **Not you?** link on the home page, Magento threw this exception: `The shipping address is missing. Set the address and try again`. [GitHub-24218](https://github.com/magento/magento2/issues/24218) + + + +* You can now use the `PUT /V1/products/:sku` endpoint to update links to YouTube videos. Previously, Magento displayed a thumbnail for the video, but the video player did not load when you clicked the **Play** button. [GitHub-23194](https://github.com/magento/magento2/issues/23194) + + + +* You can now use `app/etc/env.php` to change the message broker from MYSQL to AMQP. + +### Gift cards + + + +* Gift Card Accounts now capture order numbers as expected. Previously, the **More information** field in the History tab for the selected gift account did not display order IDs. + + + +* Using a comma as a decimal separator now works as expected. Previously, the comma separator ignored decimal values. + + + +* Gift cards are now displayed as expected on the mini cart. Previously, Magento rendered HTML objects as text. + +### Google Tag Manager + + + +* Magento no longer throws a JavaScript error during checkout when the **Cookie Restriction Mode** setting and Google Tag Manager are enabled. + +### GroupedProducts + + + +* Merchants can now successfully send email to a shopper that contains a credit memo for an order that includes a grouped product. Previously, Magento threw a fatal error when the merchant clicked **Send Email**. [GitHub-25617](https://github.com/magento/magento2/issues/25617) + + + +* The products query now returns all expected data for grouped products. Previously, `product_links` was an empty array. + +### Image + + + +* Magento now displays PNG images as expected after upload. + +### Import/export + + + +* When an imported product has `qty` set to 0 but `is_in_stock set` to 1 in the CSV file, the product is not listed on the category page, and the product details page lists it as out-of-stock. Previously, products with these values were visible on the storefront after import. + + + +* The `error_report.csv` file now downloads with content and is available inside the `var/import_history/` directory as expected. Previously, this file was not generated after import. + + + +* You can now hide product images on the storefront during import. + + + +* Scheduled imports now run as expected when the import CSV file contains a byte order mark (BOM). + + + +* Imported CSV files now capture related product information as expected. Previously, related product information was not consistently uploaded the first time the CSV file was imported. + + + +* Magento now successfully imports customer addresses that contains a region for a country that does not have defined regions. Previously, Magento threw this error: `Please enter a valid region`. + + + +* Magento now displays the customer list as expected after automatic re-indexing. Previously, although manually running `bin/magento index:reindex` worked, the customer grid did not display customer information after automatic re-indexing. + + + +* Magento no longer creates duplicate SKUs in the Admin when products are imported by CSV file. + + + +* Magento no longer throws an error during import when imported data includes a `swatch_image` store-view key has a value of `no_selection`. Previously, Magento threw this error: `Imported resource (image) could not be downloaded from external resource due to timeout or access permissions in row(s): 1`. [GitHub-25026](https://github.com/magento/magento2/issues/25026) + + + +* Deadlocks no longer occur when the import process executes a bulk insert and the re-index process simultaneously executes a large insert from select. Previously, Magento displayed this error: `PDOException: SQLSTATE[40001]: Serialization failure: 1213 Deadlock found when trying to get lock`. [GitHub-8933](https://github.com/magento/magento2/issues/8933) + + + +* Customer address `region_id` is no longer assigned a `NULL` value when you import customer addresses using a CSV file (`entity type = "customer address"` and `import behavior = "add/update”`) from which certain field values have been deleted. + +### Klarna + +* Magento now correctly refunds a Klarna order when the order contains a product that has been deleted. Previously, Magento threw a fatal error. + +* Default configuration settings for Klarna remain set as expected when you change the configuration scope to a different website. Previously, changing scope resulted in clearing all Klarna settings. + +* The checkout page now opens as expected when a shopper’s cart contains a downloadable product. Previously, the checkout page was blank. + +* Fraud notification messages have been improved. + +### Layered navigation + + + +* Layered navigation, item count, and pagination are now correct when products are not assigned to a category and the **Display Out of Stock Products** setting is enabled. + +### Media storage + + + +* `var/resource_config.json` is no longer regenerated whenever an image is requested by `get.php`. Previously, this file was rewritten on each call to `get.php`. + +### Newsletter + + + +* Exporting the Newsletter Subscribers list using the `Excel XML` option now results in the export of all rows as expected. Previously, exported data included only the page pagination value, not all rows. + + + +* Magento no longer throws an error when a user subscribes to a newsletter and reCAPTCHA for the newsletter is disabled for the website scope. Previously, when **Use invisible ReCaptcha in newsletter** was set to the default (**yes**) in the default configuration scope but set to **no** in the Main Website scope, the storefront subscription attempt failed, and Magento displayed this error: `Incorrect ReCaptcha validation`. + + + +* Shoppers subscribing to a newsletter now receive only an email confirming their subscription. Previously, shoppers received two emails: a subscription confirmation and an unsubscribed notification. + +### Payment methods + + + +* Registered shoppers can now checkout successfully when their only defined payment method is Braintree. Previously, the **Place Order** button remained disabled after the shopper entered the correct credit card details unless the shopper had unchecked the **My billing and shipping address are the same** checkbox. + + + +* Magento now completes Payflow Pro payments successfully when the shopper’s name contains accented letters. Previously, payment did not complete, and Magento logged this error: `report.CRITICAL: String to be escaped was not valid UTF-8 or could not be converted:`. + + + +* Magento no longer saves credit card numbers when the **Save for later use** checkbox on the payment section of the checkout workflow is not selected. + + + +* Magento now displays a message that prompts you to enter mandatory credit card data when you click **Submit** for an Admin order without entering valid payment information. Previously, the Braintree card validator did not throw an error when payment input fields were invalid, and the page became inactive. + + + +* A shopper whose address book contains multiple addresses can now change shipping addresses during checkout when paying with Braintree. Previously, Magento displayed JavaScript code in the address field when the shopper selected a different address from the drop-down menu on the checkout workflow. + + + +* You can now successfully use PayPal Express to pay for an order when persistent checkout cart is enabled and the **Clear Persistence on Sign Out** setting is set to **no**. Previously, Magento redirected you to the Login page. + +### Product alert + + + +* Unsubscribe actions for product alerts now work as expected. Previously, when a customer clicked on the **Click here to stop alerts for this product** link, Magento displayed a 404 error. + + + +* Product stock alert unsubscribe now works when a user’s session expired. Previously, when you clicked on the **Click here to stop alerts for this product** link, Magento displayed a 404 error. + +### Return Merchandise Authorizations (RMA) + + + +* Magento now displays either an informative error message or all available products when an administrator with restricted permissions tries to create a return for products that are no longer in the assigned website scope. Previously, Magento displayed a blank page. + + + +* You can now delete tracking and shipping information for an RMA when JavaScript bundling is enabled. + +### Reviews + + + +* Magento no longer returns a 500 error when you try to open a Category page on the storefront when **Layout = Product – Full Width** has been set from the Design tab of the Category page. + +### Sales + + + +* Order update emails that are sent to customers now include the correct order status. Previously, if an order status changed from `processing` to another state, the order email did not reflect the status change. + + + +* The New Shipment email generated by `POST /V1/order/:orderId/ship` now contains the same shipping and customer information as shipments that are created manually from the Admin. Previously, this email did not contain the customer name, tracking information, products ordered, and other order information. + + + +* Magento no longer assigns a status of `Complete` after invoicing an order that requires zero payment. + + + +* Localized region names that are displayed on the storefront Order page are now correctly translated. Previously, the region name was not based on the specified locale unless it was edited in the Admin. + + + +* Email sent to customers that contain partial invoices now includes accurate item subtotals. Previously, the subtotal in this email contained was the total of the ordered quantity, not the total amount of the invoiced quantity. + + + +* `sales_clean_quotes` now efficiently deletes all expired quotes. Previously, `sales_clean_quotes` jobs did not complete due to memory issues, and Magento threw a fatal error. + + + +* Magento now assigns the correct Group ID when a new customer creates an order in multi-site deployments. Previously, Magento applied the settings from the default customer group. + + + +* Administrators with restricted permissions that include view permission for credit memos, invoices, and shipments can now view invoices and shipments from the Orders page as expected. Previously, when a restricted administrator tried to view an order, Magento displayed this error: `Something went wrong with processing the default view and we have restored the filter to its original state`. + + + +* Magento no longer displays an error when a customer adds a quantity of a product to their cart that exceeds half of the existing product stock but does not exceed the total stock. Previously, under these circumstances, Magento displayed this error: `The requested qty is not available`. [GitHub-24365](https://github.com/magento/magento2/issues/24365) + +### Sales Rule + + + +* Coupon codes that have been applied based on shipping method are no longer applied when a shopper changes shipping method. Previously, Magento did not clear coupon codes when shoppers switched shipping methods. + + + +* Coupon discounts are now calculated correctly when you add a bundle product to the cart after the coupon was applied. Previously, it was incorrectly calculated. + + + +* Shoppers cannot apply a coupon code more frequently than the **Uses Per Customer** setting permits. Previously, if a shopper had multiple browser windows open and placed multiple orders concurrently, each order received the discount, even though the **Uses Per Customer** setting had a value of **1**. + + + +* The order summary now displays the correct discount amount when a cart price rule has been applied. Previously, the rule did not correctly round amounts when calculating shipping discounts. + + + +* Magento now displays category trees as expected when you try to create or edit a Cart Price rule. Previously, selecting a category in the Condition section while creating or editing a rule resulted in JavaScript errors. + + + +* Magento now applies fixed-amount, whole-cart discounts correctly for orders being shipped to multiple addresses. Previously, this type of discount was applied multiple times when a customer checked out an order using Check Out with Multiple Addresses. [GitHub-25834](https://github.com/magento/magento2/issues/25834) + +### Search + + + +* Elasticsearch results now include the correct values for each store view’s attribute options. If a Dropdown or Multiple Select attribute has a different option value in the non-default store view than in the default store view, Elasticsearch now indexes that value or returns the product with that value in the results. Previously, Elasticsearch didn’t index that value or return the product with that value in the results. + + + +* Price sorting now works correctly for out-of-stock configurable products. + + + +* The performance of catalog search has improved. Disabling **Enable Search Suggestions** (**Stores** > **Configuration** > **Catalog** > **Catalog Search**) works as expected. Previously, Magento queried the MySQL search_query table instead of Elasticsearch for autocomplete search suggestions. [GitHub-25534](https://github.com/magento/magento2/issues/25534) + +### Sitemap + + + +* The sitemap generation process now uses custom URL rewrites as expected. Previously, the generated `sitemap.xml` did not include custom URLs. + + + +* Encoded values are now correctly escaped in `sitemap.xml`. Previously, when you included encoded characters in a product name or image title, the generated sitemap was invalid. + +### Staging + + + +* You can now access the CMS Preview page when editing a CMS page with a scheduled update and re-assigning it from the default store to another store. Previously, Magento threw a 404 error when you clicked on the preview link. + + + +* Magento no longer changes a product’s date values when an administrator edits other product features. Previously, Magento set the `news_from_date` value to the current date and removed the `news_to_date` value every time the product was saved. + + + +* Editing an existing schedule no longer results in a duplicated schedule. Previously, when you edited an existing schedule, Magento duplicated it, and when you tried to open the duplicate schedule, Magento threw an error. + + + +* Sending 0 with the `/rest//V1/products/special-price-information` special price endpoint now saves the price and returns the schedule as expected. + +### Store + + + +* The store-view switcher now works correctly when the store views have different base URLs. Users are now redirected to the corresponding page, category, or product page on the new store view. + + + +* You can now export `config.php` and default website code from one website to install and configure Magento on a second website in a multi website deployment. Previously, the default store and view disappeared after the export, and errors occurred on the storefront. + + + +* Magento installation now completes successfully, and stores are created as expected, when store configuration is pre-defined in `config.php`. + +### Swatches + + + +* You can now use the `POST /V1/products/attributes` to add a `text_swatch` type of product attribute. Previously, Magento did not add the option to the attribute and displayed an error. + + + +* Magento now displays tier prices as expected for configurable product variations. + +### Target Rule + + + +* Loading of product details pages has been optimized. Indices for database tables that optimize target rule conditions queries for many cases have been added. + + + +* Product rules now apply to out-of-stock products as expected. Previously, Magento did not display out-of-stock products in the related products list even when the .the rule was configured to display out-of-stock products. + + + +* The related product block that is displayed for a product on the storefront now displays the products that have met the criteria defined in the Related Product Rule. Previously, Magento did not display any related products. + +### Theme + + + +* Shoppers can now successfully change the number of orders per page in the order history multiple times. Previously, when a shopper changed this value more than once, Magento rendered the results page as expected for only the first value entered. + + + +* Themes that are added in User Agent Rules are now affected as expected when you run `bin/magento catalog:images:resize`. Previously, only themes that were assigned to stores were affected when `bin/magento catalog:images:resize` was run. + +### Translation and locales + + + +* Inline translation now works as expected on the storefront when Admin **Stores** > **Configuration** > **Advanced** > **Developer** > **Translate Inline** > **Enabled for Storefront** is set. + +### UI + + + +* Magento now preserves an attribute’s value when you move the attribute from one group to another. + +### URL rewrites + + + +* Moving a store view to a different website no longer resets URLs. Previously, Magento incorrectly regenerated CMS and product URL rewrites. + + + +* Magento no longer changes a product’s URL in all stores when a merchant changes a product URL for one store in a multi-site deployment. Previously, if a merchant changed a URL key for one store view, Magento changed the URL for all stores. + +### Vertex + +* Taxes are now calculated as expected on orders that contain both physical and virtual products. + +* Vertex now processes products with a price of 0 as expected. Previously, administrators could not create an order with a total of 0. + +* The checkout process now successfully progresses from shipping to payment when using Internet Explorer 11.x with Vertex. Previously, Magento threw a JavaScript error when the shopper tried to proceed from shipping to payment. + +* The process of submitting an invoice to Vertex has been been optimized, and performance has improved. + +* Tax details are now included as expected in the database. + +* Log rotation now works as expected in production mode. + +* Vertex now calculates taxes correctly when a default ZIP code is provided for tax calculation. + +* Updating the billing address with Vertex's recommendation no longer updates the fields on the shipping address. + +### Visual Merchandiser + + + +* You can now add products to a category when implementing Level 2 cache. + +### Web API framework + + + +* Invoices created using the REST API now include gift card information similar to the invoices that are created in the Admin. Previously, using POST `\{host}/rest/default/V1/order/:id/invoice` to invoice the order did not display the gift card code or gift card amount applied. + + + +* The `default_sort_by` attribute now takes `String` instead of `String[]`. + + + +* You can now use POST `http:///rest/V1/categories/` to create or update a category. Previously, Magento did not save the value if the `default_sort_by` value was set as an array. When the `default_sort_by` value was set as a string, Magento threw this error: `Error occurred during \"custom_attributes\" processing. Attribute \"default_sort_by\" has invalid value. The \"string\" value's type is invalid. The \"string[]\" type was expected. Verify and try again.` + + + +* Bulk order updates using `PUT /async/bulk/V1/orders/:id` now update the order status as expected. Previously, Magento threw this error: `report.ERROR: Property "AdditionalInformation" does not have accessor method "setAdditionalInformation" in class "Magento\Sales\Api\Data\OrderPaymentInterface".` + +### Website Restriction + + + +* Merchants can now create company users from the Company Users in My Account and Company Structure pages in deployments where **Access Restriction** is enabled and **Restriction Mode** is set to **Sales: Login Only**. Previously, Magento threw this error when a merchant tried to create a user: `Can not register new customer due to restrictions are enabled`. + + + +* Clicking the **Track shipping** button for an order from the Admin now results in tracking information being displayed in a pop-up window as expected. Previously, this link took the administrator to the Log in page. + + + +* Enabling Website Restriction no longer blocks Varnish ESI requests for customers logged in as guest. Previously, these guests could not access the home page main menu. + +### Wishlist + + + +* Administrators can now configure a configurable product that has been added by a customer to a wishlist from a non-default store. Previously, when the customer had also added the configurable product from a non-default store, Magento threw an error. + + + +* You can now use the wishlist search feature to find a product in a public wish list in deployments where support for multiple wishlists is enabled. Previously, after a customer used the wishlist search to find a product, selecting it, and clicking **Add to cart**, Magento did not add the product to the cart and displayed this error: `Invalid Form Key. Please refresh the page`. + + + +* The **Add to cart** button on the shared wishlist page now works as expected for anonymous, guest, and users who are not logged in. + + + +* You can now navigate and modify wishlists from the cart in deployments running Internet Explorer 11.x. Previously, you could not create, edit, or move a wishlist in this environment. + +## Known issues + +**Issue**: The new CAPTCHA feature for checkout does not work as expected on the Place Order page when using third-party payment providers. Merchants running Magento 2.3.6 or 2.4.1 who have enabled CAPTCHA protection on the Place Order storefront page will see this error when checking out using a third-party payment provider such as PayPal: `Please provide CAPTCHA code and try again`. A fix for this issue be available in the next few weeks, and will be included in our next quarterly patch (Q12021). Please contact Support for additional information. + +**Issue**: Merchants upgrading their stores from 2.3.5-p2 to 2.3.6 will note that two module versions downgrade. These messages reflect the incomplete delivery of two security fixes to the 2.3.x quarterly patches. These fixes for low severity issues are included in Magento 2.3.5-p2, 2.4.1, and 2.4.0-p1 but are missing from Magento 2.3.6. No hot fixes will be provided. These fixes will be merged along with the other security fixes in Magento 2.3.6-p1, which is scheduled for Q12021. + +**Issue**: Merchants cannot log in to dotdigital from the Admin when dotdigital is enabled. See the [It's impossible to login in the dotdigital via admin panel when dotdigital account is enabled](https://support.magento.com/hc/en-us/articles/360050092291) Knowledge Base article. + +### System requirements + +Our technology stack is built on PHP and MySQL. For more information, see [System Requirements]({{site.baseurl}}/system-requirements.html). + +### Installation and upgrade instructions + +You can install {{site.data.var.ee}} 2.3.6 using Composer. + +## Migration tool kits + +The Data Migration Tool helps transfer existing Magento 1.x store data to Magento 2.x. This command-line interface includes verification, progress tracking, logging, and testing functions. For installation instructions, see [Install the Data Migration Tool]({{page.baseurl}}/migration/migration-tool-install.html). Consider exploring or contributing to the [Magento Data Migration repository](https://github.com/magento/data-migration-tool). + +The [Code Migration Toolkit](https://github.com/magento/code-migration) helps transfer existing Magento 1.x store extensions and customizations to Magento 2.x. The command-line interface includes scripts for converting Magento 1.x modules and layouts. diff --git a/src/guides/v2.3/release-notes/open-source-2-3-6.md b/src/guides/v2.3/release-notes/open-source-2-3-6.md new file mode 100644 index 00000000000..d942f350ce3 --- /dev/null +++ b/src/guides/v2.3/release-notes/open-source-2-3-6.md @@ -0,0 +1,702 @@ +--- +group: release-notes +title: Magento Open Source 2.3.6 Release Notes +--- + +Magento Open Source 2.3.6 offers significant platform upgrades, substantial security changes, and performance improvements. + +This release includes over 160 functional fixes to the core product and over 15 security enhancements + +{:.bs-callout-info} + +Quarterly releases may contain backward-incompatible changes (BIC). Magento 2.3.6 contains minor backward-incompatible changes. To review minor backward-incompatible changes, see [BIC reference]({{page.baseurl}}/release-notes/backward-incompatible-changes/reference.html). (Major backward-incompatible issues are described in [BIC highlights]({{page.baseurl}}/release-notes/backward-incompatible-changes/index.html). Not all releases introduce major BICs.) + +We are adding support for PHP 7.4.x in Magento 2.3.7, which is scheduled for release in Q2 2021. This support will introduce breaking changes to Magento 2.3.x deployments. How will this affect your store? See the [PHP 7.4 support for Magento 2.3.x release line](https://community.magento.com/t5/Magento-DevBlog/PHP-7-4-support-for-Magento-2-3-x-release-line/ba-p/458946) DevBlog post. + +## Highlights + +Look for the following highlights in this release: + +### Substantial security enhancements + +This release includes the following security enhancements: + +#### Over 15 security enhancements that help close remote code execution (RCE) and cross-site scripting (XSS) vulnerabilities + +No confirmed attacks related to these issues have occurred to date. However, certain vulnerabilities can potentially be exploited to access customer information or take over administrator sessions. Most of these issues require that an attacker first obtains access to the Admin. As a result, we remind you to take all necessary steps to protect your Admin, including but not limited to these efforts: IP allowlisting, [two-factor authentication]({{page.baseurl}}/security/two-factor-authentication.html), use of a VPN, the use of a unique location rather than `/admin`, and good password hygiene. See [Security Updates Available for Magento](https://helpx.adobe.com/security/products/magento/apsb20-59.html) for a discussion of these fixed issues. + +#### Security enhancements and fixes to core code + +This release includes over 15 security fixes and platform security improvements. Additional security enhancements include: + +**CAPTCHA** protection has been added to the following product areas: + +* Place Order storefront page and REST and GraphQL endpoints +* Payment-related REST and GraphQL endpoints. + + CAPTCHA protection for these additional pages is disabled by default. It can be enabled on the Admin in the same way that other pages covered by CAPTCHA are. This protection has been added as an anti-brute force mechanism to protect stores against carding attacks. See [CAPTCHA](https://docs.magento.com/user-guide/stores/security-captcha.html). + +{:.bs-callout-info} +Starting with the release of Magento Commerce 2.3.2, Magento will assign and publish indexed Common Vulnerabilities and Exposures (CVE) numbers with each security bug reported to us by external parties. This allows users of Magento Commerce to more easily identify unaddressed vulnerabilities in their deployment. + +## Fixed issues + +We have fixed hundreds of issues in the Magento 2.3.6 core code. + +### Installation, upgrade, deployment + + + +* Magento now displays an informative error message when some themes are not deployed after running `setup:static-content:deploy`. Previously, when deployment completed successfully but not all packages were deployed, Magento did not display an error. When the `setup:static-content:deploy` command is executed with enabled parallel processing and each theme requires more time to be deployed then the specified maximum execution time, this command can finish successfully, although themes are not deployed. + + + +* The **Use default** checkbox for Klarna payments (**Stores** > **Configuration** > **Sales** > **Payment methods** > **Klarna**) now remain checked as expected when website scope changes. + + + +* Upgrade no longer results in the sudden failure of the Galera cluster. Previously, the Galera cluster exited abruptly after re-indexing immediately after upgrade. During Magento upgrade, index tables are altered and the engine is changed from MEMORY to InnoDB. At this point, the content of these tables becomes out-of-sync between the nodes of the Galera cluster. [GitHub-25334](https://github.com/magento/magento2/issues/25334) + + + +* `bin/magento setup:di:compile` no longer throws a fatal error. Previously, Magento threw an error the first time you ran this command, but the second execution resulted in successful compilation. + +### Amazon Pay + +* Clicking **Return to standard checkout** just before completing checkout with Amazon Pay now returns the shopper to the checkout page that displays all payment methods available the shopper. Previously, no payment methods were displayed. + +### Analytics + + + +* CSV files that are generated by `analytics_collect_data` are now properly escaped. Previously, these files were not generated with the correct escaping, which prevented the generation of Inventory reports. + + + +* Magento successfully generates advance reporting data files and sends them as expected to Inventory on deployments with split databases. Previously, Magento did not generate or send the `quotes.csv` file to Inventory, and as a result, Inventory did not generate the expected reports. + +### Backend + + + +* The Products in the Comparison List and the Recently Compared Products features now work as expected. Previously, when the comparison list was expanded, Magento did not display products, even though the section indicated that the list contained products. + +### Bundle products + + + +* Re-importing bundle products now works as expected. Previously, the second import did not change the `catalog_product_relation` table, and the storefront did not display the bundled products because parent-child product relations were not generated correctly. + + + +* Magento no longer sets prices for fixed-price bundle product child items in quotes. + +### Cache + + + +* `X-Magento-Tags` headers no longer exceed the size permitted by the HTTP specification. Previously, category pages that contain many products return an `X-Magento-Tag` header that resulted in a 503 error. + +### Cart and checkout + + + +* The **State/Province/Region** input box is now enabled as expected on **My account** > **Address Book** > **Add new address**. + + + +* Custom address attributes are now included as expected in the form that is displayed for the Payment step of the checkout workflow. + + + +* The shipping method estimator now works as expected when custom address attributes are present on the shipping step of the checkout workflow. Previously, Magento displayed this error message:`{"message":"Error occurred during \"custom_attributes\" processing. A custom attribute is specified with a missing attribute code. Verify the code and try again."}` [GitHub-27505](https://github.com/magento/magento2/issues/27505) + + + +* Custom customer address attributes fields are now displayed as expected in the storefront checkout workflow. + + + +* Shoppers can now purchase a virtual gift card using PayPal Braintree without defining a shipment address. Previously, Magento threw an error. + + + +* Magento now displays the waiting/spinning icon while prices are updated on the cart. + + + +* Merchants can now enable **Apply to Shipping Amount** in the Action tab of **Marketing** > **Cart Price Rules** > **Add New Rule** when **Fixed amount discount for whole cart** is applied. [GitHub-24422](https://github.com/magento/magento2/issues/24422) + +### Catalog + + + +* Merchants with multiple websites can now use `POST /V1/products` to create and update products while preserving image and image-role inheritance. Previously, when a merchant used the REST API to create and update products, and a product was updated for store view, the default image roles were loaded and saved for that store view. As a result, the store-view image roles stopped inheriting from the default scope after update. + + + +* Magento now successfully updates attributes labeled `Product Type`. Previously, because the `product_type` attribute is reserved in Magento core code, Magento displayed this message when you tried to update it: `An attribute with the same code (product_type) already exists.` + + + +* Problems with product sort order on the storefront have been resolved. Previously, when Magento indexed product prices, it occasionally set a configurable product’s `min_price` and `max_price` to 0 in the `catalog_product_index_price` table, which affected price sort order on the storefront. + + + +* Shoppers can now re-order an invoiced order of a product with customizable options as expected. Previously, Magento threw this error when a shopper tried to re-order: `{"0":"The product's required option(s) weren't entered. Make sure the options are entered and try again`. + + + +* Magento now displays all re-enabled products in the storefront as expected. Previously, when a product was disabled and then re-enabled, Magento did not display the product until the Varnish page cache was cleared or the store re-indexed because the page cache was not invalidated after re-enabling a product. + + + +* Magento now displays the Recently Compared Products widget only after at least one product has been deleted from a product comparison. Previously, this widget was displayed immediately after a shopper added a product for comparison. + + + +* You can now successfully save an image to a category from the Admin. Previously, after you saved the image, part of the URL was missing, and you could not re-open the image. + + + +* The **Product in Websites** checkbox of the new product page is now enabled by default for restricted administrative users in multi-site deployments. Previously, the checkbox for the non-default website was not preselected, and if the administrator left the checkbox unselected, Magento displayed an error message. + + + +* The **Price** condition in Page Builder now works as expected for configurable products. + + + +* Saving a category now flushes only the block cache that is related to this category. Previously, Magento flushed cache for all category blocks. + + + +* Magento now correctly represents Arabic thousands grouping and Arabic decimal separator symbols. Previously, Arabic symbols were trimmed. [GitHub-26676](https://github.com/magento/magento2/issues/26676) + + + +* Consecutive asynchronous price updates no longer interfere with each other and correct status is assigned to each operation. Previously, if an asynchronous price update failed, all subsequent asynchronous price updates will fail until the corresponding queue consumer is restarted. + + + +* Changes introduced by an earlier bug fix that resulted in HTML errors on the product list page have been reverted. + +### Catalog Rule + + + +* Product and catalog caches now expire as scheduled. Previously, caches expired daily because `сron` ran the `catalogrule_apply_all` task once daily, which re-indexed all catalog rules and dependent indexers, and cleared the cache for all products and categories. + +### CMS content + + + +* Magento now throws an error when a merchant creates a CMS page with the same URL as the Company Structure page. Previously, Magento displayed the CMS page instead of the Company Structure page. + +### Configurable products + + + +* Admin users accounts created from an admin account with a restricted scope can now create a configurable product with attributes as expected. Previously, Magento threw this error: `Notice: Undefined index: value_index in 23develop/app/code/Magento/ConfigurableProduct/Helper/Product/Options/Factory.php on line 101`. + + + +* Magento no longer links a simple product to a configurable product when the API call to link these products fails. + + + +* Pagination problems with the Configurable Product Edit Current Variations list have been corrected. + +### Customer + + + +* The **State/Province** fields are now populated as expected on the Edit Address page (**My Account** > **Address book**). + + + +* Customer group is no longer automatically changed for a customer who is assigned to a Company when you edit the customer on the Customer grid. + + + +* Magento no longer resets a customer’s customer group to the default when a customer saves their account information. + + + +* Saving a deleted customer from the Admin now generates an error message only. Previously, Magento displayed a blank page and generated a report that contained this string: `"0":"No such entity with customerId = 3","1":"#1 Magento\\Customer\\Model CustomerRegistry->retrieve() called at [app\/code\/Magento\/Customer\/Model\/ResourceModel\/CustomerRepository.php:340"`. + + + +* Magento now honors customer group settings when you create a new customer from the Admin in a multi-site deployment. + + + +* The validation logic associated with the **Date of Birth** field of the Customer Registration form no longer triggers a JavaScript error. + + + +* The Admin view of a customer cart now displays all the products that were added to the cart from multiple websites in a multi-website deployment. Previously, when a customer added a product to their cart from a non-default website, the product was not displayed in the Admin even when **Share customer account** was set to **Global**. + + + +* The **Invalid Form Key. Please refresh the page** text string on the login page is now translated as expected. + + + +* Magento now displays the **Credit memo** button after the partial refund of an order. Previously, Magento did not display this button after you created a partial refund, and you could not create a credit memo for the rest of the order. + + + +* The shopping cart that is accessed from the Admin customer details page now includes only products from the selected customer’s quote. Previously, this cart listed all items in the `quote_item` table. + + + +* Customer creation from the Admin now honors the default customer group setting as expected. + + + +* The `PHPSessionId` is now changed as expected after a customer logs out and then logs back in. + + + +* Data scripts are no longer re-run whenever you attempt to upgrade the database by running `bin/magento setup:upgrade`. Previously, upgrade scripts were re-run unnecessarily, which affected performance. [GitHub-19469](https://github.com/magento/magento2/issues/19469) + +### Directory + + + +* The Default State dropdown menu is now populated by data that is based on the allowed countries that have been assigned to the selected website when you configure a value for the **Default Tax Destination Calculation** field. Previously, this dropdown listed the countries that were assigned to the default website. + + + +* The format of the State/Province drop-down menu is now consistent across the Admin. + +### dotdigital + +* dotdigital now has a Content Security Policy whitelist for specific domains used by this module. + +* Contacts are no longer resubscribed when their `last_subscribed_at` value is `null`. + +* Deletion of automation enrollments and abandoned carts from their respective report grids now works as expected. + +* Handling of the API response dotdigital receives when processing resubscribes has been improved. + +* dotdigital now catches exceptions that are thrown by `unserialize()` to protect against unserializable data being stored for custom attributes. + +### Downloadable + + + +* Clicking on a downloadable product's **Sample** button from the Admin product page now downloads a sample as expected. Previously, when you clicked **Sample**, Magento displayed this error: `The product that was requested doesn't exist. Verify the product and try again`. + + + +* You can now use an import file to update downloadable products in bulk by SKU and description. Previously, validation errors occurred, and import failed. + + + +* Administrators with restricted permissions to Catalog can now create a downloadable product. Previously, these administrators could not create a downloadable product, and Magento threw an error. + +### Email + + + +* Customers are no longer redirected away from the current website when they report a forgotten password in multi-site deployments where customer accounts are shared globally. Previously, customers were redirected to the website on which the account was created. + + + +* Order confirmation emails sent to customers now include the list of ordered items as expected. Previously, when you created an email template in the Admin by loading and saving the default template, emails generated from this template did not include the list of ordered items. [GitHub-26882](https://github.com/magento/magento2/issues/26882) + +### Frameworks + + + +* `sales_order_shipment_track_save_commit_after` is now triggered as expected when you use the REST API to create a shipment. + + + +* We have improved the performance of the `Magento\Framework\App\DeploymentConfig\Reader::load` function. Previously, when a request was made to Magento, this function was called repetitively, which resulted in `config.php` and `env.php config` files being loaded each time the method was called. + + + +* Magento no longer throws the following fatal error when Redis uses all allowed memory: `report.CRITICAL: OOM command not allowed when used memory > 'maxmemory'.` + +### General fixes + + + +* An expired persistent session is now renewed as expected when the shopper logs back in. + + + +* Merchants can now unassign products from categories as expected. Previously, Magento threw an error similar to this error: `Could not save product "4" with position 0 to category 3`. + + + +* MAP (minimum advertised price ) now works as expected for group products. + + + +* New CMS pages are now added as expected to a website’s store page hierarchy. + + + +* Magento no longer throws an exception when a shopper tries to unset the persistence cookie after beginning checkout and then navigating to the storefront home page. Previously, when the shopper clicked the **Not you?** link on the home page, Magento threw this exception: `The shipping address is missing. Set the address and try again`. [GitHub-24218](https://github.com/magento/magento2/issues/24218) + + + +* You can now use the `PUT /V1/products/:sku` endpoint to update links to YouTube videos. Previously, Magento displayed a thumbnail for the video, but the video player did not load when you clicked the **Play** button. [GitHub-23194](https://github.com/magento/magento2/issues/23194) + + + +* You can now use `app/etc/env.php` to change the message broker from MYSQL to AMQP. + +### GroupedProducts + + + +* Merchants can now successfully send email to a shopper that contains a credit memo for an order that includes a grouped product. Previously, Magento threw a fatal error when the merchant clicked **Send Email**. [GitHub-25617](https://github.com/magento/magento2/issues/25617) + + + +* The products query now returns all expected data for grouped products. Previously, `product_links` was an empty array. + +### Image + + + +* Magento now displays PNG images as expected after upload. + +### Import/export + + + +* When an imported product has `qty` set to 0 but `is_in_stock set` to 1 in the CSV file, the product is not listed on the category page, and the product details page lists it as out-of-stock. Previously, products with these values were visible on the storefront after import. + + + +* The `error_report.csv` file now downloads with content and is available inside the `var/import_history/` directory as expected. Previously, this file was not generated after import. + + + +* You can now hide product images on the storefront during import. + + + +* Imported CSV files now capture related product information as expected. Previously, related product information was not consistently uploaded the first time the CSV file was imported. + + + +* Magento now successfully imports customer addresses that contains a region for a country that does not have defined regions. Previously, Magento threw this error: `Please enter a valid region`. + + + +* Magento now displays the customer list as expected after automatic re-indexing. Previously, although manually running `bin/magento index:reindex` worked, the customer grid did not display customer information after automatic re-indexing. + + + +* Magento no longer creates duplicate SKUs in the Admin when products are imported by CSV file. + + + +* Magento no longer throws an error during import when imported data includes a `swatch_image` store-view key has a value of `no_selection`. Previously, Magento threw this error: `Imported resource (image) could not be downloaded from external resource due to timeout or access permissions in row(s): 1`. [GitHub-25026](https://github.com/magento/magento2/issues/25026) + + + +* Deadlocks no longer occur when the import process executes a bulk insert and the re-index process simultaneously executes a large insert from select. Previously, Magento displayed this error: `PDOException: SQLSTATE[40001]: Serialization failure: 1213 Deadlock found when trying to get lock`. [GitHub-8933](https://github.com/magento/magento2/issues/8933) + + + +* Customer address `region_id` is no longer assigned a `NULL` value when you import customer addresses using a CSV file (`entity type = "customer address"` and `import behavior = "add/update”`) from which certain field values have been deleted. + +### Klarna + +* Magento now correctly refunds a Klarna order when the order contains a product that has been deleted. Previously, Magento threw a fatal error. + +* Default configuration settings for Klarna remain set as expected when you change the configuration scope to a different website. Previously, changing scope resulted in clearing all Klarna settings. + +* The checkout page now opens as expected when a shopper’s cart contains a downloadable product. Previously, the checkout page was blank. + +* Fraud notification messages have been improved. + +### Media storage + + + +* `var/resource_config.json` is no longer regenerated whenever an image is requested by `get.php`. Previously, this file was rewritten on each call to `get.php`. + +### Newsletter + + + +* Exporting the Newsletter Subscribers list using the `Excel XML` option now results in the export of all rows as expected. Previously, exported data included only the page pagination value, not all rows. + + + +* Magento no longer throws an error when a user subscribes to a newsletter and reCAPTCHA for the newsletter is disabled for the website scope. Previously, when **Use invisible ReCaptcha in newsletter** was set to the default (**yes**) in the default configuration scope but set to **no** in the Main Website scope, the storefront subscription attempt failed, and Magento displayed this error: `Incorrect ReCaptcha validation`. + + + +* Shoppers subscribing to a newsletter now receive only an email confirming their subscription. Previously, shoppers received two emails: a subscription confirmation and an unsubscribed notification. + +### Payment methods + + + +* Registered shoppers can now checkout successfully when their only defined payment method is Braintree. Previously, the **Place Order** button remained disabled after the shopper entered the correct credit card details unless the shopper had unchecked the **My billing and shipping address are the same** checkbox. + + + +* Magento now completes Payflow Pro payments successfully when the shopper’s name contains accented letters. Previously, payment did not complete, and Magento logged this error: `report.CRITICAL: String to be escaped was not valid UTF-8 or could not be converted:`. + + + +* Magento no longer saves credit card numbers when the **Save for later use** checkbox on the payment section of the checkout workflow is not selected. + + + +* Magento now displays a message that prompts you to enter mandatory credit card data when you click **Submit** for an Admin order without entering valid payment information. Previously, the Braintree card validator did not throw an error when payment input fields were invalid, and the page became inactive. + + + +* A shopper whose address book contains multiple addresses can now change shipping addresses during checkout when paying with Braintree. Previously, Magento displayed JavaScript code in the address field when the shopper selected a different address from the drop-down menu on the checkout workflow. + + + +* You can now successfully use PayPal Express to pay for an order when persistent checkout cart is enabled and the **Clear Persistence on Sign Out** setting is set to **no**. Previously, Magento redirected you to the Login page. + +### Product alert + + + +* Unsubscribe actions for product alerts now work as expected. Previously, when a customer clicked on the **Click here to stop alerts for this product** link, Magento displayed a 404 error. + + + +* Product stock alert unsubscribe now works when a user’s session expired. Previously, when you clicked on the **Click here to stop alerts for this product** link, Magento displayed a 404 error. + +### Reviews + + + +* Magento no longer returns a 500 error when you try to open a Category page on the storefront when **Layout = Product – Full Width** has been set from the Design tab of the Category page. + +### Sales + + + +* Order update emails that are sent to customers now include the correct order status. Previously, if an order status changed from `processing` to another state, the order email did not reflect the status change. + + + +* The New Shipment email generated by `POST /V1/order/:orderId/ship` now contains the same shipping and customer information as shipments that are created manually from the Admin. Previously, this email did not contain the customer name, tracking information, products ordered, and other order information. + + + +* Magento no longer assigns a status of `Complete` after invoicing an order that requires zero payment. + + + +* Localized region names that are displayed on the storefront Order page are now correctly translated. Previously, the region name was not based on the specified locale unless it was edited in the Admin. + + + +* Email sent to customers that contain partial invoices now includes accurate item subtotals. Previously, the subtotal in this email contained was the total of the ordered quantity, not the total amount of the invoiced quantity. + + + +* `sales_clean_quotes` now efficiently deletes all expired quotes. Previously, `sales_clean_quotes` jobs did not complete due to memory issues, and Magento threw a fatal error. + + + +* Magento now assigns the correct Group ID when a new customer creates an order in multi-site deployments. Previously, Magento applied the settings from the default customer group. + + + +* Administrators with restricted permissions that include view permission for credit memos, invoices, and shipments can now view invoices and shipments from the Orders page as expected. Previously, when a restricted administrator tried to view an order, Magento displayed this error: `Something went wrong with processing the default view and we have restored the filter to its original state`. + + + +* Magento no longer displays an error when a customer adds a quantity of a product to their cart that exceeds half of the existing product stock but does not exceed the total stock. Previously, under these circumstances, Magento displayed this error: `The requested qty is not available`. [GitHub-24365](https://github.com/magento/magento2/issues/24365) + +### Sales Rule + + + +* Coupon codes that have been applied based on shipping method are no longer applied when a shopper changes shipping method. Previously, Magento did not clear coupon codes when shoppers switched shipping methods. + + + +* Coupon discounts are now calculated correctly when you add a bundle product to the cart after the coupon was applied. Previously, it was incorrectly calculated. + + + +* Shoppers cannot apply a coupon code more frequently than the **Uses Per Customer** setting permits. Previously, if a shopper had multiple browser windows open and placed multiple orders concurrently, each order received the discount, even though the **Uses Per Customer** setting had a value of **1**. + + + +* The order summary now displays the correct discount amount when a cart price rule has been applied. Previously, the rule did not correctly round amounts when calculating shipping discounts. + + + +* Magento now displays category trees as expected when you try to create or edit a Cart Price rule. Previously, selecting a category in the Condition section while creating or editing a rule resulted in JavaScript errors. + + + +* Magento now applies fixed-amount, whole-cart discounts correctly for orders being shipped to multiple addresses. Previously, this type of discount was applied multiple times when a customer checked out an order using Check Out with Multiple Addresses. [GitHub-25834](https://github.com/magento/magento2/issues/25834) + +### Search + + + +* Elasticsearch results now include the correct values for each store view’s attribute options. If a Dropdown or Multiple Select attribute has a different option value in the non-default store view than in the default store view, Elasticsearch now indexes that value or returns the product with that value in the results. Previously, Elasticsearch did not index that value or return the product with that value in the results. + + + +* Price sorting now works correctly for out-of-stock configurable products. + + + +* The performance of catalog search has improved. Disabling **Enable Search Suggestions** (**Stores** > **Configuration** > **Catalog** > **Catalog Search**) works as expected. Previously, Magento queried the MySQL search_query table instead of Elasticsearch for autocomplete search suggestions. [GitHub-25534](https://github.com/magento/magento2/issues/25534) + +### Sitemap + + + +* The sitemap generation process now uses custom URL rewrites as expected. Previously, the generated `sitemap.xml` did not include custom URLs. + + + +* Encoded values are now correctly escaped in `sitemap.xml`. Previously, when you included encoded characters in a product name or image title, the generated sitemap was invalid. + +### Store + + + +* The store-view switcher now works correctly when the store views have different base URLs. Users are now redirected to the corresponding page, category, or product page on the new store view. + + + +* You can now export `config.php` and default website code from one website to install and configure Magento on a second website in a multi-website deployment. Previously, the default store and view disappeared after the export, and errors occurred on the storefront. + + + +* Magento installation now completes successfully, and stores are created as expected, when store configuration is pre-defined in `config.php`. + +### Swatches + + + +* You can now use `POST /V1/products/attributes` to add a `text_swatch` type of product attribute. Previously, Magento did not add the option to the attribute and displayed an error. + +### Target Rule + + + +* Loading of product details pages has been optimized. Indices for database tables that optimize target rule conditions queries for many cases have been added. + +### Theme + + + +* Shoppers can now successfully change the number of orders per page in the order history multiple times. Previously, when a shopper changed this value more than once, Magento rendered the results page as expected for only the first value entered. + + + +* Themes that are added in User Agent Rules are now affected as expected when you run `bin/magento catalog:images:resize`. Previously, only themes that were assigned to stores were affected when `bin/magento catalog:images:resize` was run. + +### Translation and locales + + + +* Inline translation now works as expected on the storefront when Admin **Stores** > **Configuration** > **Advanced** > **Developer** > **Translate Inline** > **Enabled for Storefront** is set. + +### UI + + + +* Magento now preserves an attribute’s value when you move the attribute from one group to another. + +### URL rewrites + + + +* Moving a store view to a different website no longer resets URLs. Previously, Magento incorrectly regenerated CMS and product URL rewrites. + + + +* Magento no longer changes a product’s URL in all stores when a merchant changes a product URL for one store in a multi-site deployment. Previously, if a merchant changed a URL key for one store view, Magento changed the URL for all stores. + +### Vertex + +* Taxes are now calculated as expected on orders that contain both physical and virtual products. + +* Vertex now processes products with a price of 0 as expected. Previously, administrators could not create an order with a total of 0. + +* The checkout process now successfully progresses from shipping to payment when using Internet Explorer 11.x with Vertex. Previously, Magento threw a JavaScript error when the shopper tried to proceed from shipping to payment. + +* The process of submitting an invoice to Vertex has been been optimized, and performance has improved. + +* Tax details are now included as expected in the database. + +* Log rotation now works as expected in production mode. + +* Vertex now calculates taxes correctly when a default ZIP code is provided for tax calculation. + +* Updating the billing address with Vertex's recommendation no longer updates the fields on the shipping address. + +### Visual Merchandiser + + + +* You can now add products to a category when implementing Level 2 cache. + +### Web API framework + + + +* Invoices created using the REST API now include gift card information similar to the invoices that are created in the Admin. Previously, using POST `/V1/order/:id/invoice` to invoice the order did not display the gift card code or gift card amount applied. + + + +* The `default_sort_by` attribute now takes `String` instead of `String[]`. + + + +* You can now use POST `http:///rest/V1/categories/` to create or update a category. Previously, Magento did not save the value if the `default_sort_by` value was set as an array. When the `default_sort_by` value was set as a string, Magento threw this error: `Error occurred during \"custom_attributes\" processing. Attribute \"default_sort_by\" has invalid value. The \"string\" value's type is invalid. The \"string[]\" type was expected. Verify and try again.` + + + +* Bulk order updates using `PUT /async/bulk/V1/orders/:id` now update the order status as expected. Previously, Magento threw this error: `report.ERROR: Property "AdditionalInformation" does not have accessor method "setAdditionalInformation" in class "Magento\Sales\Api\Data\OrderPaymentInterface".` + +### Wishlist + + + +* Administrators can now configure a configurable product that has been added by a customer to a wishlist from a non-default store. Previously, when the customer had also added the configurable product from a non-default store, Magento threw an error. + + + +* The **Add to cart** button on the shared wishlist page now works as expected for anonymous, guest, and users who are not logged in. + +## Known issues + +**Issue**: The new CAPTCHA feature for checkout does not work as expected on the Place Order page when using third-party payment providers. Merchants running Magento 2.3.6 or 2.4.1 who have enabled CAPTCHA protection on the Place Order storefront page will see this error when checking out using a third-party payment provider such as PayPal: `Please provide CAPTCHA code and try again`. A fix for this issue be available in the next few weeks, and will be included in our next quarterly patch (Q12021). Please contact Support for additional information. + +**Issue**: Merchants upgrading their stores from 2.3.5-p2 to 2.3.6 will note that two module versions downgrade. These messages reflect the incomplete delivery of two security fixes to the 2.3.x quarterly patches. These fixes for low severity issues are included in Magento 2.3.5-p2, 2.4.1, and 2.4.0-p1 but are missing from Magento 2.3.6. No hot fixes will be provided. These fixes will be merged along with the other security fixes in Magento 2.3.6-p1, which is scheduled for Q12021. + +**Issue**: Merchants cannot log in to dotdigital from the Admin when dotdigital is enabled. See the [It's impossible to login in the dotdigital via admin panel when dotdigital account is enabled](https://support.magento.com/hc/en-us/articles/360050092291) Knowledge Base article. + +### System requirements + +Our technology stack is built on PHP and MySQL. For more information, see [System Requirements]({{site.baseurl}}/system-requirements.html). + +### Installation and upgrade instructions + +You can install {{site.data.var.ce}} 2.3.6 using Composer. + +## Migration toolkits + +The Data Migration Tool helps transfer existing Magento 1.x store data to Magento 2.x. This command-line interface includes verification, progress tracking, logging, and testing functions. For installation instructions, see [Install the Data Migration Tool]({{page.baseurl}}/migration/migration-tool-install.html). Consider exploring or contributing to the [Magento Data Migration repository](https://github.com/magento/data-migration-tool). + +The [Code Migration Toolkit](https://github.com/magento/code-migration) helps transfer existing Magento 1.x store extensions and customizations to Magento 2.x. The command-line interface includes scripts for converting Magento 1.x modules and layouts. diff --git a/src/guides/v2.3/rest/protected-endpoints.md b/src/guides/v2.3/rest/protected-endpoints.md new file mode 100644 index 00000000000..5f7154d1f47 --- /dev/null +++ b/src/guides/v2.3/rest/protected-endpoints.md @@ -0,0 +1,30 @@ +--- +group: rest-api +title: Protected endpoints +functional_areas: + - Integration +--- + +If CAPTCHA is enabled on pages requiring shopper input, then in most cases, the corresponding REST endpoints that send requests to the Magento server must include the shopper's CAPTCHA response. Supply the shopper's response in the HTTP `X-Captcha` header. The exception to this policy is that you do not send the CAPTCHA response if you specify an integration authorization token in the header of the REST endpoint. + +The following table lists the forms that can be configured to require CAPTCHA. Go to **Stores** > **Configuration** > **Customers** > **Customer Configuration** > **CAPTCHA** > **Forms** to enable or disable CAPTCHA on these forms. + +Form name | REST endpoint +--- | --- +Add Gift Card Code | `POST /V1/carts/mine/giftCards`
`POST /V1/carts/guest-carts/:cartId/giftCards` +Applying Coupon Code | `PUT /V1/carts/:cartId/coupons/:couponCode`
`PUT /V1/guest-carts/:cartId/coupons/:couponCode` +Change password | `PUT /V1/customers/me/password` +Checkout/Placing Order | `POST /V1/carts/mine/payment-information`
`POST /V1/carts/mine/set-payment-information`
`POST /V1/guest-carts/:cartId/payment-information`
`POST /V1/guest-carts/:cartId/set-payment-information` +Contact Us | Not applicable +Create company | `POST /V1/company` +Create user | `POST /V1/customers` +Forgot password | `POST /V1/customers/resetPassword`
`PUT /V1/customers/password` +Login | `POST /V1/integration/customer/token` +Payflow Pro | Not applicable +Send to Friend Form | Not applicable +Share Wishlist Form | Not applicable + +{:.ref-header} +Related topics + +[Construct a request]({{page.baseurl}}/get-started/gs-web-api-request.html diff --git a/src/guides/v2.4/comp-mgr/cli/cli-upgrade.md b/src/guides/v2.4/comp-mgr/cli/cli-upgrade.md index 0d2323ad704..6faa476fca2 100644 --- a/src/guides/v2.4/comp-mgr/cli/cli-upgrade.md +++ b/src/guides/v2.4/comp-mgr/cli/cli-upgrade.md @@ -148,16 +148,6 @@ composer require magento/product-community-edition=2.3.3-p1 --no-update composer update ``` -1. Clean the Magento cache. - - ```bash - bin/magento cache:clean - ``` - -## Clean up - -Manually clear caches and generated content. - 1. Clear the `var/` and `generated/` subdirectories: ```bash diff --git a/src/guides/v2.4/extension-dev-guide/build/module-file-structure.md b/src/guides/v2.4/extension-dev-guide/build/module-file-structure.md deleted file mode 120000 index 2429aa03f67..00000000000 --- a/src/guides/v2.4/extension-dev-guide/build/module-file-structure.md +++ /dev/null @@ -1 +0,0 @@ -../../../v2.3/extension-dev-guide/build/module-file-structure.md \ No newline at end of file diff --git a/src/guides/v2.4/extension-dev-guide/build/module-file-structure.md b/src/guides/v2.4/extension-dev-guide/build/module-file-structure.md new file mode 100644 index 00000000000..220e575ddeb --- /dev/null +++ b/src/guides/v2.4/extension-dev-guide/build/module-file-structure.md @@ -0,0 +1,105 @@ +--- +group: php-developer-guide +subgroup: 03_Build +title: Create your component file structure +--- + +In this section, we go over the different file structures for the component types. The Magento application looks for the files that make up a component *including configuration files* in particular places inside the component file structure. Follow the predefined file structures for the component type you are developing to ensure that it works as expected. + +{% include php-dev/component-root-2.3.md %} + +### Module file structure + +A typical file structure for a Magento 2 [module](https://glossary.magento.com/module) can look like the following: + +![Module File Structure](../images/pdg-config-file-structure.png){:width="300px"} + +#### Common directories +{:.no_toc} +Following are some common module directories: + +* `Block`: contains [PHP](https://glossary.magento.com/php) view classes as part of Model View Controller(MVC) vertical implementation of module logic. +* `Controller`: contains PHP controller classes as part of MVC vertical implementation of module logic. +* `etc`: contains configuration files; in particular, `module.xml`, which is required. +* `Model`: contains PHP model classes as part of MVC vertical implementation of module logic. +* `Setup`: contains classes for module database structure and data setup which are invoked when installing or upgrading. +* `ViewModel`: contains PHP model classes as part of a model-view-viewmodel (MVVM) implementation. It allows developers to offload features and business logic from block classes into separate classes that are easier to maintain, test, and reuse. + +#### Additional directories +{:.no_toc} +Additional folders can be added for configuration and other ancillary functions for items like [plugin-ins]({{ page.baseurl }}/extension-dev-guide/plugins.html), localization, and [layout](https://glossary.magento.com/layout) files. + +* `Api`: contains any PHP classes exposed to the [API](https://glossary.magento.com/api). +* `Console`: contains CLI commands. For more info, see [Add CLI commands]({{ page.baseurl }}/extension-dev-guide/cli-cmds/cli-add.html). +* `Cron`: contains cron job definitions. +* `CustomerData`: contains section files. +* `Helper`: contains aggregated functionality. +* `i18n`: contains localization files. +* `Observer`: contains files for executing commands from the listener. +* `Plugin`: contains any needed [plug-ins]({{ page.baseurl }}/extension-dev-guide/plugins.html). +* `UI`: contains data generation files. +* `view`: contains view files, including static view files, design templates, email templates, and layout files. + +### Theme file structure + +A typical [theme](https://glossary.magento.com/theme) file structure can look like the following: + +```tree +├── composer.json +├── etc +│   └── view.xml +├── i18n +│   └── en_US.csv +├── LICENSE_AFL.txt +├── LICENSE.txt +├── media +│   └── preview.jpg +├── registration.php +└── web + ├── css + │   ├── email.less + │   ├── print.less + │   ├── source + │   │   ├── _actions-toolbar.less + │   │   ├── _breadcrumbs.less + │   │   ├── _buttons.less + │   │   ├── components + │   │   │   └── _modals_extend.less + │   │   ├── _icons.less + │   │   ├── _layout.less + │   │   ├── _theme.less + │   │   ├── _tooltips.less + │   │   ├── _typography.less + │   │   └── _variables.less + │   ├── _styles.less + │   ├── styles-l.less + │   └── styles-m.less + ├── images + │   └── logo.svg + └── js + ├── navigation-menu.js + └── theme.js +``` + +#### Common directories +{:.no_toc} +Typical theme directories are: + +* `etc`: Contains configuration files such as the `view.xml` file which contains image configurations for all images and thumbnails. +* `i18n`: [Translation dictionaries]({{ page.baseurl }}/frontend-dev-guide/translations/xlate.html#m2devgde-xlate-dictionaries), if any. +* `media`: Theme preview images (screen capture of your theme) can be put in here. +* `web`: Optional directory that contains [static files](https://glossary.magento.com/static-files) organized into the following subdirectories: + + * `css/source`: Contains a theme's `less` configuration files that invoke mixins for global elements from the [Magento UI library]({{ page.baseurl }}/frontend-dev-guide/css-topics/theme-ui-lib.html), and the `theme.less` file that overrides the default variables values. + * `css/source/lib`: Contains view files that override the [UI library]({{ page.baseurl }}/frontend-dev-guide/css-topics/theme-ui-lib.html) files stored in `lib/web/css/source/lib`. + * `fonts`: The folder to place the different fonts for your theme. + * `images`: Static images folder. + * `js`: The folder for your JavaScript files. + +For more details on the theme folder structure, see [Magento theme structure]({{ page.baseurl }}/frontend-dev-guide/themes/theme-structure.html). + +{% include php-dev/lang-pack-file-struct.md %} + +**Next:** + +[Register your component]({{ page.baseurl }}/extension-dev-guide/build/component-registration.html) diff --git a/src/guides/v2.4/extension-dev-guide/message-queues/config-mq.md b/src/guides/v2.4/extension-dev-guide/message-queues/config-mq.md deleted file mode 120000 index 13af79f5272..00000000000 --- a/src/guides/v2.4/extension-dev-guide/message-queues/config-mq.md +++ /dev/null @@ -1 +0,0 @@ -../../../v2.3/extension-dev-guide/message-queues/config-mq.md \ No newline at end of file diff --git a/src/guides/v2.4/extension-dev-guide/message-queues/config-mq.md b/src/guides/v2.4/extension-dev-guide/message-queues/config-mq.md new file mode 100644 index 00000000000..3c4d8c0eedb --- /dev/null +++ b/src/guides/v2.4/extension-dev-guide/message-queues/config-mq.md @@ -0,0 +1,284 @@ +--- +group: php-developer-guide +title: Configure message queues +functional_areas: + - Configuration + - System + - Setup +--- + +The message queue topology is a {{site.data.var.ce}} feature. It can be included as part of {{site.data.var.ce}} installation, or you can add it to existing modules. + +### Overview + +Configuring the message queue topology involves creating and modifying the following configuration files in the `/etc` directory: + +* [`communication.xml`](#communicationxml) - Defines aspects of the message queue system that all communication types have in common. +* [`queue_consumer.xml`](#queueconsumerxml) - Defines the relationship between an existing queue and its consumer. +* [`queue_topology.xml`](#queuetopologyxml) - Defines the message routing rules and declares queues and exchanges. +* [`queue_publisher.xml`](#queuepublisherxml) - Defines the exchange where a topic is published. + +### Use Cases + +Depending on your needs, you may only need to create and configure `communication.xml` and one or two of these files. + +* If you only want to publish to an existing queue created by a 3rd party system, you will only need the `queue_publisher.xml` file. +* If you only want to consume from an existing queue, you will only need the `queue_consumer.xml` config file. +* In cases where you want to configure the local queue and publish to it for 3rd party systems to consume, you will need the `queue_publisher.xml` and `queue_topology.xml` files. +* When you want to configure the local queue and consume messages published by 3rd party system, you will need the `queue_topology.xml` and `queue_consumer.xml` files. + +### `communication.xml` {#communicationxml} + +The `/etc/communication.xml` file defines aspects of the message queue system that all communication types have in common. This release supports AMQP and database connections. + +### Sample `communication.xml` file +{:.no_toc} + +The following sample defines two synchronous topics. The first topic is for RPC calls. The second uses a custom service interface. + +```xml + + + + + + + + + +``` + +### topic element +{:.no_toc} +Topic configuration is flexible in that you can switch the transport layer for topics at deployment time. These values can be overwritten in the `env.php` file. + +The `name` parameter is required. The topic definition must include either a `request` or a `schema`. Use `schema` if you want to implement a custom service interface. Otherwise, specify `request`. If `request` is specified, then also specify `response` if the topic is synchronous. + +Parameter | Description +--- | --- +name | A string that uniquely identifies the topic. A topic name should be a series of strings that are separated by periods. The leftmost string should be the most general, and each string afterward should narrow the scope. For example, to describe actions for tending to pets, you might create names such as `cat.white.feed` and `dog.retriever.walk`. Wildcards are not supported in the `communication.xml` file. +request | Specifies the data type of the topic. +response | Specifies the format of the response. This parameter is required if you are defining a synchronous topic. Omit this parameter if you are defining an asynchronous topic. +schema | The interface that describes the structure of the message. The format must be `\Api\::`. + +### handler element +{:.no_toc} +The `handler` element specifies the class where the logic for handling messages exists and the method it executes. + +Parameter | Description +--- | --- +name | A string that uniquely defines the handler. The name can be derived from the topic name if the handler is specific to the topic. If the handler provides more generic capabilities, name the handler so that it describes those capabilities. +type | The class or interface that defines the handler. +method | The method this handler executes. +disabled | Determines whether this handler is disabled. The default value is `false`. + +### `queue_consumer.xml` {#queueconsumerxml} +The `queue_consumer.xml` file contains one or more `consumer` elements: + +#### Example `queue_consumer` file +{:.no_toc} + +```xml + + + + + + + +``` + +#### `consumer` element +{:.no_toc} + +| Attribute | Description | +| ----------------------------- | ----------- | +| name (required) | The name of the consumer. | +| queue (required) | Defines the queue name to send the message to. | +| handler | Specifies the class and method that processes the message. The value must be specified in the format `\Module\::`.| +| consumerInstance | The Magento class name that consumes the message | +| connection | For AMQP connections, the connection name must match the `connection` attribute in the `queue_topology.xml` file. Otherwise, the connection name must be `db`. | +| maxMessages | Specifies the maximum number of messages to consume.| +| maxIdleTime | Defines the maximum waiting time in seconds for a new message from the queue. If no message was handled within this period of time, the consumer exits. Default value: `null`| +| sleep | Specifies time in seconds to sleep before checking if a new message is available in the queue. Default value is `null` which equals to 1 second.| +| onlySpawnWhenMessageAvailable | Boolean value (`1` or `0` only) that identifies whether a consumer should be spawned only if there is available message in the related queue. Default value: `null`| + +{:.bs-callout-info} +The `maxIdleTime` and `sleep` attributes will be handled only by consumers that were fired with a defined `maxMessages` parameter. The `onlySpawnWhenMessageAvailable` attribute is only checked and validated by the `\Magento\MessageQueue\Model\Cron\ConsumersRunner` class that runs consumer processes with cron. + +It is possible to set `onlySpawnWhenMessageAvailable` globally by setting `queue/only_spawn_when_message_available` equal to `0` or `1` in `app/etc/env.php`. By default, the global value of `only_spawn_when_message_available` for all consumers is `1`. +The `onlySpawnWhenMessageAvailable` consumer attribute has higher priority than the global `queue/only_spawn_when_message_available` setting in `app/etc/env.php`. Therefore, it is possible to overwrite the global `only_spawn_when_message_available` value by setting `onlySpawnWhenMessageAvailable` equal to `0` or `1` for each consumer in `queue_consumer.xml`. + +The `onlySpawnWhenMessageAvailable` and `maxIdleTime` attributes may be combined if a specific consumer needs to run infrequently. The consumer will only spawn when it is needed, and it terminates itself if it is inactive for a certain period. +It is also possible to combine the global `queue/only_spawn_when_message_available` setting in `app/etc/env.php` with the `queue/consumers-wait-for-messages` setting. That means that the consumer will run only when there is an available message in the queue, and it will be terminated when there are no more messages to process. This combination of settings is recommended to save server resources such as CPU usage. + +The [`consumers-wait-for-messages`]({{page.baseurl}}/install-gde/install/cli/install-cli-subcommands-consumers.html) option works similar to `onlySpawnWhenMessageAvailable`. When it is set to `false`, the consumer processes all messages and exits if there are no available messages in the queue. +The problem is that every time the cron job `cron_consumers_runner` runs, it spawns a new consumer process, the consumer checks if messages are available, and it terminates itself if there are no messages. +Meanwhile, the `onlySpawnWhenMessageAvailable` attribute first checks if there are available messages, and it spawns a new consumer process only if there are messages. It means that it does not spawn unneeded processes which take up memory, live for a very short period, and then disappear. + +#### Consumer handlers + +A handler is a class and method that processes a message. Magento has two ways to define a handler for messages. + +* In the `` element of the module's `communication.xml` file +* In the `handler` attribute of the module's `queue_consumer.xml` file + +The following conditions determine how these handlers are processed: + +* If the consumer in `queue_consumer.xml` does not have a `consumerInstance` defined, then the system uses the default consumer: `Magento\Framework\MessageQueue\Consumer`. In this case, if the `` element contains the `handler` attribute, then it will be used, and the `` element in `communication.xml` will be ignored. +* If the consumer in `queue_consumer.xml` has a `consumerInstance` defined, then the specific consumer implementation defines how the `handler` is used. + +Magento provides these consumers out-of-the-box: + +| Class name | Handler in `communication.xml` will be executed? | Handler in `queue_consumer.xml` will be executed? | +| ---------------- | ----------- | ---------- | +| `Magento\Framework\MessageQueue\Consumer` | Only if not defined in `queue_consumer.xml` | Yes, if exists | +| `Magento\Framework\MessageQueue\BatchConsumer` | Only if not defined in `queue_consumer.xml` | Yes, if exists | +| `Magento\AsynchronousOperations\Model\MassConsumer` | Yes, if exists | Yes, if exists | + +### `queue_topology.xml` {#queuetopologyxml} + +The `queue_topology.xml` file defines the message routing rules and declares queues and exchanges. It contains the following elements: + +* `exchange` +* `exchange/binding` (optional) +* `exchange/arguments` (optional) +* `exchange/binding/arguments` (optional) + +#### Example `queue_topology.xml` file +{:.no_toc} + +```xml + + + + + + + value + + + + magento-log-exchange + + + + + + magento-log-exchange + + + +``` + +#### `exchange` element +{:.no_toc} + +| Attribute | Description | +| -------------- | ----------- | + name (required) | A unique ID for the exchange. + type (required) | Specifies the type of exchange. Must be `topic`. + connection (required) | For AMQP connections, a string that identifies the connection. For MySQL connections, the connection name must be `db`. + durable | Boolean value indicating whether the exchange is persistent. Non-durable exchanges are purged when the server restarts. The default is `true`. + autoDelete | Boolean value indicating whether the exchange is deleted when all queues have finished using it. The default is `false`. + internal | Boolean value. If set to true, the exchange may not be used directly by publishers, but only when bound to other exchanges. The default is `false`. + +#### `binding` element +{:.no_toc} + +The `binding` element is a subnode of the `exchange` element. + +| Attribute | Description | +| -------------- | ----------- | +| id (required) | A unique ID for this binding. | +| topic (required) | The name of a topic. You can specify an asterisk (*) or pound sign (#) as wildcards. These are described below the table.| +| destinationType (required) | Must be `queue`. | +| destination (required) | Identifies the name of a queue. | +| disabled | Determines whether this binding is disabled. The default value is `false`. | + +Example topic names that include wildcards: + +| Pattern | Description | Example matching topics | Example non-matching topics +| --- | --- | --- | --- +`*.*.*` | Matches any topic that contains exactly two periods. | `mytopic.createOrder.success`, `mytopic.updatePrice.item1` | `mytopic.createOrder`, `mytopic.createOrder.success.true` +`#`| Matches any topic name. | `mytopic`, `mytopic.createOrder.success`, `this.is.a.long.topic.name` | Not applicable +`mytopic.#` | Matches any topic name that begins with `mytopic` and has a period afterward. | `mytopic.success`, `mytopic.createOrder.error` | `new.mytopic.success`, +`*.Order.#` | There must be one string before __.Order__. There can be any number of strings (including 0) after that. | `mytopic.Order`, `mytopic.Order.Create`, `newtopic.Order.delete.success` | + +#### `arguments` element +{:.no_toc} + +The `arguments` element is an optional element that contains one or more `argument` elements. These arguments define key/value pairs that are passed to the broker for processing. + +Each `argument` definition must have the following parameters: + +| Attribute | Description | +| --------------- | ----------- | +| name | The parameter name | +| type | The data type of the value | + +The following illustrates an `arguments` block: + +```xml + + 1 + USPS + +``` + +### `queue_publisher.xml` {#queuepublisherxml} + +The `queue_publisher.xml` file defines which connection and exchange to use to publish messages for a specific topic. It contains the following elements: + +* [publisher](https://glossary.magento.com/publisher-subscriber-pattern) +* publisher/connection + +#### Example `queue_publisher.xml` file +{:.no_toc} + +```xml + + + + + + + + +``` + +#### `publisher` element +{:.no_toc} + +| Attribute | Description | +| -------------------- | ----------- | +| topic (required) | The name of the topic. | +| disabled | Determines whether this queue is disabled. The default value is `false`. | + +#### `connection` element +{:.no_toc} + +The `connection` element is a subnode of the `publisher` element. There must not be more than one enabled active connection to a publisher defined at a time. If you omit the `connection` element, the default connection of `amqp` and exchange `magento` will be used. + +| Attribute | Description | +| -------------------- | ----------- | +| name (required) | For AMQP connections, the connection name must match the `connection` attribute in the `queue_topology.xml` file. Otherwise, the connection name must be `db`. | +| exchange | The name of the exchange to publish to. The default system exchange name is `magento`. | +| disabled | Determines whether this queue is disabled. The default value is `false`. | + +{:.bs-callout-warning} +You cannot enable more than one `publisher` for each `topic`. + +### Updating `queue.xml` {#updatequeuexml} + +See [Migrate message queue configuration]({{page.baseurl}}/extension-dev-guide/message-queues/queue-migration.html) for information about upgrading from Magento 2.0 or 2.1. + +### Related Topics + +* [Message Queues Overview]({{page.baseurl}}/config-guide/mq/rabbitmq-overview.html) +* [Manage message queues with MySQL]({{page.baseurl}}/config-guide/mq/manage-message-queues.html) +* [Install RabbitMQ]({{page.baseurl}}/install-gde/prereq/install-rabbitmq.html) + + +[MySQL]: https://www.mysql.com/ +[RabbitMQ]: http://www.rabbitmq.com diff --git a/src/guides/v2.4/frontend-dev-guide/responsive-web-design/rwd_js.md b/src/guides/v2.4/frontend-dev-guide/responsive-web-design/rwd_js.md index d05feddd86a..9c91dd1d29a 100644 --- a/src/guides/v2.4/frontend-dev-guide/responsive-web-design/rwd_js.md +++ b/src/guides/v2.4/frontend-dev-guide/responsive-web-design/rwd_js.md @@ -16,9 +16,6 @@ The Blank and Luma themes use the following scripts to responsively relocate pag - [`menu.js`] - [`matchMedia.js`], used by `menu.js` -{:.bs-callout-info} -`responsive.js` no longer exists since 2.4 code-base update - The script files are located in the file system as follows: ```tree @@ -28,10 +25,6 @@ The script files are located in the file system as follows: ├── menu.js ``` -See one of the following sections for more information: - -- [menu.js](#fedg_rwd_js_nav) - ## menu.js {#fedg_rwd_js_nav} In a mobile view, on the 768px breakpoint, `menu.js` changes the navigation menu look and behavior the following way: diff --git a/src/guides/v2.4/graphql/images/klarna-payments-cart-updates.drawio b/src/guides/v2.4/graphql/images/klarna-payments-cart-updates.drawio new file mode 100644 index 00000000000..ff3e92364da --- /dev/null +++ b/src/guides/v2.4/graphql/images/klarna-payments-cart-updates.drawio @@ -0,0 +1 @@ +7V1bc+K4Ev41qdrzkJSvXB4JJonnxBAmMInzcsoYx5ibWTAB+9efryUZDJgMmQR2dpdszQa31S2p++uLZJlcqNXR8nbqTHpW2PWGF4rUXV6oxoWiyLJUwC+ixJxSUiVO8KdBVzRaEx6DxBPEtNk86HqzjYZRGA6jYLJJdMPx2HOjDZoznYaLzWav4XCz14njezuER9cZ7lKfgm7UE7PQpTX9zgv8XrSasLgzctLGgjDrOd1wkSGptQu1Og3DiH8aLavekJSX6oXz3ey5uxrY1BtHhzCYr8ZT+5tSXVRuPWfpz+Jvf75cCilvznAuJiwGG8WpBqbhfNz1SIh8oV4vekHkPU4cl+4uYHPQetFoKG6/huNIGFHWce0MA3+MCxeD9KbUIBgOq+EwnDLh6qtO/4E+i6bhwEvvjMOxJ6RlGvMf0Henns7Dm0beMkMSqrj1wpEXTWM0EXeLmmARuCyU+OVibWRZEsroZQysyYLoCGD5K9Fr3eODUP8HTKH8W02hadJvZgr132oKWf/dTFHMMUVhiG6vu8HbhkkKf84plF5jqtGl0HAFLYbea4RfTEES6e5yxkxB92R1slxz4pMvfrMeOtNtCqbAuk2pnwGFM3UFJmCQ61H45nSYHLo39TDG7HUYOVHmGlnWy1573SB7KZJhhkLzvnFGwZAMe+cN37wocJ0taBKIJt40gOUIlcaUZIz9ofewJl6v0pi0hVuBzq4z661U8BWQ1MobkFTSaJHBZKGs7mJy1fDLMVk6Y/JfjsmtMFnMg6S8C8kV35dDUj6gkPMBhcnhs1/V1MJkG2VrnlaUgnalb+hFTZWQzR9ajq9qxWPp5YCqao9e3tfzr2tL6KZ8oGaOlVjlvCLnY1FMlC/74piWF8eKB4YtzABLPO+AkDWb8HXfa7AkH9+upa4NtaqW3ws3O9XY3qorDUoargkB4B9WBPco6HZp8Ne9cBokaOykI5xh7MHYb4UTEaEE4buwcoZ0T3lBhLHNKu+G/axbilZDp+MNH8JZEAXhxhzS4d1vNVgNU8i5DqMoHImAf6gTKHucYC/YtR2wp6TNjH0srGt7sT7JRfpBKfnhie5BV11vOqN9iZ6H//936EzHDj48OPEIesSdgjMi0I47swn3FOjB96KMJ0z2+gH53Cbg89G5m/RSWLNa4x285vnXumiQ3vOc7US9hVmJ/XwhZr8en+Kuqu5G43QH6jTRWP95nvIAmkdxGU6jXuiHY2dYW1O3zJbBTN+LolhYyplHIUhrCfchi0y72IIJq9XUhOxOugVGwWIWzqfuugx7XNm4tF1x0cWDE6HRmFHgUFQfjrsV2qCj2Uy8MafcBKQ3NvzImcJJ9sj3lkH0TMKuJEVc2sR3VZA0cW0shSB2EWcuMqWjIb1XEZLG34XP1Bs6UfC2uVeYBw7Giuk6cabBJAxYfFhJfiBCpqDS1Y1ySlNLWaDtti/Jn2uvl7aAzEe8d3RXklpe/xS2Oi9clUrF9e1N5Qj0cJHvjVHPH+NKkIDJtiDmhStLfWJXTvodCuvN5YZc2F1v6KWccCUX3oHk5zYr89Ybn86oluNDeyFzrGg+HVNWdcb433zSdSLEE6jOmRI6wk6fqr5zBj1OBl2h/vAMKm+t/fTdjKqU0jYnyampp554haOcVzh/+xXOx/F/KW3hf3fn/KRLHuWAZxjngnIt/3etAdVieQtY8k+qup9y/KyuQ+GWz//h4g3F2s9EHbt8y1v5f50bHIDKd1GdgawIwpuQPYabufPp22rMM+g/2vIaRssM4qDiJd3QzytedtLP+0u7cXoMpJAOJnP91/vp/qXKruNsL1YOd5yfijq24xT2Fk+9Tf/ZV+HrecVRdRiQ4TIPs35V0h8PT5X/ZEotGtXBK4DssyyGUPjWTCA5D7B7SyEBC3SjX1/oRv46Irfa2l0gZE8IHL6a3P+QqrgqSbLPpXKWicVjPZVS9j+9/wCImM33rRTP9t9nf03Tt2PI7rZBOQcOR3tIqZ1r0l/a5JSuSqXNXU61JF/8rrucOXmxdFUuZHYKtQ1UKqXylaTKn90o1PTyttiDEubPE/1XpVQt79zIGf7/dPjrin6lldRtfKcwLUtfgf4iBXtlW/Jv5gD6AXvp58XYeTH2FYsxXdl8ZqLK8DNJLWhFrSCV1aL2i36mlq8yj7zK+kc6OfKSTc97JnN2r7N7HWev4xjupen6pnv9Tv5V2P/M81NbIvyJJn/EeV7QvrOg3TwJIKOuKhWk9U/OWVPplMvbgnIUfDyJw2Lk1KHTpeBxBsnek4aqmvPgWTspDPJ2Trdsc/QTI/r2M6BScVcteUdGjvY0vrB/L/AzZzC96Ws4HV2sDoakYVT6A3RKlUtnNIFkpUqT6nZJ49OwO6fDI4w0mQxjpuD5JBxnN5TPJ0q+8kTJyisOP1Gyu1u5en/iNIj9/Hs+v3J+RD6fH/nbnx/5ANr/qgMixQNOHJ/+jSGsAHa9viif9NxYcf+jz2P6fdoHNT4oITIpoodhMPYuU+2wu1T66ru9qJnownv60NuE56Dz+wadlUcfXCwXdnzttCHoKCXhLVssOax7580Jhiwakf7Y+zj4hNH3wu7sXOsdqdb7ABDTWk/JOaogq+VTRv0Dns4dPx9u7XcpOTVw8aS5sPyX5MLCOR39/dNRaY9b7E1HuyHgpOmolPd48jjvtJyT01+XnA6H5To5FbWSrpYkWS6U9bK0WzbJmnKl6LJWkMulkiqlO9UnCdHlLzlkt4Pb9D3mz5/UzLwIfd623oOxorYLqryzecc7qpmX6LdMM+s5E/oYjNiX5u11yY7IFtyZrx134DMFZr/hiv3kGCui/LebrlmXlZQqpRR87joRok2FXyo3szf/QrleAjxK9eGurrzE11rnaTl3Eylw7r5LrhG+3atdtRvrqhXrb+7IfbP6lYVVLSfdkRuYdy+Tl+dutaP6ZbNf8a1qReP/TP9lNJx1DCkwE7Q3iMdEXw93173ure+76ne9c9sum6PlpDNqR87tj8mL0pMaI+pF7nWMSHp57kn3T8P5y+2PedcIFw31+9C7a0b20xJttQJk9Nxxs9i9/aF1q/Lg5akO3hvJeSrP75+Y3EJnVJ6/tFJZ34e2Uo7t5++TjqJFYgwFVynPnKd9cupvndty3AgsmkXaRsL9uau8oJ2U9hGgXd+J5YU7Ko/d0Y/EVYZvnf5EsvvRhPoQ/Rbs5x9SJ4ki59mP7NFy2Bk1o85TefDSmsw76jfMbxGYt82yOZB8q1XDP9tvxhXtvm/KltHUrGTAaPWgsmxUtbjeqkgNo0nXsfV4bZkG7rUGxKPg8/K+70qNVnuJ+xsy6v0mk0+/W9WKbD1qcr1fkeuGy2jgl+uPkG80l9ZjRa0Hmop+lg3qu9+cW31zYbVc2TRc/b7vL3CtN6oVpV7VlEbLjet9tEsGc/SdWC1TNmsW4wNNsfq2wvkGWt2oxfVHxqc1Wr7fMCpo12a/aQ4Yw9IyzJSOfitxPfGXKb+VCP5HLYGNMMZaTr9tXFeWaz5XEXyEWBW8C4wD90U/rRrxLzG/mPhTGvSmMRqT0ZatAHqrajruMd466bVV2eCtJy7GXFPqLRt87QXGLEPvKnipX9lKbL2e1Bgf+JOG4SaQL/G2bblhtPV6lexKNHPJZZLtfMhtY9w+6G7WzvRPaTzSb+KrYc41xbwL/RZosCVww3Cig65xeei7b2tcFmgGzbGGOVrQIZNJ4xX4onumYtYWPuwd8z58H3NkON3iW3/uE5Z9gWnf94LrOuNLKoQ/kp9Y1VQ+zb0GXdsS+jQwVmAXNm4NSKbUgK0Jl/Uqs7sEuybQs4/xz2HzRb0/wDxs+b7fTBqtpmzF4KkSjmrAuLnCFT5L9Rbmb7iwmU02gu5tCXiGPNJ7RarHsG+/CT6B31Zbwzggv4kx1eADbcUK2BjB10ac4Hysv6TC+WCret9V4XuqwABsZS5hI4Yf4H7B/I5hp6lDlzqzC2HCaCo5fKSDDB/Dpsr4jCb5hQ7MYuzMr/W6MYgtHhO2+NrAnA/82RqXbwHLLsN1g/yOdNkS8jHfhmGiHXAM2/PYwXS5YWOiURzAvJR632exCdeQJ3ACe3Pb12BnC/4JPACTpsEyyILj1VJy6NRezaEn77SXU9wDN0n98foadGq3EO2WiAEJMLxLp/ZxDj1+p/3jdcGsIW5TNkzafpONpybGAxpsAH/fpbP2bg699k77ttCjKeXr0dyjF9Y+R4+Ilfvbp3qMYcs8PcZ79MLb7+oxbuTrPZXP9YiYmqvHZI9eWPscPSbWO+1TPWLuuXq09uiFtc/RI2j726d6RPxhvr8ZkwJNYvmL5YK2iEcU25uIOWZSpzyNPFyHHOa/CcWtAXKvRfkiht8n8Gn4PcUjV73v2wlkEx/iq7ZAW5HfOS/FLp47kYsQ56A7kS+t7H3qE3Isled0E7FggDjBYhL6rECui7GzdpDRZn1Q/YAYiFzX5HwtE3NqJpzPThAr0/inYp4ivrbZ3C3K1ZQvua5U1AYL5EXUB6QbG/1XENdR37DcZSEmW3HDGEDXbZnl1/5gwXJWjLzequgWq4nAl9iIgxXESDehcSNmUju5TuNGXMW8RC6iGIn8wmwBPRgmYvJA5f2ZlN9pXtQfdNzW6D7wT/0hb1Q02I7FfPSLXJT2RzHYV0mfjSqzhUL9NTkfYnR7zdeqZPkUYEKrc32u8ELzhgySSbF7Kxe5lIuWiB9bfKx2oPHHAjOEEcR/Ni7SM+aNPI/6gs275S6hd5niPedjYxZ8FcqDCWoJ6g96R74xKpT7SJ+oa9rAgs/4CDvCPgraQXfcPnvtKuwOvSCnMCwAG4SLQUJyUzsAo6j5qK6ykbtM5D/knZjZT6J8SNgGvlBD2TGvC4FdwiDpuU+51tesvr9M5UFfMr9XA6ZQK/dZvRizWs+guUJeQLWiyW0FG1iGLzdaFsuLsIHKbcx0AtvVFBozbEB80OVgzUf+9CjoLZ6fGV3Us1m6wAj8iOpt1o8u6gDSIeQ2tXTc0KcEnSQcA8Bl3+f9oE4CZhci1hBfDL9d8VEdznVJfBZyP6dD34mIQ5zeX9G5j/J6FPyWJvSNuq0pMNqkWCHzeolsZGFdwMeN+YBOumumtl3XPeTTBtVmKR/q56SpCD7m6w0Wx4jPVlmdn+qbcB6wcUB/VkJrIR7fyY4VviZgtRpqf7rmtkKMtUk/Wp2vYRbA1oLPAXPto4+kJmpDrAX7NYnWRNZjxh+pNgRe8HvJ/YVqprRWJD5XW61HUG/DZgtxD75jwgfYHDAO2IaNi9WosI/NfJPWZ6i/FpT7EE9JrwzHDBuPGnRQW99DDclxRniALdjaw1YIn/BrTYyd6j4xduJxZbY+Sn0hsSVRD2/yIf/Ah/iak62rUK8y3ZB+faqVNVGXQx7T9yqmIg8Le6PuxFpjlW8I94ipa10NEC8sPm/i6yOWCB0jpkBXtHah/prcRwJmM+jeRf/CXwLCtyWt+FrwKyPlI79kazCFxyBLYXhiuS3FOGHXj+k6zdmoibHeTG3gIv4gdrYsrrP+ADHDX7L2ho346AOjtszXYrRecQkLjA/jx1jY+lwnX2Z6IfkMszXyX9KZwmrwROTPPq333HUewnWDxSFaS9P6yEXsZHmI5LBxUX6hccGWS64z6q9JeWHR4PNRMjqja2BszUd4WPO5hAEun+mhqXMMDPjaCfGWt/MTWifXeV5YcGxn+SzOx9acFVmsKcAHnAPrtC6mmkDEZjF+X8M4Y+5X5DsUk2pCf9ZCrJGFH5Nt23wNjFiE/M8xx/yxuRD2ob0QiiOx6C/jW2QfFl/j1FcR62JmZ2ZX1Dr9ZspH2MngAeullV2hh9SPWexGXYJ2PBaRHIqFfB8AvggZ7lLUA9SeYo/YU2DjVmmO3Bdd0h+PhbSGbdkLth8EH+b7Nwzj0IMlsxjN16bgg7w1H2pIrIsFH8WztW9QnddW2V5OoCGeop7sD0S+tVkc4PizYQfk5hUf7esIPlZ32SImV7gMPq9kHatTOhsf1VHwwTSnom7idSL5EXylnYjYA6yaFKe4Pxg17n+sf9glof7Z3gbtF8CG9qLB+RRex3C/QeyRRX0VU460WA4kOnwtscR+iq1TDLS4X2I8psrqIrJHUlF4nLc4XlB3rvlq8FmWH2i+Mt93Su1oKqx+ecf+XkC7p+V5tyqrL0/DsXPXLJv95oLvqjL6yH6SJ527Qdkc13udsRW5yo/YebID864bOs/fh/fP9YX9VB8+PH7L7CmWlZfnb6PObVkFXXGe6xPafzSD65HztJw9PJp9tlOLf2ZQot1avs+LT1+0cV/YfCtBOfhbFwrH2sqX8x4IHbiVv7kN/xUb/Ls79/mb+7juRRH9VZ8KTV+5cbtj5Spww/FrQN+we+WiR+WGbfcrN0Sf0XZ/6AbO8JJdXtK3uN7I9M1bN+Kp6yV959yEHi5mH9oo774P/IEXUraOa8jK7isoeSeWj/cFC2fLn8ry29/Pk+/3J7W+nHd+4R9q/Qk+DC/fII/e8rhRSXUd+mtf3vR/C/CFiwwANt8LVY8DCbm4fZZZy3mD4aSAUA444n0GxPZfaDoeIJTi7pdCnjZCHPBq2hkQx4sQ2+XC7jt5x4LDc6X4Kv85S7TXQLlslv5bbD83c//43/HPdmrns51/p7OdH4a5vv09NOn1Cc515sJc2QvzT79lwP/kx9CJvBl/Z8eJ5uejm19wdPPjqCvpV9rulwG880fjjvZ6QS4ID/jqu2O/XaBv/SU9Vdbz3roo5Pjm0dRylD/Ms/oTPOsT12dHPZKjvgv2DxyxznFP5YQ4zFspHb8U0s+l0D+9FLra/BM+qlzOiblfVA7hcv3nxPm3Hq3/KLta+z8= \ No newline at end of file diff --git a/src/guides/v2.4/graphql/images/klarna-payments-cart-updates.svg b/src/guides/v2.4/graphql/images/klarna-payments-cart-updates.svg new file mode 100644 index 00000000000..aa0fff6a16b --- /dev/null +++ b/src/guides/v2.4/graphql/images/klarna-payments-cart-updates.svg @@ -0,0 +1,3 @@ + + +


7
7

PWA renders the Klarna Payments  widget

PWA renders the K...

Magento returns an updated cart object

Magento returns an u...
2
2

Client
(PWA)

Client...

Magento

Magento

Cart update

Cart update

Widget reloading

Widget reloading

Perform cart update (for example, add product, apply coupon)

Perform cart update (for...
1
1
3
3

Get all available payment methods

Get all available paym...
6
6

Magento returns all available payment methods

Magento returns all av...

Klarna
Payments

Klarna...
4
4

Get the latest status

Get the latest status

Klarna returns the latest status

Klarna returns the la...
5
5
Viewer does not support full SVG 1.1
\ No newline at end of file diff --git a/src/guides/v2.4/graphql/images/klarna-payments.drawio b/src/guides/v2.4/graphql/images/klarna-payments.drawio new file mode 100644 index 00000000000..6c800a0b2b8 --- /dev/null +++ b/src/guides/v2.4/graphql/images/klarna-payments.drawio @@ -0,0 +1 @@ +7V1Zd9rIEv41PufeB3O0A48YiENuBCaG2PhljhCKEPuAMKBff6u6WyCJFpZjhO2kM5PYavWmqq+Wrt6u1Op0e7u0FkNzPnAmV4o02F6ptStFkeWSDj8wZUdTippME9ylN2CZDgn3XuCwRImlrr2Bs4pl9Ofzie8t4on2fDZzbD+WZi2X800826/5JN7qwnKdo4R725ocpz54A39IU0u6dEj/6njuMGxZltibqRVmZgmroTWYbyJJav1KrS7nc5/+Nt1WnQkSL6QLLfcl5e2+Y0tn5mcpcDtWn1fflm3r8dvdqFXubgKzdc1qebYma/bBrLP+LqTAcr6eDRysRL5SbzZDz3fuF5aNbzfAc0gb+tMJe/1rPvMZE2Udnq2J587gwYZOOkvM4E0m1flkviSVq790/A/SV/5yPnbCN7P5zGG1RTLTP5B+/OnhdzhL39lGkhgpbp351PGXO8iyTeCQ4dIo0cfNgcmyxIgxjDC4VGKJFgOWu6/6QHv4hZH/FaxQ/lZWaJr0wVih/q2skPV3ZMWqdPPTDJ7G/06vS235n6bf7VrXGk9DGRNo92bgPcd4Yvy7Rl16A9/qXzMSVyDHxPnlww9CIQmJd70ivMB3srrYHkrCby77SVroL5Mp8A2k2TD1LaiwljYDBXDkZjp/tvqkHny3dKCP0ee5b/mRZzCzTvTZGXjRR2YNIyn43V+sqTdBzn51Js+O79lWApuIooWz9IB1CMvaEuuYuRPn7pB4s7djUgK4DJ4DazXckyAHTJZCgxoBpVFWj0Epq1JOoFTLApR/OygT7oPBA6XMAaWWGyiLApR/OyjjmlKXsmrK/ECpC1D+5aDUyjFQKlpGUCq5gVIR5vtvB2VCUxazWm/9DJjkj/61l8eczsB17tnjfOkP5+58Zk3qh9SbA1akOC5Gju/vGEustT+HpEMN3+fzBcsXH3DC6LJaleDP/k0YA0N0rebrpX1gI4LSm7nwspTkGD7cWT5kmpEUkBHE12xQwQgdfs3CmdGULx7SjXTft5au46fU72w9/xErK0gKe+xhuYIhaey5tmUVkYdd5CECvZp0ClFI8ZN4WjoTy/ee48FCHjhIUfhcaxfJsJh7M38VqfkOEw4wVXQ1BlNNLUWBdpy/JL8tv15KAJn2OLV3BUktH/4YicaNQqlUPLyOE4ehh1Z5qo86v4/7ihhMkhURKdxz6g2CyTMWCcF0Qe4W2dXSPlrNdOlVNCDMU1e6rsRooMpyQT/SWLKhHWssLbcYWXpgZsE1oZms5P8m1nJmEcHy18sZyIbkDx00uJbvrHxSseWvVxHbuUi1nGi042qQH087tjdhgI6YefUGOQiWbVJhyVNvMCD6lmeN4zo4s41MRPUkKdS7e7WHTxOr70zu5ivP9+axCGLYxe+JDPuuHsPzNNwz21JVOUZimHYZJPLGGBeWUMWIOxQyJx6glySOR2GcMBpvI4uRh4CalgvUmxOvd7mxloODiIJ/uZjPVo6QzZxkcw/07LK5txNh8PQIleXSJUX17TEqRtW0sZfGA62WcagFX+AtVmngiQ6zVgs62fzL2yKckhM4NzW1qpZPQexoCih1qicEonYK7MP50gsgs7WXJgrNDvHsI1j9wbgcSfpOBGkvEZHP+EL+nBHorJ6bue/Pp2wYkRv4r6UXwa9wPKYw7ezg505liSFe6hAv1Vy/86hMLZYTwJJfGGe9WOKlkRYMpfjlXz2cguHTS1XlPKAKjUtOYpABlSdRHYEsU8JxyOYhZvZ6+bzvMwxwln5CakhapBOZPJcwRMfzXI7Mz+lgyyxcmWWEnYk8v7+cpgcPjgUnGT7ILjgvVpWz4Og8waF+zTAuP2kevc5zjqoTDxkXCU//bk3/uXuo/DfiamGvMrv/0eg0QSjI1oohmQfYVFeIwQKa0W+u9Bp/EMH1to5HB9FFO9lHj+lh56LEidsYnGFhMa84s85b2/RqEBGep40MBf/T+K9pelKHHIcJyhw4nGPa4d9FdSiZ436n+7Ab//pa/rc+GmZZ/7kaWgv81ZuSpbKpTn6fOfV0eHBj2WOXEDS6ro384TDPR7N5PKoiTVbCVClMgd8Hlg/mrkIflS+rZ/dKudkCmJTq3dem8rS70foP27UdSJ719Ydk1+bP39WBOtjpqrnTn+2p/WyOKhuzWg4GU9trfH1aPD0Oqn3VLTdGFdesVjT6t+E+TSerfk3yGgHkr2GZBrR19/VmOLh1XVv9ofdvu+XGdLvoT7u+dftz8aQMpdYUW5GH/ZovPT0Ope8Pk/XT7c/1oDbftNQfE+dr2+89bCGvZkAdQ3vWLg5uf2qDqjx+emhC2S+S9VBef38g9Rr9aXn91Anr+jHpKeVd7/HHoq9oPuuDYSvllfWQVk/zuX9b3rU8E78izCPB+7WtPEE+KWzDg3wjaydv7Gl5Zk9/BrYyee6PFlJv5C+wDdau0Xv8KfUD37ceXb833U7607bffyiPnzqLdV/9Bt+38Rq37XJjLLlmpw5/e257V9G+jxqyWWtrZjAmaU2vsm1VtV2zU5FatTY+78z7G7NRg3edMZZR4Pft95EttTrdLbyP1dEctUn9+LNTrcjmvSY3RxW5WbNJGpSXm/dQf629Ne8ratPTVGhn28K2R+21OWpszI4tN2q2/n3kbuBZb1UrSrOqKa2OvWuOIF8wXkPbgdlpyI26ScpBmmKOegotN9aatfqueU/Kaa2O67ZqFcjXJT/xG6APW7PWCNOh3cquGbjbsLwZsPL3WgA8gj7WOe124bmyPZSzFVYOEatC2Q30A96zdjp1LL+F79th+TAN6KaRNFJHVzY9oFtV0+EdKdtEunYqsbLNwIY+15Vmpwfluhvoswx0V6EstiubQU9vBnVSDsoHrZodQP0SzduVW7Wu3qwiXzGtsaV1Iu9cqLcL/XYh3Y7yGf8qrXv8ieXq8M11pfF17nYgDXgJuCE40SFdo/VB26OeRuuCtBp+Yx2+0QQakjqxvwxf+K6hNOobF/i9o224LnwjwWmi3OH3EWLZZZh2Xce7aZJyQQXxh/UHZjWsH7+9DrTuSdBmDfoK2AUed8ZYp9QCXiMum1XCdwn4GgCdXej/Gni+aY7G8B09+fuoHbQ6bdncQZkq4qgOGG/scQW/S80OfH/NBp71kEdA+54EeIb6kO4VqbkD/o7aUI7ht9PVoB9Qfxv6VAcZ6CqmR/oI5bqgJ2g50l5QoeWAV82RrYLsqQwDwKvGFnhE8AO43xC5I9hp60BLnfAFMVFrK5xySINIOYJNlZSrtVEudMAs9J3Itd6sjXcm1QmJcl3AnAv462m0fhOwbBNct1DukJYdVj98b6vWgHyAY+A91R2EljEeYxrqAfgupTlyiW6CZ6iP4QT4TXlfBz6bIJ+AB8Bko0YsyIbi1VQ46Zhf5aQHJ/LLIe4BN0Hz/uYG0jHfhuXbgg4IAMPH6Zh/x0nfnch/f2M06qC30RoGXbdN+lNn/YE04AHI+3E6yW9z0usn8ncZHRsSn46NFLqQ/Bw6gq5Mzx/ScQe85NFxl0IXmv+YjrsWn+5h/ZSOoFO5dAxS6ELyc+gYmCfyh3SEb+fS0UyhC8nPoSOkpecP6Qj6h8h+XCd5mkTsF7EFXaaPULe3Qec0gibaabDDTaiHyG+AemsMttdEe7EDuQ9ApkHuUR/Z6vdRL4C6sRzoV20DeZl9p2VRd1HbCbYI9BzQjtlLM/oe24R6TJXa9AbogjHoCaKToM0K1GtD30k+qKNL2kD/AXQg2Lo2LddpwDe1A1quF4CuDPWfCt/J9GuXfLuJthrtJaWVCr7BBuwi+AdImx60XwG9Dv4NsV0m6GRz16qNgdZdmdjX0XhDbNYO7HqnopvEJ4JyQQ/0YAV0pB1gv0FnYj65if0GvQrfxWwR6kiwL4QXQIdaA3TyWKXtNdC+43dhe0DjrobvAf/YHtiNiga8Izof2gVbFLaHOthVkZ6tKuGFgu21aTnQ0d1DuU4lWk4BTGhNSs89XvC7oQ6sE3V3whbZaIu2oD8S5YjvgP3fMcwgRkD/k34hneG7wc6Df0G+u2Nvge4y6ntajvSZlaugHQzAl8D2gO5gb2oVtH1IT/BruoAFl5RD7DD+KJAPaEf5k8pXxnegC9gUggXABuJiHGC9IR8Ao+DzoV/VA9vVAPsHdmdH+CehPURsA77Ah+rtqF8I2EUMIp1HaGtdzRy527A+oJdM39UBU+Arj4i/uCO+Xg2/Ferz0FdsUF4BD8yaK7c6JrGLwAOV8pjQBHhXV7DPwAMsB7QcH8qhPN2z9A61zySd+bPRdIYRkCP0t0k7OvMDkIZQb1sL+w30lIAmAcUA4HLk0nbATwLMbpiuwXI7kNt9OfTDKS2xnAm2n6YDvQOmh2j6aJ9OZZT6o1De1Bi9wW9rM4y2UVfI1F9CHpkwLqD9hu+BdKRdO+Ttwe9Bma6hbxaWA/85aCusHJH1FtFjWK6nEj8/pDfi3CP9APqZAY6FqH5HPlbomID4auD74zPlFejYHtJHa9IxzAawtaHfAN86gjaCOvMNYSw4qks4JjLvI/KIviHgBX5uqbygzxT6iljO1vbjEfC3gWcb9g5kpwEyQL4B+gG8If0iPirwp0dkE8dn4H9t0PaBPkW6EhwTbNxrQIP64R34kBRniAfgBRl79BTEJ8i1xvqOfh/rO5axZTI+CmUh6EnMH46XA/sDMkTHnGRcBf4qoQ3S10VfWWN+OdRH6L3XqWCHGb/B74Sxxt7eIO5Bpx5oNQZ9YdLvxnIj0CWMxqBTgFY4dsH22lRGPMIzoL0N7TN58RDfprQv1wG5qoXlUC7JGEyhOshUCJ6IbQsxjth1d/gc2mzwiWG8GfLABv0DurNjUpqNxqAz3C3JX+uBfnQBoz2ZjsVwvGIjFkg56D/0hYzPdZRlQhesn2C2jvKLNFOIDx4w+znC8Z59sEPw3CJ6CMfSOD6yQXcSO4T1kH6hfcF+AS+3lGbYXhvtwqZFv0eJ0AyfAWOHcoiHQzkbMUDrJ3Ro6xQDYzp2An1L87kBjpOb1C5sKLaj5Uxajow5KzIbU0A5wDlgHcfF6BMw3cz672rQzx2VK5Qd1El1Rj9zw8bITI6Rt106BgZdBPafYo7IY3vD+IOxENQjO9ZeRLaQP0S/7kJZBV23I3wmfAVfZ9QOyyF2IniA8dKer0CHUI6J7ga/BPJRXYT1oC6kcQCQRajD3jJ/APOj7mExBdJvFb+RyqKN9KO6EMewnd6GxINAhmn8hmAc6GDKREfTsSmUg/oO5cCHhHExK4f67CAb6Od1VRLL8TTQp+BPjsbM3vaIHqD46wEfwDbvy2Fch5UjfleP6eQKrYN+V3DQ1WE66R/6USCDoU0Fv4n6iShHICvdgOkewGoD9RSVh1qdyh9pH/gSYPsktoHxAuBhb9Oi5RTqx1C5Ad0jM/9qhzbSJDYQ00HWApPFU3o66kCTyiX0p6ESvwj5EVQUqudNihfwOw/l6iCzxD7g98o07hTysaEQ/+UE/x0Po6fl9aAqq08Pk5n1tV1ujNobGlUl6dPeg7zofx2XG7PmsD8zfVv5ubMeel7j62BuPf6YfH9sbnoPzcnd/bdITLGsPD1+m/ZvyyqkK9Zjc4Hxx4Z3M7Uetqu7+8aIRGrhb8MrYbSWxnnht/ME8otGfFGyknlix8grkp9hVl1E8kUkX0TyRSRfRPJFJF9E8kUkX0TyRSRfRPJFJF9E8kUkX0TyRSRfRPJFJF9E8kUkX0TyRST/74nkJ/aI8g7yu2QcX85wEFD+pxkUE/sUivoxWeSicUm6vP0kud/ZOi6rYu/4Z9o7flqmXlYLDO/XUkGSlJJelDXyr1rCQ9+PREDRCpJRUovG/t9jiUjLc34JyfnAj8ORPNYM/lkvBpYPAAa5spa4UXLeHyGwxekfbz79460gDredqwW9rGuaTP+NH891XeIdIaUpBU3SdL3E/r2kguedDXJxw5fcoKeXFS6dOAdWamc4OIJ7XqX++0eQnab0m+mlSklHQclIKyUvFJXex02QhZvwmdyE03KW2U0ocjwCngeQF9jTD7LN4ww+a+0TEFhI8398wNJMWPu3W/u3YnFv7Y9Vr8wZueamesN7GcT5Rp/8fKOSmhz9y+H5RaknHL1c5qUzjjSpUCzqJUOBEVLZ0MPDVSLVlWRJ1bSSgrnU+EdnPsXFUAqlsA5FKr6mjfMd78IXn3yPBxPnIolzkWLClhBXdX9E2etlSipokWOg9RdrzluSeGMAYYg+nSEyikmjUioWT0LxxRIvGCFdBbnQ5aKiyWqxrMpKsq6CFHn7e+JS1JXC3shBZcYr2shbcDIEGoQJEiboHCaIiFoc+uXi70pUwgCdrjZnIVIz3B4prM/xTR5SAW+RjF7loZbkq496lQfnqMlSoWxErsPQYigEGBYkVX7rbRhaGBc4VJsJ3C8L6Nngn+E0frERTWxEExvRxEY0sRFNbEQTG9HERjSxEU1sRBMb0cRGNLERTWxEExvRxEY0sRFNbEQTG9HERjSxEU1sRPtrNqIlFjzJilQoGaqhFTVDKqvFdz5eLudb2/64Wa33n3lNWSFhHF8lWOQALXWFxevKv7TeQtEy1PX6CWHNeE21OU8Ia/lOCItVFWJVRbpAGbiR8QwCpRbKqSssXmjkfOLFXSmfYb+0MEx/3HILXdELWklNrqcIl0WUpXOstijifX1Ksub3W3DBxT9v16+wLsK65GJdpJgwqPJ5rItaPmFdXmgkZ+uS71JyIV1CuqKXVZ8EvvZ70qXpely6TouXdlHxkjPsGRSrBcVqQbFaUKwWFKsFxWpBsVpQrBYUqwXFakGxWlCsFhSrBcVqQbFaUKwWFKsFxWpBsVpQrBYUqwXFasG/ZrWgEZ+W1jnns+e1PpAfyBfLMP6I9YGaZBS0+LF4eASycnqKKUOhF1YCJpfsRc5dfu2EV3IejVNV3ucopZ/EnushxIo4hPgzHUL8aq2vGPFlTkbxWOtf9ABihXdm+5sPIL53UJrpmcMLazd1iHRDj4fzASYt58/eANkkDiY+I2bPgE9V0l7Ep6wWjwF6jjOJ+W6JOAryj3BL1FKpkFB+pWK5cPo0yCyFXjyVWC+UjdRTiUslqSCd41TiUgEq2Z9KLKmvaSXvJTriUEixBO5i5xLHkV+WfvOQVTzn+8Sit6N6c5YhlTc6pg7KMC5KaY6SznOUGjOw4gAN6vhEXB6sNLPPs3SgHXbjC8EaSMmKYZIHvVRnhzEYmtFvrvQa33PieljHLlEoFPp5PBNNjvFfVvRCyZAOf+RjP0XihE/0vMInavqI8S0AAaXlEmcaSDcAXYE+swDJEUjCpbAq76ani8Ig/fait8CgEh0fCQScGMDE1YSucQDBu1MlN0Bwt12/HRB3ExyRKtJ8OcAgkwBEqt1IDB8MDiAuaii0DHH23G/J08tHp+xnU5znGOffjtXn1bdl23r8djdqlbubwGxdq7nchPVjPQtjTLSu/jJ8ZS8dy3foVVl3NEa1undWK6JgpenaT+paEYU65/VYezF4RWwqmyrPDaIab6vLBSYFxJzAZ5oTeCvaLzATwO9ihkBr3nZJ1/VCPH4gF7l7R2OXmCsFNRop4NzgnNuhOmr69EmeKkFcaf4HqIRSitSkSsd18r6Va6XAbjdnd5yXj6TjQ91vfmJwnMdtp/bEAxaEs4mSNRtc7acj/7HB+XMBZM5KuHh5uXivRrhSLmiR+851LT5Zs99sfPkLz/lXvGbY+5z/heda8gJvXsyjKIe5LuIq6+nh8jztYtgGZs6kUEgtrIWJN3OuQ+qQtxgX0I9b0SMag7YUb10Y5U9rlPcSnTnkbHBMbj5eO1/QeJc1vdmk3pIpB4s0bz1b3oRoo+O1PMJ25nZ7eHYghuGR/RrJ2Fqdcj5an9/pDBcg528Pk6ej6Dy6FOULWkP1fQJHJWGQPr9BevUc6DHYLxpGymU9qWm5QKY5Z4y3XgxgIIcDO2/2ay7MUV7m6PUTscp7GyOxcPSPWDjK25pivLRwNEuhlxaOJjehFBNhhN89y/qoopyXrhkfwisrJiecFU4sRw1ZdJn4jfJOE3qacMw+vWNmvN4xKxS14iFeX+RFDt4nWM8XDp7aOOeCDGmBa5hadAGTWHCRtwv3CsAeIgpFzsRqbOWUUeD4dLkp7HDP9LuasmJyGq4scUxZKN6XMWTpUcBcDVlRGLLPb8iUFMlINWSyWjjMOcO/H2fWmS8c6SvzzxKSoAsJMSRhoW1LrsgVVuysViw7WkMrphb0yJzysdf1njPIRoabhXJfdFVMziCX5FKBI9UXtmk80lzApunCpn1+m6amCEf6NO7nMmnpyyvOYtJWzmxwiLEv4ntNpKXz79pZkRMeMHO4/kpYvHwsXnYs8y2eztva8Y4m7wPsf+GYvLL+AUze+6wmRp9ImLzPbvKy7zD4pMO4fBcPx03e0lkt5rOVE9q4vWkURi4fI/f63WAf28ilB+Tesus37mrhXsbf3j/MdjyKrcPpENtP3EZAFV4eGUVRcj73fCjK50wJejrbfi3n28G0P9iNbJ21raUvYHViAiF+BaNR5ixPVHKCGX8N8csOefIGtwjL+BexneOKt+O72/jXu8Hz0PcXKwLRL/C/PZgpBQ/GBL88PDSlYEOL4NnihW/KF0xfoQGHXybXz1AfNKx8wfVKX/rL+WblLP/ZQLn55lpWSoUFGsHEWh01DgyF4xrWDfzvPICRi/GVLEX52FXTOYA5xxEGXMDIPL0kEPOREJMc32qc3fMXxQx3FkZg5iNhJnEnvHLsUl8WMbxoyJ+PmNXc9qzJNXm8VlVIkXHo+4UNQSNwSYLjDCDQjCQIjs9VuygINOGcfHS1cbT/tHi8UCgvzHC3mcsZJlX/QMy8s+KIn7NVlDTOtqu8YMA/ik+g4PIoMI6UgfTeOJAzrH//A4HwmUxIYoOEcbmxCh8xYqzy0RGTPBT+vREjxiqXNzbhHu4TR3vmBYJ7pV61pGuv1dz0aoPNcrj+MrlOP8Eyz9l7MXn/qSbvXw3z4zPxlPB0nQvs8eYCPTyG6bxT8ZXV+OqwmgzAj4JA93eLc0be4zIgvVQqxGce9ru1L7Grmw895V2UrNjo8rcpWf65MRe9m+2dzhtWBNb/cKwnLqcyXjhh97Kgz2Xb8WFpO7gVG2sZW+rHVrMLD+MdPAz95XsIype8blDn+RcJFFz+SE+Nt8M4vGnrIkeYKTy65G+LysIWfSZbdFqkMq9Mv9zwlo/19J2HbzBBdw+Vq/Aar4P12Q93Dwty8bvJnV/CIOVzlll2PO7Xmse18bEuvug9JCeOLXozPsNtEOGFzM5//gtPA28JWnOCJBFb/t7XZQJ3iLvxIZw7+2hHpL/TySSScBw+k+PwejE4OlBO5yxVO5PbAI/LOeJr/+4W8DE05wMHc/wf \ No newline at end of file diff --git a/src/guides/v2.4/graphql/images/klarna-payments.svg b/src/guides/v2.4/graphql/images/klarna-payments.svg new file mode 100644 index 00000000000..655536190fd --- /dev/null +++ b/src/guides/v2.4/graphql/images/klarna-payments.svg @@ -0,0 +1,3 @@ + + +





Klarna returns the latest status

Klarna returns the la...

Magento forwards the response

Magento forwards...
4
4

Client
(PWA)

Client...

Magento

Magento
13
13

Magento returns an updated cart object

Magento returns an upd...
11
11

Klarna returns the authorization_token

Klarna returns th...
12
12

Set the payment method providing the authorization_token

Set the payment method...

Initialization

Initialization

Widget rendering

Widget rendering

Authorization

Authorization

Place order

Place order

Run the
createKlarnaPaymentsSession mutation

Run the...
1
1
3
3

Klarna returns the client_token and payment_categories

Klarna returns the cli...
5
5

Get all available payment methods

Get all available paym...
8
8

Magento returns the updated info

Magento returns the up...
14
14

Run the placeOrder mutation

Run the placeOrde...
17
17

Magento creates an order

Magento creates an ord...
15
15

Magento sends the place order request to Klarna

Magento sends the plac...
16
16

Klarna sends the response to Magento

Klarna sends the respo...

Klarna
Payments

Klarna...

Set payment
method on cart

Set payment...
6
6

Ask Klarna for updates

Ask Klarna for updates
7
7
2
2

Magento forwards the request

Magento forward...
9
9

PWA renders the Klarna Payments widget

PWA renders the K...

PWA sends authorize() directly to Klarna

PWA sends authorize()...
10
10
Viewer does not support full SVG 1.1
\ No newline at end of file diff --git a/src/guides/v2.4/graphql/images/reset-password-email.png b/src/guides/v2.4/graphql/images/reset-password-email.png new file mode 100644 index 0000000000000000000000000000000000000000..9bc66ff8be55e226b3ef4053e8345ed7ee3d9688 GIT binary patch literal 28319 zcmd43Wmua{*C>j%SaGMtEl}LuN+}SaZE&|hp}4ygDDJ@>O3*?n?i6=-cPUof;RGIe z-*2CP=eo|`n;)6XWbS3NX4%|B@Owp>7igqtaBy%hWZ%8{2nUDU4hM&TkAeUjspqV5 zfrGO$k$oef>@vGIEdehM8|ApWal?b>*AFc-K!SDkd6FLIQi5O~aK?{-e1Pz<&nUp- z04MU}=l_`*En5ErI}`&(2_@)>L|7yDNLUo$X$q{#eWbY?|A|sqGy3?eamW)Vu*U4M z%P9^0yD@%jlc=9q{-+szV%P^5{m8cu(5xFD)`~;_Zn*zJ`zRnv5a~Z?AH@>|c<~R~ zM@e==zW#&uktSm~sejPIdT^Y%RR4dW{cGL+VfsI4xgYWV!zML|6xREf&1k?2SodEx zyCKhD-Tx9YBCPxWQOJ+V^@z5FtK2zIF6OrzaSH`gX$yM$TA4a6ZlKi4`$SbnjAwX$ z!4mD1*oi@~zxn;79S66uAE*5VBA!;B&4mkv2BWmMBx8DX!MYkce9hyILd@>(!uMtR zpjs84-fm!pJNZ67qop=_b}*z^Ex7(&XMB7^u;~@h z#w_;yi3T5bWP@ICz zOa{&8`ybQQq*kD571u7|O4`gf;w4{{@NU4#Y6X_v#NWeh#R}q-EM790?WM){^)oni zm{P^LdQqGl9iHR-61zz=DLZiR*q;?O8sGHvIC@6TX{U23vle`!@j7McIx*Ssn6BVz zrH*Whov2fAYj-W*GL3?K;8qp?bNFtF;hY-ydzXsK=AK{CAFMX~TGr}jLRM9?*H5y5 zEr<~cXfbY;=L$FS_)~bKm?PN0vL=s7p=hSrFR8o~`>Pf+oAfFv=h;m4r(=Jl)#BAr zb*xgO7B(pd4B>R$lqug(N?8H5n0FbMs5YddkY*7_G|lt7rO zq{n-B=SFJOv6~w>$~n;i??riNzTfbMcI)&*cy_U45l=ab^ufK+lN;DVdV7`Ii~><^ zMY{d!|Dw4rr^K{Z& z$F7^jETD(uZ|Q-64<8-YXbCy0z;CR64!-mUn4DXusSxp^b0}enK=p?5w>nb-?e=$P zA!lH@9)*F4VD^oAt=Pnb-{o;5joglWf35^)nL-;G@Frhds;D}qbw$f_Cf5}v>&_~D z#&NYi;462Gu-EPNVS+zNZQ zJ2NktU^u-u5mPIiy)kJNe*+9LoKN=$$co5&-bAFuq$FET=4{HZzXd56B*u)t=0~0x zXr4v~-IALzRGe89A4hT@s}Xc;=u;$$=H*4SjtHOS^`~CAdENpT7EC-FY8M!G6|kdt z%FEJo>zn7gzI9`O_tL^&DPID8;>J_X3gii|xZ))Lk}e7e8`{9;Eho8Hx+oWW;3Tjz zs~|tK@ZE__&N`;sC=qvRR8Jkhwr~C!p>;J*$sK!#67Z$Qhl?~1HlW5lq6v{fo6x-1 zTz~H&YpNF~-_{@jue`+FXxfFH=Pi3KsoE~6p}*v}#O=gU^FhJUQ9|o(JCzxh(b(`#2fwtZ(6~@oqPsyKL!QVt!Ud6uGp8ugTj*dAm z(3{uZ9{^a{3$x5z(derui+J~N8mTmQIj{Y3M7!$~&n-FEVmN6tngT#b5SO{vMjQ)8X>jdjS z*t9*(#^IbhBa2_~cG?{vD>R4wm%Ll?{Q-xAX<#xOhJq_y@hIh-GSLNawActG1}HVR zuX}JW($buImEz^e3Hye5q0w=Glcd(rEkDPbP$xF{q}iJvpG%Y`#)5y^PMk;2s5_PN zzN)ew@1n2~F76anmzO(lh1fxa*yu>e0}DGkI)s4fDM_oCVof?aVP_T!qyf(vQXF3& zH!ynLsi9l`mzueUbhHyW7P$VCXKsr^Ep5(z#&$f!Y27^Nsr-b=*icCqC3QeEr`o%Ma?PAR%*DX z&bRj1s*~L_R5BUY2~3)sTx;eFoBI%|gAF+iU3}LO^jA*F@dGXNqTvdz6sF1;c?nlF z{5@IVIlWNV0=(4(7tE=*wLO2k!KdXD*jJ6(vqm@XWTLtW@hW@n4&{%@T^FBcn_UE| zc+dk4Sb<6D9%X6`;oVIYjh?fqBJhHR>%lSSVBkHibza7}%n*wJ#F={joM&FKqu5CD ze8i4Jhyb&MA7p>}(pF&mj|T-&_+RpQa&GrkWwd-640{n^3lM3v3^(8{)xLraw_QuI z&PIG~O}(_)2pZUP_YY6uH6ySmz*RjS*NVols-U;^6HSS`Rk6|wM<=ofGJS2wdE)5U zlzi25NZf_1WDgfN%S`s3^X}UA+0{rlcaMA1-DG?vaya$WH@$Gj(@{b*my~RhyU{=b z%u@c{aj@;FyMWnjM5`bQ=r8N|6e2xPu~bV3T@jU8$jw=g&egq6i7CSFgAV8sS8FzR ziiA4O?GJB9+7_q;If51)&#wAY+$@XVT7FSlyL9ce5#wx`_?PCvg<}DTw2ceo7A7Azu?8Sq=jHJ&U{jDc^vBhK<5;Pp@u#=lYjWZ=XlD%{^chK@F;~x;V7OrsYz(22VP`v61pL} z2or|BS+!w&iN=K%@JpXPk@U?A1YZeCCZ@&m@*!ZAg?io0^Yrp9p({`CrJ47VG0^=| zx?7>d0;c2Do9JVoUr?0{g4MVwi>0GaQU(e!q;-VgW#Caien%)qcF_$?^lAP$KZ^1^Wqi#M)^q{{SfMx>^jS*DPrz^6*RK zN=y%a=Mt;cod=k6<3S}sz~`jxkP0;IX+c5{`Z`sMk27`cNvhvZBFE0(1_So&kyRUb z&7`(vM(;XxL-s_V0Vf#D82|%gO#?DM(DQH#`yWhbJbdqn(O}>?^_+6N%cS?5zT^a4 zVS9Ef_N5ndXts&YDb>m>2z1Bb+(;Ck~&m(M+MTniL*;ZU0@+@FK$;UkHg8ULZB%}Bx%EO zZ-c*76-D1D8nJ(0G#RY;-ek$x?G;6}hj^iF2bPyx6Wu#Ox1^DL_g1>7`ltobbm#Yd z=J}}4Y01r{zBTrlBP7{LV$oqt!bz$!FiI&TA_*yQDuUpB7c(1z_b!j#wg`=0wN_rv#N%t<`63rMDV+iOnr zJ2FY^gq*5%6qYv3JRw{ted9iLAqF*Qlhu#xV9+u}T{surRbM>0yu{g;e2x~Ikub(8 zdG|6h=ALVC>YhhxpbWWR9hH$xb{Fj5?NEaO?@;9%`JlG&*V`o{o@X-wC2LTe(zIYNf!#^~M1@eAF1EK5*Qg{c~ko2SZgBl!1KW6|Fs1*feEI$H5UeI&twLaHBlRZ-$oe(L#zBh~0gyI- zBTKkM334C^=5ot-|M4~x>=?p1?!WWn1QijDN8y8iX;r_hQ61ucHZ%WwtGo;yaxWG# zhrTUevHo3LsOOJv?YbOQyDsie#o1~`9d!krYLYaIPOLoDfCjDm>w+UInRm&kCC`Ke zXkP`Ewbij8-5(=#kZP&~ng@!g`ww$c;kpUS`xiO}0n5TYC`Q_WeF<*5Tolt-vsVPH z>foIp5EqfA-M!PLZGk51HtO9l{9<-0sPJT6=JpK5>Gp_3#-{juy zh~}0uj59ayjXKdhS%LDBYMD3UxBZn_H?x&Q+2(9>56NYPa{8l8unQTo!@H0|igET+ z$Ez{~M5xKm$4i!X$It}7y_9+p)DVcR00LYmW^1w6oKUWM8^$@UaPPrF=J;?z!I{0w z)ZtG^JZdz16*zgrl{6HK=UBM!XZD0p=~W`rt)1l$2NKOaD(p1JTy*vk%GHJ#KT=~g z+GPY64^vrmWeVTnK9uMk8p*@_E5LS_$_+|J39IChC#Q5ZIDRAPVgz^{6r7!P_WnXY+*+aMH#ayR zbbrM&n10T#x`}N>I+WlX1hn|?RCp$bvk^03f8%{@OW#EL0a*;n$ zyKUJk+Nj(#Qwm%PzuTIQZW|{YCt2n!-};#Db4PFhoz5sU)NyYHD!jD`F~_|6J=@%h zq_Iw*=A5iDaBn7Cc=-lMe`E5UGUbkpe0H%h?DK!;!@JI0g=YWWXR_&*FfzkrJ^F`{ z36`;`&OSoXtJ1}TUe=%den6^I&X2~_3AONS68L_<S zy`n(3gD8D*S{!=zBLhQb{;uN6L2a6E@H!yAv z$?yedz7itRiMK|L$z+e(vx%|2U|&=2Qr&mzZd6)dnCxxSq0Bp^eYwuYR!}Ws>&wH( z?TB&qJF9kFY%lA%-Cv5JD`o+R5~bQ*PW5PSclTsv5wQ<-&KEW z>>2*YN1gkW1nP2tg+cm{K>$%A@aPAeCPABtwL`-0&wjGkp@n-ngXg!e52w;x!-6)# zG&K^K-q=s-^jA(R;#V+ba23{t_?Y@$F>Br~XJ5MMbY}TwJ4`w-Rb8;f-Y&ja%YHF{ zvu$bmlV@^KZ2pALO^1AVJ>D$ZhaVw<{k5L-=rR-UGCfB2qbG8zfzuVg!Fd!Dq`N(N zxCeh2+v)h#n=J!C)Vx@~qKRuDZ>F&NqQP5~B&7wTq%KS}saB~EetH*9JRs-ETvOpM zkMdC<`9!$AeZTHLh%FViPzlKm`~A5K0|6Fa@b07T<0yyuVNLDe(=U&Ir`lV2mu~pWtGoc9aj;-xU zbRJV3f?A(RD}9~OH`ln zq#TBt-D(cdUBzQR$Y;#(bg$6nWXMvk#yVBGx{B?R$5`b_rHX5N#@S%l2wwK%ZwKqx zSYmbfRU-NqE2@1}B%u__;LnU2#h1PO*q15@<@!5}tZ6ZpTP!VEA?!wH5T*qE*|Xm- zx2~cdU999H^lGqyALD1!G8o$%!f~MSYrLS}Ea7*dZkQYRts$h5j$yXEfd z-!02#**>=swT%LRa0Gy;7j(#C?Ja6bd6rzww94}L(5J-@d}*A|5l==XY+JLOBU6OScjBnTWJb}on$YuzD-8#=PW2`GL>BqzB_z{y9caz z2Hai%=|0+H%2+^9ISTX1^tM722zz_5ZWj3m$xS7Ce3%_4xc(3QlU~R|E4EUB9FDIe zs<+`C6wMdB=xA6E9OwFMlh5X)R+0hVmNUq(Jhe%h-4S}D5W+se*MYZthly^nr?C;$ zHnqNdE1)?ll)G6{mL9^>?W<4F3nWQ+aM;NiEo_ekJeQb&-rHVi)M3n>&yvdxVmxU? zJbM}P;LG_eAx=$p}=-9IYN8L!MI7l2= zk3k@kU07;pa7Td2bshd&l0O&WM{3j3(SXlq=yIl=TCWceZ_VEIzamIx-!Vo5kjk2c zFnTnCVd4GXft7oUaqp<9O#3h8h0N6Uk(P#a^3)fLX3&UXK7@HJ#@m)T#kI-f6Fmza z2a;AD?m}9ZhtV-m2lTElEI^zXaIc*J&sV z32?z8b|-jZ5~qfXLxf1IBfnjomW<56kM1NaoEJK8z4*|Y_$r11Bp|H`+Sq@pl~-*8 z59%jSq(+_h90vB zaQS`r-?~94%(hsRKSp%0LrQJpOU%Y%2=o(0W7-zwr}FtK#sJzDfi#8CgJJ%p-Cvdg z^ls#xJcxG1+YIJ*y*U39!<1ELSxHQK6$a=@ucoBv7!gQt4SW+zYYqSutuY6(pTVQJ ze1~Hy^q_n_;Ut0F+^010KwZ;TFQcUGpGGAIdKA(2kJiRhRD^s*OwXf%ALvezYbUbUST1B0fPO9;9?aJ> zlZfNbz>0k??gu%Vn@HeH4WFRE@6mIwe~6}f=rrY;n0$JfYV4{le~EsrD>QBSP%}19 zWRsR5FY|t8fq{|I%|=8=FzI-VT#f<6sF9YB!C^4kga46xbQE9Wa!Ko}C={`OoZdE- z*7_li`HteBaD@N}ZSm)9f^W#rPuA_NVwF5J8Au=ab&C-n>ch^GT$13a^^Kj%r<6qy zjsf|PQR@M>$I)g-gfBFGvn_Q^C2?!s?Lb1D-Ai9xi`bHFIs=GD9-=~Gxph$#d;LP@ zxpm>o*B1%KXtjZl!d1-!NC6WaI0Fd7E4Zcc?l0oAB6r@ueC|y0Pn<&!y6zWyX?66+ zOn=IjNLIwl)XM~Vo=l6iGXYi};UC0#N{Yc~^dOv{b;<0t{31*l6+Ld2@nJEp?FFHoT z?<#!f$PEEGIX0{tXjyA`jEE--Y`{CLx(P%v>nXS;9sG)={EjyEE zqNGIc$a{yQW#d_e9b80yAJV-XgNmN*j{D=J&Pu`T5Kj>vgo++0m?RngRxX(uUC%J7 zyvyMo4J_6ByL|Kz3;cC>o>M-2HDW_nr1U&}j`OsAi^L_W!rZob1#8$SY1zy_0e@d| zmWWJFxL?ZF->*wg1(CuFd-x5crz1=y425)I!C9+Ez?U3&gqLn0qZ>6er<`Q*wZ2R5>97RyqN2)xaq zR%u!f8b~s}>{$soH1Xulh-46_I}Wxe8&{Cjx_yg>msV${?QwID^UjrXQ zbhw_mneI?uGUHwT62K zA09XI3I674p26#fRuFKlrnv80XOCBqBk6;1(oAn@UwzZbw{iY~qEPADQBt?GbWGxL z?vy19Q|&c+#$*+`#)1~?k>;9b+0V{65peWV z1MRyE-scrqpK?c>)G5j-oS5G=6&mpGzID@Cpy<2?i$v##-L&-8-S)gSPbIXsZMs7~ zD&4wh(S$nJucSn`-ir`+q0V0Aia^pIV_m$>vm7xI7=PX=;Cn20=a!jY*gkL=>@7YB@Xt{gk?=8|1&C*|t?KEtI{~kEJ(o<+5u|+fv7aaVqbW%Mk7Fx!8fO&YKPC;=q+D!Tmx*)sp1Av+JEK zR#A;ZuhEa~_&~>}y0!jd8)wn1k>-zS)eaS&_6lWf%sG{#IL^Jr(U<{r?ZVd_$e>qG zCHcg~x~@QILCU7V0?YmPYqN)Wy~dY$6`$JgtmZ^Tc+Y<8sHhZOXYD)Z$!j+3R2=eo zE{QdFyn$tF|EbacU38D}{qNF!RN#LK<}r^idORK$z#1Re@cQGK%YT)`U143g|0=(e z|2^;T;s3iHH-0=E_%Grg6vk}l0!rK;rpfb8^ZIuCHp|R@*I6agH#E>)&TjBKQ2CdL zwLhG2f3>R5X!7p(F_Qsx!0Iv}lO$?25mrD|Z|WO%rtKy7y= z)o!)3%vUHVi>aiL3OZ*6EboUMn@9s|{rc30I5vd6uPd2NzyRp2x$Wh1@5wGt#uC;2 z%W@2kj83L@>ki0}T7#cw{?^i~@uCeHr=nGJp3c+CxiO2Yr!$Lo$dm#|J1%l4;nXS_ z3L&}j?k&PTBm-F)2W50Yb}Y3Bq&4srs);~e@JlxB5HR8+Y8=qH!3OFdF)C<#bMu{z zH5;@>?D4b*c7n3uy{D6vT=WCiE8i1Ymy%pBRGQkh26hPICkYEBG3e)5~F?;z{c1BEP_chcylD?J+kNeZ42Dw6>>|jxC z$|4ns%R}^_ID2^m55C*<$e)Q@w{k5QtTO@H1P~k?l8K|! zK52Y4F$RTV&!Y|LS;_1Nh0B48kl(e5*?H5B&pskqG${9RetUhr|53BF-jt<3H$J~Y zxT6F~NjP2iryB=3M=tKJvZW^Oj7>r|HeZxiUP2@Jj5ZETh(}R#PBo3zkee_P>;Gkp;ea{*}6F8l8RhT>b)D z_;zzq5&ocNSx2qTh^n`jT-`^XKHJ-tWhf8f#yBZuj!R-sjfIpL;RDCL!*Y}mB2CDN zna*z{0JLRc@1;HVJxyn&Sxk_5{{tR23KD{EJ3cPx9dLxMO+oYP?bh?2w%hsdjWHKu zdc)V3%y5(M?i|RFf1^_Y17m&`QGBCLRF9~3g%T0nywZIIj|^{)u;>lpnv1j)JN63r zl7^XyyFb_36$(HO0vKqUuPv$jzmq36vC`;%%W0O9Au&FxeK;LR{Yi+aMXbSg%;dxH zrMz*Q5m{d**_HWFh?F8^&3+c?$JyR4J_UB_n>P;nW@8!fpq(!CUQ*I>!-{MYG)C~5 zLz@mP%CW20wS82al8r0n<&4+WrjmTh(e|Ix2yGVNR%N}v3K%@tu91>UZS}d}Ju)h8 zh!zZ}-~{IjupNT_@H6+uoD{05iJj+`RiL7yVW^CHRHu)X3bDHKpa445iF(#D81A%T z;gwD`c1Hs3MtNU)j9BDgC z*6lyxu9%SuBxoaqD%3O}6F;=k0rD{I5Xvv$uv6RLI7B(>5578FjQnug)ner1IoQ&Q z$I$^*oOm&6>qpQ=&;xw)K&_ds&=JfKng*3`t)Edn$S$@BNX;cK61HuJ46!rpiP>rI z#t7I=kUS~aliZbkoJy>`Sp!^6B!A%x?Z)c`es575*stQhx);@qnDh|uqn8ZAVQ7cQ z0|<~Rzp=A?57@uG6EYRGXx{tLFt<-TF6*EPl;F3Y;)xlo5|jwhQh(DFnnGcVY}G7u z%f62Fi>dY@GQAEXC52U8VVMYIV`i%lf>f555oz08PGx3#`>N)6{u;e|&!*4uaYT=0 zPp9*BVP@DI>3eOA`i%>?uevm3Xp#0KllPVRULHW}TaDRzB1tXXQ)!Q8ccf2vKJZGb zUU#0DX7)ypa>K1L z{F{b^&T{H7$53f5Iwl$56`Vc7{aRNg31(W%N%p7CGdJ=_?WBxKlzi0Cd?UF@))TKy zf{B55c5|rBEeOFi_$6t%z85WT5-)-PWjxNBH}g7HFQ%_ok8U13oY~Su)Nm5)4bgg& zg1fLs%&Q>^(f35IJY)=rdkZTWVx%OS#B&p0Nd;bmFG2zN6_;f#T`Lu~Im*Ic;#5hq ze-Pj~Yp4nfF15*LHU7q>Mf&WqYoAxfC8zvKHe!`m~Y^jlZxmxboV z`U;64z`=2>j+a-Xcn8+NFEG)j=+fuVmrZyNW_8CwVbq;*!VRDx!9V(_*eun$zg ze`IXCPWCxKewI~~fWPePC_^IN9}2M&)F<9y)*ONbGexG<1J?tdU{k;AyDS%*;?~gD z+%AEM9~Eb{mU%7xRn5yY$LB?hvBXkQLy@I^4F&-iP4(SwU&JR2FcN{C#;MY*(H|NT zSFK3wbMY?Nf-3y|;kw{ktSSWcDbW&f?p}$dadA22RDmr7?7vcV@;lI>B(TEkGLYeh zPCS=gbf8Ivt`iAm11%!(G%JHeq&hRC8-=cTHCgQZV=4?dkb7XfY7x!gCMNA_`RJs~ zt|D~5(8wG_cOii2=;OSBR0(}e3cBy85RMJ8S0dc1aKWoXY>A*HmZLCGZ1KLWq5s$7 ziX!2H<~b|a6Xv!yFVOEMxi0R8lBio9mnfmrGWso@H(Nn6jTa;*UJc0k!Ocui{WO7} z8afR!leE$kLDGR8kc&WXMPTqT*jpO-E4L$nbd^&2?gKyBeCzFa(cWBLcTA$RuiOyh zniTnVTDftXq(bhHGQ?PV481b2sBM*5FtF^iz?q{4ZNjvI^E==#dt3^fV)l@_vmc^U zJ>OHpO4uTWgn+UB?(JJD0#`-|l>xQ^1~4}h&7!B!F~iW8i%Y06$?EnIC=-YAb=356 zErm+Nu>RXSM=563yizV@d<&ic@JE$U;DA;?-dxBDBa@vq+Kzr-5x~#|{t~n=XP=aQ zc}3RYn%8F7d(#H<9ac&P9r$lFwYP)YUTPV%L+nPqyM`*|q+|pADZ}R0SFF}fjN95? z8%4M4dA08sQ_Xq%<-2?U&UE&o;!{C0`GX@-s=`~KF?aNM>?MacpVgaxHPJqtzbI9E zzc>*PJt5+O!G&`dYJK&QX;4g~;sFy5+A6gp)qivqNj{Z<{1{-M&_bWKqj=mT^nfQa zwGAZN#MzO=AO7-poNC*!bMuII&Tbb?P*zZ5tdh}I!Z``Z?OG#55X)AsQq@0RAWgjZ@4G(TMLBZi6om7`mU(b08B$ zgS41Z-r$Kq@R1ovD4>EzL=aC^u8vF6{>-#*-+!^=O*99^Gko;*{)rU)&2K|Zyv8@{ z6n+!wwkv#h$nS9hVf*VbO6*9=FjldhTU%tUzsQFqD*XbP;hF7qVCMcQ_2a+zSVT{r ztY5l+2chO?gf}m}EJYZ}x|I<;xpW*qLoyk(Em%O_I>e#?K)1aapp;{)2>7fIxIP3Z zw_g$sjbHS^zdQuSzA95dZRnz0$iv+=S!nbR~VjH%`NEmU`kj`qv{(^_Bw z-ev8Pg}jGf;+KeSG^P-?{u0xy-5c-LamU6l*ECZtBkWJs^0yuao~{z|eGe|VHhbp+ zoy8w1Vz~^M`FQXadNh_RVtZ*>F~v=|ofIKz-RR3l)9S{wn1QWX?2P!2MKE?6b`+#% zIKJXG1{c6HMJM`tPgATdz49fcJ=G5dz`QZkb((MR{D?sSY!D@s*c~rSr6^i@^?-S} zKq0`0{&3iGwSlHJWz?P~Ep3a!{JExIXJzz74odsJZdiKp#h4jQn7vYC&Boji$JYpb zhlXy(+HjRq8`F@WO}ykG98mUkmlO2If}y18UBe1twFZPOAbWk78FZMrM=Ru8R%cya z^x14T;rnm|`dB zv&eu2YKqKz_U>XXZe_db1XeKy=nt(oy@Ld{cc)(?aHxzYtzUD1Wf*D3tX|!`T{TuT z=Dbe8K^?05VryE4#hO$2Ey=3T9JedAdMNT`=-s?+WBIt*si}U#-Qz_VaiDLa9V<2{ zOa(rx_bAjjNkVzja!xt;_?4tn=oRvfZ6sIrBNaZis~bDF%&6+&J8=slkXY& z!=;67*+2Et@j=8^Wtn6{RA2b5>q;zP=Qo{_2f;%gPPc6nu-wyZdBII7cK~dxW_2Dx zM5mEX=gW|q=NEoXMLqmm62uv7@zGENO$WE10VLn^(eeB&w0s}A>nO2z2 zQCrStRlz7D`^y-}K)$zyZ2#xzGP2hEkn^zj$z)#>C2I^c_tNH+YmWoWo^f%K-1RYD zg)v_`6W%Oqx;u{jUf-4|?0qT6AQREybzieM61@8!&FN8Kuw3_1gB*4j@IbTEIiVPv zk-J1EAoN*?!7t{(j`{s#WZgEmd>)M*m3@&`yBfet*QFlap2`gCu)$m-DgQgel15a% zbS1NU#O*h-C)h9I6Gul0;a@ZZWkQNK#W19V*dwr~_Br zDze^BoCi6+UKJlUIdJyJ;F5#LZZn~V{cHsd@as|3t2Enzl#?+W>2+4-SFa5gmdw2L za+_>0jJ3}!<&<(gZmv3CD|qoe|4|fUr}-j*FG~sBL*SirC0p+~FlwB|ysbQKrwt(e z-t)#UJ8$9eG*q~HS|g7aQ@E>LzSpYpV&}c#h)}+FxPIoRpiry3OHpmwWHkYfs(@pi zK}B&wcODD9|M`a-v+dhf*961(QX{WR*1qU80C@aM_qvs8GE|l@NM~K;t47td?totkcsNf8 z9#ygQ*#14MbG+&43dx+&1TF>T{GNjJ{`H6K_s?d#s*b^rnQ016|=e1>-(m zH(@9%>ul~<|5VgT-w*-|Sv?@YolX;&6@NQ*nt!EKSknX~yL80+Ah5mfy*FECDJg+1 zJ)*hSqELhI+)1iR+eZpLYI{>k5<%L-?&Byp*#%cfP^L5h_1qj*+k!l6hddJZ_@?h; z3#)?#Keqq%+AuM!`(HmllGhHw_@6H{_xvw!NB{5o*=>ep_hxD5%+&RYw_HH=xt6I` zmk_KrNebg8vBj<4`!=Ideqd84&F0lHj0rOdAiO?8MoMUP{>)yH6gjLudV=>j^WJ6u zD2BUSa0~vi?h7jbfAh3V@sQ{E?~%qka$$)9x8gz9Z}5*rV%SUCX}U2cyfAc{F!r%Q z{Xii6qo6qd>-&Fw{l90}@V}_~e}7%>F_gnH?DcCb*HBnAd$=sS9ctzJgCq<;Wwjt; zr5%(~*9%3_nO5MfW9*RD>5jx_F2kl}p~{z#)KeKxVJtH@z8}fcwGBIpIKOKAb5dO}g2Aevi8=<3`WS zCRddA$%Oh&DcM`IcI?@~?cKhvYc1$`$hj&bQ?z}TOsH<<#-tkwm%!5%-zY#7An$Qk za!L;m2ne;>3BSwrUPWH_m|#>6lhnA|#eAqe55rMqsxe)(nSRzt{oto~BjDL7$(|8k zvTGU^Nyv;f^ED|;3Yz)|r5pcms54v6og67_Z;jkJOwLinDDb#b9_fNLl%Q{OLj-f9A5PWXwklk| z@5WzDUA#TX(`_MdzZWHu=v-N%2N60;)7j?IPJO>x@(%bNYF6r`qK4sx#JR!t2+0`j z=?-%@e(u_jhf%c*EXOE>uhSVc{JxXaH~p zZRouw@U15OwyZ1A%aX9o#cJufMk`{$a;k&)JkAJK_1JOwrBbw7_8Hsnp~QgX_{+dt zp6GeP0XYM(9BZbM<}Mc@_tiT^MS@C?nFS&pM$xyV{7~2Nj0HeE3E?JnKeG7N{MY-S-1d~dQo}i2IkoQ)hDkABN`yeePcaeyu#rA=W z?7w9?_&0aGd>7gH5ao_kA+EV34AFCHp^tHq(QW66;ekZ0&Vk>!4WE-V+z#fwlQiNt zLK5>jz)#{lAZXZ5o>+*(SA`mu4;|#b(|UVxEF%lfy|zMEcsb*9fr*tJHHm1oHgEughpAxSNn8&%4{Lm-vyJeeok~U z(nhxL#2$7rcSE=y%|a4F(vz(W&}3O6R(weqbmFLINsc04CYt@c zmF}&sA%4bGP+$x|@BR;-T%&CX&^9GoD9nT$9Rko*579o|s`nhProx^0Y{nO3XhP~i z`3#ofyfykvw@7WUspQ{KE5+HN=LYz`&+;zaYHZqXeNm7(=i=AtU1dT~`e>}x^&d1q z&MZ7Q?pyt@5Hz(|E!21g?n~z{1XghtZuRHX+R!A#zM^nS(BR`Oq<<}632Wr^{#A zxXG}6h7&x8*7+qRT@U&mVd_V)JZuMBt>U7!tFM=zxrZ8Zykj0#3XB7A-F!B-wKQa- zkN;k+%lXCOhtH98t@{$`8SM7Y)gQw34^@d7xt6=LDdIChZD-#I*{}d@2Ue+r?ZfZ5 z91A0j)4IoCB=gaXXY+}$Mzen(^)jOkPK^+23f@FbvcrT?O$mDXmm-w#mfBGZPP7Xa z*|!`gXa$KlcF&u;1k|96$1Mh4UaTO-&!`KPM?DaA*Y4Ib?z8<3niNYHYwiWQJ6`$| z0}Fe$;GY%4(qwhy1ibK;=l&uJ%5J|nyPGM`z6he#t?;<=4DBRMR8^-IL&yM9wt{hj z-&^)3rgix06r}}hudzZNMru-DpHsdqdh?L`)_P|oixQ;xn5zD(6ukiw$f~#Dk}Qlx z`9$*^2f-5u`+hyuR}8io1M52;k3-xKgO@$q!bQ1!`=YLOr0sNJE!ERch>TCcIP z7cfgfzyaLDD6%KEyty-vRZk*u43>1w+H2s-X(W>!DHx|Q9I|IM0HXzz`I~<@3U}p) zj?~9tWK9E6c&2QT4!__xe?-T!Rw^B9B-5o)5NgbG5K^}+AH9#Z05)exPOtASeEr?N zz}J6hch+rN zit`$$8@!Fn_6jC&k3gr*X{FNJL;=s^l$lAx14KI#De~$9%kQ@Xb9Q+(Sb(r3gLRcT zJ^Ah1(QX+&$V|?-ZUqh-=u^tJL_S@J$&x|3DEd;YXlX>%?7QZh`R`Z?S%RT4(+40( zi1j_!7)l0LN3({(XlYPscak0Te{?|{`iIAd$gl-9gK2FvIxa?G7&Ym$8e13}<63j5 zt@6Cbu(h-&VUD2g-FxW!UuhRDMN&UGO=S?Ate%I(*j|pNmC(nx1;)Ogg>-yU4E@8< z1DU-`+^o_IWTb9#O?gLT@TCMtr#{WBD$D(vzB!eR9y5U;pnbmmSSI3q7NeeUL@99e zou_D1A2)t3=!lKYxVHyJoDb0V>Got&D}z?0{L~p@Yp$U2JZikW5GQ9Cig$XRVKqL^ z@+o4T-oMgz7D@O^W3H(*Y)XJxTI60ytpd=}Q5DNW@_`t|8-!9Ol)w;i&|8AY zro#KB40=$Z(KW%nTSTV&arc4r)gWFhZ#1yI`vkn=elTQQ*<1zr&~ap9A1$hVn>ZsS zTC@3qy!5iQ=UxYsxc4{Rwta6N`d_wo1LJ8!i9@6KDNWY&F2b#{iirvrgmN#eN)rR) zWXGyszwOVn%SmY-X%E!(J|GDg&0TMHpW?ncDvqto z7YPX=xVr_10FAp70yGu^gb+MH2<|RH8h2}40!;`6F76Pd@jwU~oDgUvxcgKm_ujeR zx87SbZ>?Ex`ky*gT~){T+57C@{*|Lur+d2Z36|n2I9;wpQcBN1U9K*CJ+t+xBG~}M z);sBWoBR1_a;(dquX?4>OL(sIWk%fKx|`&-ZxLsvc2A`y?My#)dqmypPV;kXvJY!x zh_qAambl2W&jq^tl_^WD4`npR&7CyUNgbDKG`3)ZwA@wEA@0N7leB`e#jj7zc?+_G zemA-^=`Zy~lTx4Kwf2e6&(5Nn%SWSUW*x4y8RFSnRi7~<%`h`GroRpj^U|ur?zp`Z zV7w`nPvA7~4obh|OVl(nq8tbi4W*R;zZ-v){|ZY@9BgRS)bXq$Hm+i?V#vc$^DIXo zU|^-W9fK@+L}ZCk$EaGLm#CTwr*w!(MSc+d&(?kUXX|Q48P*?n1kv=2>a66UJ<*ZA zI3!s~*Kb$QI-xn3rLn1e#cg^38CU(danf7AA|3^(XUe58;R;!*dLq&Bb`6F@j?yOoqMlLoah`xw2RpWFV zYoH^jH})GJ5mU7K`i91mTwP~C(jY0?2PxJ;9%7Q(xtn!o`$avSO(H%TjmMiYzGFL7 z^I)&c)*_7GRrpJp{r1Q}BXZDAH<5zMQ-o6=nsIm9)3=l&BhJF=-{%#UuR`-)m8VR{ z{t<2{IG^oI_sYS*d`r!ig*zpB+Ep*}a;s4?V4*gLy05r>;3U$j_{Ouch&2_cscSkO&BmK zoBqWh{@cbZ0m7o`VNd{@f;6-LPCfkc(+9{1SD~#F&4Y`8=ypOxy+Rc;OeWA#*iwjR^L?}-9=I1nE zQqrTKfcD_CFHrA!JPPApIo@HQ~eYUEfgU~lpn}zcW3MdlaY1_Rg z8!xzW7@U#O1jH@2ByZiMmEj+rY^#*{t(6n~%vd~`8rRWJwbCCAurAlpThq@Wsm=R3 zStc0-TBz^OZW50cOMZCR8C=wDH`Q&ey5CA^H04@5C0JGT zSs+rRBr5_74cfl$|9m;OZM$~;JiNBYb3`ryLxt6_jI~|j&G4Z|F3R(2_j~wg;h_ko zxZEOYI+jH4jCX;8fO><>`orlWJbCpR!4Tjr-0NivQhZghaRp{#Bv9rn57nVacBLc`yH zNm}jOy~=K4PFNWr13oj73LtZ}geTL1Y)IuApk_E~WczF;pOI}{X*Mufyl~!YFJ-5y z1&LwLdl0P%!hvS=?-Fu>~?kd}841z-! z*m`Epm~KAlKT3(bLEtEFp&7oIf?Z?PLF;ej&u&_PVD6La9qWUJ(`faD$r6Xz69Ewh zgd156LhHzQW7B;Tp*m_5E*pDTkoQBrgfox9qt$E4#bfjgJ09Rj^15>Nv|hGwt_a>~ z(wOoRdw6jt+G%-S*frsU??%vibKQ0t4s|nX!8m>lwXw0MRbQ^vbo5~rjnYqa{Lw?9 zxUWm8tq+X7r`yZ=P05S(=aY5%hFXeKH(GeTLBpH|xKq?cq{^H@6)c{N4W;$UxWz?` zWaL@+UR44aq~fQ%r$3xhm)a78*Nvj7FSp8umF(8MS{SG;J%6_OKv3l%B{;Qhrz)}I z?14cjona~mui>q-uD!P*J(xe#1NEFRLD;A$CJkoYL6PkBBa)sdGqB|p2Qkpk{Mu~I z-ZTzeQChz}k#Ja)BQc8a>+J+&hdl==>f|4~S|26PW;JQRB)MF!b+dVh6WWI!<_a%| zmP~6m^tHqp=(+u%rvrZwiu*R5)$o%wA>gQ}-WYqaq}#;imUQjFdXw?Aid&cqW|Oa5 z*EnL;v;TDa<$j5BPWg-H`y7o)E+9OMAxmc3o9q3ry=7j)eT7ZY3I&V`FNxK|jvtr} z2(c^>>4RE?dEG;IUzVoI28++3SQBbHgN_xu#dAE8a0B@~uO-QADtY8-jHv3!R)-Xa z>KJ?`s6b^&U|B0q#hrUe_x~^aN>?e2-k>>qU}g2+x;;0uQX=&`H7EZ zHV`Y*kaF`A-czO?!n@k$1ebRu=1@z=-lKvr-e87N&^GU;n@ZtP^h{(=y7i=gi>QL! zQ0CDG?jJ zU7g%Ry}eZu_hGhQI5_C>;e#6BZcRybJm)vzTyfqE|2EXSwwwZ`vFB^oyj=PUW62fO zs{NX;KR1N%PE5jCYuM>EG(7faDX+|V#TUh{ve_ZDYvujb;%$fV{6Y3Qblog+G*Xsg zSR%7|NMsZG*lx!(egZ=|ef$ouJ9)w01)3Ot<~618SUtgITEvry1nZcy3j!*at|(`^ z?`1)Dx_VWv^a`k@_jALmD}tLo)3|?|JJs*RR-EgaOF~g4x7`3g9BR5Wb&~;iP<5I@ z2v%D8qeWkl>(w9Lhwx)HVPb$frH!1EnCf52(WP))o$l8SmN)l%d8!NAY3>{~>N%k1 zS7I#=tTr>?U`#kV?M}?GxcV{}Yc@cgXXntL*ck50v#pxJ8G4gI@kRTt1Qm4q`M+fE zYJxkgMlr*3*Q*F{>ZZcHs(n4_bUbbD?> zU9F$!a28TGiQ!SpfKfS6yNOwcOa0@Y3PivR(^lNi`BIIH^|l?~)PJe<;Sm=Ut5Zz0 z)F;$ZH1*DC6>ykHgA)sb4M0yuVFJ7#9+ierhYgl<_@gINb?eNkiUL9Mno8`PO`FR) z3d24aDXFj3)yh07HbSW{IHGFQiw}EQ>qs{GITH|?Xeqh$hCEY{-7_9ZItv4);hSv% zB^qYOqh9@q@MVEb0beCmO_gWHE)vq1+9mOoEBF{wWM9&YRBJ491Y5}!7L&crs0Ow( z!>^ka1lG?R$WqloBgyqWKWdkiFDmz3iZxojGmjjs z=TA$loI0G&+%s9+t*sZ0z>Qiv9h**LNu?HgMZSlRCnB_P?UYqh#+5OhZJ{EnT^o!q zrN4Le^8Z>{X=ONFZXfw+Kji{2eYI{f7?WQYCZi~F4QMq?(g@;3K|I#5% zT$j2Uil&Da&h9T>O^|S*UV`ppqp&*or7>~At}`G?OyV^Zo}7n2lcXPIqApq{@o}p7 z@fVw*!bVI@w;wxLE_ghCd5uNsN3n6q_@SZG=wK-sJ}_G3J=2Xyr=Rs z%+2qukQ2}c+BB^j57CCRhm0h#8HP!$>-SoPegwQYB8cGGJcmLL&>Qbn5-sYx@Ue1j z+`o?#!ifJ@<7-OqbcOwH{7CjsB&@_;XA6q^Jxa2mEcD>RBie0f3^PcBetiGd^lUg* z(`Y|%@3R?}?tOY#_vaxYr{WqL!_!BK+LnBUz2~3esEz4C@Il?1C$mkqH$9nHR%WXS z8(lS*#`RN%Ot2DIxXpB~sBpx7GS1SQS1N7imyZYPhs;!F)XBct5aw{%w6*ZV2UB-r zX+qdq+VX~vN|YWp?QLqdc{0OX7)`owv=}osr+H;<(st%lt(jv&ZHa!AlUR``fYaBv zO~=8I7{U-X6G0j%=E-88Q!1|v0kAeR4HMpVKoru0B0?6TZum;&&9D~m(fG5-cXLh4 zA=oltCyEg3L*ne-x0?8JXELv+U-cbfC?AxU8)e(RJG@aT`7+o4b7BSmyH2C>prZRs zh%@_FjMWogAJD39W0;Y~WCfkT^7{LSfdr8-uZ2kHq37C{R=K*Q3;knQlQ?pbT>$w6h+dxtJPT_yjd~37cE&xt5Qh4^SAL zr?#EmxX665Ryj6I{KNV*iELBJMX;>*$J;-M0UiQz15*9{M`I1pPC2f4SoG+QW@ST} zco)gtA#enyfIB`Q=7Yre0p5^q{cku^Jlq`wmwFNJM{OMu z#>T;Inv1mJ*jlcBZ;3#N8^K~v*~B!nmw1uvry2@#P2J|D8~n2XjX@;Wec!l8q|RiW z9DwTVPRtXB6tK&P?+`9i2;+|F$)Hmzy)i}1iz`LlFgS4w!yQX<(1K(aRIW!)&%@mh zs&ZR)_Z^^ayiJ@L7t#9Y@O|&8ETzKSa1+yV(Y%KbYP(+2mSw+jP1n=oie=m`Md6KO0#YyFeQfMP}Fpf62 zbK~Akm?>))hM-^+tkZ;fXeb}9sZ7(DTdzt&i?7{~w6CN+>~M3%we3EQYH?gsxp5iU zcn?mT>Wpd~N!iS_Cl#5T^3v%^o_QDpR(XX3xO;{q0^z%q++ZXNT15@VWSnRm#NlT3 zcv}W^gH7({T&G%PM*f7WE#ss?RS0TiL)bT-Uj3l8?=CKhH&gmFMA~~0eCTqw=Ph>E zXm~g~l5+rs=!^hM4wH_pgf5UK=9XGDQ=}=S?b31OWYypgnOjWU;cT!`D=6fBsi_;K zHbvHQO%CmO&2Gfq*KI7=WZL#QKIDudCzyfMZQQX@>@wF4cpv{X63?wv>n<&QB5AHo zP8NL`=2&vhG2ma*Jzz^IOZ^vN+j0(i{@P&u(|ZUdFa7#fK>Z(OU6t7O2k}@7&%7IK zo8Mk1+M;)ug|*eJ!8c(^R8nAKbIWnNHwguthXO||%JxU+Qjvf0)7DB|Kj5xA{H z1b&J*;Qu{vo{Mp03)^W6PbobYcK+s{Jplq?IA8`+s7IfU@QRpbAcA(m{iNYRn!qAp z@8;>Rt2UxdlCua9!PtAv_Et)icKS@cY)cZSX!YjAtW4765PLTc?3t@N)!Xw;38c+N zu?r7L+B3sY;=88cP9Thue~g{WcjIAp929n=VckdRoYi&>XYmah=RKbOf)G&?sC0Hw zo{c){zDjH)d&@kj2>)s^oY>DfH_>vAL=ZNw{><3W2r$FaraD4&j1^-~l24pGV}7F9r40ZxELhJ0k3sAe z>!#wy7pIvF^ZA zMySI?v+(rr;r>Q~sL5XDf?qy1EpJhvC-d_ozS_a|(jV5O*`MNeQKfR+ce%M-`Qbe; z?+%AqdrVgAogRsTBDj)GK$#rwt)0bPFCExmWqt#9yjyq-eoKF9ZiY2+2N2R< zGLUAC8Jw79q&nQw>!m~hs^F<;(OR-bncrh!`q;~>AT$O%@}VC-rT*$1(&7(3XQ6eb z$czroaqCFhU%I1*8Qv5NE;9|rMX*=p@xS8vZesielkKrlbaDXwM`Jay#{zvd^Ct^s za=ljr>oYW@^>gV3ICD0zZN?W*y(6R8&!)A)(Y79JM{}TWQP3ykt(^PAO|#JppR zU11w2yjW2voR8b;shyFeeDVZar9_;Uty?j%lt8Zhh94AqJ$0IVT5Xgp<_q9hSvp_d z0*1V1OAOQ*%G^+KW%-nhE>!d=V8xlW4A%tD4l@{-f*u3By>MbaR?2aIg^~*6ENm@6 zZ7_N5SuyAJJ^cgWQHUXPFhZTBf);|GcDIju!2O6wr|iWjoaC;%RYFlwJg`#Mm%LMvWlTVs6 z(>tnKrx_g*)(|N+t6e&v)?5W`@Ke2`Y;{Ot@w?4cGda9b&YCgy;9~R8+oES+zJMWx0i*h0kc-4qdpakVqQh5n|aVq`fUa4(VBVb z(x_+XkXddKroBpYcu|b>k^BA#kyftPi~T=r#Xv`H zv^K{fU5_0lGwBd&9-BrvAsXU`RZW?bx9Z^h2TCP_%37)V&g$rKQS3lW&XzQwo3YW7 zY6DuvsZM;BCc}l02AZ9k;Az(;%E>2)404ee!FG8GW>6Ha@MdU&Mf--yViq8m%`cyX zAb-f@VHq3i2}*u)VSNY8=6v=wvm^gBQoGS>K&n}dub5$BH+Gp}<#3}Nzxy?jKb1k9 z10M6Jvh$dRv2#6fi&BU9QnC7sb$%{Yf*YaIwCmZvd)STLvp7A*k+RaSLdd zS){pr$B3mfg`6zPGCFg~R(Abjm5LBC1cYjPi;>sct!I)YdKVUcvnm4f;8@rkJ4m-5{VnDL&9lt;t4b8S5Hq_%Nr zj*Ck*qc++px>53Y>BcE>S> zJA~TEsP*=1OqKV7lp+_IHf?aYkX8|`&BO!#N{<1K%r9=wE1z-AK3DW+jIG8J9`^B3 zvKX~74);2E%q^dvMBA3J6v4~;^_S7G$9u>$L}&@@8Qp7%6>&(rGvB%#Hc<8k|O-+OZ)8Xfl&FhWJ*76#mMrZ{Xa0%x+-_eo1Lz!oGaa)k`RQ27>7- zjjmr(L^30DDb56F`Oe=h|4U855axtQWK{CT<82j(BCM$qZs~>8R<-H;bH_zL#gs)K zZ9XBJ@=A0*vs!s&PyGHzFZkmjTd~d~=Xn0}<#Jo?U4Fre3+y%#@bDHxK#2wIs*T!8 z%R>6Saqplb0gZRmz1HxAw{bLq@A+ENQ76gf(vP1xXK7qh6z_s>$+ddUO%w#UxA-#1 zLSMl4pV=m^6gGQh_vkG;NMr3y_*x7RptE#Vb;FEEC#X3pDm$)xG?fdT8xxo-%>jgV0q1qawrdZ}WU5og8p(A-wzCM%i2nR|Vw~-~y}f zYVP;2WFC+fs$UFFwO4UX~X1 z&GmpqIkDfhZNbWo%;b(Pbbs=8r3eSLH+sk;cpeW3>XrZ5J-ser4?6Fq}f{nXYG!(=y~fQ3Qn;zz?1 zpC#flK5!j4$cH8TnKRE+R@@RF_zUKYjYg5j%3?Oywg}gK@<5f$8RI zBVK-g+Sr+C&S%H39ji5&Jrl-*>}|;PUfOdt7TLDMay#w^T&AD_alIo zFCDUrrv~xbp;b-aY1(TQGc=SR%*QiE0$q^P#XC*$h&}z$Y42E(eNIip&FAZThT6vJ z!p6#%+U)EABRpAX9bS4VeELL(l9ToHY6D3S6woEiLPZN49ZTd z_n|s7n_0B(rEuHC?$O|0XchYm0$zCS1y)W|K2l{V7V^~so&ub$16yusV{e4KCfRXU z@i{(hOGMC0#<6#?1}}<^mnE%FF(HTDZ}@k`q=%Y**2(O#uUN$0T%OUIOD}=&;;8K# z=qkMELodg%H|m)Cv${iU^RYl| zd1Bdpx{7mb*sOd8!pnPln054HznPDiUH~^NWYClVC-MB!D~eIv-l`u_Y(0;MH#5Bm zFsA%+SSLH-?CwfbizF`_-j-64^lq_)_)4A=fmYRWKNgR=46ZQ0tc6=%A!jbKiKi(W zFZL(<`dyv4Hup-@gb!^%5f$y=$*_XmK}A;*hZ+12t|Wfb5gcqWWK-wc^k#QvCRArXTPe7hH_>s?#>J3_DQC1(VMtl&$JsA z0LH_R1pp5J<>#|x>zfBb?i0cb|x!vE?Wyk=rDhLl4fZe+og71b5W/downloadable/download/sample/sample_id/16/" + }, + { + "title": "Trailer #2", + "sample_url": "https:///downloadable/download/sample/sample_id/17/" + }, + { + "title": "Trailer #3", + "sample_url": "https:///downloadable/download/sample/sample_id/18/" + } + ] + } + ] + } + } + } +} +``` + +### Add a downloadable product to a cart with disabled `Links can be purchased separately` + +The following example shows how to add a downloadable product in which the **Links can be purchased separately** option is disabled. All downloadable links are added to the cart automatically. + +**Request:** + +```graphql +mutation { + addDownloadableProductsToCart( + input: { + cart_id: "gMV2BFQuNGiQmTnepQlMGko7Xc4P3X1w" + cart_items: { + data: { + sku: "240-LV07" + quantity: 1 + } + } + } + ) { + cart { + items { + product { + sku + } + quantity + ... on DownloadableCartItem { + links { + title + price + } + samples { + title + sample_url + } + } + } + } + } +} +``` + +**Response:** + +```text +{ + "data": { + "addDownloadableProductsToCart": { + "cart": { + "items": [ + { + "product": { + "sku": "240-LV07" + }, + "quantity": 2, + "links": [ + { + "title": "Solo Power Circuit", + "price": 14 + } + ], + "samples": [ + { + "title": "Trailer #1", + "sample_url": "https:///downloadable/download/sample/sample_id/10/" + }, + { + "title": "Trailer #2", + "sample_url": "https:///downloadable/download/sample/sample_id/11/" + }, + { + "title": "Trailer #3", + "sample_url": "https:///downloadable/download/sample/sample_id/12/" + } + ] + } + ] + } + } + } +} +``` + +## Input attributes + +The top-level `AddDownloadableProductsToCartInput` object is listed first. All child objects are listed in alphabetical order. + +### AddDownloadableProductsToCartInput object {#AddDownloadableProductsToCartInput} + +The `AddDownloadableProductsToCartInput` object must contain the following attributes: + +Attribute | Data Type | Description +--- | --- | --- +`cart_id` | String! | The unique ID that identifies the customer's cart +`cart_items` | [[DownloadableProductCartItemInput!]!](#DownloadableProductCartItemInput) | Contains the cart item IDs and quantity of each item + +### CartItemInput object {#CartItemInputVirtual} + +The `CartItemInput` object must contain the following attributes: + +{% include graphql/cart-item-input.md %} + +### CustomizableOptionInput object {#CustomizableOptionInputVirtual} + +The `CustomizableOptionInput` object must contain the following attributes: + +{% include graphql/customizable-option-input.md %} + +### DownloadableProductCartItemInput object {#DownloadableProductCartItemInput} + +The `DownloadableProductCartItemInput` object can contain the following attribute: + +Attribute | Data Type | Description +--- | --- | --- +`customizable_options` |[[CustomizableOptionInput!]](#CustomizableOptionInputVirtual) | An array that defines customizable options for the product +`data` | [CartItemInput!](#CartItemInputVirtual) | Required. An object containing the `sku` and `quantity` of the product +`downloadable_product_links` | [[DownloadableProductLinksInput!]](#DownloadableProductLinksInput) | An object containing the `link_id` of the downloadable product link + +### DownloadableProductLinksInput object {#DownloadableProductLinksInput} + +If specified, the `DownloadableProductLinksInput` object must contain the following attribute. + +Attribute | Data Type | Description +--- | --- | --- +`link_id` | Int! | A unique ID (`downloadable_link`.`link_id`) of the downloadable product link + +## Output attributes + +The `AddDownloadableProductsToCartOutput` object contains the `Cart` object. + +Attribute | Data Type | Description +--- | --- | --- +`cart` |[Cart!](#CartObject) | Describes the contents of the specified shopping cart + +### Cart object {#CartObject} + +{% include graphql/cart-object-24.md %} + +## Errors + +Error | Description +--- | --- +`Required parameter "cart_id" is missing` | The mutation does not contain a `cart_id` argument. +`Required parameter "cart_items" is missing` | The `cart_items` argument is empty or is not of type `array`. +`Please specify product link(s).` | You tried to add a downloadable product in which the `Links can be purchased separately` option is enabled, but you did not specify individual product links. diff --git a/src/guides/v2.4/graphql/mutations/add-products-to-cart.md b/src/guides/v2.4/graphql/mutations/add-products-to-cart.md new file mode 100644 index 00000000000..ea7aa9f92d1 --- /dev/null +++ b/src/guides/v2.4/graphql/mutations/add-products-to-cart.md @@ -0,0 +1,371 @@ +--- +group: graphql +title: addProductsToCart mutation +contributor_name: Atwix +contributor_link: https://www.atwix.com/ +--- + +The `addProductsToCart` mutation adds any type of product to the shopping cart. It streamlines the process of adding products by allowing you to specify multiple product types in a single call. Magento recommends using this mutation to add products to the cart instead of the single-purpose mutations, such as `addSimpleProductsToCart` and `addConfigurableProductsToCart`. + +You must specify the Cart ID along with the list of SKU and quantity pairs as parameters to add the products to the shopping cart. + +The `CartItemInput` object now contains the `selected_options` and `enter_options` attributes. A selected option is predefined, and the shopper chooses from a set of possible values. Entered options generally contain text the shopper types, but other possibilities exist. + +Selected options can be used in the following product types: + +* Customizable options such those presented in drop-down menu, radio buttons, and checkboxes + +* Bundle products + +* Configurable products + +* Downloadable products + +* Gift cards (amount) + +* Grouped products + +Entered options can be used in the following product types: + +* Customizable options such as those presented in a text field, text area, or file + +* Gift cards (custom amounts, sender and recipient fields, messages) + +Use the `uid` attribute to reference selected or entered options. For entered options, the `uid` represents an option value, while for entered options, the `uid` represents an option. Each `uid` is unique across different options in a set. + +## Syntax + +```graphql +mutation { + addProductsToCart( + cartId: String! + cartItems: [CartItemInput!]! + ) { + AddProductsToCartOutput + } +} +``` + +## Example usage + +These examples show the minimal payload for adding products, including those with customizable options. + +### Add a product to a cart + +The following example adds a simple product to a cart. + +**Request:** + +```graphql +mutation { + addProductsToCart( + cartId: "8k0Q4MpH2IGahWrTRtqM61YV2MtLPApz" + cartItems: [ + { + quantity: 1 + sku: "24-MB04" + } + ] + ) { + cart { + items { + id + product { + name + sku + } + quantity + } + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "addProductsToCart": { + "cart": { + "items": [ + { + "id": "346", + "product": { + "name": "Strive Shoulder Pack", + "sku": "24-MB04" + }, + "quantity": 1 + } + ] + } + } + } +} +``` + +### Add a configurable product to a cart + +The following examples show two ways to add the same configurable product (`WSH12`, a pair of shorts) to the cart. + +#### Specify a parent and a child SKU + +In this example, the configurable product SKU is the `parent_sku` attribute, while the simple product variant is the `sku` attribute. + +**Request:** + +```graphql +mutation { + addProductsToCart( + cartId: "8k0Q4MpH2IGahWrTRtqM61YV2MtLPApz" + cartItems: [ + { + quantity: 1 + parent_sku: "WSH12" + sku: "WSH12-28-Green" + } + ] + ) { + cart { + items { + id + product { + name + sku + } + quantity + } + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "addProductsToCart": { + "cart": { + "items": [ + { + "id": "24", + "product": { + "name": "Erika Running Short", + "sku": "WSH12" + }, + "quantity": 1 + }, + { + "id": "26", + "product": { + "name": "Erika Running Short-28-Green", + "sku": "WSH12-28-Green" + }, + "quantity": 1 + } + ] + } + } + } +} +``` + +#### Specify the SKU with selected options + +In this example, the mutation specifies the size and color as selected options. The first option specifies the color, while the second option specifies the size. + +**Request:** + +```graphql +mutation { + addProductsToCart( + cartId: "HbpLADRmSo5h2dCdF85O5wCaVnrworKL" + cartItems: [ + { + quantity: 1 + sku: "WSH12" + selected_options: ["Y29uZmlndXJhYmxlLzkzLzUz","Y29uZmlndXJhYmxlLzE0NC8xNzE="] + } + ] + ) { + cart { + items { + id + product { + name + sku + } + ... on ConfigurableCartItem { + configurable_options { + id + option_label + value_id + value_label + } + } + quantity + } + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "addProductsToCart": { + "cart": { + "items": [ + { + "id": "24", + "product": { + "name": "Erika Running Short", + "sku": "WSH12" + }, + "configurable_options": [ + { + "id": 93, + "option_label": "Color", + "value_id": 53, + "value_label": "Green" + }, + { + "id": 144, + "option_label": "Size", + "value_id": 171, + "value_label": "28" + } + ], + "quantity": 2 + } + ] + } + } + } +} +``` + +### Add a product with entered options + +The following example adds a simple product with a customizable option to the cart. The customizable option allows the shopper to specify a message for engraving. + +**Request:** + +```graphql +mutation { + addProductsToCart( + cartId: "8k0Q4MpH2IGahWrTRtqM61YV2MtLPApz" + cartItems: [ + { + quantity: 1 + sku: "24-WG03" + entered_options: [{ + uid: "Y3VzdG9tLW9wdGlvbi81Mg==" + value: "Congrats, Julie!" + }] + } + ] + ) { + cart { + items { + id + product { + name + sku + } + ... on SimpleCartItem { + customizable_options { + id + label + values { + id + value + } + } + } + quantity + } + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "addProductsToCart": { + "cart": { + "items": [ + { + "id": "350", + "product": { + "name": "Clamber Watch", + "sku": "24-WG03" + }, + "customizable_options": [ + { + "id": 52, + "label": "Congrats, Julie!", + "values": [ + { + "id": 1184, + "value": "" + } + ] + } + ], + "quantity": 1 + } + ] + } + } + } +} +``` + +## Input attributes + +The `addProductsToCart` mutation must contain the following attributes: + +Attribute | Data Type | Description +--- | --- | --- +`cartId` | String! | The unique ID that identifies the customer's cart +`cartItems` | [[CartItemInput!]!](#CartItemInput) | Contains the cart item IDs and quantity of each item + +### CartItemInput object {#CartItemInput} + +The `CartItemInput` object must contain the following attributes: + +{% include graphql/cart-item-input.md %} + +### EnteredOptionInput object {#EnteredOptionInput} + +{% include graphql/entered-option-input.md %} + +## Output attributes + +The `AddProductsToCartOutput` object contains the `Cart` object. + +Attribute | Data Type | Description +--- | --- | --- +`cart` |[Cart!](#CartObject) | Describes the contents of the specified shopping cart + +### Cart object {#CartObject} + +{% include graphql/cart-object.md %} + +[Cart query output]({{page.baseurl}}/graphql/queries/cart.html#cart-output) provides more information about the `Cart` object. + +## Errors + +Code | Error | Description +--- | --- | --- +`PRODUCT_NOT_FOUND` | `Could not find a product with SKU "XXX"` | A product with the SKU specified in the argument `data`.`sku` does not exist. +`NOT_SALABLE` | `Product that you are trying to add is not available.` | A requested product is not available +`INSUFFICIENT_STOCK` | `This product is out of stock` | A requested product is out of stock +`UNDEFINED` | `UNDEFINED` | An error message is not matched with any code diff --git a/src/guides/v2.4/graphql/mutations/add-products-to-wishlist.md b/src/guides/v2.4/graphql/mutations/add-products-to-wishlist.md new file mode 100644 index 00000000000..bc10a882c92 --- /dev/null +++ b/src/guides/v2.4/graphql/mutations/add-products-to-wishlist.md @@ -0,0 +1,226 @@ +--- +group: graphql +title: addProductsToWishlist mutation +--- + +The `addProductsToWishlist` mutation adds one or more products to the specified wish list. This mutation supports all product types. + +This mutation requires a valid [customer authentication token]({{page.baseurl}}/graphql/mutations/generate-customer-token.html). + +In {{site.data.var.ce}}, customers can have only one wish list. In {{site.data.var.ee}}, customers can have multiple wish lists. + +{:.bs-callout-tip} +To determine whether wish lists are enabled, specify the `magento_wishlist_general_is_enabled` attribute in the [`storeConfig` query]({{page.baseurl}}/graphql/queries/store-config.html). + +## Syntax + +`mutation: addProductsToWishlist(wishlistId: ID!, wishlistItems: [WishlistItemInput!]!): AddProductsToWishlistOutput` + +## Example usage + +The following example adds a simple product (`24-MB01`), a configurable product (`WJ01-M-Red`), and a bundle product (`24-WG080`) to the customer's wish list. The SKU `WG-09` is invalid, and error information is returned in the `user_errors` object. + +{:.bs-callout-info} +In Magento 2.4.1, the `addProductsToWishlist` mutation does not return `selected_options` or `entered_options` objects. Support for these objects will be provided in a future release. + +To determine the value of the `wishlistId` attribute, run the `customer` query and check the value of `wishlist.id` in the response. + +**Request:** + +``` graphql +mutation { + addProductsToWishlist( + wishlistId: 1 + wishlistItems: [ + { + sku: "24-MB01" + quantity: 1 + } + { + sku: "WG-09" + quantity: 1 + } + { + parent_sku: "WJ01" + sku: "WJ01-M-Red" + quantity: 1 + } + { + sku: "24-WG080" + quantity: 1 + selected_options: [ + "YnVuZGxlLzEvMS8x" + "YnVuZGxlLzIvNC8x" + "YnVuZGxlLzMvNy8x" + "YnVuZGxlLzQvOC8x" + ] + } + ]){ + wishlist { + id + items_count + items { + id + qty + product { + name + sku + id + price_range { + minimum_price { + regular_price { + currency + value + } + } + maximum_price { + regular_price { + currency + value + } + } + } + } + } + } + user_errors { + code + message + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "addProductsToWishlist": { + "wishlist": { + "id": "1", + "items_count": 3, + "items": [ + { + "id": 16, + "qty": 1, + "product": { + "name": "Joust Duffle Bag", + "sku": "24-MB01", + "id": 1, + "price_range": { + "minimum_price": { + "regular_price": { + "currency": "USD", + "value": 34 + } + }, + "maximum_price": { + "regular_price": { + "currency": "USD", + "value": 34 + } + } + } + } + }, + { + "id": 17, + "qty": 1, + "product": { + "name": "Stellar Solar Jacket", + "sku": "WJ01", + "id": 1226, + "price_range": { + "minimum_price": { + "regular_price": { + "currency": "USD", + "value": 75 + } + }, + "maximum_price": { + "regular_price": { + "currency": "USD", + "value": 75 + } + } + } + } + }, + { + "id": 18, + "qty": 1, + "product": { + "name": "Sprite Yoga Companion Kit", + "sku": "24-WG080", + "id": 46, + "price_range": { + "minimum_price": { + "regular_price": { + "currency": "USD", + "value": 61 + } + }, + "maximum_price": { + "regular_price": { + "currency": "USD", + "value": 77 + } + } + } + } + } + ] + }, + "user_errors": [ + { + "code": "PRODUCT_NOT_FOUND", + "message": "Could not find a product with SKU \"WG-09\"" + } + ] + } + } +} +``` + +## Input attributes + +The `addProductsToWishlist` mutation requires the following input. + +Attribute | Data Type | Description +--- | --- | --- +`wishlistId` | ID! | The ID of the customer's wish list +`wishlistItems`| [[WishlistItemInput(#WishlistItemInput)]!]! | An array containing each product to be added to the wish list + +### WishlistItemInput attributes {#WishlistItemInput} + +The `WishlistItemInput` object defines each item to add to the wish list. + +Attribute | Data Type | Description +--- | --- | --- +`entered_options`| [EnteredOptionInput!] | An array of options that the customer entered +`parent_sku` | String | For complex product types, the SKU of the parent product +`quantity` | Float! | The amount or number of items to add +`selected_options` | [ID] | An array of strings corresponding to options the customer selected +`sku` | String! | The SKU of the product to add. For complex product types, specify the child product SKU + +### EnteredOptionInput attributes {#EnteredOptionInput} + +{% include graphql/entered-option-input.md %} + +## Output attributes + +The `AddProductsToWishlistOutput` object contains the customer's wish list and error message information. + +Attribute | Data Type | Description +--- | --- | --- +`user_errors` | [[WishListUserInputError!](#WishListUserInputError)] | An array of errors encountered while adding products to a wish list +`wishlist` | [Wishlist!](#Wishlist) | Contains the wish list with all items that were successfully added + +### Wishlist attributes {#Wishlist} + +{% include graphql/wishlist.md %} + +### WishListUserInputError attributes {#WishListUserInputError} + +{% include graphql/wishlist-user-input-errors.md %} diff --git a/src/guides/v2.4/graphql/mutations/add-simple-products.md b/src/guides/v2.4/graphql/mutations/add-simple-products.md deleted file mode 120000 index 0d00c94ea6a..00000000000 --- a/src/guides/v2.4/graphql/mutations/add-simple-products.md +++ /dev/null @@ -1 +0,0 @@ -../../../v2.3/graphql/mutations/add-simple-products.md \ No newline at end of file diff --git a/src/guides/v2.4/graphql/mutations/add-simple-products.md b/src/guides/v2.4/graphql/mutations/add-simple-products.md new file mode 100644 index 00000000000..694513b452f --- /dev/null +++ b/src/guides/v2.4/graphql/mutations/add-simple-products.md @@ -0,0 +1,285 @@ +--- +group: graphql +title: addSimpleProductsToCart mutation +redirect from: + - /guides/v2.3/graphql/reference/quote-add-simple-products.html +--- + +{:.bs-callout-warning} +Magento recommends using the [addProductsToCart mutation]({{page.baseurl}}/graphql/mutations/add-products-to-cart.html) to add any type of product to the cart. + +The `addSimpleProductsToCart` mutation allows you to add any number of simple and group products to the cart at the same time. + +Simple products are physical products that do not have variations, such as color, size, or price. Group products are a set of simple standalone products that are assigned a unique SKU and are presented as a group. Each product in the group is purchased as a separate item. + +To add a simple or grouped product to a cart, you must provide the cart ID, the SKU, and the quantity. You can also optionally provide customizable options. + +## Syntax + +`mutation: {addSimpleProductsToCart(input: AddSimpleProductsToCartInput): {AddSimpleProductsToCartOutput}}` + +## Example usage + +These examples show the minimal payload and a payload that includes customizable options. + +### Add a simple product to a cart + +The following example adds a simple product to a cart. The response contains the entire contents of the customer's cart. + +**Request:** + +```graphql +mutation { + addSimpleProductsToCart( + input: { + cart_id: "IeTUiU0oCXjm0uRqGCOuhQ2AuQatogjG" + cart_items: [ + { + data: { + quantity: 1 + sku: "24-MB04" + } + } + ] + } + ) { + cart { + items { + id + product { + name + sku + } + quantity + } + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "addSimpleProductsToCart": { + "cart": { + "items": [ + { + "id": "13", + "product": { + "name": "Strive Shoulder Pack", + "sku": "24-MB04" + }, + "quantity": 1 + } + ] + } + } + } +} +``` + +### Add a simple product with customizable options to a cart + +If a product has a customizable option, you can specify the option's value in the `addSimpleProductsToCart` request. + +**Request:** + +```graphql +mutation { + addSimpleProductsToCart (input: { + cart_id: "IeTUiU0oCXjm0uRqGCOuhQ2AuQatogjG", + cart_items: { + data: { + sku: "simple" + quantity: 1 + }, + customizable_options: [ + { + id: 121 + value_string: "field value" + } + ] + } + }) { + cart { + items { + product { + name + } + quantity + ... on SimpleCartItem { + customizable_options { + label + values { + value + } + } + } + } + } + } +} +``` + +**Response:** + +```text +{ + "data": { + "addSimpleProductsToCart": { + "cart": { + "items": [ + { + "product": { + "name": "simple" + }, + "quantity": 1, + "customizable_options": [ + { + "label": "Field Option", + "values": [ + { + "value": "field value" + } + ] + } + ] + } + ] + } + } + } +} +``` +### Add a grouped product to a cart + +The following example adds a grouped product (`Workout-Kit`) to a cart. The grouped product contains three simple products. + +**Request:** + +```graphql +mutation { + addSimpleProductsToCart( + input: { + cart_id: "IeTUiU0oCXjm0uRqGCOuhQ2AuQatogjG" + cart_items: [ + { + data: { + quantity: 1 + sku: "Workout-Kit" + } + } + ] + } + ) { + cart { + items { + id + product { + name + sku + } + quantity + } + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "addSimpleProductsToCart": { + "cart": { + "items": [ + { + "id": "5", + "product": { + "name": "Go-Get'r Pushup Grips", + "sku": "24-UG05" + }, + "quantity": 1 + }, + { + "id": "6", + "product": { + "name": "Dual Handle Cardio Ball", + "sku": "24-UG07" + }, + "quantity": 1 + }, + { + "id": "7", + "product": { + "name": "Harmony Lumaflex™ Strength Band Kit ", + "sku": "24-UG03" + }, + "quantity": 1 + } + ] + } + } + } +} +``` + +## Input attributes + +The top-level `AddSimpleProductsToCartInput` object is listed first. All child objects are listed in alphabetical order. + +### AddSimpleProductsToCartInput object {#AddSimpleProductsToCartInput} + +The `AddSimpleProductsToCartInput` object must contain the following attributes: + +Attribute | Data Type | Description +--- | --- | --- +`cart_id` | String! | The unique ID that identifies the customer's cart +`cart_items` | [SimpleProductCartItemInput!](#SimpleProductCartItemInput) | Contains the cart item IDs and quantity of each item + +### CartItemInput object {#CartItemInputSimple} + +The `CartItemInput` object must contain the following attributes: + +{% include graphql/cart-item-input.md %} + +### CustomizableOptionInput object {#CustomizableOptionInputSimple} + +The `CustomizableOptionInput` object must contain the following attributes: + +{% include graphql/customizable-option-input.md %} + +### SimpleProductCartItemInput object {#SimpleProductCartItemInput} + +The `SimpleProductCartItemInput` object must contain the following attributes: + +`customizable_options` |[[CustomizableOptionInputSimple]](#CustomizableOptionInputSimple) | An array that defines customizable options for the product +`data` | [CartItemInput!](#CartItemInputSimple) | An object containing the `sku` and `quantity` of the product. + +## Output attributes + +The `AddSimpleProductsToCartOutput` object contains the `Cart` object. + +Attribute | Data Type | Description +--- | --- | --- +`cart` |[Cart!](#CartObject) | Describes the contents of the specified shopping cart + +### Cart object {#CartObject} + +{% include graphql/cart-object-24.md %} + +[Cart query output]({{page.baseurl}}/graphql/queries/cart.html#cart-output) provides more information about the `Cart` object. + +## Errors + +Error | Description +--- | --- +`Could not find a cart with ID "XXX"` | The specified `cart_id` value does not exist in the `quote_id_mask` table. +`Could not find a product with SKU "YYY"` | A simple product with the SKU specified in the `data`.`sku` argument does not exist. +`Required parameter "cart_id" is missing` | The `cart_id` argument was omitted or contains an empty value. +`Required parameter "cart_items" is missing` | The `cart_items` argument was omitted or contains an empty value. +`The current user cannot perform operations on cart XXX` | An unauthorized user (guest) tried to add the product into a customer's cart, or an authorized user (customer) tried to add the product into the cart of another customer. +`The product's required option(s) weren't entered. Make sure the options are entered and try again.` | A simple product has customizable options that were not specified in the mutation, but are required for adding the product into the cart. diff --git a/src/guides/v2.4/graphql/mutations/add-virtual-products.md b/src/guides/v2.4/graphql/mutations/add-virtual-products.md deleted file mode 120000 index 4826bedf292..00000000000 --- a/src/guides/v2.4/graphql/mutations/add-virtual-products.md +++ /dev/null @@ -1 +0,0 @@ -../../../v2.3/graphql/mutations/add-virtual-products.md \ No newline at end of file diff --git a/src/guides/v2.4/graphql/mutations/add-virtual-products.md b/src/guides/v2.4/graphql/mutations/add-virtual-products.md new file mode 100644 index 00000000000..0d3205e412a --- /dev/null +++ b/src/guides/v2.4/graphql/mutations/add-virtual-products.md @@ -0,0 +1,143 @@ +--- +group: graphql +title: addVirtualProductsToCart mutation +redirect from: + - /guides/v2.3/graphql/reference/quote-add-virtual-products.html +--- + +{:.bs-callout-warning} +Magento recommends using the [addProductsToCart mutation]({{page.baseurl}}/graphql/mutations/add-products-to-cart.html) to add any type of product to the cart. + +A virtual product represents a saleable item that is not physical, such as a membership, service, warranty, or subscription. Virtual products do not need to be shipped or downloaded, nor do they require stock management. + +The `addVirtualProductsToCart` mutation allows you to add multiple virtual products to the cart at the same time, but you cannot add other product types with this mutation. To add a virtual product to a cart, you must provide the cart ID, the SKU, and the quantity. You can also optionally provide customizable options. + +## Syntax + +`mutation: {addVirtualProductsToCart(input: AddVirtualProductsToCartInput): {AddVirtualProductsToCartOutput}}` + +## Example usage + +The Luma sample data does not include any virtual products. The following example requires that you create a virtual product with the `sku` value of `Membership-Gold` with a price of $49.99. + +**Request:** + +```text + +mutation { + addVirtualProductsToCart( + input: { + cart_id: "IeTUiU0oCXjm0uRqGCOuhQ2AuQatogjG", + cart_items: [ + { + data: { + quantity: 1 + sku: "Membership-Gold" + } + } + ] + } + ) { + cart { + items { + product { + name + } + quantity + } + prices { + grand_total { + value + currency + } + } + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "addVirtualProductsToCart": { + "cart": { + "items": [ + { + "product": { + "name": "Gold Membership" + }, + "quantity": 1 + } + ], + "prices": { + "grand_total": { + "value": 49.99, + "currency": "USD" + } + } + } + } + } +} +``` + +## Input attributes + +The top-level `AddVirtualProductsToCartInput` object is listed first. All child objects are listed in alphabetical order. + +### AddVirtualProductsToCartInput object {#AddVirtualProductsToCartInput} + +The `AddVirtualProductsToCartInput` object must contain the following attributes: + +Attribute | Data Type | Description +--- | --- | --- +`cart_id` | String! | The unique ID that identifies the customer's cart +`cart_items` | [VirtualProductCartItemInput!](#VirtualProductCartItemInput) | Contains the cart item IDs and quantity of each item + +### CartItemInput object {#CartItemInputVirtual} + +The `CartItemInput` object must contain the following attributes: + +{% include graphql/cart-item-input.md %} + +### CustomizableOptionInput object {#CustomizableOptionInputVirtual} + +The `CustomizableOptionInput` object must contain the following attributes: + +{% include graphql/customizable-option-input.md %} + +### VirtualProductCartItemInput object {#VirtualProductCartItemInput} + +The `VirtualProductCartItemInput` object must contain the following attributes: + +Attribute | Data Type | Description +--- | --- | --- +`customizable_options` |[[CustomizableOptionInput]](#CustomizableOptionInputVirtual) | An array that defines customizable options for the product +`data` | [CartItemInput!](#CartItemInputVirtual) | An object containing the `sku` and `quantity` of the product + +## Output attributes + +The `AddVirtualProductsToCartOutput` object contains the `Cart` object. + +Attribute | Data Type | Description +--- | --- | --- +`cart` |[Cart!](#CartObject) | Describes the contents of the specified shopping cart + +### Cart object {#CartObject} + +{% include graphql/cart-object-24.md %} + +[Cart query output]({{page.baseurl}}/graphql/queries/cart.html#cart-output) provides more information about the `Cart` object. + +## Errors + +Error | Description +--- | --- +`Could not find a cart with ID "XXX"` | The specified `cart_id` value does not exist in the `quote_id_mask` table. +`Could not find a product with SKU "YYY"` | A virtual product with the SKU specified in the `data`.`sku` argument does not exist. +`Required parameter "cart_id" is missing` | The `cart_id` argument was omitted or contains an empty value. +`Required parameter "cart_items" is missing` | The `cart_items` argument was omitted or contains an empty value. +`The current user cannot perform operations on cart XXX` | An unauthorized user (guest) tried to add the product into a customer's cart, or an authorized user (customer) tried to add the product into the cart of another customer. +`The product's required option(s) weren't entered. Make sure the options are entered and try again.` | A virtual product has customizable options that were not specified in the mutation, but are required for adding the product into the cart. diff --git a/src/guides/v2.4/graphql/mutations/apply-coupon.md b/src/guides/v2.4/graphql/mutations/apply-coupon.md deleted file mode 120000 index 0d003d12747..00000000000 --- a/src/guides/v2.4/graphql/mutations/apply-coupon.md +++ /dev/null @@ -1 +0,0 @@ -../../../v2.3/graphql/mutations/apply-coupon.md \ No newline at end of file diff --git a/src/guides/v2.4/graphql/mutations/apply-coupon.md b/src/guides/v2.4/graphql/mutations/apply-coupon.md new file mode 100644 index 00000000000..2046341d69e --- /dev/null +++ b/src/guides/v2.4/graphql/mutations/apply-coupon.md @@ -0,0 +1,127 @@ +--- +group: graphql +title: applyCouponToCart mutation +redirect from: + - /guides/v2.3/graphql/reference/quote-apply-coupon.html +--- + +The `applyCouponToCart` mutation applies a pre-defined coupon code to the specified cart. Valid coupon codes are defined in cart price rules. + +## Syntax + +`mutation: {applyCouponToCart(input: ApplyCouponToCartInput) {ApplyCouponToCartOutput}}` + +## Example usage + +The following example applies the coupon code `H2O` to the cart. For this coupon to be valid, the Affirm Water Bottle (`sku`: 24-UG06) must be in the cart. + +**Request:** + +``` text +mutation { + applyCouponToCart( + input: { + cart_id: "IeTUiU0oCXjm0uRqGCOuhQ2AuQatogjG", + coupon_code: "H20" + } + ) { + cart { + items { + product { + name + } + quantity + } + applied_coupons { + code + } + prices { + grand_total{ + value + currency + } + } + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "applyCouponToCart": { + "cart": { + "items": [ + { + "product": { + "name": "Gold Membership" + }, + "quantity": 2 + }, + { + "product": { + "name": "Strive Shoulder Pack" + }, + "quantity": 1 + }, + { + "product": { + "name": "Affirm Water Bottle " + }, + "quantity": 1 + } + ], + "applied_coupons": { + "code": "H20" + }, + "prices": { + "grand_total": { + "value": 134.08, + "currency": "USD" + } + } + } + } + } +} +``` + +## Input attributes + +The `applyCouponToCart` mutation requires the `cart_id` and `coupon_code`. + +### ApplyCouponToCartInput object {#ApplyCouponToCartInput} + +The `ApplyCouponToCartInput` object must contain the following attributes: + +Attribute | Data Type | Description +--- | --- | --- +`cart_id` | String! | The unique ID that identifies the customer's cart +`coupon_code` | String! | A valid coupon code + +## Output attributes + +The `ApplyCouponToCartOutput` object contains the `Cart` object. + +Attribute | Data Type | Description +--- | --- | --- +`cart` |[Cart!](#CartObject) | Describes the contents of the specified shopping cart + +### Cart object {#CartObject} + +{% include graphql/cart-object-24.md %} + +[Cart query output]({{page.baseurl}}/graphql/queries/cart.html#cart-output) provides more information about the `Cart` object. + +## Errors + +Error | Description +--- | --- +`A coupon is already applied to the cart. Please remove it to apply another` | The value specified in the `coupon_code` argument has already applied to cart. Use [removeCouponFromCart]({{page.baseurl}}/graphql/mutations/remove-coupon.html) to remove the current coupon and to apply another. +`Cart does not contain products.` | The coupon cannot be applied to an empty cart. +`Could not find a cart with ID "XXX"` | The specified `cart_id` value does not exist in the `quote_id_mask` table. +`Required parameter "coupon_code" is missing` | The required `coupon_code` argument contains an empty value. +`The coupon code isn't valid. Verify the code and try again.` | The entered coupon code is not applicable. Check the existing shopping cart price rules for details. +`The current user cannot perform operations on cart XXX` | An unauthorized user (guest) tried to add the product into a customer's cart, or an authorized user (customer) tried to add the product into the cart of another customer. diff --git a/src/guides/v2.4/graphql/mutations/apply-giftcard.md b/src/guides/v2.4/graphql/mutations/apply-giftcard.md deleted file mode 120000 index b2727e92933..00000000000 --- a/src/guides/v2.4/graphql/mutations/apply-giftcard.md +++ /dev/null @@ -1 +0,0 @@ -../../../v2.3/graphql/mutations/apply-giftcard.md \ No newline at end of file diff --git a/src/guides/v2.4/graphql/mutations/apply-giftcard.md b/src/guides/v2.4/graphql/mutations/apply-giftcard.md new file mode 100644 index 00000000000..8ff210823ce --- /dev/null +++ b/src/guides/v2.4/graphql/mutations/apply-giftcard.md @@ -0,0 +1,99 @@ +--- +group: graphql +title: applyGiftCardToCart mutation +ee_only: True +redirect from: + - /guides/v2.3/graphql/reference/quote-apply-giftcard.html +--- + +The `applyGiftCardToCart` mutation applies a pre-defined gift card code to the specified cart. + +## Syntax + + `mutation: applyGiftCardToCart(input: ApplyGiftCardToCartInput): ApplyGiftCardToCartOutput` + +## Example usage + +The following example adds a gift card with the code `0330CEIVTLB4` to the cart. The gift card has a value of $20. + +**Request:** + +```graphql +mutation { + applyGiftCardToCart( + input: { + cart_id: "lY8PnKhlHBGc4WS5v0Y3dWjxiA5PvvgY" + gift_card_code: "0330CEIVTLB4" + } + ) { + cart { + applied_gift_cards { + applied_balance { + value + currency + } + code + current_balance { + value + currency + } + expiration_date + } + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "applyGiftCardToCart": { + "cart": { + "applied_gift_cards": [ + { + "applied_balance": { + "value": 20, + "currency": "USD" + }, + "code": "0330CEIVTLB4", + "current_balance": { + "value": 20, + "currency": "USD" + }, + "expiration_date": null + } + ] + } + } + } +} +``` + +## Input attributes + +The `applyGiftCardToCart` mutation requires the `cart_id` and `gift_card_code`. + +### ApplyGiftCardToCartInput object {#ApplyGiftCardToCartInput} + +The `ApplyGiftCardToCartInput` object must contain the following attributes: + +Attribute | Data Type | Description +--- | --- | --- +`cart_id` | String! | The unique ID that identifies the customer's cart +`gift_card_code` | String! | The gift card code + +## Output attributes + +The `ApplyGiftCardToCartOutput` object contains the `Cart` object. + +Attribute | Data Type | Description +--- | --- | --- +`cart` |[Cart!](#CartObject) | Describes the contents of the specified shopping cart + +### Cart object {#CartObject} + + {% include graphql/cart-object-24.md %} + +[Cart query output]({{page.baseurl}}/graphql/queries/cart.html#cart-output) provides more information about the `Cart` object. \ No newline at end of file diff --git a/src/guides/v2.4/graphql/mutations/apply-reward-points.md b/src/guides/v2.4/graphql/mutations/apply-reward-points.md new file mode 100644 index 00000000000..1ff31ea9160 --- /dev/null +++ b/src/guides/v2.4/graphql/mutations/apply-reward-points.md @@ -0,0 +1,136 @@ +--- +group: graphql +title: applyRewardPointsToCart mutation +ee_only: True +--- + +The `applyRewardPointsToCart` mutation applies reward points to the customer's cart. You cannot specify a quantity of reward points. If the reward points balance is less than the cart total, Magento applies the entire reward points balance. Otherwise, Magento applies as many reward points needed to bring the total to 0. Fractional reward points are discarded. + +Use the [`removeRewardPointsFromCart` mutation]({{page.baseurl}}/graphql/mutations/remove-reward-points.html) to undo the results of the `applyRewardPointsToCart` mutation. + +## Syntax + +`mutation: applyRewardPointsToCart(cartId: ID!): ApplyRewardPointsToCartOutput` + +## Example usage + +The following example applies $5 to the cart. In this example, the exchange rate is defined as 25 reward points equals $5. + +**Request:** + +```graphql +mutation { + applyRewardPointsToCart(cartId: "8k0Q4MpH2IGahWrTRtqM61YV2MtLPApz") + { + cart { + items { + quantity + product { + sku + name + price_range { + maximum_price { + final_price { + currency + value + } + } + } + } + } + applied_reward_points { + money { + currency + value + } + points + } + prices { + grand_total { + currency + value + } + applied_taxes { + amount { + currency + value + } + } + } + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "applyRewardPointsToCart": { + "cart": { + "items": [ + { + "quantity": 1, + "product": { + "sku": "WJ04", + "name": "Ingrid Running Jacket", + "price_range": { + "maximum_price": { + "final_price": { + "currency": "USD", + "value": 84 + } + } + } + } + } + ], + "applied_reward_points": { + "money": { + "currency": "USD", + "value": 5 + }, + "points": 25 + }, + "prices": { + "grand_total": { + "currency": "USD", + "value": 90.93 + }, + "applied_taxes": [ + { + "amount": { + "currency": "USD", + "value": 6.93 + } + } + ] + } + } + } + } +} +``` + +## Input attributes + +The `applyRewardPointsToCart` mutation requires the `cart_id` attribute. + +Attribute | Data Type | Description +--- | --- | --- +`cart_id` | String! | The unique ID that identifies the customer's cart + +## Output attributes + +The `ApplyRewardPointsToCartOutput` object contains the `Cart` object. + +Attribute | Data Type | Description +--- | --- | --- +`cart` |[Cart!](#CartObject) | Describes the contents of the specified shopping cart + +### Cart object {#CartObject} + + {% include graphql/cart-object-24.md %} + +[Cart query output]({{page.baseurl}}/graphql/queries/cart.html#cart-output) provides more information about the `Cart` object. diff --git a/src/guides/v2.4/graphql/mutations/apply-store-credit.md b/src/guides/v2.4/graphql/mutations/apply-store-credit.md deleted file mode 120000 index 3a81c086bf1..00000000000 --- a/src/guides/v2.4/graphql/mutations/apply-store-credit.md +++ /dev/null @@ -1 +0,0 @@ -../../../v2.3/graphql/mutations/apply-store-credit.md \ No newline at end of file diff --git a/src/guides/v2.4/graphql/mutations/apply-store-credit.md b/src/guides/v2.4/graphql/mutations/apply-store-credit.md new file mode 100644 index 00000000000..9566edf262c --- /dev/null +++ b/src/guides/v2.4/graphql/mutations/apply-store-credit.md @@ -0,0 +1,104 @@ +--- +group: graphql +title: applyStoreCreditToCart mutation +ee_only: true +--- + +The `applyStoreCreditToCart` mutation applies store credit to the specified cart. Store credit must be enabled on the store to run this mutation. + +Store credit is an amount that the merchant applies to a customer account as a result of a refund or similar transaction. If gift cards are enabled for a store, then a customer receives store credit when redeeming a gift card. No matter how the customer obtains store credit, these funds can be used to pay for purchases. + +The amount returned in the `current_balance` indicates how much store credit at the time you run the `applyStoreCreditToCart` mutation. This amount is not decreased until you place the order. + +{:.bs-callout-info} +If the amount of available store credit equals or exceeds the grand total of the quote, set the payment method to `free` in the `setPaymentMethodOnCart` mutation. + +## Syntax + +`mutation: {applyStoreCreditToCart(input: ApplyStoreCreditToCartInput): {ApplyStoreCreditToCartOutput}}` + +## Example usage + +In the following example, the customer starts with $10 of store credit. The subtotal of the items in the cart before applying the store credit plus shipping and tax is $34.64. The grand total on the cart after applying the store credit is $24.64. + +**Request:** + +```graphql +mutation { + applyStoreCreditToCart( + input: { + cart_id: "4HHaKzxpKM2ZwD0IcheRfcPNBWS3OvRM" + } + ) { + cart { + applied_store_credit { + applied_balance { + currency + value + } + current_balance { + currency + value + } + } + prices { + grand_total { + currency + value + } + } + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "applyStoreCreditToCart": { + "cart": { + "applied_store_credit": { + "applied_balance": { + "currency": "USD", + "value": 34.64 + }, + "current_balance": { + "currency": "USD", + "value": 10 + } + }, + "prices": { + "grand_total": { + "currency": "USD", + "value": 24.64 + } + } + } + } + } +} +``` + +## Input attributes + +The `ApplyStoreCreditToCartInput` object must contain the following attributes. + +Attribute | Data Type | Description +--- | --- | --- +`cart_id` | String! | The unique ID that identifies the customer’s cart + +## Output attributes + +The `ApplyStoreCreditToCartOutput` object returns the `Cart` object. + +Attribute | Data Type | Description +--- | --- | --- +`cart` |[Cart!](#CartObject) | Describes the contents of the specified shopping cart + +### Cart object {#CartObject} + +{% include graphql/cart-object-24.md %} + +[Cart query output]({{page.baseurl}}/graphql/queries/cart.html#cart-output) provides more information about the `Cart` object. diff --git a/src/guides/v2.4/graphql/mutations/change-customer-password.md b/src/guides/v2.4/graphql/mutations/change-customer-password.md deleted file mode 120000 index 3a195addfca..00000000000 --- a/src/guides/v2.4/graphql/mutations/change-customer-password.md +++ /dev/null @@ -1 +0,0 @@ -../../../v2.3/graphql/mutations/change-customer-password.md \ No newline at end of file diff --git a/src/guides/v2.4/graphql/mutations/change-customer-password.md b/src/guides/v2.4/graphql/mutations/change-customer-password.md new file mode 100644 index 00000000000..576d93d417a --- /dev/null +++ b/src/guides/v2.4/graphql/mutations/change-customer-password.md @@ -0,0 +1,76 @@ +--- +group: graphql +title: changeCustomerPassword mutation +--- + +Use the `changeCustomerPassword` mutation to change the password for the logged-in customer. + +To return or modify information about a customer, Magento recommends you use customer tokens in the header of your GraphQL calls. However, you also can use [session authentication]({{ page.baseurl }}/get-started/authentication/gs-authentication-session.html). + +## Syntax + +`mutation: {changeCustomerPassword(currentPassword: String! newPassword: String!) {Customer}}` + +## Example usage + +The following call updates the customer's password. + +**Request:** + +```graphql +mutation { + changeCustomerPassword( + currentPassword: "roni_cost3@example.com" + newPassword: "roni_cost4@example.com" + ) { + id + email + } +} +``` + +**Response:** + +```json +{ + "data": { + "changeCustomerPassword": { + "id": 1, + "email": "roni_cost@example.com" + } + } +} +``` + +## Input attributes + +The `changeCustomerPassword` mutation requires the following inputs: + +Attribute | Data Type | Description +--- | --- | --- +`currentPassword` | String | The customer's current password +`newPassword` | String | The customer's new password + +## Output attributes + +The `changeCustomerPassword` mutation returns the `customer` object. + +The following table lists the top-level attributes of the `customer` object. See the [`customer` query]({{page.baseurl}}/graphql/queries/customer.html) for complete details about this object. + +{% include graphql/customer-output-24.md %} + +## Errors + +Error | Description +--- | --- +`The current customer isn't authorized.` | The customer's token does not exist in the `oauth_token` table. +`Invalid login or password.` | The password specified in the `currentPassword` argument is not valid. +`Specify the "currentPassword" value.` | The password specified in the `currentPassword` argument is empty. +`Specify the "newPassword" value.` | The password specified in the `newPassword` argument is empty. +`The account is locked.` | The customer's password cannot be changed because the account is locked. + +## Related topics + +* [customer query]({{page.baseurl}}/graphql/queries/customer.html) +* [createCustomer mutation]({{page.baseurl}}/graphql/mutations/create-customer.html) +* [updateCustomer mutation]({{page.baseurl}}/graphql/mutations/update-customer.html) diff --git a/src/guides/v2.4/graphql/mutations/create-customer-v2.md b/src/guides/v2.4/graphql/mutations/create-customer-v2.md new file mode 100644 index 00000000000..5e3519782a8 --- /dev/null +++ b/src/guides/v2.4/graphql/mutations/create-customer-v2.md @@ -0,0 +1,101 @@ +--- +group: graphql +title: createCustomerV2 mutation +--- + +The `createCustomerV2` mutation creates a customer account. Use the [`createCustomerAddress` mutation]({{page.baseurl}}/graphql/mutations/create-customer-address.html) to complete the customer profile and define billing and shipping addresses. + +The `createCustomerV2` mutation supersedes the `createCustomer` mutation as the means to create a customer account. The input objects differ between these two mutations. The `createCustomer` mutation required the `CustomerInput` object, as did the `updateCustomer` mutation. The attributes required for creating a customer are different than those for updating a customer, but you could not determine this by looking at the schema. The `createCustomerV2` mutation requires the `CustomerCreateInput` object, which it does not share with the [`updateCustomerV2` mutation]({{page.baseurl}}/graphql/mutations/update-customer-v2.html). + +## Syntax + +`mutation: {createCustomerV2(input: CustomerCreateInput!) {CustomerOutput}}` + +## Example usage + +The following call creates a new customer. + +**Request:** + +```graphql +mutation { + createCustomerV2( + input: { + firstname: "Bob" + lastname: "Loblaw" + email: "bobloblaw@example.com" + password: "b0bl0bl@w" + is_subscribed: true + } + ) { + customer { + firstname + lastname + email + is_subscribed + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "createCustomer": { + "customer": { + "firstname": "Bob", + "lastname": "Loblaw", + "email": "bobloblaw@example.com", + "is_subscribed": true + } + } + } +} +``` + +## Input attributes + +The following table lists the attributes you can use as input for the `createCustomerV2` mutation. + +Attribute | Data Type | Description +--- | --- | --- +`date_of_birth` | String | The customer’s date of birth +`dob` | String | Deprecated. Use `date_of_birth` instead. The customer’s date of birth +`email` | String! | The customer’s email address +`firstname` | String! | The customer’s first name +`gender` | Int | The customer's gender (Male - 1, Female - 2) +`is_subscribed` | Boolean | Indicates whether the customer subscribes to the store's newsletter +`lastname` | String! | The customer’s last name +`middlename` | String | The customer’s middle name +`password` | String | The customer's password +`prefix` | String | An honorific, such as Dr., Mr., or Mrs. +`suffix` | String | A value such as Sr., Jr., or III +`taxvat` | String | The customer’s Tax/VAT number (for corporate customers) + +## Output attributes + +The `CustomerOutput` object contains the `Customer` object. + +The following table lists the top-level attributes of the `customer` object. See the [`customer` query]({{page.baseurl}}/graphql/queries/customer.html) for complete details about this object. + +{% include graphql/customer-output-24.md %} + +## Errors + +Error | Description +--- | --- +`A customer with the same email address already exists in an associated website.` | The email provided in the `input`.`email` argument belongs to an existing customer. +`"Email" is not a valid email address.` | The value provided in the `input`.`email` argument has an invalid format. +`Field CustomerInput.email of required type String! was not provided` | The `input`.`email` argument was omitted. +`Field "xxx" is not defined by type CustomerInput.` | The `input`.`xxx` argument is undefined. +`Required parameters are missing: First Name` | The `input`.`firstname` argument was omitted or contains an empty value. + +## Related topics + +* [customer query]({{page.baseurl}}/graphql/queries/customer.html) +* [updateCustomerV2 mutation]({{page.baseurl}}/graphql/mutations/update-customer-v2.html) +* [createCustomerAddress mutation]({{page.baseurl}}/graphql/mutations/create-customer-address.html) +* [updateCustomerAddress mutation]({{page.baseurl}}/graphql/mutations/update-customer-address.html) +* [deleteCustomerAddress mutation]({{page.baseurl}}/graphql/mutations/delete-customer-address.html) diff --git a/src/guides/v2.4/graphql/mutations/create-customer.md b/src/guides/v2.4/graphql/mutations/create-customer.md index 3c5eb9489ff..a11b8cb8f9d 100644 --- a/src/guides/v2.4/graphql/mutations/create-customer.md +++ b/src/guides/v2.4/graphql/mutations/create-customer.md @@ -3,7 +3,10 @@ group: graphql title: createCustomer mutation --- -Use the `createCustomer` mutation to create a new customer. +{:.bs-callout-warning} +Magento recommends using the [createCustomerV2 mutation]({{page.baseurl}}/graphql/mutations/create-customer-v2.html) to create a customer. + +The `createCustomer` mutation creates a new customer. To return or modify information about a customer, Magento recommends you use customer tokens in the header of your GraphQL calls. However, you also can use [session authentication]({{ page.baseurl }}/get-started/authentication/gs-authentication-session.html). @@ -65,6 +68,8 @@ The following table lists the attributes you can use as input for the `createCus The `createCustomer` mutation returns the `CustomerOutput` object. +The following table lists the top-level attributes of the `customer` object. See the [`customer` query]({{page.baseurl}}/graphql/queries/customer.html) for complete details about this object. + {% include graphql/customer-output-24.md %} ## Errors diff --git a/src/guides/v2.4/graphql/mutations/create-klarna-payments-session.md b/src/guides/v2.4/graphql/mutations/create-klarna-payments-session.md new file mode 100644 index 00000000000..28f1c8019a6 --- /dev/null +++ b/src/guides/v2.4/graphql/mutations/create-klarna-payments-session.md @@ -0,0 +1,113 @@ +--- +group: graphql +title: createKlarnaPaymentsSession mutation +contributor_name: Klarna +contributor_link: https://www.klarna.com/ +--- + +The `createKlarnaPaymentsSession` mutation initiates a Klarna session. You can create a session at any time before you display the available payment methods, but ideally, the cart would already contain products, the billing address, shipping address, and shipping method. If the cart changes afterward, you must run the mutation again to ensure that the latest payment methods are made available to the shopper. Factors such as the cart contents, the shipping and billing addresses, and the grand total after applying coupons can determine the payment methods Klarna offers. + +The mutation response includes an array of payment method categories. When the shopper selects a Klarna payment method, prepend the string `klarna_` to the selected `identifer`, and use the resulting string as the `payment_method.code` value in the subsequent `setPaymentMethodOnCart` mutation. For example, if the shopper selects the "Pay later in 30 days" payment method, the `identifier` value is `pay_later`, and the `payment_method.code` value is `klarna_pay_later`. + +The response also contains a client token. You must also supply this value in the `setPaymentMethodOnCart` mutation. + +[Klarna payment method]({{page.baseurl}}/graphql/payment-methods/klarna.html) provides additional information about the workflow of Klarna transactions. + +## Syntax + +```graphql +mutation { + createKlarnaPaymentsSession( + input: createKlarnaPaymentsSessionInput! + ) { + createKlarnaPaymentsSessionOutput + } +} +``` + +## Example usage + +**Request:** + +```graphql +mutation { + createKlarnaPaymentsSession( + input: { + cart_id: "VaP2GtqImwsTEXEf7azrh4vopebXp8gl"} + ) { + client_token + payment_method_categories { + identifier + name + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "createKlarnaPaymentsSession": { + "client_token": "", + "payment_method_categories": [ + { + "identifier": "pay_later", + "name": "Pay later in 30 days" + }, + { + "identifier": "pay_over_time", + "name": "Buy now, pay later" + } + ] + } + } +} +``` + +## Input attributes + +### createKlarnaPaymentsSessionInput attributes + +The `createKlarnaPaymentsSessionInput` object must contain the following attribute. + +Attribute | Data type | Description +--- | --- | --- +`cart_id` | String! | The masked ID that identifies the shopper's cart + +## Output attributes + +### createKlarnaPaymentsSessionOutput attributes + +The `createKlarnaPaymentsSessionOutput` object can contain the following attributes. + +Attribute | Data type | Description +--- | --- | --- +`client_token` | String | The payment method client token +`payment_method_categories` | [Categories] | An array of payment method categories + +### Categories attributes + +The `Categories` object can contain the following attributes. + +Attribute | Data type | Description +--- | --- | --- +`asset_urls` | [Assets] | The payment method assets +`identifier` | String! | The payment method identifier +`name` | String! | The payment method name + +### Assets attributes + +The `Assets` object can contain the following attributes. + +Attribute | Data type | Description +--- | --- | --- +`descriptive` | String | The payment method logo url (descriptive) +`standard` | String | The payment method logo url (standard) + +## Errors + +Error | Description +--- | --- +`The Klarna payment method is not active.` | The [Klarna](https://docs.magento.com/user-guide/payment/klarna.html) payment method is disabled in admin. diff --git a/src/guides/v2.4/graphql/mutations/create-product-review.md b/src/guides/v2.4/graphql/mutations/create-product-review.md new file mode 100644 index 00000000000..f5170f5a39e --- /dev/null +++ b/src/guides/v2.4/graphql/mutations/create-product-review.md @@ -0,0 +1,120 @@ +--- +group: graphql +title: createProductReview mutation +--- + +The `createProductReview` mutation adds a review for the specified product. Use the [`productReviewRatingsMetadata` query]({{page.baseurl}}/graphql/queries/product-review-ratings-metadata.html) to return a list of rating categories and possible values. + +## Syntax + +`createProductReview(input: CreateProductReviewInput!): CreateProductReviewOutput!` + +## Example usage + +In the following example, Roni gives product `WH08` four stars overall, three stars for value, and four stars for quality. + +**Request:** + +```graphql +mutation { + createProductReview( + input: { + sku: "WH08", + nickname: "Roni", + summary: "Great looking sweatshirt", + text: "This sweatshirt looks and feels great. The zipper sometimes sticks a bit.", + ratings: [ + { + id: "NA==", + value_id: "MTk=" + }, { + id: "MQ==", + value_id: "NA==" + }, { + id: "Mg==", + value_id: "OA==" + } + ] + } +) { + review { + nickname + summary + text + average_rating + ratings_breakdown { + name + value + } + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "createProductReview": { + "review": { + "nickname": "Roni", + "summary": "Great looking sweatshirt", + "text": "This sweatshirt looks and feels great. The zipper sometimes sticks a bit.", + "average_rating": 73.33, + "ratings_breakdown": [ + { + "name": "Quality", + "value": "4" + }, + { + "name": "Value", + "value": "3" + }, + { + "name": "Overall", + "value": "4" + } + ] + } + } + } +} +``` + +## Input attributes + +The `CreateProductReviewInput` input object defines the product review. + +### CreateProductReviewInput attributes {#CreateProductReviewInput} + +The `CreateProductReviewInput` object contains the following attributes: + +Attribute | Data Type | Description +--- | --- | --- +`nickname` | String! | The customer's nickname. Defaults to the customer name, if logged in +`ratings` | [ProductReviewRatingInput!]! | Ratings details by category. e.g price: 5, quality: 4 etc +`sku` | String! | The SKU of the reviewed product +`summary` | String! | The summary (title) of the review +`text` | String! | The review text. + +### ProductReviewRatingInput attributes {#ProductReviewRatingInput} + +The `ProductReviewRatingInput` object contains the following attributes: + +Attribute | Data Type | Description +--- | --- | --- +`id` | String! | An encoded rating ID +`value_id` | String! | An encoded rating value ID + +## Output attributes + +The `CreateProductReviewOutput` output object contains the following attribute: + +Attribute | Data Type | Description +--- | --- | --- +`review` | ProductReview! | Contains the completed product review + +### ProductReview attributes {#ProductReview} + +{% include graphql/product-review.md %} diff --git a/src/guides/v2.4/graphql/mutations/handle-payflow-pro-response.md b/src/guides/v2.4/graphql/mutations/handle-payflow-pro-response.md deleted file mode 120000 index 9cd3f552977..00000000000 --- a/src/guides/v2.4/graphql/mutations/handle-payflow-pro-response.md +++ /dev/null @@ -1 +0,0 @@ -../../../v2.3/graphql/mutations/handle-payflow-pro-response.md \ No newline at end of file diff --git a/src/guides/v2.4/graphql/mutations/handle-payflow-pro-response.md b/src/guides/v2.4/graphql/mutations/handle-payflow-pro-response.md new file mode 100644 index 00000000000..d53f3f0e638 --- /dev/null +++ b/src/guides/v2.4/graphql/mutations/handle-payflow-pro-response.md @@ -0,0 +1,83 @@ +--- +group: graphql +title: handlePayflowProResponse mutation +--- + +The `handlePayflowProResponse` mutation sends the silent post data that the client received from the Payflow Pro gateway to the Magento server. The content of this payload varies based on factors such as the merchant's location, the items purchased, and the billing/shipping addresses. The following is an example payload: + +```text +'BILLTOCITY=CityM&AMT=0.00&BILLTOSTREET=Green+str,+67&VISACARDLEVEL=12&SHIPTOCITY=CityM' +'&NAMETOSHIP=John+Smith&ZIP=75477&BILLTOLASTNAME=Smith&BILLTOFIRSTNAME=John' +'&RESPMSG=Verified&PROCCVV2=M&STATETOSHIP=AL&NAME=John+Smith&BILLTOZIP=75477&CVV2MATCH=Y' +'&PNREF=B70CCC236815&ZIPTOSHIP=75477&SHIPTOCOUNTRY=US&SHIPTOSTREET=Green+str,+67&CITY=CityM' +'&HOSTCODE=A&LASTNAME=Smith&STATE=AL&SECURETOKEN=MYSECURETOKEN&CITYTOSHIP=CityM&COUNTRYTOSHIP=US' +'&AVSDATA=YNY&ACCT=1111&AUTHCODE=111PNI&FIRSTNAME=John&RESULT=0&IAVS=N&POSTFPSMSG=No+Rules+Triggered&' +'BILLTOSTATE=AL&BILLTOCOUNTRY=US&EXPDATE=0222&CARDTYPE=0&PREFPSMSG=No+Rules+Triggered&SHIPTOZIP=75477&' +'PROCAVS=A&COUNTRY=US&AVSZIP=N&ADDRESS=Green+str,+67&BILLTONAME=John+Smith&' +'ADDRESSTOSHIP=Green+str,+67&' +'AVSADDR=Y&SECURETOKENID=MYSECURETOKENID&SHIPTOSTATE=AL&TRANSTIME=2019-06-24+07%3A53%3A10' +``` + +See [Paypal Payflow Pro payment method]({{page.baseurl}}/graphql/payment-methods/payflow-pro.html) for detailed information about the workflow of PayPal Payflow Pro transactions. + +## Syntax + +`handlePayflowProResponse(input: PayflowProResponseInput!): PayflowProResponseOutput` + +## Example usage + +The following example sends the Payflow Pro payload to Magento: + +**Request:** + +```graphql +mutation { + handlePayflowProResponse( + input: { + cart_id: "Po1WkfK7d3vZE0qga610NwJIbxgqllpt" + paypal_payload: "$payload" + } + ){ + cart { + selected_payment_method { + code + } + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "handlePayflowProResponse": { + "cart": { + "selected_payment_method": { + "code": "payflowpro", + } + } + } + } +} +``` + +## Input attributes + +The `PayflowProResponseInput` object must contain the `cart_id` and `paypal_payload` attributes. + +Attribute | Data Type | Description +--- | --- | --- +`cart_id` | String! | The unique ID that identifies the customer's cart +`paypal_payload` | String! | The payload returned from PayPal + +## Output attributes + +The PayflowProResponseOutput contains a `Cart` object. + +### Cart object {#CartObject} + +{% include graphql/cart-object-24.md %} + +[Cart query output]({{page.baseurl}}/graphql/queries/cart.html#cart-output) provides more information about the `Cart` object. diff --git a/src/guides/v2.4/graphql/mutations/merge-carts.md b/src/guides/v2.4/graphql/mutations/merge-carts.md deleted file mode 120000 index d31a7fac619..00000000000 --- a/src/guides/v2.4/graphql/mutations/merge-carts.md +++ /dev/null @@ -1 +0,0 @@ -../../../v2.3/graphql/mutations/merge-carts.md \ No newline at end of file diff --git a/src/guides/v2.4/graphql/mutations/merge-carts.md b/src/guides/v2.4/graphql/mutations/merge-carts.md new file mode 100644 index 00000000000..6fd42d1e53b --- /dev/null +++ b/src/guides/v2.4/graphql/mutations/merge-carts.md @@ -0,0 +1,95 @@ +--- +group: graphql +title: mergeCarts mutation +--- + +The `mergeCarts` mutation transfers the contents of a guest cart into the cart of a logged-in customer. This mutation must be run on behalf of a logged-in customer. + +The mutation retains any items that were already in the logged-in customer's cart. If both the guest and customer carts contain the same item, `mergeCarts` adds the quantities. Upon success, the mutation deletes the original guest cart. + +Use the [`customerCart` query]({{page.baseurl}}/graphql/queries/customer-cart.html) to determine the value of the `destination_cart_id` attribute. + +## Syntax + +`mergeCarts(source_cart_id: String!, destination_cart_id: String!): Cart!` + +## Example usage + +In the following example, the customer had one Overnight Duffle in the cart (`CYmiiQRjPVc2gJUc5r7IsBmwegVIFO43`) before a guest cart (`mPKE05OOtcxErbk1Toej6gw6tcuxvT9O`) containing a Radiant Tee and another Overnight Duffle was merged. The cart now includes three items, including two Overnight Duffles. + +**Request:** + +```graphql +mutation { + mergeCarts(source_cart_id: "mPKE05OOtcxErbk1Toej6gw6tcuxvT9O", destination_cart_id: "CYmiiQRjPVc2gJUc5r7IsBmwegVIFO43") { + items { + id + product { + name + sku + } + quantity + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "mergeCarts": { + "items": [ + { + "id": "14", + "product": { + "name": "Overnight Duffle", + "sku": "24-WB07" + }, + "quantity": 2 + }, + { + "id": "17", + "product": { + "name": "Radiant Tee", + "sku": "WS12" + }, + "quantity": 1 + } + ] + } + } +} +``` + +## Input attributes + +Attribute | Data Type | Description +--- | --- | --- +`destination_cart_id` | String! | The ID of the logged-in customer's cart +`source_cart_id` | String! | The ID of the guest cart + +## Output attributes + +The `mergeCarts` mutation returns a `Cart` object. + +Attribute | Data Type | Description +--- | --- | --- +`cart` |[Cart!](#CartObject) | Describes the contents of the specified shopping cart + +### Cart object {#CartObject} + +{% include graphql/cart-object-24.md %} + +[Cart query output]({{page.baseurl}}/graphql/queries/cart.html#cart-output) provides more information about the `Cart` object. + +## Errors + +Error | Description +--- | --- +`Current user does not have an active cart.` | The `mergeCarts` mutation deactivates the guest cart specified in the `source_cart_id` after merging. The guest cannot make any further operations with it. +`Required parameter "destination_cart_id" is missing` | The `destination_cart_id` attribute contains an empty value. +`Required parameter "source_cart_id" is missing` | The `source_cart_id` attribute contains an empty value. +`The current customer isn't authorized.` | The current customer is not currently logged in, or the customer's token does not exist in the `oauth_token` table, or you tried to merge two guest carts. +`The current user cannot perform operations on cart` | The authorized customer tried to merge a guest cart into the cart of another customer. diff --git a/src/guides/v2.4/graphql/mutations/remove-coupon.md b/src/guides/v2.4/graphql/mutations/remove-coupon.md deleted file mode 120000 index fefd4e7f065..00000000000 --- a/src/guides/v2.4/graphql/mutations/remove-coupon.md +++ /dev/null @@ -1 +0,0 @@ -../../../v2.3/graphql/mutations/remove-coupon.md \ No newline at end of file diff --git a/src/guides/v2.4/graphql/mutations/remove-coupon.md b/src/guides/v2.4/graphql/mutations/remove-coupon.md new file mode 100644 index 00000000000..cb41046dfa0 --- /dev/null +++ b/src/guides/v2.4/graphql/mutations/remove-coupon.md @@ -0,0 +1,113 @@ +--- +group: graphql +title: removeCouponFromCart mutation +redirect from: + - /guides/v2.3/graphql/reference/quote-remove-coupon.html +--- + +The `removeCouponFromCart` mutation removes a previously-applied coupon from the cart. The cart must contain at least one item in order to remove the coupon. + +## Syntax + +`mutation: {removeCouponFromCart(input: RemoveCouponFromCartInput) {RemoveCouponFromCartOutput}}` + +## Example usage + +The following example removes a coupon from the cart. + +**Request:** + +``` text +mutation { + removeCouponFromCart( + input: + { cart_id: "IeTUiU0oCXjm0uRqGCOuhQ2AuQatogjG" } + ) { + cart { + items { + product { + name + } + quantity + } + applied_coupons { + code + } + prices { + grand_total{ + value + currency + } + } + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "removeCouponFromCart": { + "cart": { + "items": [ + { + "product": { + "name": "Strive Shoulder Pack" + }, + "quantity": 1 + }, + { + "product": { + "name": "Affirm Water Bottle " + }, + "quantity": 1 + } + ], + "applied_coupons": null, + "prices": { + "grand_total": { + "value": 39, + "currency": "USD" + } + } + } + } + } +} +``` + +## Input attributes + +The `removeCouponFromCart` mutation must contain the following attribute: + +Attribute | Data Type | Description +--- | --- | --- +`cart_id` | String! | The unique ID that identifies the customer's cart + +## Output attributes + +The `removeCouponFromCart` mutation returns the `Cart` object. + +Attribute | Data Type | Description +--- | --- | --- +`cart` |[Cart!](#CartObject) | Describes the contents of the specified shopping cart + +### Cart object {#CartObject} + +{% include graphql/cart-object-24.md %} + +[Cart query output]({{page.baseurl}}/graphql/queries/cart.html#cart-output) provides more information about the `Cart` object. + +## Errors + +Error | Description +--- | --- +`Cart does not contain products.` | The coupon cannot be removed from the empty cart. +`Could not find a cart with ID "XXX"` | The specified `cart_id` value does not exist in the `quote_id_mask` table. +`Current user does not have an active cart.` | The user cannot perform this mutation on the inactive cart. +`Required parameter "cart_id" is missing` | The required `cart_id` argument contains an empty value. +`The coupon code couldn't be deleted. Verify the coupon code and try again.` | The coupon was not removed from the cart. Check the existing shopping cart price rules for details. +`The current user cannot perform operations on cart XXX` | An unauthorized user (guest) tried to add the product into a customer's cart, or an authorized user (customer) tried to add the product into the cart of another customer. +`Wrong store code specified for cart` | The specified `cart_id` does not exist in specified store. diff --git a/src/guides/v2.4/graphql/mutations/remove-giftcard.md b/src/guides/v2.4/graphql/mutations/remove-giftcard.md deleted file mode 120000 index 6a575a3dc18..00000000000 --- a/src/guides/v2.4/graphql/mutations/remove-giftcard.md +++ /dev/null @@ -1 +0,0 @@ -../../../v2.3/graphql/mutations/remove-giftcard.md \ No newline at end of file diff --git a/src/guides/v2.4/graphql/mutations/remove-giftcard.md b/src/guides/v2.4/graphql/mutations/remove-giftcard.md new file mode 100644 index 00000000000..150ac636f8a --- /dev/null +++ b/src/guides/v2.4/graphql/mutations/remove-giftcard.md @@ -0,0 +1,71 @@ +--- +group: graphql +title: removeGiftCardFromCart mutation +ee_only: True +--- + +The `removeGiftCardFromCart` mutation removes a previously-applied gift card from the cart. + +## Syntax + + `mutation: removeGiftCardFromCart(input: RemoveGiftCardFromCartInput): RemoveGiftCardFromCartOutput` + +## Example usage + + The following example removes a gift card from the cart. + +**Request:** + + ``` text +mutation { + removeGiftCardFromCart( + input: { + cart_id: "lOeLKsVkZ1PEvA8A7EaCvmEAk4JRBR7A" + gift_card_code: "049XDMZ6L81X" + } + ) { + cart { + applied_gift_cards { + code + } + } + } +} +``` + +**Response:** + + ```json +{ + "data": { + "removeGiftCardFromCart": { + "cart": { + "applied_gift_cards": [] + } + } + } +} +``` + +## Input attributes + +The `removeGiftCardFromCartInput` object must contain the following attributes: + +Attribute | Data Type | Description +--- | --- | --- +`cart_id` | String! | The unique ID that identifies the customer's cart +`gift_card_code` | String! | The gift card code + +## Output attributes + +The `removeGiftCardFromCartOutput` object contains the `Cart` object. + +Attribute | Data Type | Description +--- | --- | --- +`cart` |[Cart!](#CartObject) | Describes the contents of the specified shopping cart + +### Cart object {#CartObject} + + {% include graphql/cart-object-24.md %} + +[Cart query output]({{page.baseurl}}/graphql/queries/cart.html#cart-output) provides more information about the `Cart` object. diff --git a/src/guides/v2.4/graphql/mutations/remove-item.md b/src/guides/v2.4/graphql/mutations/remove-item.md deleted file mode 120000 index 598684cca87..00000000000 --- a/src/guides/v2.4/graphql/mutations/remove-item.md +++ /dev/null @@ -1 +0,0 @@ -../../../v2.3/graphql/mutations/remove-item.md \ No newline at end of file diff --git a/src/guides/v2.4/graphql/mutations/remove-item.md b/src/guides/v2.4/graphql/mutations/remove-item.md new file mode 100644 index 00000000000..fa89d910f17 --- /dev/null +++ b/src/guides/v2.4/graphql/mutations/remove-item.md @@ -0,0 +1,109 @@ +--- +group: graphql +title: removeItemFromCart mutation +redirect from: + - /guides/v2.3/graphql/reference/quote-remove-item.html +--- + +The `removeItemFromCart` mutation deletes the entire quantity of a specified item from the cart. If you remove all items from the cart, the cart continues to exist. + +## Syntax + +`mutation: {removeItemFromCart(input: RemoveItemFromCartInput): {RemoveItemFromCartOutput}}` + +## Example usage + +The following example removes cart item 14 from the cart. + +**Request:** + +```graphql +mutation { + removeItemFromCart( + input: { + cart_id: "IeTUiU0oCXjm0uRqGCOuhQ2AuQatogjG", + cart_item_id: 14 + } + ) + { + cart { + items { + id + product { + name + } + quantity + } + prices { + grand_total{ + value + currency + } + } + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "removeItemFromCart": { + "cart": { + "items": [ + { + "id": "13", + "product": { + "name": "Strive Shoulder Pack" + }, + "quantity": 3 + } + ], + "prices": { + "grand_total": { + "value": 96, + "currency": "USD" + } + } + } + } + } +} +``` + +## Input attributes + +### RemoveItemFromCartInput object {#RemoveItemFromCartInput} + +The `RemoveItemFromCartInput` object must contain the following attributes: + +Attribute | Data Type | Description +--- | --- | --- +`cart_id` | String! | The unique ID that identifies the customer's cart +`cart_item_id` | Int! | The unique ID assigned when a customer places an item in the cart + +## Output attributes + +The `RemoveItemFromCartOutput` object contains the `Cart` object. + +Attribute | Data Type | Description +--- | --- | --- +`cart` |[Cart!](#CartObject) | Describes the contents of the specified shopping cart + +### Cart object {#CartObject} + +{% include graphql/cart-object-24.md %} + +## Errors + +Error | Description +--- | --- +`Cart doesn't contain the ZZZ item.` | The item ID specified in the `cart_item_id` argument does not exist in the requested shopping cart. +`Could not find a cart with ID "XXX"` | The specified `cart_id` value does not exist in the `quote_id_mask` table. +`Required parameter "cart_id" is missing.` | The value specified in the `cart_id` argument is empty. +`Required parameter "cart_item_id" is missing.` | The value specified in the `cart_item_id` argument is equal to zero. +`The current user cannot perform operations on cart "XXX"` | An unauthorized user (guest) tried to remove a product from the shopping cart of authorized user (customer), or a customer tried to remove a product from the shopping cart of another customer. + +[Cart query output]({{page.baseurl}}/graphql/queries/cart.html#cart-output) provides more information about the `Cart` object. diff --git a/src/guides/v2.4/graphql/mutations/remove-products-from-wishlist.md b/src/guides/v2.4/graphql/mutations/remove-products-from-wishlist.md new file mode 100644 index 00000000000..89e51b497f8 --- /dev/null +++ b/src/guides/v2.4/graphql/mutations/remove-products-from-wishlist.md @@ -0,0 +1,150 @@ +--- +group: graphql +title: removeProductsFromWishlist mutation +--- + +The `removeProductsFromWishlist` mutation completely removes the specified items from the customer's wish list. Use the [`updateProductsInWishlist` mutation]({{page.baseurl}}/graphql/mutations/remove-products-from-wishlist.html) to change the quantity of specific items in the wish list. + +This mutation requires a valid [customer authentication token]({{page.baseurl}}/graphql/mutations/generate-customer-token.html). + +## Syntax + +`mutation: removeProductsFromWishlist(wishlistId: ID! wishlistItemsIds: [ID!]!): RemoveProductsFromWishlistOutput` + +## Example usage + +The following example removes an item that was added in the [`addProductsToWishlist` mutation]({{page.baseurl}}/graphql/mutations/add-products-to-wishlist.html) example. + +**Request:** + +``` graphql +mutation { + removeProductsFromWishlist( + wishlistId: 1 + wishlistItemsIds: [ + 12 + ]){ + wishlist { + id + items_count + items { + id + qty + product { + name + sku + id + price_range { + minimum_price { + regular_price { + currency + value + } + } + maximum_price { + regular_price { + currency + value + } + } + } + } + } + } + user_errors { + code + message + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "removeProductsFromWishlist": { + "wishlist": { + "id": "1", + "items_count": 2, + "items": [ + { + "id": 11, + "qty": 1, + "product": { + "name": "Sprite Yoga Companion Kit", + "sku": "24-WG080", + "id": 46, + "price_range": { + "minimum_price": { + "regular_price": { + "currency": "USD", + "value": 61 + } + }, + "maximum_price": { + "regular_price": { + "currency": "USD", + "value": 77 + } + } + } + } + }, + { + "id": 13, + "qty": 1, + "product": { + "name": "Stellar Solar Jacket", + "sku": "WJ01", + "id": 1226, + "price_range": { + "minimum_price": { + "regular_price": { + "currency": "USD", + "value": 75 + } + }, + "maximum_price": { + "regular_price": { + "currency": "USD", + "value": 75 + } + } + } + } + } + ] + }, + "user_errors": [] + } + } +} +``` + +## Input attributes + +The `removeProductsFromWishlist` mutation requires the following input. + +Attribute | Data Type | Description +--- | --- | --- +`wishlistId` | ID! | The ID of the customer's wish list +`wishlistItemsIds`| [ID!]! | An array of wish list item IDs to be removed + +## Output attributes + +The `RemoveProductsFromWishlistOutput` object contains the customer's wish list and error message information. + +Attribute | Data Type | Description +--- | --- | --- +`user_errors` | [WishListUserInputError!]! | An array of errors encountered while adding products to a wish list +`wishlist` | Wishlist! | Contains the wish list with all items that were successfully added + +### Wishlist attributes {#Wishlist} + +{% include graphql/wishlist.md %} + +### WishListUserInputError attributes {#WishListUserInputError} + +{% include graphql/wishlist-user-input-errors.md %} diff --git a/src/guides/v2.4/graphql/mutations/remove-reward-points.md b/src/guides/v2.4/graphql/mutations/remove-reward-points.md new file mode 100644 index 00000000000..9b26b83d3ef --- /dev/null +++ b/src/guides/v2.4/graphql/mutations/remove-reward-points.md @@ -0,0 +1,96 @@ +--- +group: graphql +title: removeRewardPointsFromCart mutation +ee_only: True +--- + +The `removeRewardPointsFromCart` mutation removes all reward points that were previously applied to the customer's cart with the [`applyRewardPointsToCart` mutation]({{page.baseurl}}/graphql/mutations/apply-reward-points.html). + +## Syntax + +`mutation: removeRewardPointsFromCart(cartId: ID!): RemoveRewardPointsFromCartOutput` + +## Example usage + +The following example removes all reward points from the customer's cart. The `applied_rewards_points` object is now null. + +**Request:** + +```graphql +mutation { + removeRewardPointsFromCart(cartId: "8k0Q4MpH2IGahWrTRtqM61YV2MtLPApz") + { + cart { + applied_reward_points { + money { + currency + value + } + points + } + prices { + applied_taxes { + amount { + currency + value + } + } + grand_total { + currency + value + } + } + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "removeRewardPointsFromCart": { + "cart": { + "applied_reward_points": null, + "prices": { + "applied_taxes": [ + { + "amount": { + "currency": "USD", + "value": 6.93 + } + } + ], + "grand_total": { + "currency": "USD", + "value": 90.93 + } + } + } + } + } +} +``` + +## Input attributes + +The `removeRewardPointsFromCart` mutation requires the `cart_id` attribute. + +Attribute | Data Type | Description +--- | --- | --- +`cart_id` | String! | The unique ID that identifies the customer's cart + +## Output attributes + +The `RemoveRewardPointsFromCartOutput` object contains the `Cart` object. + +Attribute | Data Type | Description +--- | --- | --- +`cart` |[Cart!](#CartObject) | Describes the contents of the specified shopping cart + +### Cart object {#CartObject} + + {% include graphql/cart-object-24.md %} + +[Cart query output]({{page.baseurl}}/graphql/queries/cart.html#cart-output) provides more information about the `Cart` object. diff --git a/src/guides/v2.4/graphql/mutations/remove-store-credit.md b/src/guides/v2.4/graphql/mutations/remove-store-credit.md deleted file mode 120000 index 4744ffbe1e0..00000000000 --- a/src/guides/v2.4/graphql/mutations/remove-store-credit.md +++ /dev/null @@ -1 +0,0 @@ -../../../v2.3/graphql/mutations/remove-store-credit.md \ No newline at end of file diff --git a/src/guides/v2.4/graphql/mutations/remove-store-credit.md b/src/guides/v2.4/graphql/mutations/remove-store-credit.md new file mode 100644 index 00000000000..5f9eda0e0b1 --- /dev/null +++ b/src/guides/v2.4/graphql/mutations/remove-store-credit.md @@ -0,0 +1,97 @@ +--- +group: graphql +title: removeStoreCreditFromCart mutation +ee_only: true +--- + +The `removeStoreCreditFromCart` mutation removes store credit previously applied to the specified cart with the [`applyStoreCreditToCart`]({{page.baseurl}}/graphql/mutations/apply-store-credit.html) mutation. Magento restores the customer's available store credit to its original amount and recalculates all cart totals. + +Store credit must be enabled on the store to run this mutation. + +## Syntax + +`mutation: {RemoveStoreCreditFromCart(input: RemoveStoreCreditFromCartInput): {RemoveStoreCreditFromCartOutput}}` + +## Example usage + +**Request:** + +```graphql +mutation { + removeStoreCreditFromCart( + input: { + cart_id: "4HHaKzxpKM2ZwD0IcheRfcPNBWS3OvRM" + } + ) { + cart { + applied_store_credit { + applied_balance { + currency + value + } + current_balance { + currency + value + } + } + prices { + grand_total { + currency + value + } + } + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "removeStoreCreditFromCart": { + "cart": { + "applied_store_credit": { + "applied_balance": { + "currency": "USD", + "value": 0 + }, + "current_balance": { + "currency": "USD", + "value": 10 + } + }, + "prices": { + "grand_total": { + "currency": "USD", + "value": 34.64 + } + } + } + } + } +} +``` + +## Input attributes + +The `RemoveStoreCreditFromCartInput` object must contain the following attributes. + +Attribute | Data Type | Description +--- | --- | --- +`cart_id` | String! | The unique ID that identifies the customer’s cart + +## Output attributes + +The `RemoveStoreCreditFromCartOutput` object returns the `Cart` object. + +Attribute | Data Type | Description +--- | --- | --- +`cart` |[Cart!](#CartObject) | Describes the contents of the specified shopping cart + +### Cart object {#CartObject} + +{% include graphql/cart-object-24.md %} + +[Cart query output]({{page.baseurl}}/graphql/queries/cart.html#cart-output) provides more information about the `Cart` object. diff --git a/src/guides/v2.4/graphql/mutations/reorder-items.md b/src/guides/v2.4/graphql/mutations/reorder-items.md index 1ef1f0fae04..3b1a5e73ed7 100644 --- a/src/guides/v2.4/graphql/mutations/reorder-items.md +++ b/src/guides/v2.4/graphql/mutations/reorder-items.md @@ -143,7 +143,7 @@ Attribute | Data Type | Description ### Cart object {#CartObject} -{% include graphql/cart-object.md %} +{% include graphql/cart-object-24.md %} [Cart query output]({{page.baseurl}}/graphql/queries/cart.html#cart-output) provides more information about the `Cart` object. diff --git a/src/guides/v2.4/graphql/mutations/request-password-reset-email.md b/src/guides/v2.4/graphql/mutations/request-password-reset-email.md new file mode 100644 index 00000000000..67af3eb88d4 --- /dev/null +++ b/src/guides/v2.4/graphql/mutations/request-password-reset-email.md @@ -0,0 +1,74 @@ +--- +group: graphql +title: requestPasswordResetEmail mutation +contributor_name: Atwix +contributor_link: https://www.atwix.com/ +--- + +The `requestPasswordResetEmail` mutation triggers the password reset email by the provided email address. Use it to initiate the process to reset the registered customer's password before calling the [resetPassword]({{page.baseurl}}/graphql/mutations/reset-password.html) mutation. + +When the customer clicks the `Set a New Password` button, Magento sends an email to the customer that contains a URL for resetting their password. + +![Reset password email]({{ page.baseurl }}/graphql/images/reset-password-email.png) + +The URL has the following format: + +```text +https:///customer/account/createPassword/?token=gh80pkjGdsPyiXc0sUUXswX1uGN7crUr +``` + +Use the value of the token in the `resetPassword` mutation. + +## Syntax + +`mutation: {requestPasswordResetEmail(email: String!): Boolean}` + +## Example usage + +The following call triggers the password reset email. + +**Request:** + +```graphql +mutation { + requestPasswordResetEmail( + email: "roni_cost@example.com" + ) +} +``` + +**Response:** + +```json +{ + "data": { + "requestPasswordResetEmail": true + } +} +``` + +## Input arguments + +You must specify the customer's email address in the `email` input argument. + +## Output attributes + +The `requestPasswordResetEmail` mutation returns `true` if both of the following operations are successful: + +- The reset password operation initiates. +- Magento sends an email containing a reset link. + +Otherwise, the mutation returns `false`. + +## Errors + +Error | Description +--- | --- +`Cannot reset the customer's password` | A general error message that appears on some internal system errors. The original error is logged and can be found in the Magento logs. +`The account is locked` | You cannot modify a locked customer account. +`The email address has an invalid format.` | The value provided in the `email` argument has an invalid format. +`You must specify an email address.` | An empty value is provided in the `email` argument. + +## Related topics + +[resetPassword mutation]({{page.baseurl}}/graphql/mutations/reset-password.html) diff --git a/src/guides/v2.4/graphql/mutations/reset-password.md b/src/guides/v2.4/graphql/mutations/reset-password.md new file mode 100644 index 00000000000..b3d6c693407 --- /dev/null +++ b/src/guides/v2.4/graphql/mutations/reset-password.md @@ -0,0 +1,70 @@ +--- +group: graphql +title: resetPassword mutation +contributor_name: Atwix +contributor_link: https://www.atwix.com/ +--- + +The `resetPassword` mutation resets customer password using a reset password token and the customer's email address. Use it to set a new password for the registered customer after calling the [requestPasswordResetEmail]({{page.baseurl}}/graphql/mutations/request-password-reset-email.html) mutation. + +## Syntax + +`mutation: {resetPassword(email: String!, resetPasswordToken: String!, newPassword: String!): Boolean}` + +## Example usage + +The following call sets a new customer password. + +**Request:** + +```graphql +mutation { + resetPassword( + email: "roni_cost@example.com", + resetPasswordToken: "gh80pkjGdsPyiXc0sUUXswX1uGN7crUr", + newPassword: "new_password" + ) +} +``` + +**Response:** + +```json +{ + "data": { + "resetPassword": true + } +} +``` + +## Input arguments + +The `resetPassword` mutation must contain the following arguments: + +Argument | Type | Description +--- | --- | --- +`email` | String! | Specifies the customer account that needs a password reset +`resetPasswordToken` | String! | A runtime token. You can find it in the reset email URL (see [requestPasswordResetEmail]({{page.baseurl}}/graphql/mutations/request-password-reset-email.html) mutation) or in the `customer_entity`.`rp_token` database table. +`newPassword` | String! | The new password + +{:.bs-callout-info} +The new password must satisfy the password policies set for the store. + +## Output + +The `resetPassword` mutation returns `true` if the request was successful. Otherwise, it returns `false`. + +## Errors + +Error | Description +--- | --- +`Cannot set the customer's password` | A general error message that appears on some internal system errors. The original error is logged and can be found in the Magento logs. +`newPassword must be specified` | The `newPassword` argument is empty. +`resetPasswordToken must be specified` | The `resetPasswordToken` argument is empty. +`The account is locked` | You cannot modify a locked customer account. +`The email address has an invalid format.` | The value provided in the `email` argument has an invalid format. +`You must specify an email address.` | The `email` argument is empty. + +## Related topics + +- [requestPasswordResetEmail mutation]({{page.baseurl}}/graphql/mutations/request-password-reset-email.html) diff --git a/src/guides/v2.4/graphql/mutations/set-billing-address.md b/src/guides/v2.4/graphql/mutations/set-billing-address.md index 192049ecc98..e23263c46ce 100644 --- a/src/guides/v2.4/graphql/mutations/set-billing-address.md +++ b/src/guides/v2.4/graphql/mutations/set-billing-address.md @@ -127,6 +127,6 @@ Attribute | Data Type | Description ### Cart object {#CartObject} -{% include graphql/cart-object.md %} +{% include graphql/cart-object-24.md %} [Cart query output]({{page.baseurl}}/graphql/queries/cart.html#cart-output) provides more information about the `Cart` object. diff --git a/src/guides/v2.4/graphql/mutations/set-gift-options.md b/src/guides/v2.4/graphql/mutations/set-gift-options.md new file mode 100644 index 00000000000..79c104ad0f2 --- /dev/null +++ b/src/guides/v2.4/graphql/mutations/set-gift-options.md @@ -0,0 +1,186 @@ +--- +group: graphql +title: setGiftOptionsOnCart mutation +--- + +The `setGiftOptionsOnCart` mutation allows the buyer to set the following gift options on the cart level: + +* Gift messages +* Gift wrapping +* A gift receipt to accompany the order +* A printed card to accompany the order + +{:.bs-callout-info} +Gift messages are a feature of {{site.data.var.ce}}. All other gift options require {{site.data.var.ee}}. + +To remove a gift message, set the `gift_message` object to null. To remove gift wrapping, set the `gift_wrapping_id` attribute to null. + +Use the [updateCartItems mutation]({{page.baseurl}}/graphql/mutations/update-cart-items.html) to set gift messages and gift wrapping on individual items. + +These options are configured on the **Stores** > Configuration > **Sales** > **Sales** > **Gift Options** screen. To determine whether these options are enabled, specify these attributes in the [`storeConfig` query]({{page.baseurl}}/graphql/queries/store-config.html). + +* `allow_gift_receipt` +* `allow_gift_wrapping_on_order` +* `allow_printed_card` +* `cart_gift_wrapping` +* `cart_printed_card` +* `printed_card_price` +* `sales_gift_wrapping` +* `sales_printed_card` + +Gift wrapping is available for simple, configurable, bundle products as well as physical gift cards. + +## Syntax + +`mutation: {setGiftOptionsOnCart(input: SetGiftOptionsOnCartInput): SetGiftOptionsOnCartOutput}` + +## Example usage + +The following example adds a gift message, gift wrapping, and a gift receipt to the cart. + +**Request:** + +```graphql +mutation { + setGiftOptionsOnCart( + input: { + cart_id: "8k0Q4MpH2IGahWrTRtqM61YV2MtLPApz" + gift_message: { + to: "Alex" + from: "Veronica" + message: "Happy Birthday!" + } + gift_wrapping_id: "Mg==" + gift_receipt_included: true + printed_card_included: false + } + ) { + cart { + id + gift_message { + to + from + message + } + gift_wrapping { + id + } + gift_receipt_included + printed_card_included + items { + quantity + prices { + price { + value + currency + } + } + } + prices { + gift_options { + gift_wrapping_for_order { + value + currency + } + } + grand_total { + value + currency + } + } + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "setGiftOptionsOnCart": { + "cart": { + "id": "8k0Q4MpH2IGahWrTRtqM61YV2MtLPApz", + "gift_message": { + "to": "Alex" + "from": "Veronica" + "message": "Happy Birthday!" + } + "gift_wrapping": { + "id": "2" + }, + "gift_receipt_included": true, + "printed_card_included": false, + "items": [ + { + "quantity": 1, + "prices": { + "price": { + "value": 32, + "currency": "USD" + } + } + }, + { + "quantity": 1, + "prices": { + "price": { + "value": 84, + "currency": "USD" + } + } + } + ], + "prices": { + "gift_options": { + "gift_wrapping_for_order": { + "value": 7, + "currency": "USD" + } + }, + "grand_total": { + "value": 132.57, + "currency": "USD" + } + } + } + } + } +} +``` + +## Input attributes + +The `SetGiftOptionsOnCartInput` object can contain the following attributes: + +Attribute | Data Type | Description +--- | --- | --- +`cart_id` | String! | The unique ID that identifies the shopper's cart +`gift_message` | [GiftMessageInput](#GiftMessageInput) | Gift message details for the cart +`gift_receipt_included` | Boolean! | Indicates whether the customer requested a gift receipt for the cart +`gift_wrapping_id` | ID | The unique identifier of the gift wrapping to be used for the cart +`printed_card_included` | Boolean! | Indicates whether the customer requested a printed card for the cart + +### GiftMessageInput {#GiftMessageInput} + +The `GiftMessageInput` object must contain the following attributes: + +Attribute | Data Type | Description +--- | --- | --- +`from` | String! | The name of the gift sender +`message` | String! | The text of the gift message +`to` | String! | The name of the gift recipient + +## Output attributes + +The `SetGiftOptionsOnCartOutput` object contains the `Cart` object. + +Attribute | Data Type | Description +--- | --- | --- +`cart` |[Cart!](#CartObject) | Describes the contents of the specified shopping cart + +### Cart object {#CartObject} + +{% include graphql/cart-object-24.md %} + +[Cart query output]({{page.baseurl}}/graphql/queries/cart.html#cart-output) provides more information about the `Cart` object. diff --git a/src/guides/v2.4/graphql/mutations/set-guest-email.md b/src/guides/v2.4/graphql/mutations/set-guest-email.md deleted file mode 120000 index 531609ec568..00000000000 --- a/src/guides/v2.4/graphql/mutations/set-guest-email.md +++ /dev/null @@ -1 +0,0 @@ -../../../v2.3/graphql/mutations/set-guest-email.md \ No newline at end of file diff --git a/src/guides/v2.4/graphql/mutations/set-guest-email.md b/src/guides/v2.4/graphql/mutations/set-guest-email.md new file mode 100644 index 00000000000..d2b17dac1e8 --- /dev/null +++ b/src/guides/v2.4/graphql/mutations/set-guest-email.md @@ -0,0 +1,81 @@ +--- +group: graphql +title: setGuestEmailOnCart mutation +redirect from: + - /guides/v2.3/graphql/reference/quote-set-guest-email.html +--- + +For guest customers, you must assign an email to the cart before you place the order. + +A logged-in customer specifies an email address when they create an account. Therefore, you can place the order without explicitly setting the email. + +## Syntax + +`mutation: {setGuestEmailOnCart(input: SetGuestEmailOnCartInput): {SetGuestEmailOnCartOutput}}` + +## Example usage + +**Request:** + +```graphql +mutation { + setGuestEmailOnCart( + input: { + cart_id: "4JQaNVJokOpFxrykGVvYrjhiNv9qt31C" + email: "jdoe@example.com" + } + ) { + cart { + email + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "setGuestEmailOnCart": { + "cart": { + "email": "jdoe@example.com" + } + } + } +} +``` + +## Input attributes + +The `SetGuestEmailOnCartInput` object must contain the following attributes. + +Attribute | Data Type | Description +--- | --- | --- +`cart_id` | String! | The unique ID that identifies the customer’s cart +`email` | String! | The guest user's email + +## Output attributes + +The `SetGuestEmailOnCartOutput` object contains the `Cart` object. + +Attribute | Data Type | Description +--- | --- | --- +`cart` |[Cart!](#CartObject) | Describes the contents of the specified shopping cart + +### Cart object {#CartObject} + +{% include graphql/cart-object-24.md %} + +[Cart query output]({{page.baseurl}}/graphql/queries/cart.html#cart-output) provides more information about the `Cart` object. + +## Errors + +Error | Description +--- | --- +`Could not find a cart with ID "XXX"` | The ID specified in the `cart` argument does not exist. +`Invalid email format` | The value specified in the `email` argument has an incorrect format. +`Required parameter "cart_id" is missing` | The `cart_id` argument was omitted or contains an empty value. +`Required parameter "email" is missing` | The `email` argument was omitted or contains an empty value. +`The current user cannot perform operations on cart "XXX"` | An unauthorized user (guest) tried to set the email address on the customer's cart. +`The request is not allowed for logged in customers` | An authorized user (customer) is not allowed to use the `setGuestEmailOnCart` mutation. diff --git a/src/guides/v2.4/graphql/mutations/set-payment-method.md b/src/guides/v2.4/graphql/mutations/set-payment-method.md index 48182529870..8683ec1dc40 100644 --- a/src/guides/v2.4/graphql/mutations/set-payment-method.md +++ b/src/guides/v2.4/graphql/mutations/set-payment-method.md @@ -20,6 +20,7 @@ Supported online payment methods include: - [PayPal Express Checkout]({{page.baseurl}}/graphql/payment-methods/paypal-express-checkout.html) - [PayPal Payflow Link]({{page.baseurl}}/graphql/payment-methods/payflow-link.html) - [PayPal Payflow Pro]({{page.baseurl}}/graphql/payment-methods/payflow-pro.html) +- [PayPal Payflow Pro Vault]({{page.baseurl}}/graphql/payment-methods/payflow-pro-vault.html) - [PayPal Payments Advanced]({{page.baseurl}}/graphql/payment-methods/payments-advanced.html) - [PayPal Website Payments Pro Hosted Solution]({{page.baseurl}}/graphql/payment-methods/hosted-pro.html) - [Express Checkout for other PayPal solutions]({{page.baseurl}}/graphql/payment-methods/payflow-express.html) @@ -105,7 +106,7 @@ Attribute | Data Type | Description ### Cart object {#CartObject} -{% include graphql/cart-object.md %} +{% include graphql/cart-object-24.md %} [Cart query output]({{page.baseurl}}/graphql/queries/cart.html#cart-output) provides more information about the `Cart` object. diff --git a/src/guides/v2.4/graphql/mutations/set-shipping-address.md b/src/guides/v2.4/graphql/mutations/set-shipping-address.md index c97dda8c7b6..ce1b5c2501a 100644 --- a/src/guides/v2.4/graphql/mutations/set-shipping-address.md +++ b/src/guides/v2.4/graphql/mutations/set-shipping-address.md @@ -134,6 +134,6 @@ Attribute | Data Type | Description ### Cart object {#CartObject} -{% include graphql/cart-object.md %} +{% include graphql/cart-object-24.md %} [Cart query output]({{page.baseurl}}/graphql/queries/cart.html#cart-output) provides more information about the `Cart` object. diff --git a/src/guides/v2.4/graphql/mutations/set-shipping-method.md b/src/guides/v2.4/graphql/mutations/set-shipping-method.md index 3bf8066fbed..6e29429c8aa 100644 --- a/src/guides/v2.4/graphql/mutations/set-shipping-method.md +++ b/src/guides/v2.4/graphql/mutations/set-shipping-method.md @@ -114,7 +114,7 @@ Attribute | Data Type | Description ### Cart object {#CartObject} -{% include graphql/cart-object.md %} +{% include graphql/cart-object-24.md %} [Cart query output]({{page.baseurl}}/graphql/queries/cart.html#cart-output) provides more information about the `Cart` object. diff --git a/src/guides/v2.4/graphql/mutations/subscribe-email-to-newsletter.md b/src/guides/v2.4/graphql/mutations/subscribe-email-to-newsletter.md new file mode 100644 index 00000000000..d92fc5d8e24 --- /dev/null +++ b/src/guides/v2.4/graphql/mutations/subscribe-email-to-newsletter.md @@ -0,0 +1,79 @@ +--- +group: graphql +title: subscribeEmailToNewsletter mutation +contributor_name: Atwix +contributor_link: https://www.atwix.com/ +--- + +The `subscribeEmailToNewsletter` mutation allows guests and registered customers to sign up to receive newsletters. + +## Syntax + +`mutation: {subscribeEmailToNewsletter(email: String!): SubscribeEmailToNewsletterOutput}` + +## Example usage + +The following call subscribes an email to the store's newsletter. + +**Request:** + +```graphql +mutation { + subscribeEmailToNewsletter( + email: "email@example.com" + ) { + status + } +} +``` + +**Response:** + +```json +{ + "data": { + "subscribeEmailToNewsletter": { + "status": "SUBSCRIBED" + } + } +} +``` + +## Input arguments + +The mutation contains a required `email` parameter that specifies the email address to be added into a newsletter subscription. + +## Output attributes + +The `SubscribeEmailToNewsletterOutput` object contains the following attributes: + +Attribute | Data Type | Description +--- | --- | --- +`status` | SubscriptionStatusesEnum | Contains a subscription status of specified `email` address. + +### SubscriptionStatusesEnum + +The `SubscriptionStatusesEnum` is a predefined set of possible subscription statuses: + +Value | Description +--- | --- +`NOT_ACTIVE` | The subscription requires a confirmation. A confirmation email has been sent to specified email address to confirm the subscription. +`SUBSCRIBED` | The email address is subscribed. +`UNSUBSCRIBED` | The email address is unsubscribed. +`UNCONFIRMED` | The specified email is that of a customer who did not previously confirm a required customer registration. + +The `subscribeEmailToNewsletter` mutation for the `status` field may return only the following statuses: + +- `NOT_ACTIVE` +- `SUBSCRIBED` + +## Errors + +Error | Description +--- | --- +`Cannot create a newsletter subscription.` | A general error message that appears on some internal system errors. The original error is logged and can be found in the Magento logs. +`Enter a valid email address.` | The value provided in the `email` argument has an invalid format. +`Guests can not subscribe to the newsletter. You must create an account to subscribe.` | Guest subscription is disabled. Go to **Stores** > **Configuration** > **Customers** > **Newsletter** > **Subscription Options** > **Allow Guest Subscription** in the Admin to adjust the setting. +`The account sign-in was incorrect or your account is disabled temporarily.` | The email address provided in the `email` argument is that of a customer account pending confirmation. +`This email address is already subscribed.` | The email address provided in the `email` argument is already subscribed. +`You must specify an email address to subscribe to a newsletter.`| The `email` argument is empty. diff --git a/src/guides/v2.4/graphql/mutations/update-cart-items.md b/src/guides/v2.4/graphql/mutations/update-cart-items.md deleted file mode 120000 index 90487b01f6f..00000000000 --- a/src/guides/v2.4/graphql/mutations/update-cart-items.md +++ /dev/null @@ -1 +0,0 @@ -../../../v2.3/graphql/mutations/update-cart-items.md \ No newline at end of file diff --git a/src/guides/v2.4/graphql/mutations/update-cart-items.md b/src/guides/v2.4/graphql/mutations/update-cart-items.md new file mode 100644 index 00000000000..c534762e1f8 --- /dev/null +++ b/src/guides/v2.4/graphql/mutations/update-cart-items.md @@ -0,0 +1,152 @@ +--- +group: graphql +title: updateCartItems mutation +--- + +The `updateCartItems` mutation allows you to modify items in the specified cart. You can also replace the current quantity of one or more cart items with the specified quantities. The mutation does not perform calculations to determine the quantity of cart items. + +{:.bs-callout-info} +Setting the quantity to `0` removes an item from the cart. + +## Syntax + +`mutation: {updateCartItems(input: UpdateCartItemsInput): {UpdateCartItemsOutput}}` + +## Example usage + +The following example changes the quantity of cart item `13`. The new quantity is `3`. + +**Request:** + +```graphql +mutation { + updateCartItems( + input: { + cart_id: "IeTUiU0oCXjm0uRqGCOuhQ2AuQatogjG", + cart_items: [ + { + cart_item_id: 13 + quantity: 3 + } + ] + } + ){ + cart { + items { + id + product { + name + } + quantity + } + prices { + grand_total{ + value + currency + } + } + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "updateCartItems": { + "cart": { + "items": [ + { + "id": "13", + "product": { + "name": "Strive Shoulder Pack" + }, + "quantity": 3 + }, + { + "id": "14", + "product": { + "name": "Affirm Water Bottle " + }, + "quantity": 1 + } + ], + "prices": { + "grand_total": { + "value": 103, + "currency": "USD" + } + } + } + } + } +} +``` + +## Input attributes + +The `UpdateCartItemsInput` object is listed first. All child objects are listed in alphabetical order. + +### UpdateCartItemsInput attributes {#UpdateCartItemsInput} + +The `UpdateCartItemsInput` object must contain the following attributes. + +Attribute | Data Type | Description +--- | --- | --- +`cart_id` | String! | The unique ID that identifies the customer's cart +`cart_items` | [CartItemUpdateInput!](#CartItemUpdateInput) | Contains the cart item IDs and quantity of each item + +### CartItemUpdateInput attributes {#CartItemUpdateInput} + +The `CartItemUpdateInput` object can contain the following attributes. + +Attribute | Data Type | Description +--- | --- | --- +`cart_item_id` | Int! | The unique ID assigned when a customer places an item in the cart +`customizable_options` | [CustomizableOptionInput!] | An array that defines customizable options for the product +`gift_message` | [GiftMessageInput](#GiftMessageInput) | Gift message details for the cart item +`gift_wrapping_id` | ID | The unique identifier of the gift wrapping to be used for the cart item +`quantity` | Float | The new quantity of the item. A value of `0` removes the item from the cart + +### CustomizableOptionInput attributes {#CustomizableOptionInputSimple} + +The `CustomizableOptionInput` object must contain the following attributes. + +{% include graphql/customizable-option-input.md %} + +### GiftMessageInput attributes {#GiftMessageInput} + +The `GiftMessageInput` object must contain the following attributes. + +Attribute | Data Type | Description +--- | --- | --- +`from` | String! | The name of the gift sender +`message` | String! | The text of the gift message +`to` | String! | The name of the gift recipient + +## Output attributes + +The `UpdateCartItemsOutput` object contains the `Cart` object. + +Attribute | Data Type | Description +--- | --- | --- +`cart` |[Cart!](#CartObject) | Describes the contents of the specified shopping cart + +### Cart object {#CartObject} + +{% include graphql/cart-object-24.md %} + +[Cart query output]({{page.baseurl}}/graphql/queries/cart.html#cart-output) provides more information about the `Cart` object. + +## Errors + +Error | Description +--- | --- +`Could not find cart item with id: XXX` | The specified `input`.`cart_items`.`cart_item_id` value does not exist in the `quote_item` database table. +`Could not find a cart with ID "XXX"` | The specified `cart_id` value does not exist in the `quote_id_mask` database table. +`Required parameter "cart_id" is missing.` | The value specified in the `cart_id` argument is empty. +`Required parameter "cart_items" is missing.` | The `cart_items` argument is empty, or its value is specified as a non-array value. +`Required parameter "quantity" for "cart_items" is missing.` | The required `input`.`cart_items`.`quantity` argument must be specified. +`The current user cannot perform operations on cart "XXX"` | An unauthorized user (guest) tried to update a customer's cart, or an authorized user (customer) tried to update the cart of another customer. diff --git a/src/guides/v2.4/graphql/mutations/update-customer-email.md b/src/guides/v2.4/graphql/mutations/update-customer-email.md new file mode 100644 index 00000000000..01459015867 --- /dev/null +++ b/src/guides/v2.4/graphql/mutations/update-customer-email.md @@ -0,0 +1,64 @@ +--- +group: graphql +title: updateCustomerEmail mutation +--- + +Use the `updateCustomerEmail` mutation to change the email address for the logged-in customer. + +To return or modify information about a customer, Magento recommends you use customer tokens in the header of your GraphQL calls. However, you also can use [session authentication]({{ page.baseurl }}/get-started/authentication/gs-authentication-session.html). + +## Syntax + +`mutation: updateCustomerEmail(email: String! password: String!): CustomerOutput` + +## Example usage + +The following call updates the customer's email address. + +**Request:** + +```graphql +mutation { + updateCustomerEmail(email: "new_email@example.com", password: "roni_cost3@example.com") { + customer { + email + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "updateCustomerEmail": { + "customer": { + "email": "new_email@example.com" + } + } + } +} +``` + +## Input attributes + +The `updateCustomerEmail` mutation requires the following inputs: + +Attribute | Data Type | Description +--- | --- | --- +`email` | String! | The customer's new email address +`password` | String! | The customer's password + +## Output attributes + +The `updateCustomerEmail` mutation returns the `customer` object. + +The following table lists the top-level attributes of the `customer` object. See the [`customer` query]({{page.baseurl}}/graphql/queries/customer.html) for complete details about this object. + +{% include graphql/customer-output-24.md %} + +## Related topics + +* [customer query]({{page.baseurl}}/graphql/queries/customer.html) +* [updateCustomerV2 mutation]({{page.baseurl}}/graphql/mutations/update-customer-v2.html) diff --git a/src/guides/v2.4/graphql/mutations/update-customer-v2.md b/src/guides/v2.4/graphql/mutations/update-customer-v2.md new file mode 100644 index 00000000000..0e78dde5de1 --- /dev/null +++ b/src/guides/v2.4/graphql/mutations/update-customer-v2.md @@ -0,0 +1,86 @@ +--- +group: graphql +title: updateCustomerV2 mutation +--- + +The `updateCustomerV2` mutation updates the personal information in an existing customer account. Use the [`updateCustomerEmail` mutation]({{page.baseurl}}/graphql/mutations/update-customer-email.html) to update the customer's email address. + +The `updateCustomerV2` mutation supersedes the `updateCustomer` mutation as the means to update a customer account. The input objects differ between these two mutations. The `updateCustomer` mutation required the `CustomerInput` object, as did the `createCustomer` mutation. Updating a customer does not require any specific attribute, while several attributes are required when you create a customer. You could not determine this by looking at the schema for those mutations. The `updateCustomerV2` mutation requires the `CustomerUpdateInput` object, which it does not share with the [`createCustomerV2` mutation]({{page.baseurl}}/graphql/mutations/create-customer-v2.html). + +To return or modify information about a customer, Magento recommends you use customer tokens in the header of your GraphQL calls. However, you also can use [session authentication]({{ page.baseurl }}/get-started/authentication/gs-authentication-session.html). + +## Syntax + +`mutation: {updateCustomerV2(input: CustomerUpdateInput!) {CustomerOutput}}` + +## Example usage + +The following call updates the first name and the newsletter subscription status for a specific customer. + +**Request:** + +```graphql +mutation { + updateCustomerV2( + input: { + firstname: "Robert" + is_subscribed: false + } + ) { + customer { + firstname + is_subscribed + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "updateCustomerV2": { + "customer": { + "firstname": "Robert", + "is_subscribed": false + } + } + } +} +``` + +## Input attributes + +The following table lists the attributes you can use as input for the `updateCustomerV2` mutation. + +Attribute | Data Type | Description +--- | --- | --- +`date_of_birth` | String | The customer’s date of birth +`dob` | String | Deprecated. Use `date_of_birth` instead. The customer’s date of birth +`firstname` | String | The customer’s first name +`gender` | Int | The customer's gender (Male - 1, Female - 2) +`is_subscribed` | Boolean | Indicates whether the customer subscribes to the store's newsletter +`lastname` | String | The customer’s last name +`middlename` | String | The customer’s middle name +`password` | String | The customer's password +`prefix` | String | An honorific, such as Dr., Mr., or Mrs. +`suffix` | String | A value such as Sr., Jr., or III +`taxvat` | String | The customer’s Tax/VAT number (for corporate customers) + +## Output attributes + +The `CustomerOutput` object contains the `Customer` object. + +The following table lists the top-level attributes of the `customer` object. See the [`customer` query]({{page.baseurl}}/graphql/queries/customer.html) for complete details about this object. + +{% include graphql/customer-output-24.md %} + +## Related topics + +* [customer query]({{page.baseurl}}/graphql/queries/customer.html) +* [createCustomerV2 mutation]({{page.baseurl}}/graphql/mutations/create-customer-v2.html) +* [createCustomerAddress mutation]({{page.baseurl}}/graphql/mutations/create-customer-address.html) +* [updateCustomerAddress mutation]({{page.baseurl}}/graphql/mutations/update-customer-address.html) +* [updateCustomerEmail mutation]({{page.baseurl}}/graphql/mutations/update-customer-email.html) +* [deleteCustomerAddress mutation]({{page.baseurl}}/graphql/mutations/delete-customer-address.html) diff --git a/src/guides/v2.4/graphql/mutations/update-customer.md b/src/guides/v2.4/graphql/mutations/update-customer.md index a6ca42d05cf..52b9c4c861f 100644 --- a/src/guides/v2.4/graphql/mutations/update-customer.md +++ b/src/guides/v2.4/graphql/mutations/update-customer.md @@ -3,7 +3,10 @@ group: graphql title: updateCustomer mutation --- -Use the `updateCustomer` mutation to update the customer's personal information. +{:.bs-callout-warning} +Magento recommends using the [updateCustomerV2 mutation]({{page.baseurl}}/graphql/mutations/update-customer-v2.html) to update a customer. + +The `updateCustomer` mutation updates the customer's personal information. To return or modify information about a customer, Magento recommends you use customer tokens in the header of your GraphQL calls. However, you also can use [session authentication]({{ page.baseurl }}/get-started/authentication/gs-authentication-session.html). @@ -58,6 +61,8 @@ The following table lists the attributes you can use as input for the `updateCus The `updateCustomer` mutation returns the `CustomerOutput` object. +The following table lists the top-level attributes of the `customer` object. See the [`customer` query]({{page.baseurl}}/graphql/queries/customer.html) for complete details about this object. + {% include graphql/customer-output-24.md %} ## Related topics diff --git a/src/guides/v2.4/graphql/mutations/update-products-in-wishlist.md b/src/guides/v2.4/graphql/mutations/update-products-in-wishlist.md new file mode 100644 index 00000000000..687a8c42b4c --- /dev/null +++ b/src/guides/v2.4/graphql/mutations/update-products-in-wishlist.md @@ -0,0 +1,209 @@ +--- +group: graphql +title: updateProductsInWishlist mutation + +--- + +The `updateProductsInWishlist` mutation changes the quantity, description and option information for the specified items in the customer's wish list. + +{:.bs-callout-info} +Use the `removeProductsFromWishlist` mutation to remove an item from the wish list. Do not set the quantity of an item to 0. + +This mutation requires a valid [customer authentication token]({{page.baseurl}}/graphql/mutations/generate-customer-token.html). + +## Syntax + +`mutation: updateProductsInWishlist(wishlistId: ID! wishlistItems: [WishlistItemUpdateInput!]!): UpdateProductsInWishlistOutput` + +## Example usage + +The following example changes the quantity of the product represented by wish list item `16` to `2` and adds a description for item `17`. + +**Request:** + +``` graphql +mutation { + updateProductsInWishlist( + wishlistId: 1 + wishlistItems: [ + { + wishlist_item_id: 16 + quantity: 2 + } + { + wishlist_item_id: 17 + description: "I love this!" + } + ]){ + wishlist { + id + items_count + items { + id + qty + product { + name + sku + id + ... on BundleProduct { + items { + sku + options { + id + uid + } + } + } + price_range { + minimum_price { + regular_price { + currency + value + } + } + maximum_price { + regular_price { + currency + value + } + } + } + } + } + } + user_errors { + code + message + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "updateProductsInWishlist": { + "wishlist": { + "id": "1", + "items_count": 3, + "items": [ + { + "id": 16, + "qty": 2, + "product": { + "name": "Joust Duffle Bag", + "sku": "24-MB01", + "id": 1, + "price_range": { + "minimum_price": { + "regular_price": { + "currency": "USD", + "value": 34 + } + }, + "maximum_price": { + "regular_price": { + "currency": "USD", + "value": 34 + } + } + } + } + }, + { + "id": 17, + "qty": 1, + "product": { + "name": "Stellar Solar Jacket", + "sku": "WJ01", + "id": 1226, + "price_range": { + "minimum_price": { + "regular_price": { + "currency": "USD", + "value": 75 + } + }, + "maximum_price": { + "regular_price": { + "currency": "USD", + "value": 75 + } + } + } + } + }, + { + "id": 18, + "qty": 1, + "product": { + "name": "Sprite Yoga Companion Kit", + "sku": "24-WG080", + "id": 46, + "price_range": { + "minimum_price": { + "regular_price": { + "currency": "USD", + "value": 61 + } + }, + "maximum_price": { + "regular_price": { + "currency": "USD", + "value": 77 + } + } + } + } + } + ] + }, + "user_errors": [] + } + } +} +``` + +## Input attributes + +The `updateProductsInWishlist` mutation requires the following input. + +Attribute | Data Type | Description +--- | --- | --- +`wishlistId` | ID! | The ID of the customer's wish list +`wishlistItems`| [[WishlistItemUpdateInput!](#WishlistItemUpdateInput)]! | An array containing products to be updated + +### WishlistItemUpdateInput attributes {#WishlistItemUpdateInput} + +The `WishlistItemUpdateInput` object defines each item to add to the wish list. + +Attribute | Data Type | Description +--- | --- | --- +`description` | String | Customer-entered comments about the item +`entered_options`| [EnteredOptionInput] | An array of options that the customer entered +`quantity` | Float | The amount or number of items to add +`selected_options` | [ID!] | An array of strings corresponding to options the customer selected +`wishlist_item_id` | ID! | The ID of the wishlist item to update + +### EnteredOptionInput attributes {#EnteredOptionInput} + +{% include graphql/entered-option-input.md %} + +## Output attributes + +The `UpdateProductsInWishlistOutput` object contains the customer's wish list and error message information. + +Attribute | Data Type | Description +--- | --- | --- +`user_errors` | [WishListUserInputError!]! | An array of errors encountered while adding products to a wish list +`wishlist` | Wishlist! | Contains the wish list with all items that were successfully added + +### Wishlist attributes {#Wishlist} + +{% include graphql/wishlist.md %} + +### WishListUserInputError attributes {#WishListUserInputError} + +{% include graphql/wishlist-user-input-errors.md %} diff --git a/src/guides/v2.4/graphql/payment-methods/klarna.md b/src/guides/v2.4/graphql/payment-methods/klarna.md new file mode 100644 index 00000000000..35640708522 --- /dev/null +++ b/src/guides/v2.4/graphql/payment-methods/klarna.md @@ -0,0 +1,135 @@ +--- +group: graphql +title: Klarna payment method +contributor_name: Klarna +contributor_link: https://www.klarna.com/ +--- + +Klarna Payments enables your consumers to try before they buy, finance purchases on your store with Klarna, or let them pay directly. Klarna offers these payment methods through a widget that you can add inline on your checkout page. + +## Klarna payments workflow + +The following diagram shows the workflow for placing an order when Klarna is the selected payment method. + +Klarna payments require cart information to initiate the session. For this reason, the following steps can be executed only after a cart has been created. + +![Klarna payments sequence diagram]({{ page.baseurl }}/graphql/images/klarna-payments.svg) + +1. The PWA client calls the [`createKlarnaPaymentsSession`]({{ page.baseurl }}/graphql/mutations/create-klarna-payments-session.html) mutation to generate the `client_token` and retrieve a list of `payment_categories`. + + This step can be executed at any time after the cart is created. However, we recommend that you add products to the cart and set the billing address, shipping address, and shipping method on the cart before you perform this step. + +1. Magento forwards the request to Klarna. + +1. Klarna returns the `client_token` and the `payment_categories` available to the shopper. + +1. Magento forwards the token to the client. + +1. The client sends the `cart` query to retrieve the available payment methods. + +1. Magento must always retrieve the latest status information from Klarna before returning the Klarna payments method as an option to the shopper. This is important to ensure that the shopper is always shown the latest available payment options. + +1. Klarna returns an updated list of `payment_categories`. + +1. Magento returns all available payment methods, including Klarna payment methods. + +1. The PWA client renders the Klarna payment widget. + + The PWA client uses the `client_token` and `payment_categories` to initialize the [Klarna Payments JS SDK](https://developers.klarna.com/documentation/klarna-payments/javascript-sdk/). + +1. The PWA client sends the [authorization](https://developers.klarna.com/documentation/klarna-payments/single-call-descriptions/authorize-the-purchase/) directly to Klarna. + + On the checkout page, the shopper selects Klarna as the payment method and clicks **Place Order**. When this happens, the PWA client must send the `authorize()` call to Klarna. Then the shopper follows the authorization steps on the Klarna inline modal. During this phase, the communication between the PWA client and Klarna is handled directly by the Klarna Payments JS SDK. + +1. Klarna returns the `authorization_token` in response to the authorize call. + +1. Set the Payment Method providing the `authorization_token` as part of the `setPaymentMethodOnCart` mutation. + + The client uses the [`setPaymentMethodOnCart`]({{ page.baseurl }}/graphql/mutations/set-payment-method.html) mutation to set the payment method to `klarna_`. The `authorization_token` is passed in the `klarna` object. + +1. Magento returns an updated `cart` object. + +1. The PWA client runs the `placeOrder` mutation. + +1. Magento sends the place order request to Klarna. + +1. Klarna sends the response to Magento. + +1. Magento creates an order and sends an order ID in response to the `placeOrder` mutation. + +## How to handle cart updates + +During the purchase flow, the cart can be updated by adding additional products, applying coupons, and changing the billing or shipping address. All these events might cause a change in Klarna options for the specific shopper. + +In order to always present shoppers with the latest available payment options provided by Klarna, the PWA client must: + +1. Perform a cart update. + +1. Magento returns an updated `cart` object. + +1. Send the `cart` query to retrieve the latest available payment methods. + +1. Magento sends another request to Klarna with the latest information available from the cart. + +1. Klarna returns new list of payment methods. Note that the list might contain different options for the shopper. + +1. Magento returns an updated `cart` object. + +1. [Reload the widget](https://developers.klarna.com/documentation/klarna-payments/single-call-descriptions/load-klarna-payments/) on the client side. + +The following diagram describes the workflow: + +![Klarna payments cart updates sequence diagram]({{ page.baseurl }}/graphql/images/klarna-payments-cart-updates.svg) + +## setPaymentMethodOnCart mutation + +When you set the payment method to Klarna in the [`setPaymentMethodOnCart`]({{ page.baseurl }}/graphql/mutations/set-payment-method.html) mutation, the `payment_method` object must contain a `klarna` object. + +### klarna object + +The `klarna` object must contain the following attributes: + +Attribute | Data Type | Description +--- | --- | --- +`authorization_token` | String! | The one-time authorization token generated by the Klarna payment gateway based on shopper details collected during the purchase flow + +## Example usage + +The following example shows the `setPaymentMethodOnCart` mutation constructed for the Klarna payment method. + +**Request:** + +```graphql +mutation { + setPaymentMethodOnCart(input: { + cart_id: "3WxC8gQn4Fbo55yqVLSiUFJ9fmEwnlxG" + payment_method: { + code: "klarna_pay_later" + klarna: { + authorization_token: "e9abc610-6748-256f-a506-355626551326" + } + } + }) { + cart { + selected_payment_method { + code + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "setPaymentMethodOnCart": { + "cart": { + "selected_payment_method": { + "code": "klarna_pay_later" + } + } + } + } +} +``` diff --git a/src/guides/v2.4/graphql/payment-methods/payflow-pro-vault.md b/src/guides/v2.4/graphql/payment-methods/payflow-pro-vault.md new file mode 100644 index 00000000000..0bb3b3d8ae5 --- /dev/null +++ b/src/guides/v2.4/graphql/payment-methods/payflow-pro-vault.md @@ -0,0 +1,98 @@ +--- +group: graphql +title: PayPal Payflow Pro Vault payment method +--- + +PayPal Payflow Pro Vault payment method processes credit and debit card payments using information stored in the Magento vault. This payment method is available for customers of the United States, Canada, Australia, and New Zealand. + +The following conditions must be true to use this payment method: + +- The shopper must be a logged-in customer. + +- The customer must have previously saved their payment information in the Magento vault. + +You cannot use this payment method if the customer decides to use a credit or debit card that is not stored in the Magento vault. + +If the customer's stored payment information becomes outdated, use the [deletePaymentToken mutation]({{page.baseurl}}/graphql/mutations/delete-payment-token.html) to remove the token. Then perform the actions described in the [PayPal Payflow Pro payment method]({{page.baseurl}}/graphql/) to generate a new token and process the order. + +{:.bs-callout-info} +Use the [`storeConfig` query]({{page.baseurl}}/graphql/queries/store-config.html) and specify the `payment_payflowpro_cc_vault_active` attribute to determine whether the Vault feature is enabled for Payflow Pro. + +## Payflow Pro workflow + +The following diagram shows the workflow for placing an order when Payflow Pro Vault is the selected payment method. + +![PayPal Payflow Pro Vault sequence diagram]({{site.baseurl}}/common/images/graphql/paypal-payflow-pro-vault.svg) + +1. Use the [`customerPaymentTokens`]({{page.baseurl}}/graphql/queries/customer-payment-tokens.html) query to retrieve the payment tokens the customer has stored in the vault. + +1. Magento returns an array of payment tokens. + +1. The client renders the token information, and the customer selects a payment method. + + When the customer selects a stored payment method, the PWA uses the [`setPaymentMethodOnCart`]({{page.baseurl}}/graphql/mutations/set-payment-method.html) mutation to set the payment method to `payflowpro_cc_vault`. The vaulted public hash is passed in the [`payflowpro_cc_vault`](#payflowpro_cc_vault) object. + +1. Magento returns a `Cart` object. + +1. The client runs the [`placeOrder`]({{page.baseurl}}/graphql/mutations/place-order.html) mutation. + +1. Magento sends an authorization request to the gateway. + +1. The gateway sends the response to Magento. + +1. Magento creates an order and sends an order ID in response to the `placeOrder` mutation. + +## Additional Payment information + +When you set the payment method to Payflow Pro Vault in the [`setPaymentMethodOnCart`]({{page.baseurl}}/graphql/mutations/set-payment-method.html) mutation, the `payment_method` object must contain a `payflowpro_cc_vault` object, which contains the customer's public hash. + +### payflowpro_cc_vault attributes {#payflowpro_cc_vault} + +The `payflowpro_cc_vault` object must contain the following attribute: + +Attribute | Data Type | Description +--- | --- | --- +`public_hash` | String! | The public hash of the payment token + +### Example usage + +The following example shows the `setPaymentMethodOnCart` mutation constructed for the Payflow Pro payment method. + +**Request:** + +```graphql +mutation { + setPaymentMethodOnCart(input: { + cart_id: "IeTUiU0oCXjm0uRqGCOuhQ2AuQatogjG" + payment_method: { + code: "payflowpro_cc_vault" + payflowpro_cc_vault: { + public_hash: "" + } + } + } + }) + { + cart { + selected_payment_method { + code + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "setPaymentMethodOnCart": { + "cart": { + "selected_payment_method": { + "code": "payflowpro_cc_vault" + } + } + } + } +} +``` diff --git a/src/guides/v2.4/graphql/payment-methods/payflow-pro.md b/src/guides/v2.4/graphql/payment-methods/payflow-pro.md deleted file mode 120000 index f92f3aa2c76..00000000000 --- a/src/guides/v2.4/graphql/payment-methods/payflow-pro.md +++ /dev/null @@ -1 +0,0 @@ -../../../v2.3/graphql/payment-methods/payflow-pro.md \ No newline at end of file diff --git a/src/guides/v2.4/graphql/payment-methods/payflow-pro.md b/src/guides/v2.4/graphql/payment-methods/payflow-pro.md new file mode 100644 index 00000000000..8f507033fd0 --- /dev/null +++ b/src/guides/v2.4/graphql/payment-methods/payflow-pro.md @@ -0,0 +1,95 @@ +--- +group: graphql +title: PayPal Payflow Pro payment method +--- + +Payflow Pro is a payment gateway that processes debit and credit card payments. It is available for customers of the United States, Canada, Australia, and New Zealand. + +Other PayPal solutions have the same GraphQL workflow as Payflow Pro. The information in this topic also applies to the following PayPal solution: + +- Payments Pro + +If Payflow Pro has been configured to implement Express Checkout, use the [PayPal Express Checkout for Payflow payment method]({{page.baseurl}}/graphql/payment-methods/payflow-express.html) instead. + +{:.bs-callout-info} +If the `is_active_payment_token_enabler` attribute is set to `1` (true), in future orders, the logged-in customer can use the [Payflow Pro Vault payment method]({{page.baseurl}}/graphql/payment-methods/payflow-pro-vault.html). + +## Payflow Pro workflow + +The following diagram shows the workflow for placing an order when Payflow Pro is the selected payment method. + +![PayPal Payflow Pro sequence diagram]({{site.baseurl}}/common/images/graphql/paypal-payflow-pro.svg) + +{% include graphql/payment-methods/payflow-pro-workflow.md %} + +## Additional Payment information + +When you set the payment method to Payflow Pro in the [`setPaymentMethodOnCart`]({{page.baseurl}}/graphql/mutations/set-payment-method.html) mutation, the `payment_method` object must contain a `payflowpro` object and a `CreditCardDetailsInput` object. + +### payflowpro object + +The `payflowpro` object must contain the following attributes: + +Attribute | Data Type | Description +--- | --- | --- +`cc_details` | CreditCardDetailsInput! | Required input for credit card related information +`is_active_payment_token_enabler` | Boolean | States whether details about the customer's credit/debit card should be tokenized for later use. Required only if Vault is enabled for PayPal Payflow Pro payment integration. + +### CreditCardDetailsInput object + +The `CreditCardDetailsInput` object must contain the following attributes: + +Attribute | Data Type | Description +--- | --- | --- +`cc_exp_month` | Int! | Credit card expiration month +`cc_exp_year` | Int! | Credit card expiration year +`cc_last_4` | Int! | Last four digits of the credit card +`cc_type` | String! | Credit card type + +### Example usage + +The following example shows the `setPaymentMethodOnCart` mutation constructed for the Payflow Pro payment method. + +**Request:** + +```graphql +mutation { + setPaymentMethodOnCart(input: { + cart_id: "IeTUiU0oCXjm0uRqGCOuhQ2AuQatogjG" + payment_method: { + code: "payflowpro" + payflowpro: { + cc_details: { + cc_exp_month: 12 + cc_exp_year: 2023 + cc_last_4: 1111 + cc_type: "VI" + } + is_active_payment_token_enabler: 1 + } + } + }) + { + cart { + selected_payment_method { + code + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "setPaymentMethodOnCart": { + "cart": { + "selected_payment_method": { + "code": "payflowpro" + } + } + } + } +} +``` diff --git a/src/guides/v2.4/graphql/protected-mutations.md b/src/guides/v2.4/graphql/protected-mutations.md new file mode 120000 index 00000000000..5632f99185f --- /dev/null +++ b/src/guides/v2.4/graphql/protected-mutations.md @@ -0,0 +1 @@ +../../v2.3/graphql/protected-mutations.md \ No newline at end of file diff --git a/src/guides/v2.4/graphql/queries/available-stores.md b/src/guides/v2.4/graphql/queries/available-stores.md new file mode 100644 index 00000000000..c32032ad227 --- /dev/null +++ b/src/guides/v2.4/graphql/queries/available-stores.md @@ -0,0 +1,60 @@ +--- +group: graphql +title: availableStores query +--- + +The `availableStores` query returns configuration information about all store views that have the same parent website. Use this query to implement a store switcher. + +{:.bs-callout-tip} +Specify the [Store header]({{ page.baseurl }}/graphql/send-request.html) to determine the scope of the call. + +## Syntax + +`availableStores: [StoreConfig]` + +## Example usage + +The following query returns information about the store's catalog configuration. + +**Request:** + +```graphql +query { + availableStores { + id + code + locale + base_currency_code + base_url + } +} +``` + +**Response:** + +```json +{ + "data": { + "availableStores": [ + { + "id": 1, + "code": "default", + "locale": "en_US", + "base_currency_code": "USD", + "base_url": "http://example.com/" + }, + { + "id": 2, + "code": "de", + "locale": "de_DE", + "base_currency_code": "EUR", + "base_url": "http://example.com/" + } + ] + } +} +``` + +## Output attributes + +{% include graphql/store-config.md %} diff --git a/src/guides/v2.4/graphql/queries/cart.md b/src/guides/v2.4/graphql/queries/cart.md index c915e651bed..fc482b48690 100644 --- a/src/guides/v2.4/graphql/queries/cart.md +++ b/src/guides/v2.4/graphql/queries/cart.md @@ -574,7 +574,7 @@ The top-level `Cart` object is listed first. All interfaces and child objects ar The `Cart` object can contain the following attributes. -{% include graphql/cart-object.md %} +{% include graphql/cart-object-24.md %} ### AppliedCoupon object {#AppliedCoupon} @@ -682,13 +682,22 @@ Attribute | Data Type | Description ### CartItemInterface {#CartItemInterface} +The `CartItemInterface` has the following implementations: + +* BundleCartItem +* ConfigurableCartItem +* DownloadableCartItem +* GiftCardCartItem +* SimpleCartItem +* VirtualCartItem + The `CartItemInterface` can contain the following attributes. Attribute | Data Type | Description --- | --- | --- `id` | String | ID of the item `prices` | [CartItemPrices](#CartItemPrices) | Includes the price of an item, any applied discounts, and calculated totals -`product` | [ProductInterface]({{ page.baseurl }}/graphql/product/product-interface.html) | Contains attributes that are common to all types of products +`product` | [ProductInterface]({{ page.baseurl }}/graphql/interfaces/product-interface.html) | Contains attributes that are common to all types of products `quantity` | Float | The number of items in the cart ### CartItemPrices object {#CartItemPrices} @@ -721,6 +730,7 @@ Attribute | Data Type | Description `applied_taxes` | [[CartTaxItem]](#CartTaxItem) | An array containing the names and amounts of taxes applied to the item `discount` | CartDiscount | Deprecated. Use `discounts` instead `discounts` | [Discount] | An array containing all discounts applied to the cart +`gift_options` | [GiftOptionsPrices](#GiftOptionsPrices) | The list of prices for the selected gift options `grand_total` | Money | The total, including discounts, taxes, shipping, and other fees `subtotal_excluding_tax` | Money | Subtotal without taxes `subtotal_including_tax` | Money | Subtotal with taxes @@ -748,6 +758,33 @@ Attribute | Data Type | Description `amount` | Money! | The amount of the discount applied to the cart `label` | String! | The description of the discount +### GiftMessage object {#GiftMessage} + +{% include graphql/gift-message.md %} + +### GiftOptionsPrices object {#GiftOptionsPrices} + +The `GiftOptionsPrices` object can contain the following attributes. + +Attribute | Data Type | Description +--- | --- | --- +`gift_wrapping_for_items` | Money | The price of the gift wrapping for all individual order items +`gift_wrapping_for_order` | Money | The price of the gift wrapping for the whole order +`printed_card` | Money | The price of the printed card + +### GiftWrapping object {#GiftWrapping} + +{% include graphql/gift-wrapping.md %} + +### RewardPointsAmount {#RewardPointsAmount} + +The `RewardPointsAmount` object must contain the following attributes. + +Attribute | Data Type | Description +--- | --- | --- +`points` | Float! | The amount of reward points, in points +`money` | Money! | The amount of reward points, in the store's currency + ### SelectedPaymentMethod object {#SelectedPaymentMethod} The `SelectedPaymentMethod` object can contain the following attributes. diff --git a/src/guides/v2.4/graphql/queries/customer-cart.md b/src/guides/v2.4/graphql/queries/customer-cart.md deleted file mode 120000 index e7d85e14326..00000000000 --- a/src/guides/v2.4/graphql/queries/customer-cart.md +++ /dev/null @@ -1 +0,0 @@ -../../../v2.3/graphql/queries/customer-cart.md \ No newline at end of file diff --git a/src/guides/v2.4/graphql/queries/customer-cart.md b/src/guides/v2.4/graphql/queries/customer-cart.md new file mode 100644 index 00000000000..3782cb19749 --- /dev/null +++ b/src/guides/v2.4/graphql/queries/customer-cart.md @@ -0,0 +1,82 @@ +--- +group: graphql +title: customerCart query +--- + +The `customerCart` query returns the active cart for the logged-in customer. If the cart does not exist, the query creates one. The customer's authorization token must be specified in the headers. + +The `customerCart` query differs from the `cart` query in the following ways: + +- The `customerCart` query must be run on behalf of a logged-in customer. If you run this query on behalf of a guest, an exception will be thrown. +- The `cart` query requires a `cart_id` value as input. The `customerCart` query does not take any input parameters. + +You can define the query to return the `id` attribute. You can use the value of this attribute as the `destination_cart_id` input parameter in the [`mergeCarts` mutation]({{page.baseurl}}/graphql/mutations/merge-carts.html). (The `mergeCarts` mutation provides the ability to merge a guest cart with the logged-in customer's cart.) + +{: .bs-callout-tip } +If you know the value of the logged-in customer's cart ID, you can allow the customer to start an order on one device and complete it on another. + +## Syntax + +`customerCart: Cart!` + +## Example usage + +The following query lists the products in the logged-in customer's cart: + +**Request:** + +```graphql +{ + customerCart { + id + items { + id + product { + name + sku + } + quantity + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "customerCart": { + "id": "CYmiiQRjPVc2gJUc5r7IsBmwegVIFO43", + "items": [ + { + "id": "11", + "product": { + "name": "Strive Shoulder Pack", + "sku": "24-MB04" + }, + "quantity": 1 + }, + { + "id": "12", + "product": { + "name": "Radiant Tee", + "sku": "WS12" + }, + "quantity": 1 + } + ] + } + } +} +``` + +## Output attributes + +The `customerCart` query returns the `Cart` object. + +### Cart object {#CartObject} + +{% include graphql/cart-object-24.md %} + +[Cart query output]({{page.baseurl}}/graphql/queries/cart.html#cart-output) provides more information about the `Cart` object. diff --git a/src/guides/v2.4/graphql/queries/customer-orders.md b/src/guides/v2.4/graphql/queries/customer-orders.md deleted file mode 120000 index b280d9d433f..00000000000 --- a/src/guides/v2.4/graphql/queries/customer-orders.md +++ /dev/null @@ -1 +0,0 @@ -../../../v2.3/graphql/queries/customer-orders.md \ No newline at end of file diff --git a/src/guides/v2.4/graphql/queries/customer-orders.md b/src/guides/v2.4/graphql/queries/customer-orders.md new file mode 100644 index 00000000000..bd0557b5e13 --- /dev/null +++ b/src/guides/v2.4/graphql/queries/customer-orders.md @@ -0,0 +1,99 @@ +--- +group: graphql +title: customerOrders query +--- +{:.bs-callout-warning} +The `customerOrders` query has been deprecated. Specify the `orders` object in the [`customer`]({{page.baseurl}}/graphql/queries/customer.html) query instead. + +The Sales module performs a wide variety of functions, including order, invoice, and shipment management. However, most of these functions are performed on the backend, and the customer does not have access to this information. By returning a list of customer orders, the `customerOrders` query allows a customer to retrieve their order histories. + +Magento recommends you use customer tokens in the header of your GraphQL calls. However, you also can use [session authentication]({{ page.baseurl }}/get-started/authentication/gs-authentication-session.html). + +## Syntax + +`{customerOrders {CustomerOrders}}` + +## Example usage + +The following query returns the order history of the logged in customer. + +**Request:** + +```graphql +{ + customerOrders { + items { + order_number + id + created_at + grand_total + status + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "customerOrders": { + "items": [ + { + "order_number": "000000001", + "id": 1, + "created_at": "2019-02-21 00:24:34", + "grand_total": 36.39, + "status": "processing" + }, + { + "order_number": "000000002", + "id": 2, + "created_at": "2019-02-21 00:24:35", + "grand_total": 39.64, + "status": "closed" + } + ] + } + } +} +``` + +## Output attributes + +The `CustomerOrders` object contains the `items` attribute. + +Attribute | Data type | Description +--- | --- | --- +`items` | [`[CustomerOrder]`](#customerOrderAttributes) | An array of customer orders + +### Customer order items attributes {#customerOrderAttributes} + +The `CustomerOrder` object defines details about each order the customer has placed. + +Attribute | Data type | Description +--- | --- | --- +`created_at` | String | A timestamp indicating when the order was placed +`gift_message` | [GiftMessage]({{page.baseurl}}/graphql/queries/customer-orders.html#GiftMessage) | The entered gift message for the order +`grand_total` | Float | The total of the order +`id` | Int | The ID assigned to the customer's order +`increment_id` | String | Deprecated. Use `order_number` instead. An ID that indicates the sequence of the order in the customer's order history +`order_number` | String! | The order number assigned to the order +`status` | String | The status of the order, such as `open`, `processing`, or `closed` + +#### GiftMessage object {#GiftMessage} + +The `GiftMessage` object contains the following required attributes. + +Attribute | Data Type | Description +--- | --- | --- +`to` | String! | Recipient name +`from` | String! | Sender name +`message` | String! | Gift message text + +## Errors + +Error | Description +--- | --- +`The current customer isn't authorized.` | The current customer is not currently logged in, or the customer's token does not exist in the `oauth_token` table. diff --git a/src/guides/v2.4/graphql/queries/customer.md b/src/guides/v2.4/graphql/queries/customer.md index e6029ab42ee..78807350083 100644 --- a/src/guides/v2.4/graphql/queries/customer.md +++ b/src/guides/v2.4/graphql/queries/customer.md @@ -13,7 +13,7 @@ To return or modify information about a customer, Magento recommends you use cus ## Example usage -### Retrieving the logged-in customer +### Retrieve basic information about the logged-in customer The following call returns information about the logged-in customer. Provide the customer's token in the header section of the query. @@ -74,8 +74,303 @@ The following call returns information about the logged-in customer. Provide the } } ``` +### Retrieve a summary of the customer's order history -### Retrieving the store credit history +The following example returns a summary of the logged-in customer's previous orders. + +**Request:** + +```graphql +query { + customer { + orders( + pageSize: 20 + ) { + items { + id + order_date + total { + grand_total { + value + currency + } + } + status + } + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "customer": { + "orders": { + "items": [ + { + "id": "MQ==", + "order_date": "2020-03-18 17:25:20", + "total": { + "grand_total": { + "value": 36.39, + "currency": "USD" + } + }, + "status": "Complete" + }, + { + "id": "Mg==", + "order_date": "2020-03-18 17:25:20", + "total": { + "grand_total": { + "value": 39.64, + "currency": "USD" + } + }, + "status": "Closed" + }, + { + "id": "Mw==", + "order_date": "2020-03-21 22:41:38", + "total": { + "grand_total": { + "value": 205.68, + "currency": "USD" + } + }, + "status": "Pending" + }, + { + "id": "NA==", + "order_date": "2020-08-03 02:35:35", + "total": { + "grand_total": { + "value": 159.13, + "currency": "USD" + } + }, + "status": "Complete" + }, + { + "id": "NQ==", + "order_date": "2020-09-08 03:57:11", + "total": { + "grand_total": { + "value": 132.57, + "currency": "USD" + } + }, + "status": "Complete" + } + ] + } + } + } +} +``` + +### Retrieve detailed information about a specific order + +The following example returns details about one of the customer's previous orders. + +These topics contain examples with fragments and provide even more details: + +* [CreditMemoItemInterface attributes and implementations]({{page.baseurl}}/graphql/interfaces/credit-memo-item-interface.html) +* [InvoiceItemInterface attributes and implementations]({{page.baseurl}}/graphql/interfaces/invoice-item-interface.html) +* [OrderItemInterface attributes and implementations]({{page.baseurl}}/graphql/interfaces/order-item-interface.html) +* [ShipmentItemInterface attributes and implementations]({{page.baseurl}}/graphql/interfaces/shipment-item-interface.html) + +**Request:** + +```graphql +{ + customer { + orders(filter: {number: {eq: "000000001"}}) { + total_count + items { + id + number + order_date + status + items { + product_name + product_sku + product_url_key + product_sale_price { + value + } + product_sale_price { + value + currency + } + quantity_ordered + quantity_invoiced + quantity_shipped + } + carrier + shipments { + id + number + items { + product_name + quantity_shipped + } + } + total { + base_grand_total { + value + currency + } + grand_total { + value + currency + } + total_tax { + value + } + subtotal { + value + currency + } + taxes { + amount { + value + currency + } + title + rate + } + total_shipping { + value + } + shipping_handling { + amount_including_tax { + value + } + amount_excluding_tax { + value + } + total_amount { + value + } + taxes { + amount { + value + } + title + rate + } + } + discounts { + amount { + value + currency + } + label + } + } + } + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "customer": { + "orders": { + "total_count": 1, + "items": [ + { + "id": "MQ==", + "carrier": "Flat Rate", + "number": "000000001", + "order_date": "2020-03-18 17:25:20", + "status": "Complete", + "items": [ + { + "product_name": "Iris Workout Top", + "product_sku": "WS03-XS-Red", + "product_url_key": "iris-workout-top", + "product_sale_price": { + "value": 29, + "currency": "USD" + }, + "quantity_ordered": 1, + "quantity_invoiced": 1, + "quantity_shipped": 1 + } + ], + "shipments": [ + { + "id": "MDAwMDAwMDAx", + "number": "000000001", + "items": [ + { + "product_name": "Iris Workout Top", + "quantity_shipped": 1 + } + ] + } + ], + "total": { + "base_grand_total": { + "value": 36.39, + "currency": "USD" + }, + "grand_total": { + "value": 36.39, + "currency": "USD" + }, + "total_tax": { + "value": 2.39 + }, + "subtotal": { + "value": 29, + "currency": "USD" + }, + "taxes": [ + { + "amount": { + "value": 2.39, + "currency": "USD" + }, + "title": "US-MI-*-Rate 1", + "rate": 8.25 + } + ], + "total_shipping": { + "value": 5 + }, + "shipping_handling": { + "amount_including_tax": { + "value": 5 + }, + "amount_excluding_tax": { + "value": 5 + }, + "total_amount": { + "value": 5 + }, + "taxes": [] + }, + "discounts": [] + } + } + ] + } + } + } +} +``` + +### Retrieve the store credit history The following example returns the store credit history for the logged-in user. @@ -267,6 +562,73 @@ The `customer` object can contain the following attributes: {% include graphql/customer-output-24.md %} +### CustomerAddress attributes {#customerAddressOutput} + +The values assigned to attributes such as `firstname` and `lastname` in this object may be different from those defined in the `Customer` object. + +The `CustomerAddress` output returns the following attributes: + +Attribute | Data Type | Description +--- | --- | --- +`city` | String | The city or town +`company` | String | The customer's company +`country_code` | CountryCodeEnum | The customer's country +`country_id` | String | Deprecated. Use `country_code` instead. The customer's country +`custom_attributes` | [CustomerAddressAttribute](#customerAddressAttributeOutput) | Deprecated. Not applicable for GraphQL +`customer_id` | Int | Deprecated. This attribute is not applicable for GraphQL. The ID assigned to the customer +`default_billing` | Boolean | Indicates whether the address is the default billing address +`default_shipping` | Boolean | Indicates whether the address is the default shipping address +`extension_attributes` | [CustomerAddressAttribute](#customerAddressAttributeOutput) | Address extension attributes +`fax` | String | The fax number +`firstname` | String | The first name of the person associated with the shipping/billing address +`id` | Int | The ID assigned to the address object +`lastname` | String | The family name of the person associated with the shipping/billing address +`middlename` | String | The middle name of the person associated with the shipping/billing address +`postcode` | String | The customer's ZIP or postal code +`prefix` | String | An honorific, such as Dr., Mr., or Mrs. +`region` | [CustomerAddressRegion](#customerAddressRegionOutput) | An object that defines the customer's state or province +`region_id` | Int | The unique ID for a pre-defined region +`street` | [String] | An array of strings that define the street number and name +`suffix` | String | A value such as Sr., Jr., or III +`telephone` | String | The telephone number +`vat_id` | String | The customer's Tax/VAT number (for corporate customers) + +#### CustomerAddressAttribute attributes {#customerAddressAttributeOutput} + +The `CustomerAddressAttribute` output data type has been deprecated because the contents are not applicable for GraphQL. It can contain the following attributes: + +Attribute | Data Type | Description +--- | --- | --- +`attribute_code` | String | Attribute code +`value` | String | Attribute value + +#### CustomerAddressRegion attributes {#customerAddressRegionOutput} + +The `customerAddressRegion` output returns the following attributes: + +Attribute | Data Type | Description +--- | --- | --- +`region` | String | The state or province name +`region_code` | String | The address region code +`region_id` | Int | The unique ID for a pre-defined region + +### orders input attributes {#orders} + +{% include graphql/customer-orders-output.md %} + +#### ProductReviews object {#ProductReviews} + +`ProductReviews` contains an array of reviews written about the product. + +Attribute | Data Type | Description +--- | --- | --- +`items` | [ProductReview]! | An array of product reviews +`page_info` | [SearchResultPageInfo!]({{page.baseurl}}/graphql/queries/products.html#SearchResultPageInfo) | Metadata for pagination rendering + +#### ProductReview object {#ProductReview} + +{% include graphql/product-review.md %} + ### Wishlist attributes {#Wishlist} Attribute | Data type | Description @@ -277,14 +639,14 @@ Attribute | Data type | Description `sharing_code` | String | An encrypted code that Magento uses to link to the wish list `updated_at` | String | The time of the last modification to the wish list -### WishlistItem attributes {#wishlistitem} +#### WishlistItem attributes {#wishlistitem} Attribute | Data type | Description --- | --- | --- `added_at` | String | The time when the customer added the item to the wish list `description` | String | The customer's comment about this item `id` | Int | The wish list item ID -`product` | [ProductInterface]({{ page.baseurl }}/graphql/product/product-interface.html) | The ProductInterface contains attributes that are common to all types of products. Note that descriptions may not be available for custom and EAV attributes +`product` | [ProductInterface]({{ page.baseurl }}/graphql/interfaces/product-interface.html) | The ProductInterface contains attributes that are common to all types of products. Note that descriptions may not be available for custom and EAV attributes `qty` | Float | The quantity of this wish list item ### Store credit attributes @@ -297,7 +659,7 @@ Attribute | Data Type | Description --- | --- | --- `store_credit` | [CustomerStoreCredit](#CustomerStoreCredit) | Contains the store credit information for the logged-in customer -### CustomerStoreCredit attributes {#CustomerStoreCredit} +#### CustomerStoreCredit attributes {#CustomerStoreCredit} The `store_credit` object contains store credit information, including the balance and history. @@ -307,7 +669,7 @@ Attribute | Data Type | Description `current_balance` | Money | The current store credit balance `enabled` | Boolean | Indicates whether store credits are enabled. If the feature is disabled, then the balance will not be returned -### CustomerStoreCreditHistory attributes {#CustomerStoreCreditHistory} +#### CustomerStoreCreditHistory attributes {#CustomerStoreCreditHistory} The `CustomerStoreCreditHistory` object contains an array of store credit items and paging information. If the store credit or store credit history feature is disabled, then a null value will be returned. @@ -317,7 +679,7 @@ Attribute | Data Type | Description `page_info` | SearchResultPageInfo | An object that includes the `page_size` and `current_page` values specified in the query `total_count` | Int | The number of items returned -### CustomerStoreCreditHistoryItem attributes {#CustomerStoreCreditHistoryItem} +#### CustomerStoreCreditHistoryItem attributes {#CustomerStoreCreditHistoryItem} The `CustomerStoreCreditHistoryItem` object contains information about a specific change to the customer's store credit. @@ -328,6 +690,10 @@ Attribute | Data Type | Description `balance_change` | Money | The amount added to or subtracted from the store credit as a result of this action `date_time_changed` | String | Date and time when the store credit change was made +### Wishlist attributes {#Wishlist} + +{% include graphql/wishlist.md %} + ## Related topics * [isEmailAvailable query]({{page.baseurl}}/graphql/queries/is-email-available.html) diff --git a/src/guides/v2.4/graphql/queries/product-review-ratings-metadata.md b/src/guides/v2.4/graphql/queries/product-review-ratings-metadata.md new file mode 100644 index 00000000000..8baf082bc39 --- /dev/null +++ b/src/guides/v2.4/graphql/queries/product-review-ratings-metadata.md @@ -0,0 +1,155 @@ +--- +group: graphql +title: productReviewRatingsMetadata query +--- + +The `productReviewRatingsMetadata` query returns the active ratings attributes and the values each rating can have. In Luma, these values are one star through five stars. + +Use the [`createProductReview` mutation]({{page.baseurl}}/graphql/mutations/create-product-review.html) to add a product review. + +## Syntax + +`productReviewRatingsMetadata: ProductReviewRatingsMetadata!` + +## Example usage + +The following query returns the metadata for all active ratings attributes. In this example, the default `Rating` attribute has been renamed to `Overall`, and the `Quality` and `Value` attributes have been enabled. + +**Request:** + +```graphql +query { + productReviewRatingsMetadata { + items { + id + name + values { + value_id + value + } + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "productReviewRatingsMetadata": { + "items": [ + { + "id": "NA==", + "name": "Overall", + "values": [ + { + "value_id": "MTY=", + "value": "1" + }, + { + "value_id": "MTc=", + "value": "2" + }, + { + "value_id": "MTg=", + "value": "3" + }, + { + "value_id": "MTk=", + "value": "4" + }, + { + "value_id": "MjA=", + "value": "5" + } + ] + }, + { + "id": "MQ==", + "name": "Quality", + "values": [ + { + "value_id": "MQ==", + "value": "1" + }, + { + "value_id": "Mg==", + "value": "2" + }, + { + "value_id": "Mw==", + "value": "3" + }, + { + "value_id": "NA==", + "value": "4" + }, + { + "value_id": "NQ==", + "value": "5" + } + ] + }, + { + "id": "Mg==", + "name": "Value", + "values": [ + { + "value_id": "Ng==", + "value": "1" + }, + { + "value_id": "Nw==", + "value": "2" + }, + { + "value_id": "OA==", + "value": "3" + }, + { + "value_id": "OQ==", + "value": "4" + }, + { + "value_id": "MTA=", + "value": "5" + } + ] + } + ] + } + } +} +``` + +## Input attributes + +Not applicable + +## Output attributes {#Categories} + +The `ProductReviewRatingsMetadata` output object contains the `items` object. + +Attribute | Data type | Description +--- | --- | --- +`items` | [ProductReviewRatingMetadata!]! | A list of product reviews, sorted by position + +### ProductReviewRatingMetadata attributes {#ProductReviewRatingMetadata} + +The `ProductReviewRatingMetadata` object contains the following attributes. + +Attribute | Data type | Description +--- | --- | --- +`id` | String! | | An encoded rating ID +`name` | String! | The label assigned to an aspect of a product that is being rated, such as quality or price +`values` | [ProductReviewRatingValueMetadata!]! | A list of product review ratings, sorted by position + +### ProductReviewRatingValueMetadata attributes {#ProductReviewRatingValueMetadata} + +The `ProductReviewRatingValueMetadata` object contains the following attributes. + +Attribute | Data type | Description +--- | --- | --- +value | String! | A ratings scale, such as the number of stars awarded +value_id | String! | An encoded rating value ID diff --git a/src/guides/v2.4/graphql/queries/products.md b/src/guides/v2.4/graphql/queries/products.md index 910be9a21d1..fe6643a014a 100644 --- a/src/guides/v2.4/graphql/queries/products.md +++ b/src/guides/v2.4/graphql/queries/products.md @@ -278,7 +278,7 @@ Attribute | Data type | Description ### ProductInterface attributes {#ProductInterface} -The `items` object contains information about each product that match the search criteria. [ProductInterface]({{page.baseurl}}/graphql/product/product-interface.html) describes the possible contents of this object. +The `items` object contains information about each product that match the search criteria. [ProductInterface]({{page.baseurl}}/graphql/interfaces/product-interface.html) describes the possible contents of this object. ### SearchResultPageInfo attributes {#SearchResultPageInfo} diff --git a/src/guides/v2.4/graphql/queries/store-config.md b/src/guides/v2.4/graphql/queries/store-config.md index d659b99acb2..1ab620cdc67 100644 --- a/src/guides/v2.4/graphql/queries/store-config.md +++ b/src/guides/v2.4/graphql/queries/store-config.md @@ -13,7 +13,7 @@ The `storeConfig` query defines information about a store's configuration. You c ### Query a store's configuration -The following call returns all details of a store's configuration. +The `storeConfig` query can return `base` and `extended` store configuration setting. The following call returns all `base` details of a store's configuration. **Request:** @@ -36,11 +36,6 @@ The following call returns all details of a store's configuration. secure_base_link_url secure_base_static_url secure_base_media_url - store_name - send_friend { - enabled_for_customers - enabled_for_guests - } } } ``` @@ -59,19 +54,14 @@ The following call returns all details of a store's configuration. "default_display_currency_code": "USD", "timezone": "America/Chicago", "weight_unit": "lbs", - "base_url": "http://magento2.vagrant193/", - "base_link_url": "http://magento2.vagrant193/", - "base_static_url": "http://magento2.vagrant193/pub/static/version1536249714/", - "base_media_url": "http://magento2.vagrant193/pub/media/", - "secure_base_url": "http://magento2.vagrant193/", - "secure_base_link_url": "http://magento2.vagrant193/", - "secure_base_static_url": "http://magento2.vagrant193/pub/static/version1536249714/", - "secure_base_media_url": "http://magento2.vagrant193/pub/media/", - "store_name": "My Store", - "send_friend": { - "enabled_for_customers": true, - "enabled_for_guests": false - } + "base_url": "http://magentohost.example.com/", + "base_link_url": "http://magentohost.example.com/", + "base_static_url": "http://magentohost.example.com/pub/static/version1536249714/", + "base_media_url": "http://magentohost.example.com/pub/media/", + "secure_base_url": "http://magentohost.example.com/", + "secure_base_link_url": "http://magentohost.example.com/", + "secure_base_static_url": "http://magentohost.example.com/pub/static/version1536249714/", + "secure_base_media_url": "http://magentohost.example.com/pub/media/" } } } @@ -185,6 +175,36 @@ The following query returns information about the store's catalog configuration. } ``` +### Query a store's customer configuration + +The following query returns information about the store's customer configuration. + +**Request:** + +```graphql +{ + storeConfig { + autocomplete_on_storefront + minimum_password_length + required_character_classes_number + } +} +``` + +**Response:** + +```json +{ + "data": { + "storeConfig": { + "autocomplete_on_storefront": true, + "minimum_password_length": "6", + "required_character_classes_number": "2" + } + } +} +``` + ### Query a store's fixed product tax configuration The following query returns enumeration values that indicate the store's fixed product tax configuration. @@ -217,106 +237,4 @@ The following query returns enumeration values that indicate the store's fixed p ## Output attributes -### Supported storeConfig attributes - -Use the `storeConfig` attributes to retrieve information about the store's configuration; such as, locale, currency codes, and secure and unsecure URLs. - -Attribute | Data Type | Description | Example ---- | --- | --- | --- -`base_currency_code` | String | The code representing the currency in which Magento processes all payment transactions | `USD` -`base_link_url` | String | A fully-qualified URL that is used to create relative links to the `base_url` | `http://magentohost.example.com/` -`base_static_url` | String | The fully-qualified URL that specifies the location of static view files | `http://magentohost.example.com/pub/static/` -`base_media_url` | String | The fully-qualified URL that specifies the location of user media files | `http://magentohost.example.com/pub/media/` -`base_url` | String | The store's fully-qualified base URL | `http://magentohost.example.com/` -`code` | String | A unique identifier for the store | `default` -`default_display_currency_code` | String | The code representing the currency displayed on the store | `USD` -`id` | Integer | The ID number assigned to the store | `1` -`locale` | String | The store's locale | `en_US` -`secure_base_link_url` | String | A secure fully-qualified URL that is used to create relative links to the `base_url` | `https://magentohost.example.com/` -`secure_base_media_url` | String | The secure fully-qualified URL that specifies the location of user media files | `https://magentohost.example.com/pub/media/` -`secure_base_static_url` | String | The secure fully-qualified URL that specifies the location of static view files | `https://magentohost.example.com/pub/static/` -`secure_base_url` | String | The store's fully-qualified secure base URL | `https://magentohost.example.com/` -`send_friend` | SendFriendConfiguration | Email to a Friend configuration | Not applicable -`store_name` | String | The store's name | `My Store` -`timezone` | String | The store's time zone | `America/Chicago` -`website_id` | Integer | The ID number assigned to the parent website | `1` -`weight_unit` | String | The weight unit for products | `lbs`, `kgs`, or similar - -#### SendFriendConfiguration attributes - -Attribute | Data Type | Description ---- | --- | --- -`enabled_for_customers` | Boolean! | Indicates whether the Email to a Friend feature is enabled for customers -`enabled_for_guests` | Boolean! | Indicates whether the Email to a Friend feature is enabled for guests - -### Supported theme attributes - -Use the `theme` attributes to retrieve information about the store's thematic elements; such as, footer and header information, copyright text, and logo information. These attributes are defined in the `ThemeGraphQl` module. - -Attribute | Data Type | Description ---- | --- | --- -`absolute_footer` | String | Contains scripts that must be included in the HTML before the closing `` tag -`copyright` | String | The copyright statement that appears at the bottom of each page -`default_description` | String | The description that provides a summary of your site for search engine listings and should not be more than 160 characters in length -`default_keywords` | String | A series of keywords that describe your store, each separated by a comma -`default_title` | String | The title that appears at the title bar of each page when viewed in a browser -`demonotice` | Int | Controls the display of the demo store notice at the top of the page. Options: `0` (No) or `1` (Yes) -`head_includes` | String | Contains scripts that must be included in the HTML before the closing `` tag -`head_shortcut_icon` | String | Uploads the small graphic image that appears in the address bar and tab of the browser -`header_logo_src` | String | The path to the logo that appears in the header -`logo_alt` | String | The Alt text that is associated with the logo -`logo_height` | Int | The height of your logo image in pixels -`logo_width` | Int | The width of your logo image in pixels -`title_prefix` | String | A prefix that appears before the title to create a two- or three-part title -`title_suffix` | String | A suffix that appears after the title to create a two-or three part title -`welcome` | String | Text that appears in the header of the page and includes the name of customers who are logged in - -### Supported CMS attributes - -Use the `cms` attributes to retrieve information about the store's default pages. These attributes are defined in the `CmsGraphQl` module. - -Attribute | Data Type | Description ---- | --- | --- -`cms_home_page` | String | Returns the name of the CMS page that identifies the home page for the store -`cms_no_cookies` | String | Identifies a specific CMS page that appears when cookies are not enabled for the browser -`cms_no_route` | String | Identifies a specific CMS page that you want to appear when a 404 “Page Not Found” error occurs -`front` | String | Indicates the landing page that is associated with the base URL -`no_route` | String | Contains the URL of the default page that you want to appear when if a 404 “Page not Found” error occurs -`show_cms_breadcrumbs` | Int | Determines if a breadcrumb trail appears on all CMS pages in the catalog. Options: `0` (No) or `1` (Yes) - -### Supported Catalog attributes - -Use the `catalog` attributes to retrieve information about the store's catalog. These attributes are defined in the `CatalogGraphQl` module. - -Attribute | Data Type | Description | Example ---- | --- | --- -`catalog_default_sort_by` | String | The default sort order of the search results list | `position` -`category_url_suffix` | String | The suffix applied to category pages, such as `.htm` or `.html` | `.html` -`grid_per_page` | Int | The default number of products per page in Grid View | `9` -`grid_per_page_values` | A list of numbers that define how many products can be displayed in List View | `9,15,30` -`list_mode` | String | The format of the search results list | `grid-list` -`list_per_page` | Int | The default number of products per page in List View | `10` -`list_per_page_values` | String | A list of numbers that define how many products can be displayed in List View | `5,10,15,20,25` -`product_url_suffix` | String | The suffix applied to product pages, such as `.htm` or `.html` | `.html` -`root_category_id` | Int | The ID of the root category -`title_separator` | String | Identifies the character that separates the category name and subcategory in the browser title bar | `-` - -### Supported WEEE (fixed product tax) attributes - -The **Stores** > Settings > **Configuration** > **Sales** > **Tax** > **Fixed Product Taxes** panel contains several fields that determine how to display fixed product tax (FPT) values and descriptions. Use the following attributes to determine the values of the **Fixed Product Taxes** fields. These attributes are defined in the `WeeeGraphQl` module. - -Attribute | Data Type | Description ---- | --- | --- -`category_fixed_product_tax_display_setting` | FixedProductTaxDisplaySettings | Corresponds to the **Display Prices In Product Lists** field. It indicates how FPT information is displayed on category pages -`product_fixed_product_tax_display_setting` | FixedProductTaxDisplaySettings | Corresponds to the **Display Prices On Product View Page** field. It indicates how FPT information is displayed on product pages -`sales_fixed_product_tax_display_setting` | FixedProductTaxDisplaySettings | Corresponds to the **Display Prices In Sales Modules** field. It indicates how FPT information is displayed on cart, checkout, and order pages - -The `FixedProductTaxDisplaySettings` data type is an enumeration that describes whether displayed prices include fixed product taxes and whether Magento separately displays detailed information about the FPTs. - -Value | Description ---- | --- -EXCLUDE_FPT_AND_INCLUDE_WITH_DETAILS | The displayed price does not include the FPT amount. You must display the values of `ProductPrice.fixed_product_taxes` and the price including the FPT separately. This value corresponds to **Excluding FPT, Including FPT description and final price** -EXCLUDE_FPT_WITHOUT_DETAILS | The displayed price does not include the FPT amount. The values from `ProductPrice.fixed_product_taxes` are not displayed. This value corresponds to **Excluding FPT** -FPT_DISABLED | The FPT feature is not enabled. You can omit `ProductPrice.fixed_product_taxes` from your query -INCLUDE_FPT_WITH_DETAILS | The displayed price includes the FPT amount while displaying the values of `ProductPrice.fixed_product_taxes` separately. This value corresponds to **Including FPT and FPT description** -INCLUDE_FPT_WITHOUT_DETAILS | The displayed price includes the FPT amount without displaying the `ProductPrice.fixed_product_taxes` values. This value corresponds to **Including FPT only** +{% include graphql/store-config.md %} diff --git a/src/guides/v2.4/graphql/release-notes.md b/src/guides/v2.4/graphql/release-notes.md index 427c958dec3..cc17b1afc46 100644 --- a/src/guides/v2.4/graphql/release-notes.md +++ b/src/guides/v2.4/graphql/release-notes.md @@ -3,18 +3,21 @@ group: graphql title: Release Notes --- -*Release notes published January 2020.* +*Release notes published October 2020.* GraphQL is a flexible and performant API that allows you to build custom front-ends, including headless storefronts, [Progressive Web Apps](https://github.com/magento/pwa-studio) (PWA), and mobile apps for Magento. -The **[Magento GraphQL](https://github.com/magento/graphql-ce) project** is a Magento Community Engineering special project open to contributors. -To take part and contribute, see the [Magento GraphQL](https://github.com/magento/graphql-ce) repository and [wiki](https://github.com/magento/graphql-ce/wiki) to get started. Join us in our [Slack](https://magentocommeng.slack.com/messages/C8076E0KS) channel (or [self signup](https://tinyurl.com/engcom-slack)) to discuss the project. +To take part and contribute, see the [Magento 2](https://github.com/magento/magento2) repository and look for issues with the `Project: GraphQL` tag. Join us in our [Slack](https://magentocommeng.slack.com/messages/C8076E0KS) channel (or [self signup](https://tinyurl.com/engcom-slack)) to discuss the project. These release notes can include: - {:.new}New features - {:.fix}Fixes and improvements +## {{site.data.var.ee}} and {{site.data.var.ce}} 2.4.1 + +As of version 2.4.1, the [Magento Open Source 2.4.1 Release Notes]({{page.baseurl}}/release-notes/open-source-2-4-1.html) and [Magento Commerce 2.4.1 Release Notes]({{page.baseurl}}/release-notes/commerce-2-4-1.html) describe the new GraphQL features and bug fixes. + ## {{site.data.var.ee}} and {{site.data.var.ce}} 2.4.0 - {:.new} **Added the [`reorderItems` mutation]({{page.baseurl}}/graphql/mutations/reorder-items.html).** This mutation enables the logged-in customer to add the contents of a previous order to their cart. @@ -23,6 +26,8 @@ These release notes can include: - {:.new} **Added the [`pickupLocations` query]({{page.baseurl}}/graphql/queries/pickup-locations.html).** When the Inventory in-store pickup feature is enabled, this query allows the shopper to select a pickup location. The `pickup_location_code` attribute has been added to the [`setShippingAddressesOnCart` mutation]({{page.baseurl}}/graphql/mutations/set-shipping-address.html) to specify which source will serve as the pickup location. +The [Magento Open Source 2.4.0 Release Notes]({{page.baseurl}}/release-notes/release-notes-2-4-0-open-source.html#graphql-1) and [Magento Commerce 2.4.0 Release Notes]({{page.baseurl}}/release-notes/release-notes-2-4-0-commerce.html#graphql-1) list the bug fixes. + ## {{site.data.var.ee}} and {{site.data.var.ce}} 2.3.5 - {:.new} **The `products` and `categoryList` queries can now be used to retrieve information about products and categories that have been added to a staged campaign.** These queries require an admin authorization token. See [Using queries](https://devdocs.magento.com/guides/v2.3/graphql/queries/index.html#staging) for details. diff --git a/src/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.md b/src/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.md deleted file mode 120000 index 2652610b978..00000000000 --- a/src/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.md +++ /dev/null @@ -1 +0,0 @@ -../../../../v2.3/install-gde/install/cli/install-cli-subcommands-enable.md \ No newline at end of file diff --git a/src/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.md b/src/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.md new file mode 100644 index 00000000000..54b170b1b69 --- /dev/null +++ b/src/guides/v2.4/install-gde/install/cli/install-cli-subcommands-enable.md @@ -0,0 +1,78 @@ +--- +group: installation-guide +title: Enable or disable modules +functional_areas: + - Install + - System + - Setup +--- + +## First steps {#instgde-cli-before} +{% include install/first-steps-cli.md %} +In addition to the command arguments discussed here, see [Common arguments]({{ page.baseurl }}/install-gde/install/cli/install-cli-subcommands.html#instgde-cli-subcommands-common). + +## Prerequisites {#instgde-cli-subcommands-enable-disable-prereq} + +This command has no prerequisites. + +## Module status {#instgde-cli-subcommands-status} + +Use the following command to list enabled and disabled modules: + +```bash +bin/magento module:status [--enabled] [--disabled] +``` + +where + +* `--enabled` lists all enabled modules. +* `--disabled` lists all disabled modules. +* `` is a space-delimited list of modules to check the status. If any [module](https://glossary.magento.com/module) name contains special characters, enclose the name in either single or double quotes. + +## Module enable, disable {#instgde-cli-subcommands-enable-disable} + +To enable or disable available modules, use the following command: + +```bash +bin/magento module:enable [-c|--clear-static-content] [-f|--force] [--all] +``` + +```bash +bin/magento module:disable [-c|--clear-static-content] [-f|--force] [--all] +``` + +where + +* `` is a space-delimited list of modules to enable or disable. If any [module](https://glossary.magento.com/module) name contains special characters, enclose the name in either single or double quotes. +* `--all` to enable or disable all modules at the same time. +* `-f` or `--force` to force a module to be enabled or disabled despite dependencies. Before you use this option, see [About enabling and disabling modules](#instgde-cli-subcommands-enable-modules). +* `-c` or `--clear-static-content` cleans [generated static view files]({{ page.baseurl }}/config-guide/cli/config-cli-subcommands-static-view.html#config-cli-static-overview). + + Failure to clear static view files might result in issues if there are multiple files with the same name and you do not clear all of them. + + In other words, because of the [static file fallback]({{ page.baseurl }}/config-guide/cli/config-cli-subcommands-static-view.html) rules, if you do not clear static files and there is more than one file named `logo.svg` that are different, fallback might cause the wrong file to display. + +For example, to disable the Weee module, enter: + +```bash +bin/magento module:disable Magento_Weee +``` + +For important information about enabling and disabling modules, see [About enabling and disabling modules](#instgde-cli-subcommands-enable-modules). + +## Update the database {#instgde-cli-subcommands-enable-update} + +If you enabled one or more modules, run the following command to update the database: + +```bash +bin/magento setup:upgrade +``` + +Then clean the cache: + +```bash +bin/magento cache:clean +``` + +## About enabling and disabling modules {#instgde-cli-subcommands-enable-modules} +{% include install/enable-disable-modules.md %} diff --git a/src/guides/v2.4/release-notes/b2b-release-notes.md b/src/guides/v2.4/release-notes/b2b-release-notes.md index f8c5a56c60d..c1121fa8478 100644 --- a/src/guides/v2.4/release-notes/b2b-release-notes.md +++ b/src/guides/v2.4/release-notes/b2b-release-notes.md @@ -9,6 +9,77 @@ These release notes can include: - {:.new}New features - {:.fix}Fixes and improvements +## Magento B2B - Version 1.3.0 + +This release includes improvements to order approvals, shipping methods, shopping cart, and logging of Admin actions. + +- {:.new} B2B order approvals have been enhanced to improve usability and to allow for bulk actions on purchase orders. + +- {:.new} B2B merchants can now control shipping methods that are offered to each Company. + +- {:.new} Merchants can now allow users to clear the contents of their shopping cart in a single action and can configure this ability independently on each website + +- {:.new} B2B buyers can now add individual items or the entire contents of their shopping cart directly to a requisition list. + +- {:.new} B2B merchants can create orders from the Admin on behalf of customers using Payment on Account as the payment method. + +- {:.new} Merchants can now directly view all quotes associated with a user from the customer’s detail page. + +- {:.new} Merchants can now filter the Customers Now Online grid by Company. + +- {:.new} Admins can now filter customers in the Admin by Sales Rep. + +- {:.new} To reduce creation of fraudulent or spam accounts, merchants can now enable Google reCAPTCHA on the New Company Request form on the storefront. + +- {:.new} Admin actions taken in the Company modules are now logged in the Admin Actions Log. Actions are logged from all relevant company modules: `Company`, `NegotiableQuote`, `CompanyCredit`, `SharedCatalog`. + +- {:.fix} Magento no longer displays the **Delete customer** button on the **Customers** page when the logged-in administrator does not have rights to delete customers in deployments where B2B is installed. +- {:.fix} Customer group is no longer automatically changed for a customer who is assigned to a Company when you edit the customer on the Customer grid. + +- {:.fix} When a merchant creates a new shared catalog, permissions are now automatically set to **Allow** for the **Display Product Prices** and **Add to Cart** features in categories when the customer group has been assigned this access in catalog permission settings. Previously, these settings were automatically set to **Deny** even when catalog permissions were set to **Allow**. + +- {:.fix} Shared catalog category permissions are no longer overwritten when a product is edited from the product edit page. + +- {:.fix} Magento now sends an email notification confirming that a customer has permission to exceed the designated credit limit when a merchant enables the **Allow To Exceed Credit Limit** setting. Previously, the notification email sent by Magento indicated that the customer did not have permission to exceed the limit. + +- {:.fix} The HTML container that surrounds product price on requisition lists is now rendered correctly for the children of bundled products. + +- {:.fix} Merchants can now designate the language in which company user email is sent when creating a new company in multi-language deployments. Previously, the drop-down menu the enables merchants to select the appropriate store view and language was not displayed. + +- {:.fix} Custom customer address attributes fields are now displayed as expected in the storefront checkout workflow. + +- {:.fix} The B2B Features tab (Admin **Stores** > **Configuration** > **General** ) now opens correctly. Guests can now use QuickOrder to add products to their cart and then successfully remove items. Previously, when a shopper used QuickOrder to add multiple products to their cart, and then removed a product, the product was not removed. + +- {:.fix} A company can now be updated using the REST API PUT `/V1/company/:companyId` request without specifying the `region_id` when state is configured as **not required**. Previously, even though `region_id` was not required, Magento threw an error if it was not specified. + +- {:.fix} When you create or update a B2B Company using the REST API (`http://magento.local/rest/V1/company/2`, where `2` represents the company ID), the response now includes the settings for `applicable_payment_method` or `available_payment_methods` as expected. + +- {:.fix} Magento no longer displays a 404 page when a merchant uses the **Enter** button instead of clicking the **Save** button when creating a requisition list on the storefront. + +- {:.fix} When a merchant creates a new shared catalog, permissions are now automatically set to **Allow** for the **Display Product Prices** and **Add to Cart** features in categories when the customer group has been assigned this access in catalog permission settings. Previously, these settings were automatically set to **Deny** even when catalog permissions were set to **Allow**. + +- {:.fix} Category permissions no longer change when a new product is assigned to a public shared catalog. Previously, category permissions were duplicated. + +- {:.fix} The REST API endpoint PUT `rest/default/V1/company/{id}`, which is used to update Company email, is no longer case-sensitive. + +- {:.fix} Disabling reward modules no longer affects B2B features on customer accounts. Previously, when reward modules were disabled, the following B2B-related tabs were not displayed: Company Profile, Company Users, and Roles and Permissions. + +- {:.fix} Magento now uses the correct sender name on email notifications when changes are made to company accounts. Previously, Magento used the general contact sender name defined in the default scope for all emails. + +- {:.fix} You can now successfully implement multishipping for orders that contain both physical and virtual products. + +- {:.fix} Merchants can now create company users from the Company Users section in My Account and Company Structure pages in deployments where **Access Restriction** is enabled and **Restriction Mode** is set to **Sales: Login Only**. Previously, Magento threw this error when a merchant tried to create a user: Can not register new customer due to restrictions are enabled. + +- {:.fix} Magento no longer resets a customer’s customer group to the default when a customer saves their account information. + +- {:.fix} Magento no longer throws a fatal error when an administrator assigns a customer who has an active shopping cart to a customer group. + +- {:.fix} Magento now provides an `addToCart` DataLayer event for Quick Order and Requisition lists pages. + +- {:.fix} Notification emails that are sent to sales representatives assigned to a company now include the assigned corporate logo. Previously, the notification email included the default LUMA logo, not the uploaded corporate logo. + +- {:.fix} A requisition list now includes all grouped products and quantities that have been added to the list. Previously, when a merchant navigated to a requisition list after adding products to it from a product detail page, Magento displayed this error: `1 product(s) require your attention - Options were updated. Please review available configurations`. + ## Magento B2B - Version 1.2.0 - {:.new} [Storefront Order Search](https://github.com/magento/partners-magento2b2b/pull/16) added thanks to contribution by [Marek Mularczyk]( https://github.com/mmularski) from [Divante](https://www.divante.com/) and community members. diff --git a/src/guides/v2.4/release-notes/backward-incompatible-changes/reference.md b/src/guides/v2.4/release-notes/backward-incompatible-changes/reference.md index c62194e93ce..3367caafff3 100644 --- a/src/guides/v2.4/release-notes/backward-incompatible-changes/reference.md +++ b/src/guides/v2.4/release-notes/backward-incompatible-changes/reference.md @@ -22,6 +22,12 @@ To view changes in functional tests, refer to [Backward incompatible changes in {:.bs-callout-info} Patch releases are primarily focused on delivering security and quality enhancements on a regular basis to help you keep your sites performing at their peak. On an exceptional basis, breaking changes or additional patches or hotfixes may be released to address security or compliance issues and high-impact quality issues. On the module level, these are mostly PATCH-level changes; sometimes MINOR-level changes. See [Release policy]({{site.baseurl}}/release/policy/). +## 2.4.0 - 2.4.1 + +{% include backward-incompatible-changes/open-source/2.4.0-2.4.1-develop.html %} + +{% include backward-incompatible-changes/commerce/2.4.0-2.4.1-develop.html %} + ## 2.3.0 - 2.4.0 {% include backward-incompatible-changes/open-source/2.3.0-2.4.0.md %} diff --git a/src/guides/v2.4/release-notes/bk-release-notes.md b/src/guides/v2.4/release-notes/bk-release-notes.md index f971c64b186..fa2db0cd886 100644 --- a/src/guides/v2.4/release-notes/bk-release-notes.md +++ b/src/guides/v2.4/release-notes/bk-release-notes.md @@ -6,6 +6,9 @@ redirect_from: magento-release-information.html ## Magento 2.4.x release notes +* [{{site.data.var.ce}} 2.4.1 Release Notes]({{page.baseurl}}/release-notes/open-source-2-4-1.html) +* [{{site.data.var.ee}} 2.4.1 Release Notes]({{page.baseurl}}/release-notes/commerce-2-4-1.html) + * [{{site.data.var.ce}} 2.4.0 Release Notes]({{page.baseurl}}/release-notes/release-notes-2-4-0-open-source.html) * [{{site.data.var.ee}} 2.4.0 Release Notes]({{page.baseurl}}/release-notes/release-notes-2-4-0-commerce.html) diff --git a/src/guides/v2.4/release-notes/commerce-2-4-1.md b/src/guides/v2.4/release-notes/commerce-2-4-1.md new file mode 100644 index 00000000000..af5355b585c --- /dev/null +++ b/src/guides/v2.4/release-notes/commerce-2-4-1.md @@ -0,0 +1,1957 @@ +--- +group: release-notes +title: Magento Commerce 2.4.1 Release Notes +--- + +Magento Commerce 2.4.1 introduces enhancements to performance and security plus significant additions to the B2B feature set. Security enhancements include support for the `SameSite` attribute for cookies and the addition of CAPTCHA protection for payment-related and order-related API endpoints and the Place Order storefront page. B2B improvements focus on the order approval process, B2B shipping methods, expanded logging of Admin actions, and enhanced security on storefront. + +This release includes all improvements to core quality that were included in Magento 2.4.0, over 150 new fixes to core code, and over 15 security enhancements. It includes the resolution of almost 300 GitHub issues by our community members. These community contributions range from minor clean-up of core code to significant enhancements in GraphQL. + +All known issues identified in Magento 2.4.0 have been fixed in this release. + +{:.bs-callout-info} + +Quarterly releases may contain backward-incompatible changes (BIC). Magento 2.4.1 contains minor backward-incompatible changes. To review minor backward-incompatible changes, see [BIC reference]({{page.baseurl}}/release-notes/backward-incompatible-changes/reference.html). (Major backward-incompatible issues are described in [BIC highlights]({{page.baseurl}}/release-notes/backward-incompatible-changes/index.html). Not all releases introduce major BICs.) + +## Security-only patch available + +Merchants can now install time-sensitive security fixes without applying the hundreds of functional fixes and enhancements that a full quarterly release (for example, Magento 2.4.0-p1) provides. Patch 2.4.0.1 (Composer package 2.4.0-p1) is a security-only patch that provides fixes for vulnerabilities that have been identified in our previous quarterly release, Magento 2.4.0. All hot fixes that were applied to the 2.4.0 release are included in this security-only patch. (A *hot fix* provides a fix to a released version of Magento that addresses a specific problem or bug.) + +For general information about security-only patches, see the Magento DevBlog post [Introducing the New Security-only Patch Release](https://community.magento.com/t5/Magento-DevBlog/Introducing-the-New-Security-only-Patch-Release/ba-p/141287). For instructions on downloading and applying security-only patches (including patch 2.3.5-p2), see [Install Magento using Composer]({{page.baseurl}}/install-gde/composer.html). Security-only patches include security bug fixes only, not the additional security enhancements that are included in the full patch. + +## Other release information + +Although code for these features is bundled with quarterly releases of the Magento core code, several of these projects (for example, B2B, Page Builder, and Progressive Web Applications (PWA) Studio) are also released independently. Bug fixes for these projects are documented in the separate, project-specific release information that is available in the documentation for each project. + +## Highlights + +Look for the following highlights in this release. + +### Substantial security enhancements + +This release includes over 15 security fixes and platform security improvements. All security fixes have been backported to Magento 2.4.0-p1 and Magento 2.3.6. + +#### Over 15 security enhancements that help close remote code execution (RCE) and cross-site scripting (XSS) vulnerabilities + +No confirmed attacks related to these issues have occurred to date. However, certain vulnerabilities can potentially be exploited to access customer information or take over administrator sessions. Most of these issues require that an attacker first obtains access to the Admin. As a result, we remind you to take all necessary steps to protect your Admin, including but not limited to these efforts: IP allowlisting, [two-factor authentication]({{page.baseurl}}/security/two-factor-authentication.html), use of a VPN, the use of a unique location rather than `/admin`, and good password hygiene. See [Security Updates Available for Magento](https://helpx.adobe.com/security/products/magento/apsb20-59.html) for a discussion of these fixed issues. + +#### Additional security enhancements + +Security improvements for this release include: + +* **CAPTCHA** protection has been added to the following product areas: + + * Place Order storefront page and REST and GraphQL endpoints + * Payment-related REST and GraphQL endpoints. + + CAPTCHA protection for these additional pages is disabled by default. It can be enabled on the Admin in the same way that other pages covered by CAPTCHA are. This protection has been added as an anti-brute force mechanism to protect stores against carding attacks. See [CAPTCHA](https://docs.magento.com/user-guide/stores/security-captcha.html). + +* **Support for the SameSite attribute for cookies**. To support the Google Chrome enforcement of the new cookie classification system, Magento classes that handle cookies have been updated to support the `SameSite` cookie attribute. This attribute is set to `Lax` by default but can be explicitly overridden. + +* **Enhanced Magento Scan Tool**. Adobe has partnered with [Sanguine Security](https://sansec.io/), a leader in preventing digital skimming, to integrate their database of over 8700 threat signatures into the Magento Security Scan Tool. This partnership will enable merchants to get real-time insights into the security status of their site through proactive detection of malware and reduction of false positives. Merchants can register for the tool by visiting `https://account.magento.com/scanner`. For more information, see the [Secure Your Storefront With the Enhanced Magento Security Scan Tool](https://magento.com/blog/magento-news/secure-your-storefront-enhanced-magento-security-scan-tool) blog post. + +{:.bs-callout-info} +Starting with the release of Magento Commerce 2.3.2, Magento will assign and publish indexed Common Vulnerabilities and Exposures (CVE) numbers with each security bug reported to us by external parties. This allows users of Magento Commerce to more easily identify unaddressed vulnerabilities in their deployment. You can learn more about CVE identifiers at [CVE](https://cve.mitre.org/). + +### Infrastructure improvements + +This release contains enhancements to core quality, which improve the quality of the Framework and these functional areas: Customer Account, Catalog, CMS, OMS, Import/Export, Promotions and Targeting, Cart and Checkout, B2B, and Staging and Preview. + +* **Site-Wide Analysis Tool (SWAT) integration with Magento Admin**. (SWAT) provides system insights and instrumentation for Commerce Cloud installations of Magento with 24/7 real-time performance monitoring, reports, and self-service recommendations. Merchants can use the new SWAT Admin role to securely access their SWAT Customer Detail pages through the Magento Admin. See [SWAT FAQ](https://support.magento.com/hc/en-us/articles/360048646671) for an overview. For usage information, see [SWAT](https://docs.magento.com/user-guide/reports/site-wide-analysis-tool.html). + +### Performance improvements + +* **Reduction in the size of network transfers between Redis and Magento**. Plugin list configuration is now generated during the execution of the `bin/magento di:compile` command. This configuration information is written to generated metadata folders based on scope. Previously, this information was stored in cache. Resulting performance improvements include a decrease in network cache size and execution time for many scenarios. + +* **Enhanced message queue consumer performance**. Three new configuration settings support a decrease in consumer queue CPU consumption. These optional parameters provide increased control over consumers and save server resources. See [Configure message queues]({{page.baseurl}}/extension-dev-guide/message-queues/config-mq.html) for a description of the `maxIdleTime`, `sleep`, and `onlySpawnWhenMessageAvailable` parameters. + +* **Improved execution time** for `bin/magento` commands. + +### Adobe Stock Integration + +This release includes Adobe Stock Integration v2.1.0. + +### New Media Gallery + +The New Media Gallery is now enabled by default in the Admin. Merchants can now perform these actions on images in the Media Gallery: + +* Delete images in bulk +* Optimize media storage by identifying duplicate images and images that are not used on the storefront +* Filter images by the storefront area they are used in, including product and category content and CMS blocks +* Work with image metadata + * View metadata from the images uploaded into Media Gallery + * Edit image metadata (title, description, and keywords) + * Search for images by their metadata + +### Page Builder + +Page Builder now supports full screen mode, which supports easier editing of content and provides a consistent experience editing content across the Admin. See [Workspace](https://docs.magento.com/user-guide/cms/page-builder-workspace.html). + +### GraphQL + +This release adds GraphQL coverage for the following features: + +* **Product reviews**. Customers and guests can write product reviews. Customers can retrieve their product review histories. See [Create a product review]({{page.baseurl}}/graphql/mutations/create-product-review.html) and [productReviewRatingsMetadata query]({{page.baseurl}}/graphql/queries/product-review-ratings-metadata.html) for information on retrieving information about the reviews infrastructure. + +* **Gift options**. All customers and guests can add a gift message to their order. On {{site.data.var.ee}} installations, they can also add gift wrapping, gift receipts, and printed cards to the order. See [`setGiftOptionsOnCart` mutation]({{page.baseurl}}/graphql/mutations/set-gift-options.html) and [`updateCartItems` mutation]({{page.baseurl}}/graphql/mutations/update-cart-items.html) + +* **Reward points**. Customers can apply or remove reward points to their carts. They can also view their reward point history. See [`applyRewardPointsToCart`]({{page.baseurl}}/graphql/mutations/apply-reward-points.html) and [`removeRewardPointsFromCart`]({{page.baseurl}}/graphql/mutations/remove-reward-points.html) for a discussion of managing reward points within a cart. + +* **Order history**. All customers can view details about their order histories, including invoices, shipping, and refunds. + +* **Add to cart**. The [`addProductsToCart` mutation]({{page.baseurl}}/graphql/mutations/add-products-to-cart.html) allows you to add any type of product to the active cart. We recommend using this mutation instead of single-purpose mutations such as `addSimpleProductsToCart`. _Fix submitted by Yaroslav Rogoza in pull request [27914](https://github.com/magento/magento2/pull/27914)_. [GitHub-28524](https://github.com/magento/magento2/issues/28524) + +* **Stored payment methods**. Logged-in customers can now store payment details (including Braintree credit card and Braintree with PayPal) in My Account. + +* **Support for wish lists in Magento Open Source**. Added support for Open Source wish lists. You can [add items]({{page.baseurl}}/graphql/mutations/add-products-to-wishlist.html) to, [update items]({{page.baseurl}}/graphql/mutations/update-products-in-wishlist.html) in, and [remove items]({{page.baseurl}}/graphql/mutations/remove-products-from-wishlist.html) from a wish list. + +* **Improved management of customer accounts**. We have added the [`createCustomerV2`]({{page.baseurl}}/graphql/mutations/create-customer-v2.html) and [`updateCustomerV2`]({{page.baseurl}}/graphql/mutations/update-customer-v2.html) mutations to manage customer accounts. These new mutations require different input objects than the `createCustomer` and `updateCustomer` mutations. To change a customer's email address, use the new [`updateCustomerEmail`]({{page.baseurl}}/graphql/mutations/update-customer-email.html) mutation. + +* **Support for Payflow Pro Vault**. Added GraphQL Vault support for the [Payflow Pro Vault]({{page.baseurl}}/graphql/payment-methods/payflow-pro-vault.html) payment method. _Fix submitted by Oleh Usik in pull request [28821](https://github.com/magento/magento2/pull/28821)_. [GitHub-28520](https://github.com/magento/magento2/issues/28520) + +* Updated the GraphQL [`storeConfig` query]({{page.baseurl}}/graphql/queries/store-config.html) to include new customer configuration settings. _Fix submitted by Oleh Usik in pull request [27876](https://github.com/magento/magento2/pull/27876)_. [GitHub-28521](https://github.com/magento/magento2/issues/28521) + +* Added the [`requestPasswordResetEmail` mutation]({{page.baseurl}}/graphql/mutations/request-password-reset-email.html), which triggers the password reset email for the provided email address. _Fix submitted by Oleh Usik in pull request [27876](https://github.com/magento/magento2/pull/27876)_. [GitHub-28521](https://github.com/magento/magento2/issues/28521) + +* **Klarna GraphQL**. Added or updated topics on Klarna GraphQL in [Klarna's payment method]({{page.baseurl}}/graphql/payment-methods/klarna.html) and [`createKlarnaPaymentsSession`]({{page.baseurl}}/graphql/mutations/create-klarna-payments-session.html) + +See the [GraphQL Developer Guide]({{page.baseurl}}/graphql/) for details on these enhancements. + +### PWA Studio + +PWA Studio v8.0.0 introduces new features and enhancements: + +* Updates to the Venia style guide that apply to design tokens, typography, colors, core components, and page layouts + +* Improvements to the Venia mini-cart experience + +* Initial support for multiple locales and localized content on the Venia storefront + +* Numerous improvements to the MyAccount experience of the Venia storefront + +See [Magento compatibility](https://magento.github.io/pwa-studio/technologies/magento-compatibility/) for a list of PWA Studio versions and their compatible Magento core versions. For information about enhancements and bug fixes, see [PWA Studio releases](https://github.com/magento/pwa-studio/releases). + +### B2B + +Magento 2.4.1 introduces B2B v1.3.0. This release includes improvements to order approvals, shipping methods, shopping cart, and logging of Admin actions. + +#### Improvements to Order Approvals + +B2B order approvals have been enhanced to improve usability and to allow for bulk actions on purchase orders. +Improvements to order approval and rejection include the following: + +* **New View Rule page for users without edit privileges**. B2B buyers can now view rules that apply to their company on the new View Rule page when they do not have permission to edit them. + +* **Count alert icon on the Requires My Approval tab**. The Requires My Approval tab in the My Purchase Orders view now displays a counter that indicates the number of pending approval actions. + +* **Bulk order approvals and rejections**. B2B managers and Company Administrators can now perform bulk rejection and approval of purchase orders. These changes allow approvers to approve or reject multiple purchase orders in a single action. + +* Merchants can now search the **Applies to** and **Requires approval from** fields of the My Purchase Orders view and can select multiple user roles during rule creation. + +* Examples of how to configure Order Approval rules are provided on the Rule Configuration page. + +See [Approval rules](https://docs.magento.com/user-guide/customers/account-dashboard-approval-rules.html) + +#### B2B shipping methods enhancements + +B2B merchants can now control shipping methods that are offered to each Company. Merchants can configure the following from the Admin: + +* A specific set of shipping methods for B2B Company accounts +* The use of All or B2B-specific shipping methods for each Company account +* A specific list of B2B shipping methods for each Company account + +#### Shopping cart improvements + +* Merchants can now allow users to clear the contents of their shopping cart in a single action and can configure this ability independently on each website. + +* B2B buyers can now add individual items or the entire contents of their shopping cart directly to a requisition list. + +#### New Admin features + +* B2B merchants can create orders from the Admin on behalf of customers using Payment on Account as the payment method. +* Merchants can now directly view all quotes associated with a user from the customer’s detail page. +* Merchants can now filter the Customers Now Online grid by Company. +* Admins can now filter customers in the Admin by Sales Rep. + +See [B2B Features](https://docs.magento.com/user-guide/configuration/general/b2b-features.html). + +#### Enhanced security on storefront + +To reduce creation of fraudulent or spam accounts, merchants can now enable Google reCAPTCHA on the New Company Request form on the storefront. See [reCAPTCHA](https://docs.magento.com/user-guide/configuration/security/google-recaptcha-storefront.html). + +#### Expanded logging of Admin actions + +Admin actions taken in the Company modules are now logged in the Admin Actions Log. Actions are logged from all relevant company modules: `Company`, `NegotiableQuote`, `CompanyCredit`, `SharedCatalog`. + + +This release also includes multiple bug fixes. See [B2B Release Notes]({{page.baseurl}}/release-notes/b2b-release-notes.html). + +### Magento Functional Testing Framework (MFTF) + +MFTF 3.1.0 is now available. See [Magento Functional Testing Framework Changelog](https://github.com/magento/magento2-functional-testing-framework/blob/develop/CHANGELOG.md). + +### Vendor Developed Extensions + +See the following articles for updates on features and changes for this release: + +* [Amazon Pay](https://docs.magento.com/user-guide/payment/amazon-pay.html) + +* [Braintree](https://docs.magento.com/user-guide/payment/braintree.html) + +* [dotdigital Engagement Cloud](https://docs.magento.com/user-guide/marketing/dotdigital/engagement-cloud.html) + +* [Klarna](https://docs.magento.com/user-guide/payment/klarna.html) + +* [Vertex Cloud](https://docs.magento.com/user-guide/tax/vertex.html) + +* [Yotpo Product Reviews](https://docs.magento.com/user-guide/marketing/yotpo-reviews-intro.html) + +## Fixed issues + +We have fixed hundreds of issues in the Magento 2.4.1 core code. + +### Installation, upgrade, deployment + + + +* Installation of Magento with third-party extensions that have dependencies on APIs for the Store module in CLI commands no longer fails. Previously, Magento displayed this error message: `The default website isn't defined. Set the website and try again`. This was a known issue in Magento 2.4.0. + + + +* `bin/magento setup:di:compile` no longer throws a fatal error. Previously, Magento threw an error the first time you ran this command, but the second execution resulted in successful compilation. + + + +* Upgrade no longer fails when a plugin is declared on `Magento\Framework\Encryption\Encryptor`. + + + +* Magento now displays an informative error message when some themes are not deployed after running `bin/magento setup:static-content:deploy`. Previously, when deployment completed successfully but not all packages were deployed, Magento did not display an error. When this command is executed with enabled parallel processing and each theme requires more time to be deployed then the specified maximum execution time, this command can finish successfully, although themes are not deployed. + + + +* The **Use default** checkbox for Klarna payments (**Stores** > **Configuration** > **Sales** > **Payment methods** > **Klarna**) now remain checked as expected when website scope changes. + + + +* Running `/bin/magento config:show vendor_module/general/value` now returns `0` or an empty string as expected. Previously, it returned `Configuration for path: "vendor_module/general/value" doesn't exist`. _Fix submitted by Vadim Malesh in pull request [28549](https://github.com/magento/magento2/pull/28549)._ [GitHub-23290](https://github.com/magento/magento2/issues/23290) + + + +* Upgrade no longer results in the sudden failure of the Galera cluster. Previously, the Galera cluster exited abruptly after re-indexing immediately after upgrade. During Magento upgrade, index tables are altered, and the engine is changed from `MEMORY` to `InnoDB`. At this point, the content of these tables became out-of-sync between the nodes of the Galera cluster. [GitHub-25334](https://github.com/magento/magento2/issues/25334) + + + +* Disabling the PageBuilder module no longer affects the rendering of the product page. Previously, custom layouts on the product page disappeared when the module was disabled, and Magento displayed a blank page. + + + +* You can now use `bin/magento sampledata:deploy` to deploy sample data as expected after installing Magento using Composer. Previously, Magento threw this error: `Git installations must deploy sample data from GitHub; see https://devdocs.magento.com/guides/v2.3/install-gde/install/sample-data-after-clone.html for more information`. _Fix submitted by Andrii Beziazychnyi in pull request [27481](https://github.com/magento/magento2/pull/27481)_. [GitHub-19481](https://github.com/magento/magento2/issues/19481) + + + +* Storefront performance has improved by eliminating the unnecessary loading of the `Datepicker` component. _Fix submitted by Mateusz Krzeszowiak in pull request [27860](https://github.com/magento/magento2/pull/27860)_. [GitHub-28823](https://github.com/magento/magento2/issues/28823) + + + +* Executing `bin/magento setup:upgrade` now completes as expected. Previously, Magento displayed printed array content for caches. _Fix submitted by Sathish Subramanian in pull request [27567](https://github.com/magento/magento2/pull/27567)_. [GitHub-27091](https://github.com/magento/magento2/issues/27091) + + + +* `bin/magento setup:static-content:deploy --language=all` now deploys all languages that are used on the storefront and all languages configured by Admin users when no language parameter is set. (`en_US` is always deployed by default.) _Fix submitted by Anton Evers in pull request [28922](https://github.com/magento/magento2/pull/28922)_. [GitHub-29218](https://github.com/magento/magento2/issues/29218) + + + +* Magento no longer displays the Backup menu when the Backup feature is disabled. _Fix submitted by Eden Duong in pull request [29222](https://github.com/magento/magento2/pull/29222)_. [GitHub-29280](https://github.com/magento/magento2/issues/29280) + + + +* Catalog image helper initialization now uses the product model instead of `DataObject`. _Fix submitted by jmonteros422 in pull request [29435](https://github.com/magento/magento2/pull/29435)_. [GitHub-1711](https://github.com/magento/adobe-stock-integration/issues/1711) + + + +* Admin users can now save an empty **Customer Token Lifetime (hours)** field (Admin **Stores** > **Configurations** > **Services** > **OAuth** > **Access Token Expiration**). [GitHub-29502](https://github.com/magento/magento2/issues/29502) + + + +* The **Create Permanent Redirect for old URL** setting is now disabled by default for categories. _Fix submitted by Vadim Malesh in pull request [28752](https://github.com/magento/magento2/pull/28752)_. [GitHub-24922](https://github.com/magento/magento2/issues/24922) + +### AdminGWS + + + +* Magento no longer displays the **Add Attribute** button (**Stores** > **Attributes** or **Add Attribute Set** button (**Stores** > **Attributes** > **Customer**) when the logged-in administrator lacks the appropriate permissions to create these entities. Previously, Magento threw a 404 error when a website administrator who did not have the appropriate permissions tried to create an **Attribute Set** or **Customer** attribute. + + + +* Magento no longer throws an error when an administrator with restricted roles for specific websites tries to create a subcategory from the Admin. + +### Adobe Stock Integration + + + +* Images in the Adobe Stock images grid are now properly aligned after filters have been cleared. _Fix submitted by Nazar Klovanych in pull request [28366](https://github.com/magento/magento2/pull/28366)_. [GitHub-824](https://github.com/magento/adobe-stock-integration/issues/824), [GitHub-972](https://github.com/magento/adobe-stock-integration/issues/972) + + + +* Added support for reading `exif_image.png` or `exif-image.jpeg` metadata. _Fix submitted by Nazar Klovanych in pull request [29576](https://github.com/magento/magento2/pull/29576)_. [GitHub-1449](https://github.com/magento/adobe-stock-integration/issues/1449) + + + +* The **Used in** section of the Adobe Stock gallery image details page now accurately identifies if the image is associated with a product. _Fix submitted by Nazar Klovanych in pull request [28798](https://github.com/magento/magento2/pull/28798)_. [GitHub-1474](https://github.com/magento/adobe-stock-integration/issues/1474) + + + +* `\Magento\MediaGallery\Model\ResourceModel\Keyword\SaveAssetsKeywords::execute` now deletes the links to the keywords that are not specified on the parameters and insert the new ones when deleting keyword tags while editing image details. _Fix submitted by jmonteros422 in pull request [29207](https://github.com/magento/magento2/pull/29207)_. [GitHub-1391](https://github.com/magento/adobe-stock-integration/issues/1391) + + + +* The `Login failed` message that Magento displays when a merchant clicks **License** for a previously saved, unlicensed Adobe Stock image no longer contains HTML tags. _Fix submitted by yolouiese in pull request [29398](https://github.com/magento/magento2/pull/29398)_. [GitHub-1684](https://github.com/magento/adobe-stock-integration/issues/1684) + + + +* Clicking on the links in the **Used in** section of the image Details page now displays a grid that displays all entities that are filtered by the image. The asset filter is also set and displayed correctly. Previously, Magento did not display the asset title in the **Applied filters** section. _Fix submitted by Nazar Klovanych in pull request [29367](https://github.com/magento/magento2/pull/29367)_. [GitHub-1694](https://github.com/magento/adobe-stock-integration/issues/1694) + + + +* Magento no longer displays the **Used in** section of the image Details page when the image is not in use. _Fix submitted by Nazar Klovanych in pull request [29367](https://github.com/magento/magento2/pull/29367)_. [GitHub-1699](https://github.com/magento/adobe-stock-integration/issues/1699) + + + +* Corrected display issues when adding a new image tag that exceeds the maximum number of characters. _Fix submitted by Nazar Klovanych in pull request [29367](https://github.com/magento/magento2/pull/29367)_. [GitHub-1702](https://github.com/magento/adobe-stock-integration/issues/1702) + + + +* Assets can now be checked as expected using the assets filter on the image Details **Used in** section. _Fix submitted by Nazar Klovanych in pull request [29367](https://github.com/magento/magento2/pull/29367)_. [GitHub-1704](https://github.com/magento/adobe-stock-integration/issues/1704) + + + +* Information about images that are used by different entities (for example, `page` and `category`) is now listed corrected in the image Details page. _Fix submitted by Nazar Klovanych in pull request [29367](https://github.com/magento/magento2/pull/29367)_. [GitHub-1747](https://github.com/magento/adobe-stock-integration/issues/1747) + + + +* You can now use the new `UrlFilterApplier` component to apply filters on product,`cms_page`, and `cms_block` grids using the GET URL parameter. _Fix submitted by Gabriel da Gama in pull request [28932](https://github.com/magento/magento2/pull/28932)_. [GitHub-1501](https://github.com/magento/adobe-stock-integration/issues/1501) + + + +* Clicking on links in the **Used in** section for an image in the Media Gallery now opens the grid of entities that are filtered by the image as expected. Previously, the image title was not displayed in the applied filters section of the grid. _Fix submitted by Nazar Klovanych in pull request [29429](https://github.com/magento/magento2/pull/29429)_. [GitHub-1694](https://github.com/magento/adobe-stock-integration/issues/1694) + + + +* Magento now adds tags correctly when you edit multiple images successively in the Media Gallery. _Fix submitted by Nazar Klovanych in pull request [29429](https://github.com/magento/magento2/pull/29429)_. [GitHub-1755](https://github.com/magento/adobe-stock-integration/issues/1755) + + + +* Magento now removes tags for Adobe Stock images after a merchant deletes the tags and saves the image details. Previously, tags were not deleted until the page was refreshed. _Fix submitted by Honeymay Louiese Ignacio in pull request [29400](https://github.com/magento/magento2/pull/29400)_. [GitHub-1703](https://github.com/magento/adobe-stock-integration/issues/1703) + +### Amazon Pay + +* Amazon Pay now checks whether a user is already logged in before rendering payment options. + +* Issues with multi-factor authentication and abandoned carts have been resolved. + +* Amazon Pay now correctly populates the `store name` in emails and other displayed locations. If the **Store Name** field in Amazon Pay configuration is empty, the extension retrieves the store's default name (that is, the name you give your store in the Magento Admin). + +* Localization/translation issues for Decline scenarios have been addressed. Displayed text is no longer always in English. + +### Analytics + + + +* Administrators with the correct permissions can now access Advanced Reporting and Segment Reports. + + + +* Magento successfully generates advance reporting data files and sends them as expected to Inventory on deployments with split databases. Previously, Magento did not generate or send the `quotes.csv` file to Inventory, and as a result, Inventory did not generate the expected reports. + +### Braintree + +* Braintree now sends the correct amount to PayPal when a promotion code is applied on the checkout page. + +* Apple Pay now works as expected when Magento Terms & Conditions are enabled on the checkout page. + +* Browser errors no longer occur during checkout on desktop devices when Venmo is enabled from the Admin. + +* Checkout no longer fails when the shopper enters special characters in the **Name** fields of the checkout workflow. Previously, authentication failed because the Braintree 3DS API did not support non-ASCII characters. + +* Magento now displays the correct recipient name in the shipping section of the checkout workflow when placing an order using PayPal. + +* Magento now updates the Order Review page as expected when a shopper changes the shipping method more than once during checkout. + +### Bundle products + + + +* Magento no longer throws an exception when you try to create a product in a deployment in which Inventory is installed but the `Magento_InventoryBundleProduct` module is disabled. + + + +* Magento now correctly calculates offline refunds for orders that contain bundle products. + + + +* The mini cart now displays the correct prices for bundle products when tier prices are also assigned for simple products. [GitHub-22807](https://github.com/magento/magento2/issues/22807) + + + +* Merchants can now create a credit memo for bundle products that provides a refund without requiring the return of the product. Previously, Magento threw an error. _Fix submitted by Dzung Nguyen in pull request [27455](https://github.com/magento/magento2/pull/27455)_. [GitHub-23440](https://github.com/magento/magento2/issues/23440) + + + +* Magento no longer displays redundant validation messages when a shopper adds a bundle product to their cart without selecting a required option. _Fix submitted by Dzung Nguyen in pull request [27455](https://github.com/magento/magento2/pull/27455)_. [GitHub-23440](https://github.com/magento/magento2/issues/23440) + + + +* GraphQL now supports placing an order for a bundle product with option type `radio` and `dropdown` with multiple choices. Previously, Magento displayed a message about invalid input for `BundleItem.type: radio/dropdown`. _Fix submitted by Michał Derlatka in pull request [29256](https://github.com/magento/magento2/pull/29256)_. [GitHub-26110](https://github.com/magento/magento2/issues/26110) + +### Cache + + + +* Local cache storage is now retained for the period of time set in **Stores** > **Configuration** > **General** > **Web** > **Default Cookie Settings**. Previously, the expiry date of cookies was hard-coded to one day, which put it out of sync with this setting. As a result, welcome messages did not retain returning customer information for the expected duration. + + + +* The number of calls to page cache `config` has been reduced. _Fix submitted by Lukasz Bajsarowicz in pull request [28992](https://github.com/magento/magento2/pull/28992)_. [GitHub-29159](https://github.com/magento/magento2/issues/29159) + + + +* Varnish no longer throws a `Connection reset by peer` error when a large catalog is reindexed on schedule. _Fix submitted by Matthew O'Loughlin in pull request [26256](https://github.com/magento/magento2/pull/8815)_. [GitHub-26255](https://github.com/magento/magento2/issues/8815) + + + +* Full page cache is no longer cleared for unrelated products when a product has been edited in the Admin. [GitHub-25670](https://github.com/magento/magento2/issues/25670) + +### Cart and checkout + + + +* Direct SQL queries have been replaced by Data Provider, which has improved checkout performance. _Fix submitted by Lukasz Bajsarowicz in pull request [29376](https://github.com/magento/magento2/pull/29376)_. [GitHub-29453](https://github.com/magento/magento2/issues/29453) + + + +* The Products in the Comparison and the Recently Compared Products lists now work as expected. Previously, when the comparison list was expanded, Magento did not display products, even though the section indicated that the list contained products. + + + +* The **Delete** button on the **Add to Shopping Cart by SKU** section of a customer’s **Manage Shopping Cart** page now works as expected when multiple rows are selected. + + + +* Magento no longer throws an error when you try to order a product by SKU when the digits you enter match a valid SKU but the case of these digits differ. Previously, when you entered an SKU on **My Account** > **Order by SKU** that did not exactly match a valid SKU, Magento threw an error. + + + +* A customer’s shipping address is now selected by default at checkout when the address is located in the country identified on the Allow Countries list and that list includes only that country. Previously, Magento did not select the address as default and displayed this error message: `Please specify a regionId in shipping address`. + + + +* Merchants can now enable **Apply to Shipping Amount** in the Action tab of **Marketing** > **Cart Price Rules** > **Add New Rule** when **Fixed amount discount for whole cart** is applied. [GitHub-24422](https://github.com/magento/magento2/issues/24422) + + + +* Magento no longer throws an exception when a shopper tries to unset the persistence cookie after beginning checkout and then navigating to the storefront home page. Previously, when the shopper clicked the **Not you?** link on the home page, Magento threw this exception: `The shipping address is missing. Set the address and try again`. [GitHub-24218](https://github.com/magento/magento2/issues/24218) + + + +* Magento now displays an add-to-cart success message when a customer adds an out-of-stock product to their cart. Previously, the product was added, but Magento did not display a success message. + + + +* Custom address attributes are now included as expected in the form that displays for the payment step in the checkout workflow. + + + +* The **State/Province/Region** input box is now enabled as expected on **My Account** > **Address Book** > **Add new address**. + + + +* Discounts are now applied as expected to shipping charges when **Apply to Shipping Amount** is enabled. _Fix submitted by Andrii Kalinich in pull request [28839](https://github.com/magento/magento2/pull/28839)_. [GitHub-26723](https://github.com/magento/magento2/issues/26723) + + + +* The code that supports closing the mini cart has been refactored to remove the `closeSidebar` function. The appropriate click binding has been added to the `[data-action="close"]` element. _Fix submitted by lumnn in pull request [28906](https://github.com/magento/magento2/pull/28906)_. [GitHub-29161](https://github.com/magento/magento2/issues/29161) + + + +* The new **Show "Clear Shopping Cart" button on the cart page** configuration setting provides control over displaying a **Clear Cart** button on the shopping cart view page. By default, this setting is disabled. _Fix submitted by Pavlo Sydorenko in pull request [27917](https://github.com/magento/magento2/pull/27917)_. [GitHub-28705](https://github.com/magento/magento2/issues/28705) + + + +* Validation has been added to the phone field in the checkout workflow. _Fix submitted by Oleh Usik in pull request [27537](https://github.com/magento/magento2/pull/27537)_. [GitHub-28800](https://github.com/magento/magento2/issues/28800) + + + +* Guest checkout is now disabled as expected when a cart contains downloadable products when the **Shareable** and **Disable Guest Checkout if Cart Contains Downloadable Items** settings are disabled. _Fix submitted by Rani Priya in pull request [23972](https://github.com/magento/magento2/pull/23972)_. [GitHub-23971](https://github.com/magento/magento2/issues/23971) + + + +* The success message that Magento displays when a shopper adds a product to their cart from the customer account sidebar now contains a link to the shopper’s shopping cart. _Fix submitted by Ajith in pull request [27977](https://github.com/magento/magento2/pull/27977)_. [GitHub-29097](https://github.com/magento/magento2/issues/29097) + + + +* Magento now selects an empty value by default for the prefix dropdown options menu on the checkout workflow. _Fix submitted by Vadim Malesh in pull request [28238](https://github.com/magento/magento2/pull/28238)_. [GitHub-18823](https://github.com/magento/magento2/issues/18823) + + + +* The pop-up message that Magento displays when you delete multiple items from a shopping cart now accurately describes the number and type of entities you have selected for deletion. _Fix submitted by Nazar Klovanych in pull request [29490](https://github.com/magento/magento2/pull/29490)_. [GitHub-1749](https://github.com/magento/adobe-stock-integration/issues/1749) + + + +* Magento now displays a customer registration form when a guest user completes checkout. + + + +* Custom customer address attributes fields are now displayed as expected in the storefront checkout workflow. + + + +* Magento now retrieves the current customer group for an active quote during checkout. Previously, Magento used the customer group that was active when the product was first added to the cart, and if that customer group was deleted before checkout, Magento threw an error. _Fix submitted by Konstantin in pull request [28902](https://github.com/magento/magento2/pull/28902)_. [GitHub-29327](https://github.com/magento/magento2/issues/29327) + +### Catalog + + + +* Magento now removes disabled products from a shopper’s cart before checkout. Previously, when a shopper added a product to their cart that was disabled before checkout completed, Magento removed the disabled product from the cart, but the product remained in the quote, and the shopper could not check out. [GitHub-26680](https://github.com/magento/magento2/issues/26680) + + + +* Magento now sorts bestselling products as expected. Previously, both product count and the pagination of sort results were incorrect. [GitHub-25955](https://github.com/magento/magento2/issues/25955) + + + +* Shoppers can now open a product’s detail page by clicking on the product name in the compare products sidebar. _Fix submitted by Eduard Chitoraga in pull request [27451](https://github.com/magento/magento2/pull/27451)_. [GitHub-21101](https://github.com/magento/magento2/issues/21101) + + + +* `children_count` values now remain positive when an administrator deletes categories. Previously, when an administrator deleted categories, the `children_count` for remaining categories was negative. _Fix submitted by Vitaliy Prokopov in pull request [28044](https://github.com/magento/magento2/pull/28044)_. [GitHub-27969](https://github.com/magento/magento2/issues/27969) + + + +* Magento now uses the default option (**Configuration** > **Web** > **Default Layouts** > **Default Product Layout**) that you have selected for the `page_layout` attribute when creating a new product. Previously, your selected default value was not applied. + + + +* You can now successfully perform mass actions on Inventory product stock. Previously, when you tried to perform a mass action on inventory product stock, Magento displayed a blank page. If you performed this action with Magento in developer mode, Magento threw this error: `Notice: Undefined offset: 32000 in /Users/kodithuw/sites/m23inventory/inventory/InventoryCatalogAdminUi/view/adminhtml/templates/catalog/product/edit/action/inventory.phtml on line 24` + + + +* The total record count displayed when you click **Add Products** on the Products tab when adding products to a catalog category no longer changes based on product sort order. + + + +* The `{products(filter: {sku: {eq: "some sku"}}) {…}` query now returns values that have been converted into the expected currency. Previously, `price_tiers.final_price.value` displayed special prices in the base currency. _Fix submitted by Petkovski Marjan in pull request [28890](https://github.com/magento/magento2/pull/28890)_. [GitHub-26121](https://github.com/magento/magento2/issues/26121) + +### Catalog Rule + + + +* Magento no longer throws a fatal error when you save a catalog rule with the following conditions: `If ALL of these conditions are FALSE:, If ALL of these conditions are TRUE:, Attribute set is default` + +### Cleanup + + + +* Corrected misalignment of the Admin Sales Order grid checkbox. _Fix submitted by Tu Nguyen in pull request [27642](https://github.com/magento/magento2/pull/27642)_. [GitHub-27633](https://github.com/magento/magento2/issues/27633) + + + +* Corrected a misspelling in the shipping address ID getter in the sales order address save handler. _Fix submitted by Konstantin in pull request [28810](https://github.com/magento/magento2/pull/28810)_. [GitHub-28982](https://github.com/magento/magento2/issues/28982) + + + +* Corrected the `getRegionNameExpresion` method name to `getRegionNameExpression`. _Fix submitted by Pierre Grimaud in pull request [28832](https://github.com/magento/magento2/pull/28832)_. [GitHub-28829](https://github.com/magento/magento2/issues/28829) + + + +* A redundant `init` method has been removed from `app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator/Website.php` and `app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator/TierPriceType.php`. _Fix submitted by Oleh Usik in pull request [28650](https://github.com/magento/magento2/pull/28650)_. [GitHub-29009](https://github.com/magento/magento2/issues/29009) + + + +* `localStorage` polyfill has been moved from from `base` to `frontend`. _Fix submitted by Ihor Sviziev in pull request [28749](https://github.com/magento/magento2/pull/28749)_. [GitHub-28900](https://github.com/magento/magento2/issues/28900) + + + +* Updated the Magento Commerce logo and removed extraneous spaces from the README file. _Fix submitted by Rafael Corr̻a Gomes in pull request [28891](https://github.com/magento/magento2/pull/28891)_. [GitHub-29056](https://github.com/magento/magento2/issues/29056) + + + +* The unnecessary `overflowed` class has been removed from the mini cart sidebar widget. _Fix submitted by lumnn in pull request [28963](https://github.com/magento/magento2/pull/28963)_. [GitHub-29160](https://github.com/magento/magento2/issues/29160) + + + +* An incorrect CSS selector in the Shipment page has been corrected. _Fix submitted by Tu Nguyen in pull request [28639](https://github.com/magento/magento2/pull/28639)_. [GitHub-29261](https://github.com/magento/magento2/issues/29261) + + + +* The `lib/internal/Magento/Framework/App/Request/Http.php` file has been simplified by optimizing logic and removing redundant variable assignments and over-usage of returns within a function. _Fix submitted by Chris Snedaker in pull request [28608](https://github.com/magento/magento2/pull/28608)_. [GitHub-29381](https://github.com/magento/magento2/issues/29381) + + + +* The `bin/magento module:status` command now accepts multiple module names as arguments. _Fix submitted by Chandru Rajendran in pull request [28250](https://github.com/magento/magento2/pull/28250)_. [GitHub-29344](https://github.com/magento/magento2/issues/29344) + + + +* Fixed a typo in the class description of `\Magento\Downloadable\Block\Sales\Order\Email\Items\Downloadable`. _Fix submitted by Benjamin Rosenberger in pull request [29451](https://github.com/magento/magento2/pull/29451)_. [GitHub-29470](https://github.com/magento/magento2/issues/29470) + + + +* The `TierPriceManagement` class has been refactored to remove redundant code. _Fix submitted by Lukasz Bajsarowicz in pull request [29202](https://github.com/magento/magento2/pull/29202)_. [GitHub-29477](https://github.com/magento/magento2/issues/29477) + + + +* `autoload.php` has been refactored to improve readability and return speed. _Fix submitted by Vitaliy Ryaboy in pull request [28923](https://github.com/magento/magento2/pull/28923)_. [GitHub-29527](https://github.com/magento/magento2/issues/29527) + +### CMS content + + + +* The Hierarchy tab for a selected default store view now displays the selected parent page as expected. + + + +* Magento no longer throws an error during store view creation when the new store view contains a CMS page with the same URL key as a page in a different store view. _Fix submitted by Vadim Malesh in pull request [28421](https://github.com/magento/magento2/pull/28421)_. [GitHub-28357](https://github.com/magento/magento2/issues/28357) + + + +* Magento now throws an error when a merchant creates a CMS page with the same URL as the Company Structure page. Previously, Magento displayed the CMS page instead of the Company Structure page. + +### Configurable products + + + +* Pagination problems with the Configurable Product Edit Current Variations list have been corrected. + + + +* Magento no longer updates the Related Products price box whenever a shopper selects options for a configurable product. Previously, Magento updated the price box whenever a shopper selected an option for a configurable product. + + + +* Magento now displays the correct price for configurable products with customizable options on the Admin Create Order page. As expected, the displayed price is a sum of the child product's price and the custom option's price. Previously, Magento displayed only the custom option price. [GitHub-25766](https://github.com/magento/magento2/issues/25766) + + + +* The order summary now displays the correct discount amount when a cart price rule has been applied. Previously, the rule did not correctly round amounts when calculating shipping discounts. + + + +* Admin user accounts created from an admin account with a restricted scope can now create a configurable product with attributes as expected. Previously, Magento threw this error: `Notice: Undefined index: value_index in 23develop/app/code/Magento/ConfigurableProduct/Helper/Product/Options/Factory.php on line 101`. + + + +* Magento no longer throws a validation error when you use POST `/V1/products` to a configurable product with an `int` value of 0. Previously, Magento threw this error: `Product with id "%1" does not contain required attribute “%2”.”` _Fix submitted by Vadim Malesh in pull request [29001](https://github.com/magento/magento2/pull/29001)_. [GitHub-13210](https://github.com/magento/magento2/issues/13210) + + + +* The configuration options attribute of a parent product are no longer assigned to a new configurable product’s `size` attribute. _Fix submitted by Abel Truong in pull request [27339](https://github.com/magento/magento2/pull/27339)_. [GitHub-26449](https://github.com/magento/magento2/issues/26449) + +### Cookies + + + +* Magento now creates a maximum of one `mage-translation-file-version` and `mage-translation-storage` cookie per session. _Fix submitted by Ihor Sviziev in pull request [27364](https://github.com/magento/magento2/pull/27364)_. [GitHub-27355](https://github.com/magento/magento2/issues/27355) + +### cron + + + +* Message queue consumer configuration has been extended with new parameters that help control consumers and save server resources and that potentially decrease consumer queue CPU consumption. See [Configure message queues]({{page.baseurl}}/extension-dev-guide/message-queues/config-mq.html) for a description of the `maxIdleTime`, `sleep`, and `onlySpawnWhenMessageAvailable` parameters. + + + +* `cron` expressions such as  `3/10 * * * *` are now scheduled as expected. _Fix submitted by Anton Evers in pull request [28930](https://github.com/magento/magento2/pull/28930)_. [GitHub-29240](https://github.com/magento/magento2/issues/29240) + + + +*  `sales_clean_quotes` no longer loads all expired quotes at once. Previously, Magento failed with this fatal error because all expired quotes were loaded simultaneously: `PHP Fatal error: Allowed memory size of 2147483648 bytes exhausted (tried to allocate 20480 bytes) in /path/to/magento2/vendor/magento/framework/Model/AbstractModel.php on line 359`, + +### CSS + + + +* Magento no longer duplicates CSS when **Critical CSS** is enabled. _Fix submitted by Tu Nguyen in pull request [28480](https://github.com/magento/magento2/pull/28480)_. [GitHub-26498](https://github.com/magento/magento2/issues/26498) + + + +* The server-side LESS compiler now imports all remote CSS files as expected when you run `bin/magento setup:static-content:deploy -f`. Previously, Magento did not import the remote files and threw an error. [GitHub-25119](https://github.com/magento/magento2/issues/25119) + +### Custom customer attributes + + + +* Corrected alignment issues for the explanatory text about passwords and the **Job Title** field on the Customer Edit Account Information page. + + + +* CAPTCHA now works as expected when a new customer clicks the **Create an Account** button on the storefront customer registration page. Previously, Magento did not create the customer account and displayed an error when the customer clicked the button. + + + +* The checkout workflow no longer displays custom customer address attribute values when the customer has not entered any data. + +### Customer + + + +* The region names in Admin customer addresses are now translated as expected. + + + +* The **State/Province** fields are now populated as expected on the Edit Address page (**My Account** > **Address book**). + + + +* Magento no longer throws an error when a customer clicks the **Submit** button multiple times on forms throughout the storefront for which invisible reCAPTCHA has been enabled. Previously, clicking this button multiple times resulted in an internal error similar to this: `Internal error: Make sure you are using reCaptcha V3 api keys`. + + + +* Saving a deleted customer from the Admin now generates an error message only. Previously, Magento displayed a blank page and generated a report that contains this string: `"0":"No such entity with customerId = 3","1":"#1 Magento\\Customer\\Model CustomerRegistry->retrieve() called at [app\/code\/Magento\/Customer\/Model\/ResourceModel\/CustomerRepository.php:340"`. + + + +* Magento now displays an error message as expected when an administrator tries to save an address for a customer whose account has just been deleted. Previously, Magento displayed a blank message box. + + + +* The labels for address fields in the checkout workflow and the address book have been edited for consistency. + + + +* Frontend labels now fall back to store labels if their values are not null. Previously, customer attributes used the default frontend labels. _Fix submitted by Toan Nguyen in pull request [27064](https://github.com/magento/magento2/pull/27064)_. [GitHub-27063](https://github.com/magento/magento2/issues/27063) + + + +* The `sortOrder`number of links in layout XML has been corrected. Previously, this order was reversed and used descending order. _Fix submitted by Tu Nguyen in pull request [27340](https://github.com/magento/magento2/pull/27340)_. [GitHub-27162](https://github.com/magento/magento2/issues/27162) + +### Customer segment + + + +* Bulk operations have been refactored to save and refresh customer segments asynchronously, which has improved the performance of these tasks for deployments that include many customers (greater than 3,000,000). + + + +* Customer segment conditions now work as expected in a split-database deployment. Previously, Magento threw an error when you tried to edit a customer segment by adding a condition: `SQLSTATE[42S02]: Base table or view not found`. + +### Directory + + + +* The format of the State/Province drop-down menu is now consistent across the Admin. + +### dotdigital + +* Order sync no long fails when an order contains product SKUs that no longer exist in the catalog. + +* Empty product categories are no longer included in web insight data. + +* Web behavior tracking now works for merchants with certain theme configurations. A new fallback selector addresses this. + +* The subscriber status data field no loner includes empty values when customer sync was run using cron. (App emulation addresses this issue.) + +* Address book mapping now works as expected when a dotdigital account is enabled at the default level but disabled for the main website. + +* Coupons are now generated (using the external dynamic content URL for coupon generation) for email addresses that contain plus ('+') signs. + +* Contacts are no longer resubscribed when their `last_subscribed_at` value is null. + +* Upgrade errors (dating from 4.5.2) that affected earlier Magento versions have been resolved. + +* A regression issue that was introduced in 4.5.3 that affected using a method to obtain the subscriber status when preparing subscriber export has been fixed. + +* The total figure for synced subscribers (presented in the logs and on screen) is now correctly calculated. + +### Downloadable + + + +* The My Downloadable Products area now displays links to purchased downloadable products that are part of a grouped product as expected. + + + +* Clicking on a downloadable product's **Sample** button from the Admin product page now downloads a sample as expected. Previously, when you clicked **Sample**, Magento displayed this error: `The product that was requested doesn't exist. Verify the product and try again`. + + + +* Shoppers can now download samples of downloadable products that are out-of-stock. Previously, when a shopper tried to download a sample, Magento opened a new tab, but did not display an informative message or begin the download process. _Fix submitted by Vadim Malesh in pull request [28898](https://github.com/magento/magento2/pull/28898)_. [GitHub-23638](https://github.com/magento/magento2/issues/23638) + + + +* The exception message that Magento displays when a shopper tries to set a shipping address for a downloadable product has been improved. _Fix submitted by Michał Derlatka in pull request [28904](https://github.com/magento/magento2/pull/28904)_. [GitHub-26107](https://github.com/magento/magento2/issues/26107) + + + +* A product’s `stock_item` data is updated and downloadable product links and samples are preserved as expected when you use a REST PUT call to update `stock_item` values. Previously, after the product update, the product no longer contained links to download content. _Fix submitted by Vadim Malesh in pull request [28799](https://github.com/magento/magento2/pull/28799)_. [GitHub-21811](https://github.com/magento/magento2/issues/21811) + + + +* Magento now displays a more informative message when a customer sets the shipping address for an order that contains only downloadable products. + +### Dynamic block (formerly banner) + + + +* Table title now matches the data table (as expected) when you create a dynamic block and add a related catalog price rule. + +### Email + + + +* Magento now sends email notifications about order changes to the correct customer email if the customer email was changed after the order was created. + + + +* Order update emails that are sent to customers now include the correct order status. Previously, if an order status changed from `processing` to another state, the order email did not reflect the status change. + + + +* Magento no longer displays misleading messages about existing accounts during guest checkout. Previously, when a guest navigated to the checkout page, then navigated back to the shipping page, Magento displayed this error: `You already have an account with us. Sign in or continue as guest`. + + + +* Custom email templates now load the same elements as native default email templates. Previously, some elements were missing, including variable values. + + + +* You can now create an email template that sends email with `Content-Type: "text/plain”`. Previously, Magento ignored the content type specified in the template. _Fix submitted by twoonesixdigital in pull request [26474](https://github.com/magento/magento2/pull/26474)_. [GitHub-26471](https://github.com/magento/magento2/issues/26471) + + + +* Unnecessary CSS has been removed from the email Preview template. _Fix submitted by Tu Nguyen in pull request [27828](https://github.com/magento/magento2/pull/27828)_. [GitHub-27543](https://github.com/magento/magento2/issues/27543) + + + +* Text in the email template that duplicates text already displayed by the footer has been removed. _Fix submitted by Paweł Tylek in pull request [27356](https://github.com/magento/magento2/pull/27356)_. [GitHub-28433](https://github.com/magento/magento2/issues/28433) + + + +* Product alert emails are now sent from the store from which the alert is subscribed. Previously, this email was always sent from the default store. _Fix submitted by Maciej Pawłowski in pull request [26534](https://github.com/magento/magento2/pull/26534)_. [GitHub-28968](https://github.com/magento/magento2/issues/28968) + + + +* A duplicate `customer.name` variable has been removed from the email template. _Fix submitted by Paweł Tylek in pull request [29054](https://github.com/magento/magento2/pull/29054)_. [GitHub-29087](https://github.com/magento/magento2/issues/29087) + + + +* Notification emails that are sent to sales representatives assigned to a company now include the assigned corporate logo. Previously, the notification email included the default LUMA logo, not the uploaded corporate logo email. + +### Frameworks + + + +* The **Time of day to send data** field of the Admin **Stores** > **Configuration** > GENERAL > **Advanced Reporting** page is now rendered correctly. + + + +* Shoppers can now change the number of orders that are displayed per page when the Orders list spans multiple pages. Previously, Magento displayed this message when you navigated to the last page of orders and tried to change the number of orders displayed per page: `You have placed no orders`. This was a known issue for Magento 2.4.0. + + + +* You can now add products to a category when implementing Level 2 cache. + + + +* `X-Magento-Tags` headers no longer exceed the size permitted by the HTTP specification. Previously, category pages that contain many products returned an `X-Magento-Tag` header that resulted in a 503 error. + + + +* `sales_order_shipment_track_save_commit_after` is now triggered as expected when you used the REST API to create a shipment. + + + +* Magento now displays an informative error message when a `di compile` fails due to a nonexistent dependency. Previously, the message displayed did not identify the class in which the exception occurred. + + + +* Magento no longer throws the following fatal error when Redis uses all allowed memory: `report.CRITICAL: OOM command not allowed when used memory > 'maxmemory'`. + + + +* Shoppers can now add multiple products to their cart when the `Persistent` module is disabled. [GitHub-14486](https://github.com/magento/magento2/issues/14486) + +### General fixes + + + +* Sorting products on the Admin (**Stores** > **Attributes** > **Products**) now displays all products that meet your search criteria. Previously, Magento did not display records, and to sort the records, you had to navigate to the first page of search results. + + + +* Unnecessary quotation marks and escaping around a URL in `tracking.phtml` have been removed. + + + +* The `var/log/system.log` now displays a more accurate message when a user tries to access a non-existing resource file under the static directory and SCD OnDemand and production mode are enabled. Magento now logs a 404 error. Previously, Magento logged the same message that is logged when the error occurs in developer mode. + + + +* JavaScript minification now works correctly. The minification file resolver no longer leaks variables to global scope. Previously, `ctx`, `origNameToUrl`, and `baseUrl` variables under window were leaked. _Fix submitted by Mateusz Krzeszowiak in pull request [27622](https://github.com/magento/magento2/pull/27622)_. [GitHub-28110](https://github.com/magento/magento2/issues/28110) + + + +* When you debug an error that prevents object creation, Magento now prints as well as logs the original exception message. Previously, the message was only logged. _Fix submitted by Marvin Hinz in pull request [26572](https://github.com/magento/magento2/pull/26572)_. [GitHub-26550](https://github.com/magento/magento2/issues/26550) + + + +* Callback execution after database changes are committed has been improved. Previously, if one callback failed with an exception, all callbacks failed. _Fix submitted by Alok Patel in pull request [27134](https://github.com/magento/magento2/pull/27134)_. [GitHub-28167](https://github.com/magento/magento2/issues/28167) + + + +* Mixins for modules with no dependencies defined no longer throw this error: `TypeError: Cannot read property 'map' of null`. _Fix submitted by Mateusz Krzeszowiak in pull request [27690](https://github.com/magento/magento2/pull/27690)_. [GitHub-28340](https://github.com/magento/magento2/issues/28340) + + + +* Storage polyfill is now loaded and applied only when `localStorage` or `sessionStorage` are not available. _Fix submitted by Mateusz Krzeszowiak in pull request [27619](https://github.com/magento/magento2/pull/27619)_. [GitHub-28381](https://github.com/magento/magento2/issues/28381) + + + +* Multi-page storefront orders lists now behave as expected when a shopper changes the number of results displayed per page from the second or subsequent results page. Previously, Magento displayed this error when a shopper changed the number of search results displayed in the **My Account** > **My Orders** list: `You have placed no orders`. _Fix submitted by Vadim Malesh in pull request [28417](https://github.com/magento/magento2/pull/28417)_. [GitHub-28488](https://github.com/magento/magento2/issues/28488) + + + +* The deprecated `addWarning` method has been replaced with the `addWarningMessage` method in the Magento core security module. _Fix submitted by kishorekumarkesavan in pull request [28264](https://github.com/magento/magento2/pull/28264)_. [GitHub-28308](https://github.com/magento/magento2/issues/28308) + + + +* Code generated using the Magento command-line commands is now consistent with Magento requirements and coding standards. _Fix submitted by Lukasz Bajsarowicz in pull request [28351](https://github.com/magento/magento2/pull/28351)_. [GitHub-28376](https://github.com/magento/magento2/issues/28376) + + + +* Magento no longer displays a CMS page more than once in the site hierarchy if the page is assigned to multiple store views. + + + +* Saving an attribute with `backend_type = static` no longer removes the content of the `frontend_class` field. _Fix submitted by jiten-patel in pull request [27369](https://github.com/magento/magento2/pull/27369)_. [GitHub-27051](https://github.com/magento/magento2/issues/27051) + + + +* Unnecessary code and `responsive.js` have been removed from files that are loaded by themes. _Fix submitted by Mateusz Krzeszowiak in pull request [27617](https://github.com/magento/magento2/pull/27617)_. [GitHub-28811](https://github.com/magento/magento2/issues/28811) + + + +* Validation has been added to the **Number of Symbols** field on the Admin CAPTCHA configuration page. _Fix submitted by Eden Duong in pull request [29199](https://github.com/magento/magento2/pull/29199)_. [GitHub-29198](https://github.com/magento/magento2/issues/29198) + + + +* The RSS feed now loads correctly. Previously, the feed did not load the first time, although it loaded as expected when the page was refreshed. _Fix submitted by Vadim Malesh in pull request [29455](https://github.com/magento/magento2/pull/29455)_. [GitHub-25211](https://github.com/magento/magento2/issues/25211) + + + +* An expired persistent session is now renewed as expected when the shopper logs back in. + + + +* Password lifetime as set in **Stores** > **Configuration** > **Advanced** > **Admin** is now honored. Previously, if you clicked **Forgot password?** when prompted to reset your password, you could bypass the password reset. + + + +* Coupon codes are now applied only to the specified product. Previously, Magento applied the coupon code to all products in the cart. [GitHub-28246](https://github.com/magento/magento2/issues/28246) + + + +* Cart expiry settings are no longer re-set when an inventory or price update occurs. Previously, when a cart was set to expire in 24 hours, and an inventory update or price update occurred, the indexers populated the `updated_at table`, which re-set the expiry time. + + + +* Magento no longer throws a fatal error when an administrator assigns a customer who has an active shopping cart to a customer group. + + + +* Selecting a toolbar option from **Developer tools** > **Network** on a product page when running the Chrome browser no longer initializes `toolbar.js` twice. _Fix submitted by Paweł Tylek in pull request [28838](https://github.com/magento/magento2/pull/28838)_. [GitHub-25934](https://github.com/magento/magento2/issues/25934) + + + +* Magento now adds an admin user’s ACL role ID to the product category tree cache ID. This will limit the category trees that an admin with limited scope can see as expected. _Fix submitted by quangdo-aligent in pull request [27429](https://github.com/magento/magento2/pull/27429)_. [GitHub-28306](https://github.com/magento/magento2/issues/28306) + +### Gift cards + + + +* Gift card accounts now capture order numbers as expected. Previously, the **More information** field in the History tab for the selected gift account did not display order IDs. + + + +* Using a comma as a decimal separator now works as expected. Previously, the comma separator ignored decimal values. + + + +* Gift cards are now displayed as expected in the mini cart. Previously, Magento rendered HTML objects as text. + + + +* Credit memos now correctly reflect the grand total for orders that involved discounted products and that were paid for by a combination of gift card and store credit. + +### Google Tag Manager + + + +* Magento no longer throws a JavaScript error during checkout when the **Cookie Restriction Mode** setting and Google Tag Manager are enabled. + +### GraphQL + + + +* Shoppers can select gift message and wrapping options during checkout. GraphQL now covers gift message options for different types of cart items. See [`setGiftOptionsOnCart` mutation]({{page.baseurl}}/graphql/mutations/set-gift-options.html) and [`updateCartItems` mutation]({{page.baseurl}}/graphql/mutations/update-cart-items.html). _Fix submitted by Oleh Usik in pull requests [28519](https://github.com/magento/magento2/pull/28105), [27956](https://github.com/magento/magento2/pull/27956), [28072](https://github.com/magento/magento2/pull/28072), [28072](https://github.com/magento/magento2/pull/28072), and 246 in private repo partners-magento2ee_. [GitHub-253](https://github.com/magento/magento2/issues/28519) + + + +* Customers and guests can write product reviews. Customers can also retrieve their product review histories. See [Create a product review]({{page.baseurl}}/graphql/mutations/create-product-review.html) and [productReviewRatingsMetadata query]({{page.baseurl}}/graphql/queries/product-review-ratings-metadata.html) for information on retrieving information about the reviews infrastructure. _Fix submitted by Eduard Chitoraga in pull request [27882](https://github.com/magento/magento2/pull/27882)_. [GitHub-28523](https://github.com/magento/magento2/issues/28523) + + + +* Customers can apply or remove reward points to their carts. They can also view their reward point history. See [`applyRewardPointsToCart`]({{page.baseurl}}/graphql/mutations/apply-reward-points.html) and [`removeRewardPointsFromCart`]({{page.baseurl}}/graphql/mutations/remove-reward-points.html) for a discussion of managing reward points within a cart. _Fix submitted by Petkovski Marjan in pull request 285 in private repo partners-magento2ee and Dmitriy Gallyamov in pull requests 284 and 281 in private repo partners-magento2ee_. [GitHub-28835](https://github.com/magento/magento2/issues/28835), [GitHub-28833](https://github.com/magento/magento2/issues/28833) + + + +* The [`addProductsToCart` mutation]({{page.baseurl}}/graphql/mutations/add-products-to-cart.html) allows you to add any type of product to the active cart. We recommend using this mutation instead of single-purpose mutations such as `addSimpleProductsToCart`. _Fix submitted by Yaroslav Rogoza in pull request [27914](https://github.com/magento/magento2/pull/27914)_. [GitHub-28524](https://github.com/magento/magento2/issues/28524) + + + +* GraphQL queries for related products now return values for related products that were created from target rules. Previously, queries for related products (up-sell and cross-sell) only returned values if the related products were added from the product settings. _Fix submitted by Ulzii in pull request 288 in private repo partners-magento2ee_. [GitHub-28566](https://github.com/magento/magento2/issues/28566) + + + +* The new `availableStores` query returns a list of configuration attributes for multiple stores available under the same website (based on the current store). It does not expose the list of websites. See [`availableStores` query]({{page.baseurl}}/graphql/queries/available-stores.html). _Fix submitted by Dmitriy Gallyamov in pull request [28794](https://github.com/magento/magento2/pull/28794)_. [GitHub-28569](https://github.com/magento/magento2/issues/28569) + + + +* GraphQL now uses only an authorization token to retrieve a type of user and its ID. Previously, GraphQL used an active customer's cookies to retrieve this information when the authorization token was empty. _Fix submitted by Alexander Taranovsky in pull request [27373](https://github.com/magento/magento2/pull/27373)_. [GitHub-28040](https://github.com/magento/magento2/issues/28040) + + + +* We have added the [`createCustomerV2`]({{page.baseurl}}/graphql/mutations/create-customer-v2.html) and [`updateCustomerV2`]({{page.baseurl}}/graphql/mutations/update-customer-v2.html) mutations to manage customer accounts. These new mutations require different input objects than the `createCustomer` and `updateCustomer` mutations. To change a customer's email address, use the new [`updateCustomerEmail`]({{page.baseurl}}/graphql/mutations/update-customer-email.html) mutation. _Fix submitted by Michał Derlatka in pull request [28888](https://github.com/magento/magento2/pull/28888)_. [GitHub-28570](https://github.com/magento/magento2/issues/28570) + + + +* `updateCustomer` no longer allows you to set an invalid `INT` value in the `gender` argument. _Fix submitted by Alexander Taranovsky in pull request [28487](https://github.com/magento/magento2/pull/28487)_. [GitHub-28481](https://github.com/magento/magento2/issues/28481) + + + +* You can use the `subscribeEmailToNewsletter` mutation to subscribe customers to a newsletter. See [`subscribeEmailToNewsletter` mutation]({{page.baseurl}}/graphql/mutations/subscribe-email-to-newsletter.html). _Fix submitted by Alexander Taranovsky in pull request [27586](https://github.com/magento/magento2/pull/27586)_. [GitHub-27337](https://github.com/magento/magento2/issues/27337) + + + +* Removed redundant logic in the `setShippingMethodsOnCart` mutation resolver. _Fix submitted by Alexander Taranovsky in pull request [27349](https://github.com/magento/magento2/pull/27349)_. [GitHub-28262](https://github.com/magento/magento2/issues/28262) + + + +* Added test coverage for the `Please provide Email of sender` error associated with the `sendEmailToFriend` mutation. _Fix submitted by Alexander Taranovsky in pull request [28034](https://github.com/magento/magento2/pull/28034)_. [GitHub-28138](https://github.com/magento/magento2/issues/28138) + + + +* The `products` query now returns product attribute option labels for the default store view as expected. Previously, this query returned the product attribute option labels that were set for the Admin. _Fix submitted by Dmitriy Gallyamov in pull request [28647](https://github.com/magento/magento2/pull/28647)_. [GitHub-28568](https://github.com/magento/magento2/issues/28568) + + + +* Custom attribute aggregations now return store-specific option values. _Fix submitted by Dmitriy Gallyamov in pull request [28647](https://github.com/magento/magento2/pull/28647)_. [GitHub-28572](https://github.com/magento/magento2/issues/28572) + + + +* Price intervals that are returned in a product aggregation can now be numeric only (no wildcards permitted). _Fix submitted by Dmitriy Gallyamov in pull request [28745](https://github.com/magento/magento2/pull/28745)_. [GitHub-28628](https://github.com/magento/magento2/issues/28628) + + + +* The `categoryList` query now returns the correct response when using fragments. _Fix submitted by Ulzii in pull request [28710](https://github.com/magento/magento2/pull/28710)_. [GitHub-28584](https://github.com/magento/magento2/issues/28584) + + + +* GraphQL product search now considers configured category permissions. Previously, product search ignored the **Enable** setting (**Stores** > **Configuration** > **Catalog** > **Catalog** > **Category Permissions**). _Fix submitted by Petkovski Marjan in pull request [28757](https://github.com/magento/magento2/pull/28757) and pull request 271 in private repo `partners-magento2ee`_. [GitHub-28563](https://github.com/magento/magento2/issues/28563 + + + +* You can now add a product to a cart using `addSimpleProductToCart` when other items in the cart are out-of-stock. Previously, Magento returned this error: `Some of the products are out of stock`. [GitHub-26683](https://github.com/magento/magento2/issues/26683) + +* The default GraphQL `Category` method now sorts by category position as expected. _Fix submitted by Derrik Nyomo in pull request [29301](https://github.com/magento/magento2/pull/29301)_. [GitHub-104](https://github.com/magento/catalog-storefront/issues/104) + +* Added support for wish lists in Magento Open Source. You can [add items]({{page.baseurl}}/graphql/mutations/add-products-to-wishlist.html) to, [update items]({{page.baseurl}}/graphql/mutations/update-products-in-wishlist.html) in, and [remove items]({{page.baseurl}}/graphql/mutations/remove-products-from-wishlist.html) from a wish list. _Fix submitted by Eduard Chitoraga in pull requests [28205](https://github.com/magento/magento2/pull/28205) and 264 in private repo partners-magento2ee_. [GitHub-28551](https://github.com/magento/magento2/issues/28551) + +* The [`addProductsToCart` mutation]({{page.baseurl}}/graphql/mutations/add-products-to-cart.html) allows you to add any type of product to the active cart. We recommend using this mutation instead of single-purpose mutations such as `addSimpleProductsToCart`. _Fix submitted by Yaroslav Rogoza in pull request [27914](https://github.com/magento/magento2/pull/27914)_. [GitHub-28524](https://github.com/magento/magento2/issues/28524) + +* Added GraphQL Vault support for the [Payflow Pro Vault]({{page.baseurl}}/graphql/payment-methods/payflow-pro-vault.html) payment method. _Fix submitted by Oleh Usik in pull request [28821](https://github.com/magento/magento2/pull/28821)_. [GitHub-28520](https://github.com/magento/magento2/issues/28520) + +* Updated the GraphQL [`storeConfig` query]({{page.baseurl}}/graphql/queries/store-config.html) to include new customer configuration settings. _Fix submitted by Oleh Usik in pull request [27876](https://github.com/magento/magento2/pull/27876)_. [GitHub-28521](https://github.com/magento/magento2/issues/28521) + +* Added the [`resetPassword` mutation]({{page.baseurl}}/graphql/mutations/reset-password.html). _Fix submitted by Oleh Usik in pull request [27876](https://github.com/magento/magento2/pull/27876)_. [GitHub-28521](https://github.com/magento/magento2/issues/28521) + +* Added the [`requestPasswordResetEmail` mutation]({{page.baseurl}}/graphql/mutations/request-password-reset-email.html), which triggers the password reset email for the provided email address. _Fix submitted by Oleh Usik in pull request [27876](https://github.com/magento/magento2/pull/27876)_. [GitHub-28521](https://github.com/magento/magento2/issues/28521) + +* Added discussion about Klarna GraphQL in [Klarna's payment method]({{page.baseurl}}/graphql/payment-methods/klarna.html) and[`createKlarnaPaymentsSession`]({{page.baseurl}}/graphql/mutations/create-klarna-payments-session.html) + +### Images + + + +* HTML markup for thumbnail images has been improved. _Fix submitted by Tu Nguyen in pull request [28642](https://github.com/magento/magento2/pull/28642)_. [GitHub-29468](https://github.com/magento/magento2/issues/29468) + +### Import/export + + + +* The `error_report.csv` file now downloads with content and is available inside the `var/import_history/` directory as expected. Previously, this file was not generated after import. + + + +* Importing a product by using a CSV file now generates an `error_report.csv` file as expected. Previously, Magento generated the file but removed it after the import completed. _Fix submitted by Vadim Malesh in pull request [28460](https://github.com/magento/magento2/pull/28460)_. [GitHub-28420](https://github.com/magento/magento2/issues/28420) + + + +* Removed redundant class imports throughout code base. _Fix submitted by Oleh Usik in pull request [28696](https://github.com/magento/magento2/pull/28696)_. [GitHub-29012](https://github.com/magento/magento2/issues/29012) + + + +* Magento now successfully imports customer addresses that contain a region for a country that does not have defined regions. Previously, Magento threw this error: `Please enter a valid region`. + + + +* Magento now loads the correct entity attribute set when a merchant selects an entity type when scheduling a new export. + + + +* The position of products in the `catalog_category_product` table now updates as expected when an administrator creates a product in the Admin and assigns it to a category. Previously, the position of new products was always assigned a 0 value. + + + +* Customer data is now successfully exported from the Admin, and the export data grid displays customer data as expected. Previously, an error related to memory allocation occurred during export. + + + +* Imported CSV files now capture related product information as expected. Previously, related product information was not consistently uploaded the first time the CSV file was imported. + + + +* Removed unused construct parameters in `AdvancedPricing.php`. [GitHub-29531](https://github.com/magento/magento2/issues/29531) + +### Index + + + +* `Magento_CacheInvalidate` now handles large tag patterns correctly when doing a `PURGE`. `sendPurgeRequest` has been refactored to handle an array of tags instead of requiring the caller to use `implode()`. _Fix submitted by Matthew O'Loughlin in pull request [26256](https://github.com/magento/magento2/pull/26256)_. [GitHub-26255](https://github.com/magento/magento2/issues/26255) + + + +* Shared indexers now show a status of **valid** after you run `bin/magento indexer:status` after re-indexing. Previously, shared indexers had an **invalid** status after a full re-index. + +### Infrastructure + + + +* Problems loading catalog and product pages on deployments running PHP 7.4.9 no longer occur. Previously, Magento threw this error when you tried to load the catalog and product pages: `There has been an error processing your request. Exception printing is disabled by default for security reasons`. [GitHub-29502](https://github.com/magento/magento2/issues/29502) + + + +* All exceptions that occur when layouts are rendered in production mode are now logged in the exception log file (`var/report`). Previously, Magento logged these messages in the system log as critical issues. + + + +* Regular expressions now work properly for large pages as the result of an increase in `ipcre.backtrack_limi`t and `pcre.recursion_limit` to approximately 1000000. _Fix submitted by Mateusz Krzeszowiak in pull request [27270](https://github.com/magento/magento2/pull/27270)_. [GitHub-26026](https://github.com/magento/magento2/issues/26026) + + + +* Interceptor generation has been improved. `} else {` statements have been removed from interceptors, and `array_map` has replaced `foreach`. _Fix submitted by Lukasz Bajsarowicz in pull request [27902](https://github.com/magento/magento2/pull/27902)_. [GitHub-28383](https://github.com/magento/magento2/issues/28383) + + + +* Array creation is now consistent throughout the class (`app/code/Magento/Sales/Model/Order/Pdf/Items/Invoice/DefaultInvoice.php`). _Fix submitted by Nathan de Graaf in pull request [28515](https://github.com/magento/magento2/pull/28515)_. [GitHub-28795](https://github.com/magento/magento2/issues/28795) + + + +* Plugins have been migrated out of the Magento Framework to follow the Magento best practice of prohibiting plugins in the Framework namespace. _Fix submitted by Lukasz Bajsarowicz in pull request [27965](https://github.com/magento/magento2/pull/27965)_. [GitHub-27962](https://github.com/magento/magento2/issues/27962) + + + +* Magento no longer throws an `Undefined class constant` error when an interceptor is generated. _Fix submitted by Vova Yatsyuk in pull request [28797](https://github.com/magento/magento2/pull/28797)_. [GitHub-28981](https://github.com/magento/magento2/issues/28981) + + + +* Form data now persists when Magento throws an integration exception when you save a integration using a name that is already in use. _Fix submitted by Aditya Yadav in pull request [26660](https://github.com/magento/magento2/pull/26660)_. [GitHub-28143](https://github.com/magento/magento2/issues/28143) + + + +* Magento no longer truncates `X-Forwarded-For` headers to 32 characters. _Fix submitted by Ihor Sviziev in pull request [27221](https://github.com/magento/magento2/pull/27221)_. [GitHub-28693](https://github.com/magento/magento2/issues/28693) + + + +* The logic that checks if a redirect is internal now works correctly in the Admin when using a custom Admin domain. Previously, problems with this logic resulted in many Admin redirects to the homepage of the default store. _Fix submitted by Vadim Malesh in pull request [29066](https://github.com/magento/magento2/pull/29066)_. [GitHub-28943](https://github.com/magento/magento2/issues/28943) + + + +* Problems with the `styles-old.less` file have been eliminated, and linting no longer identifies errors. _Fix submitted by Tu Nguyen in pull request [28895](https://github.com/magento/magento2/pull/28895)_. [GitHub-24004](https://github.com/magento/magento2/issues/24004) + + + +* `NonComposerComponentRegistration.php` has been refactored. _Fix submitted by Vitaliy Ryaboy in pull request [28975](https://github.com/magento/magento2/pull/28975)_. [GitHub-29308](https://github.com/magento/magento2/issues/29308) + + + +* `ResourceConnection.php` has been refactored to improve class readability. _Fix submitted by Lukasz Bajsarowicz in pull request [29341](https://github.com/magento/magento2/pull/29341)_. [GitHub-29389](https://github.com/magento/magento2/issues/29389) + + + +* The README file for the build-in web server has been updated to include all Elasticsearch parameters. _Fix submitted by Yevhenii Dumskyi in pull request [29300](https://github.com/magento/magento2/pull/29300)_. [GitHub-29299](https://github.com/magento/magento2/issues/29299) + + + +* The `Magento\CmsUrlRewrite\Plugin\Cms\Model\Store\View::aftersSave` plugin now returns a value as expected. Previously, this plugin did not return a value, and as a result, saving a store view resulted in an error. _Fix submitted by Pieter Hoste in pull request [29035](https://github.com/magento/magento2/pull/29035)_. [GitHub-29034](https://github.com/magento/magento2/issues/29034) + + + +* Added the following support for magic methods for `DataObject`: + + * new extension to support `get/set/has/uns` magic methods (with usage of `__call`) + * support for SessionManager, which forwards all calls to the DataObject container + * test coverage for extensions + * updated tests for Filtered Error check + * increased PHPStan check level from 0 to 1. _Fix submitted by Oleksandr Kravchuk in pull request [27905](https://github.com/magento/magento2/pull/27905)_. [GitHub-28303](https://github.com/magento/magento2/issues/28303) + + + +* `ScopeConfigInterface` can now be more than a string. The restriction of `magentoConfigFixture` to string only was the inadvertent result of a previous pull request and has been reverted. _Fix submitted by Kristof, Fooman in pull request [29305](https://github.com/magento/magento2/pull/29305)_. [GitHub-29345](https://github.com/magento/magento2/issues/29345) + + + +* The `convertConfigTimeToUtc` method no longer throws a fatal error due to sending incorrect parameters to the `Phrase` constructor. _Fix submitted by Kos Rafał in pull request [29483](https://github.com/magento/magento2/pull/29483)_. [GitHub-29525](https://github.com/magento/magento2/issues/29525) + + + +* Price filters now work as expected on grid data when `Magento\Backend\Block\Widget\Grid\Column\Filter\Price::getCondition` and `Magento\Backend\Block\Widget\Grid\Column\Filter\Price::getValue()` return an array with indexes that contain `from` or `to` string data. Previously, Magento threw this error: `Notice: A non well formed numeric value encountered in vendor/magento/module-backend/Block/Widget/Grid/Column/Filter/Price.php on line 197`. _Fix submitted by Nikita Sarychev in pull request [29214](https://github.com/magento/magento2/pull/29214)_. [GitHub-29213](https://github.com/magento/magento2/issues/29213) + + + +* Added an extension point to support adding HTML to the category page. This corrects a bug that was introduced by a previous pull request. _Fix submitted by iGerchak in pull request [29291](https://github.com/magento/magento2/pull/29291)_. [GitHub-29286](https://github.com/magento/magento2/issues/29286) + +### Inventory + + + +* Unnecessary code comments have been removed from `app/code/Magento/CatalogInventory/Model/StockState.php`. _Fix submitted by Vitaliy Prokopov in pull request [27758](https://github.com/magento/magento2/pull/27758)_. [GitHub-26702](https://github.com/magento/magento2/issues/26702) + +### Layered navigation + + + +* The layered navigation sidebar now shows Boolean attributes with both options (**yes**/**no**) and matching product counts. Previously, layered navigation did not return a **no** option for Boolean attributes in deployments using Elasticsearch. + + + +* The swatch layered navigation filter is now consistent with standard filters used throughout Magento. _Fix submitted by Bartłomiej Szubert in pull request [28015](https://github.com/magento/magento2/pull/28015)_. [GitHub-28011](https://github.com/magento/magento2/issues/28011) + +### Logging + + + +* All broken reference errors are now logged when deployments are in developer mode only. Previously, one error was logged for deployments in production mode, too, which bloated error logs. _Fix submitted by Bartłomiej Szubert in pull request [28735](https://github.com/magento/magento2/pull/28735)_. [GitHub-26504](https://github.com/magento/magento2/issues/26504) + +### Media Gallery + + + +* The Media Gallery configuration UI (Admin **Stores** > **Configuration** > **Advanced** > **System**) has been reorganized. _Fix submitted by Shankar Konar in pull request [29433](https://github.com/magento/magento2/pull/29433)_. [GitHub-28011](https://github.com/magento/adobe-stock-integration/issues/1738) + + + +* Added tests to cover the **Used In** links for an image in the Media gallery. _Fix submitted by Nazar Klovanych in pull request [29392](https://github.com/magento/magento2/pull/29392)_. [GitHub-1963](https://github.com/magento/adobe-stock-integration/issues/1693) + + + +* Magento no longer throws an exception when a merchant tries to save a product with its associated image when the Media Gallery is disabled. _Fix submitted by Nazar Klovanych in pull request [29492](https://github.com/magento/magento2/pull/29492)_. [GitHub-1750](https://github.com/magento/adobe-stock-integration/issues/1750) + +### MFTF + + + +* The `AdminSubmitAdvancedInventoryFormActionGroup`, `AdminClickOnAdvancedInventoryLinkActionGroup`, and  `AdminSetStockStatusConfigActionGroup` action groups are now used within tests according to best practice. _Fix submitted by Oleh USIA in pull request [29386](https://github.com/magento/magento2/pull/29386)_. [GitHub-29420](https://github.com/magento/magento2/issues/29420) + + + +* `SearchProductGridByKeywordActionGroup` is now used for search in the product grid. _Fix submitted by Oleh Usik in pull request [29385](https://github.com/magento/magento2/pull/29385)_. [GitHub-29434](https://github.com/magento/magento2/issues/29434) + + + +* `AdminCategoriesClickDoneButtonOnPopupActionGroup` is now used to click **Done** on the Search Categories popup. _Fix submitted by Oleh Usik in pull request [28989](https://github.com/magento/magento2/pull/28989)_. [GitHub-29380](https://github.com/magento/magento2/issues/29380) + + + +* `LoginToStorefrontActionGroup` is now used to replace a sequence of actions that is used for store front customer login. _Fix submitted by Sathish Subramanian in pull request [28113](https://github.com/magento/magento2/pull/28113)_. [GitHub-28165](https://github.com/magento/magento2/issues/28165) + + + +* `AdminUpdateCustomURLRewritesPermanentTest` has been refactored to meet MFTF best practices. _Fix submitted by Kate Kyzyma in pull request [28361](https://github.com/magento/magento2/pull/28361)_. [GitHub-28393](https://github.com/magento/magento2/issues/28393) + + + +* Test names have been changed to meet MFTF conventions. _Fix submitted by Evgeny Levinsky in pull request [27839](https://github.com/magento/magento2/pull/27839)_. [GitHub-28305](https://github.com/magento/magento2/issues/28305) + +#### New action groups + + + +* `StorefrontCheckoutClickNextButtonActionGroup` _Fix submitted by Oleh Usik in pull request [29472](https://github.com/magento/magento2/pull/29472)_. [GitHub-29539](https://github.com/magento/magento2/issues/29539) + + + +* `AdminProductFormSaveActionGroup` _Fix submitted by Oleh Usik in pull request [29142](https://github.com/magento/magento2/pull/29142)_. [GitHub-29292](https://github.com/magento/magento2/issues/29292) + + + +* `AdminSaveCategoryActionGroup` _Fix submitted by Oleh Usik in pull request [28993](https://github.com/magento/magento2/pull/28993)_. [GitHub-29388](https://github.com/magento/magento2/issues/29388) + + + +* `AdminProductGridSectionClickFirstRowActionGroup` _Fix submitted by Oleh Usik in pull request [29000](https://github.com/magento/magento2/pull/29000)_. [GitHub-29295](https://github.com/magento/magento2/issues/29295) + + + +* `AdminProductFormCategoryExistInCategoryListActionGroup` and `AdminProductFormCategoryNotExistInCategoryListActionGroup` _Fix submitted by Alexander Steshuk in pull request [28287](https://github.com/magento/magento2/pull/28287)_. [GitHub-28392](https://github.com/magento/magento2/issues/28392) + + + +* `AdminExpandCategoryTreeActionGroup` _Fix submitted by Oleh Usik in pull request [29133](https://github.com/magento/magento2/pull/29133)_. [GitHub-29289](https://github.com/magento/magento2/issues/29289) + + + +* `AdminTaxRateGridOpenPageActionGroup` _Fix submitted by Oleh Usik in pull request [29007](https://github.com/magento/magento2/pull/29007)_. [GitHub-29281](https://github.com/magento/magento2/issues/29281) + + + +* `AdminNavigateNewCustomerActionGroup` _Fix submitted by Oleh Usik in pull request [29134](https://github.com/magento/magento2/pull/29134)_. [GitHub-29287](https://github.com/magento/magento2/issues/29287) + +#### New tests + + + +* Added test for deleting a CMS page as an Admin user. _Fix submitted by Dmitry Tsymbal in pull request [28112](https://github.com/magento/magento2/pull/28112)_. [GitHub-28202](https://github.com/magento/magento2/issues/28202) + +* Added the `StorefrontShareCustomerWishlistActionGroup` test for customer wishlist sharing with invalid email addresses. The existing test for wish list sharing (`StorefrontShareWishlistEntityTest`) has been refactored. `StorefrontCustomerShareWishlistActionGroup` has been deprecated. + + + +* Added a test to check for the implementation of the **Only X left Threshold** configuration setting. _Fix submitted by Oleh Usik in pull request [27549](https://github.com/magento/magento2/pull/27549)_. [GitHub-28755](https://github.com/magento/magento2/issues/28755) + +### Newsletter + + + +* Exporting the Newsletter Subscribers list using the `Excel XML` option now results in the export of all rows as expected. Previously, exported data included only the page pagination value, not all rows. + + + +* Newsletter subscription emails now use the same HTML tags as other newsletter-related emails. _Fix submitted by Paweł Tylek in pull request [27357](https://github.com/magento/magento2/pull/27357)_. [GitHub-28166](https://github.com/magento/magento2/issues/28166) + + + +* Adds a test for deleting newsletter subscriber as an Admin user. _Fix submitted by Dmitry Tsymbal in pull request [28972](https://github.com/magento/magento2/pull/28972)_. [GitHub-29032](https://github.com/magento/magento2/issues/29032) + + + +* Added tests for newsletter subscription for guests with a disallowed option in config statements. This test replaces deprecated `VerifyRegistredLinkDisplayedForGuestSubscriptionNoTest` and `StorefrontCreateNewSubscriberActionGroup`. _Fix submitted by Dmitry Tsymbal in pull request [28872](https://github.com/magento/magento2/pull/28872)_. [GitHub-29039](https://github.com/magento/magento2/issues/29039) + +### Orders + + + +* The `GetAssetIdByContentFieldInterface` and its implementation on `MediaContent` modules now permits Adobe Stock Integration to extend `MediaGallery` filter functionality. _Fix submitted by Gabriel da Gama in pull request [29058](https://github.com/magento/magento2/pull/29058)_. [GitHub-1464](https://github.com/magento/magento2/issues/1464) + + + +* The `CustomerAddressI` values for a newly created customer is now validated in quotes. _Fix submitted by Andrii Kalinich in pull request [29139](https://github.com/magento/magento2/pull/29139)_. [GitHub-28793](https://github.com/magento/magento2/issues/28793) + + + +* The order status for a credit memo with zero total is now `Closed`. Previously, Magento reported its order status as `Complete`. _Fix submitted by Andrii Kalinich in pull request [29023](https://github.com/magento/magento2/pull/29023)_. [GitHub-22762](https://github.com/magento/magento2/issues/22762) + +### Page Builder + + + +* The `description` and `short_description` product attributes have been re-ordered to better accommodate planned changes to Page Builder content staging. _Fix submitted by Matt Walters in pull request [29238](https://github.com/magento/magento2/pull/29238)_. [GitHub-543](https://github.com/magento/magento2-page-builder/issues/543) + +### Payment methods + + + +* Magento now displays a message that prompts you to enter mandatory credit card data when you click **Submit** for an Admin order without entering valid payment information. Previously, the Braintree card validator did not throw an error when payment input fields were invalid and the page became inactive. + + + +* You can now change the shipping method for an order you create from the Admin for a customer whose account has a stored credit card (Braintree). Previously, when you selected a different shipping method, the stored card was not selected, and Magento did not place the order. + +#### PayPal + + + +* The Order Review page of the checkout workflow now displays the correct shipping amount for PayPal through Braintree orders for which the shipping method has been changed during checkout. Previously, when a customer changed the shipping method on the PayPal Order Review page of the checkout workflow, Magento did not update the order total with the correct method. + + + +* Merchants can now successfully cancel orders that were authorized using PayPal. Previously, Magento did not cancel the order and displayed this error: `Declined: 10601-Authorization has expired`. + + + +* Magento no longer empties your cart when you cancel an order by closing the PayPal payment popup window after first completing another order. + +### Performance + +* Three new configuration settings support a decrease in consumer queue CPU consumption. These optional parameters provide increased control over consumers and save server resources. See [Configure message queues]({{page.baseurl}}/extension-dev-guide/message-queues/config-mq.html) for a description of the `maxIdleTime`, `sleep`, and `onlySpawnWhenMessageAvailable` parameters. + + + +* Plugin list configuration is now generated during the execution of the `di:compile` command. This configuration information is written to generated metadata folders based on scope. Previously, this information was stored in cache. Resulting performance improvements include: + + * Network cache size has decreased + * Execution time for many scenarios has been improved. + + + +* Magento now loads the appropriate slider widget on demand, which has improved page loading. The touch slider widget customization has been moved to a separate file so it can be loaded only on compatible devices. The appropriate slider widget type is now loaded only when range binding is actually used on the page. _Fix submitted by Mateusz Krzeszowiak in pull request [27616](https://github.com/magento/magento2/pull/27616)_. [GitHub-28807](https://github.com/magento/magento2/issues/28807) + + + +* The performance of checkout with multiple simultaneous orders has been improved. + + + +* Deadlocks no longer occur when the import process executes a bulk insert and the re-index process simultaneously executes a large insert from select. Previously, Magento displayed this error: `PDOException: SQLSTATE[40001]: Serialization failure: 1213 Deadlock found when trying to get lock`. [GitHub-8933](https://github.com/magento/magento2/issues/8933) + +### Return Merchandise Authorizations (RMA) + + + +* The Returns page now works as expected after you create a shipping label for a Return Merchandise Authorization (RMA). Previously, merchants could not interact with any page elements on the Returns page after creating a shipping label for an RMA. This was a known issue for 2.4.0, and MC-35984-2.4.0-CE-composer.patch addressed this issue for Magento 2.4.0. + + + +* Magento now displays either an informative error message or all available products when an administrator with restricted permissions tries to create a return for products that are no longer in the assigned website scope. Previously, Magento displayed a blank page. + +### Reviews + + + +* A unique key for `entity_pk_value-entity_type-store_id` has been added to the `review_entity_summary` table, which prevents the creation of duplicate rows for the same product ID (`entity_pk_value`). Previously, this lack of unique key resulted in duplicate rows for the same product ID and SQL errors. + +### Sales + + + +* Magento no longer assigns a status of `Complete` after invoicing to an order that requires zero payment. + + + +* The New Shipment email generated by the REST API now contains the same shipping and customer information as shipments that are created manually from the Admin. Previously, this email did not contain the customer name, tracking information, products ordered, and other order information. + + + +* Guest user names are now visible as expected in invoice- and shipment-related emails when the emails are loaded or customized from the Admin. + + + +* The PDF invoice is now translated into the language of the store view where the order has been placed. Previously, the PDF invoice was translated in the language of the Admin. + + + +* You can now issue a refund as expected from the credit memo page. [GitHub-29014](https://github.com/magento/magento2/issues/29014) + + + +* Localised region names that are displayed on the storefront Order page are now correctly translated. Previously, the region name was not based on the specified locale unless it was edited in the Admin. + + + +* Shipments created through the POST `/rest/V1/shipment` endpoint now update orders properly. Previously, Magento created a shipment, but shipment status remained in the processing state. + + + +* Credit memos now display the payment method that is derived from the scope of the store in which the order was made. Previously, credit memos displayed the name as defined the default store scope. _Fix submitted by Ledian Hymetllari in pull request [27582](https://github.com/magento/magento2/pull/27582)_. [GitHub-27570](https://github.com/magento/magento2/issues/27570) + +### Search + + + +* You can now search for products by attribute from the Admin Customer view using QuickSearch. Previously, an exception occurred on the catalog search result page. + + + +* Magento now displays configurable products on the category page as expected after you add a product attribute. + + + +* Elasticsearch results now include the correct values for each store view’s attribute options. If a Dropdown or Multiple Select attribute has a different option value in the non-default store view than in the default store view, Elasticsearch now indexes that value or returns the product with that value in the results. Previously, Elasticsearch did not index that value or return the product with that value in the results. + + + +* Searching by SKU now works as expected in advanced search with Elasticsearch. Previously, when you tried to search by SKU, Magento displayed this error message: `We can't find any items matching these search criteria. Modify your search`. + + + +* Advanced search no longer lets shoppers filter on negative prices. _Fix submitted by Rohan Hapani in pull request [27359](https://github.com/magento/magento2/pull/27359)_. [GitHub-27358](https://github.com/magento/magento2/issues/27358) + + + +* Scope values are now reset as expected on the New Synonym Group form. _Fix submitted by Sathish Subramanian in pull request [29206](https://github.com/magento/magento2/pull/29206)_. [GitHub-28947](https://github.com/magento/magento2/issues/28947) + +### Shipping + + + +* Magento now calculates shipping table rates correctly after upgrade. Previously, shipping table rates were calculated based on net price, which excluded VAT. + + + +* Customers can now successfully remove reward points on the order review page of the checkout workflow when checking out with multiple addresses. Previously, Magento threw a `404 Not Found` error when a customer clicked the **Remove** button to remove points for any address. This was a known issue in Magento 2.4.0. + + + +* Magento now displays shipping rates in the correct currency in the checkout workflow for orders specifying FedEx as the shipping method. + + + +* Multi-page PDFs of shipping labels for orders shipped by UPS now display the correct count. + + + +* Problems with the JavaScript components of the Create Packages page have been resolved. Previously, Magento did not display the **Create Shipping Label** checkbox on this page, and you could not create a shipping label for an existing order. + +### Sitemap + + + +* The sitemap in `robots.txt` is now store-specific. _Fix submitted by Vadim Malesh in pull request [29331](https://github.com/magento/magento2/pull/29331)_. [GitHub-28901](https://github.com/magento/magento2/issues/28901) + + + +* Encoded values are now correctly escaped in the `sitemap.xml` file. Previously, when you included encoded characters in a product name or image title, the generated sitemap was invalid. + +### Staging + + + +* The **Set Product as New** attribute label now appears as expected on a product’s detail and scheduled update pages. + + + +* You can now successfully preview the staging schedule for a CMS block. Previously, Magento threw a fatal error. + + + +* You can now access the CMS Preview page when editing a CMS page with a scheduled update and re-assigning it from the default store to another store. Previously, Magento threw a 404 error when you clicked on the preview link. + + + +* You can now use POST `/V1/products/special-price` to update a product’s special price without specifying `price_from` and `price_to` parameter values. Previously, the Special Price API only worked with schedule updates, and if these parameters were empty, Magento returned this error: `The Start Time for Future Update needs to be selected. Select and try again`. + +### Store + + + +* Deleting a previously created store view no longer results in an error in deployments with a split database configuration. Previously, Magento threw an exception. + + + +* You can now export `config.php` and default website code from one website to install and configure Magento on a second website in a multi website deployment. Previously, the default store and view disappeared after the export, and errors occurred on the storefront. + +### Swagger + + + +* You can now generate a customer token with Swagger. Previously, Swagger did not generate a response code when valid customer access information was entered, and Magento displayed this error: `The account sign-in was incorrect or your account is disabled temporarily. Please wait and try again later`. _Fix submitted by Vadim Malesh in pull request [28822](https://github.com/magento/magento2/pull/28822)_. [GitHub-27098](https://github.com/magento/magento2/issues/27098) + +### Swatches + + + +* Configurable products with swatches now show tier pricing when a shopper clicks **Edit** in the cart. Previously, Magento did not display tier prices in the cart before checkout. _Fix submitted by Sathish Subramanian in pull request [29137](https://github.com/magento/magento2/pull/29137)_. [GitHub-28270](https://github.com/magento/magento2/issues/28270) + + + +* Magento now displays tier prices as expected for configurable product variations. + +### TargetRule + + + +* The performance of the product page under the following conditions has improved: + + * The target rule module is installed + * Linked product functionality (related, up-sell and cross-sell products) is implemented + +### Tax + + + +* Magento no longer displays a fixed product tax attribute on the storefront for a product after a merchant has unassigned it from the product’s attribute set. + +### Test + + + +* PHPUnit 9 errors have been fixed in unit tests. _Fix submitted by Anton Evers in pull request [29244](https://github.com/magento/magento2/pull/29244)_. [GitHub-29329](https://github.com/magento/magento2/issues/29329) + + + +* Added unit tests for approving a purchase order that was made with a discount that has since expired will place an order at full amount and not update the purchase order total. _Fix submitted by Joan He in pull request [18](https://github.com/magento/partners-magento2-infrastructure/pull/18)_. [GitHub-204](https://github.com/magento/partners-magento2b2b/issues/204) + + + +* `SynchronizeFilesInterface` is now covered by integration tests. _Fix submitted by jmonteros422 in pull request [29493](https://github.com/magento/magento2/pull/29493)_. [GitHub-1742](https://github.com/magento/magento2/issues/1742) + + + +* A function has been added to `\Magento\TestFramework\TestCase\WebapiAbstract` that enables the comparison of large nested arrays of expected and actual outcomes in tests and permits testers to ignore irrelevant keys in the actual outcome. _Fix submitted by Jekabs in pull request [29458](https://github.com/magento/magento2/pull/29458)_. [GitHub-29498](https://github.com/magento/magento2/issues/29498) + + + +* Corrected the inversion of expected value with actual value in `app/code/Magento/Newsletter/Test/Unit/Model/SubscriptionManagerTest.php`. _Fix submitted by Lukasz Bajsarowicz in pull request [29271](https://github.com/magento/magento2/pull/29271)_. [GitHub-29283](https://github.com/magento/magento2/issues/29283) + + + +* Using `ObjectManager` for instantiating classes during test has been replaced with the new keyword in unit tests. _Fix submitted by Lukasz Bajsarowicz in pull request [29272](https://github.com/magento/magento2/pull/29272)_. [GitHub-29346](https://github.com/magento/magento2/issues/29346) + + + +* Test coverage has been added for these cases of the `updateCustomer` mutation: invalid date of birth, invalid email address, and empty customer last name. _Fix submitted by Alexander Taranovsky in pull request [28304](https://github.com/magento/magento2/pull/28304)_. [GitHub-28394](https://github.com/magento/magento2/issues/28394) + + + +* The `ApiFunctional TestFramework` GraphQL client now parses headers correctly. [GitHub-26425](https://github.com/magento/magento2/issues/26425) + +### Theme + + + +* Themes that are added in User Agent Rules are now affected as expected when you run `bin/magento catalog:images:resize`. Previously, only themes that were assigned to stores were affected when `bin/magento catalog:images:resize` was run. + +### Translation and locales + + + +* Magento no longer throws an error when an administrator changes the **Date** field during Admin product creation or save when the Admin locale is Chinese or Japanese. [GitHub-24696](https://github.com/magento/magento2/issues/24696) + + + +* Magento now checks area (frontend or `adminhtml`) before rendering inline translation markup. Previously, making an API call to `/rest/V1/integration/admin/token` with bad credentials while inline translation was enabled results in the inclusion of inline translation markup around the error message in the API response. _Fix submitted by Zach Nanninga in pull request [28856](https://github.com/magento/magento2/pull/28856)_. [GitHub-28656](https://github.com/magento/magento2/issues/28656) + + + +* Bulgarian regions have been added to the `directory_country_region` table. _Fix submitted by Nikola Lardev in pull request [27957](https://github.com/magento/magento2/pull/27957)_. [GitHub-28215](https://github.com/magento/magento2/issues/28215) + + + +* The titles and buttons on the Admin **Customers** > **Add New Address** and **Edit Product** > **Advanced Inventory** modals can now be translated. _Fix submitted by Sathish Subramanian in pull request [28174](https://github.com/magento/magento2/pull/28174)_. [GitHub-28201](https://github.com/magento/magento2/issues/28201) + + + +* The term FPT can now be translated on Admin **Stores** > **Configuration** > **Sales** > **Tax** > **Fixed Product Taxes**. _Fix submitted by Vadim Malesh in pull request [28108](https://github.com/magento/magento2/pull/28108)_. [GitHub-5477](https://github.com/magento/magento2/issues/5477) + + + +* The **Ship here** button label on the checkout workflow shipping address modal has been changed to match the camel case used for other buttons. This case now matches the case that is used in the translation files. Previously, because of the mismatch in case, this label was not translated. _Fix submitted by WK in pull request [28547](https://github.com/magento/magento2/pull/28547)_. [GitHub-28685](https://github.com/magento/magento2/issues/28685) + +### UI + + + +* The privacy and cookie policy link in the page footer is now displayed as an active link when the Privacy and Cookie Policy page is displayed. _Fix submitted by Sathish Subramanian in pull request [28004](https://github.com/magento/magento2/pull/28004)_. [GitHub-27985](https://github.com/magento/magento2/issues/27985) + + + +* Fixed misalignment of the cursor in the Invoice Comments text area of the invoice associated with an order you have selected from Admin **Sales** > **Orders**. + + + +* The Create New Order page now displays **Add Products By SKU** and **Add Products** buttons as expected. + + + +* Magento now displays the Edit Review page properly when a Product Rating is available for the selected product. + + + +* Magento now correctly displays the Admin customer edit page on an iPhone running Safari. + + + +* Corrected unnecessary scrolling on the Create New Order page. + + + +* Directly clicking on the **Export Tax Rates** button of the Add New Tax Rule page (**Stores** > **Tax Rules**) now downloads the `tax_rates.csv` file as expected. Previously, merchants had to click on the edge of the **Export Tax Rates** button. This was a known issue in Magento 2.4.0. + + + +* The **Add selections to my cart** button on the bottom of the shopping cart now works as expected. This was a known issue in Magento 2.4.0. + + + +* The **Refresh** button of the **Recently Viewed Products** section of the Customer's Activities page now works as expected. Previously, when you clicked **Refresh**, the product list was not refreshed, and the page scrolled. + + + +* Magento now correctly displays the calendar icon used for selecting a customer’s date of birth on the Conditions tab of **Customers** > **Segments** > **Add Segment**. + + + +* The checkout summary section of the checkout workflow no longer flickers when a shopper scrolls through this page on Internet Explorer 11.x. + + + +* Magento now correctly displays the Order by SKU widget on the storefront Category page. Previously, the HTML code for this widget was not rendered, and Magento did not display the **Load a list of SKUs** link. + + + +* UI components that have been disabled using `this.disabled(true)` no longer appear on the storefront. [GitHub-29098](https://github.com/magento/magento2/issues/29098) + + + +* Magento now displays the recently viewed products widget properly in mobile view. _Fix submitted by Tu Nguyen in pull request [27572](https://github.com/magento/magento2/pull/27572)_. [GitHub-27058](https://github.com/magento/magento2/issues/27058) + + + +* Changing the position of a product from the Admin is now reflected in the product position on the storefront. _Fix submitted by Oleg Aleksin in pull request [28150](https://github.com/magento/magento2/pull/28150)_. [GitHub-28149](https://github.com/magento/magento2/issues/28149) + + + +* The login form style are now consistent with the style on other forms in the Blank theme. Unnecessary styles that set the width for container control wrap input fields have been removed. _Fix submitted by Tu Nguyen in pull request [28084](https://github.com/magento/magento2/pull/28084)_. [GitHub-28059](https://github.com/magento/magento2/issues/28059) + + + +* The **OK** button on the mini cart delete product confirmation pop-up now behaves as expected. _Fix submitted by Tu Nguyen in pull request [28083](https://github.com/magento/magento2/pull/28083)_. [GitHub-27095](https://github.com/magento/magento2/issues/27095) + + + +* Product gallery elements no longer blink during page load. _Fix submitted by Mateusz Krzeszowiak in pull request [27871](https://github.com/magento/magento2/pull/27871)_. [GitHub-28339](https://github.com/magento/magento2/issues/28339) + + + +* The CSS class that controls field width is now applied as expected for the Start Time element throughout the Admin. _Fix submitted by Shankar Konar in pull request [29511](https://github.com/magento/magento2/pull/29511)_. [GitHub-29496](https://github.com/magento/magento2/issues/29496) + + + +* The Terms and Conditions text label can now display longer text strings properly. _Fix submitted by Bartłomiej Szubert in pull request [29413](https://github.com/magento/magento2/pull/29413)_. [GitHub-24060](https://github.com/magento/magento2/issues/24060) + + + +* The title of the order failure page has been rewritten for accuracy. Previously, when a shopper canceled an order, Magento displayed a page with this title: `We received your order!`. _Fix submitted by Angelo Romano in pull request [29410](https://github.com/magento/magento2/pull/29410)_. [GitHub-29416](https://github.com/magento/magento2/issues/29416) + + + +* The total number of canceled items on the canceled order view page is now correctly identified on the canceled order view page. Previously, this field was labeled **Total Due**. _Fix submitted by Madhu Rajawat in pull request [27516](https://github.com/magento/magento2/pull/27516)_. [GitHub-26191](https://github.com/magento/magento2/issues/26191) + + + +* The toggle button on the create configurable product page now works as expected. _Fix submitted by Tu Nguyen in pull request [28032](https://github.com/magento/magento2/pull/28032)_. [GitHub-22702](https://github.com/magento/magento2/issues/22702) + + + +* The advanced attribute properties block icon on the Advanced Attribute Properties page now behaves as expected. _Fix submitted by Tu Nguyen in pull request [28032](https://github.com/magento/magento2/pull/28032)_. [GitHub-26022](https://github.com/magento/magento2/issues/26022) + + + +* The Admin section of the system configuration page now expands to display required fields as expected when you try to save configuration settings for a new module. _Fix submitted by Bartłomiej Szubert in pull request [28285](https://github.com/magento/magento2/pull/28285)_. [GitHub-26427](https://github.com/magento/magento2/issues/26427) + + + +* Corrected behavior of the magnifier when mode is set to `inside`. _Fix submitted by Sean van Zuidam in pull request [29077](https://github.com/magento/magento2/pull/29077)_. [GitHub-29076](https://github.com/magento/magento2/issues/29076) + + + +* Corrected the distractingly long input field width that resulted when a shopper entered an invalid email address in the subscribe field of the page footer. _Fix submitted by Dipesh Rangani in pull request [27106](https://github.com/magento/magento2/pull/27106)_. [GitHub-27099](https://github.com/magento/magento2/issues/27099) + + + +* An `Uncaught ReferenceError` error no longer appears in the dev console when you add a new tag and move the mouse cursor over it. _Fix submitted by Nazar Klovanych in pull request [29392](https://github.com/magento/magento2/pull/29392)_. [GitHub-1700](https://github.com/magento/magento2/issues/1700) + + + +* Removed an unused `AdminAnalytics` test (`TrackingScriptTest`). _Fix submitted by Lukasz Bajsarowicz in pull request [28605](https://github.com/magento/magento2/pull/28605)_. [GitHub-28850](https://github.com/magento/magento2/issues/28850) + + + +* Issues with the serialization and unserialization of static properties when running consecutive tests have been resolved. _Fix submitted by Pavel Bystritsky in pull request [26175](https://github.com/magento/magento2/pull/26175)_. [GitHub-28319](https://github.com/magento/magento2/issues/28319), [GitHub-29313](https://github.com/magento/magento2/issues/29313) + +### URL rewrites + + + +* Moving a store view to a different website no longer resets URLs. Previously, Magento incorrectly regenerated CMS and product URL rewrites. + +* You can now successfully preview the staging schedule for a CMS block. Previously, Magento threw a fatal error. + + + +* Magento now preserves existing catalog URL rewrites as expected when a store view is assigned to a different store. Previously, Magento deleted the store-specific URL rewrites. + +### Varnish + + + +* Restarting Varnish no longer results in 503 errors. _Fix submitted by Ihor Sviziev in pull request [28137](https://github.com/magento/magento2/pull/28137)_. [GitHub-24353](https://github.com/magento/magento2/issues/24353) + +### Vault + + + +* Magento no longer saves credit card numbers when the **Save for later use** checkbox on the payment section of the checkout workflow is not selected. + +### Visual Merchandiser + + + +* Magento now displays source stock instead of the default product stock when you sort products in Visual Merchandiser and Inventory is enabled. + +### Web API framework + + + +* Invoices created using REST now include gift card information similar to the invoices that are created in the Admin. Previously, using POST `/V1/order/:id/invoice` to invoice the order did not display the gift card code or gift card amount applied. + + + +* Merchants with multiple websites can now use the REST API to create and update products while preserving image and image-role inheritance. Previously, when a merchant used the REST API to create and update products, and a product was updated for store view, and the default image roles were loaded and saved for that store view. As a result, the store-view image roles stopped inheriting from the default scope after update. + + + +* An unscoped integration user account can now access a resource through the REST API when resource permissions allow access. + + + +* Search criteria filters now work as expected for product attributes that are used during the creation of a configurable product. [GitHub-29126](https://github.com/magento/magento2/issues/29126) + + + +* Customer group ID is now validated for POST `/rest/V1/customers` requests. Previously, Magento did not display an error message when you used an invalid `group_id` in these requests. _Fix submitted by Vadim Malesh in pull request [28903](https://github.com/magento/magento2/pull/28903)_. [GitHub-28064](https://github.com/magento/magento2/issues/28064) + + + +* PHP sessions are not created by default for anonymous REST calls. Previously, sessions were started even when unnecessary. _Fix submitted by Maciej Pawłowski in pull request [26032](https://github.com/magento/magento2/pull/26032)_. [GitHub-7213](https://github.com/magento/magento2/issues/7213) + + + +* Using various REST endpoints to update orders that contain custom option no longer deletes the custom option information. Previously, values in `info_buyRequest` were deleted. _Fix submitted by Vadim Malesh in pull request [28483](https://github.com/magento/magento2/pull/28483)_. [GitHub-22431](https://github.com/magento/magento2/issues/22431) + + + +* Using GET `V1/customers/me` now honors **Share Customer Accounts** setting (Admin **Stores** > **Configuration** > **Customers** > **Customer Configuration** > **Account Sharing Options**) when retrieving user information. _Fix submitted by Pavel Bystritsky in pull request [28213](https://github.com/magento/magento2/pull/28213)_. [GitHub-26089](https://github.com/magento/magento2/issues/26089) + + + +* Address-related extension attributes can be set as data arrays. Previously, Magento threw an error when a POST request that contained  `extension_attributes` was sent to `estimate-shipping-methods`. This bug, which was introduced by a previous commit, affected any extension attribute set on `Magento\Quote\Api\Data\AddressInterface` that were not objects. _Fix submitted by Alexander Menk in pull request [27338](https://github.com/magento/magento2/pull/27338)_. [GitHub-26682](https://github.com/magento/magento2/issues/26682) + + + +* You can now specify a single field when updating a customer with the PUT `V1/customers/:id` endpoint. Previously, the endpoint required you to specify the customer email and other fields that are required to create a customer. _Fix submitted by Vadim Malesh in pull request [28332](https://github.com/magento/magento2/pull/28332)_. [GitHub-21237](https://github.com/magento/magento2/issues/21237) + +### Website restrictions + + + +* Enabling website restriction no longer blocks Varnish ESI requests for customers logged in as guest. Previously, these guests could not access the home page main menu. + + + +* Magento now loads the product home page as expected when website restrictions are enabled. + +### Wish list + + + +* You can now use the wish list search feature to find a product in a public wish list in deployments where support for multiple wish lists is enabled. Previously, after a customer used the wish list search to find a product, selecting it, and clicking **Add to cart**, Magento did not add the product to the cart and displayed this error: `Invalid Form Key. Please refresh the page`. + + + +* Customers can now change the quantity of a product in a wish list from the wish list itself. Previously, Magento did not update the product quantity and did not display a message. + + + +* Customers can now change the quantity of a grouped product in a wish list from the wish list itself. Previously, Magento did not update the product quantity or display a message. + + + +* The storefront Category page now displays the wish list search widget as expected. + + + +* Polyfills for `Map`, `WeakMap`, `FormData`, and `MutationObserver` are now loaded only as needed. _Fix submitted by Dmitry Tsymbal in pull request [28330](https://github.com/magento/magento2/pull/28330) and Mateusz Krzeszowiak in pull request [27618](https://github.com/magento/magento2/pull/27618)_. [GitHub-28377](https://github.com/magento/magento2/issues/28377), [GitHub-28382](https://github.com/magento/magento2/issues/28382) + + + +* The wish list update process now supports updating a wish list item and its description simultaneously. _Fix submitted by Eduard Chitoraga in pull request [28222](https://github.com/magento/magento2/pull/28222)_. [GitHub-28261](https://github.com/magento/magento2/issues/28261) + + + +* Magento now correctly validates the allowed maximum of wish lists that a shopper can create. _Fix submitted by Eduard Chitoraga in pull request 247 in private repo partners-magento2ee_. + + + +* Administrators can now configure a configurable product that has been added by a customer to a wish list from a non-default store. Previously, when the customer had also added the configurable product from a non-default store, Magento threw an error. + + + +* Added a test for sharing a customer's wish list with more than the allowed number of emails. _Fix submitted by Dmitry Tsymbal in pull request [28641](https://github.com/magento/magento2/pull/28641)_. [GitHub-28720](https://github.com/magento/magento2/issues/28720) + + + +* Added a test for deleting items from a customer’s wish list as an Admin user. _Fix submitted by Dmitry Tsymbal in pull request [28632](https://github.com/magento/magento2/pull/28632)_. [GitHub-28721](https://github.com/magento/magento2/issues/28721) + + + +* Added a test for disabling wish list functionality. _Fix submitted by Dmitry Tsymbal in pull request [28635](https://github.com/magento/magento2/pull/28635)_. [GitHub-28744](https://github.com/magento/magento2/issues/28744) + + + +* Added a test for using invalid email addresses when sharing customer wish lists. `StorefrontShareWishlistEntityTest` has been refactored. `StorefrontCustomerShareWishlistActionGroup` has been deprecated. _Fix submitted by Dmitry Tsymbal in pull request [28330](https://github.com/magento/magento2/pull/28330)_. [GitHub-28377](https://github.com/magento/magento2/issues/28377) + + + +* Added a test for sharing a customer's wish list that exceeds the allowed text length limit. _Fix submitted by Dmitry Tsymbal in pull request [28812](https://github.com/magento/magento2/pull/28812)_. [GitHub-28969](https://github.com/magento/magento2/issues/28969) + +## Known issues + +**Issue**: The new CAPTCHA feature for checkout does not work as expected on the Place Order page when using third-party payment providers. Merchants running Magento 2.3.6 or 2.4.1 who have enabled CAPTCHA protection on the Place Order storefront page will see this error when checking out using a third-party payment provider such as PayPal: `Please provide CAPTCHA code and try again`. A fix for this issue be available in the next few weeks, and will be included in our next quarterly patch (Q12021). Please contact Support for additional information. + +**Issue**: Users without administrator privileges cannot currently set up their personal 2FA access. 2FA as implemented in Magento includes two ACL roles. One role affects global system configuration and it is needed only when configuring the system. The second ACL role affects individual user 2FA accounts. An admin user must configure this second type of 2FA ACL. **Workaround**: After the user has logged in and seen the Access denied screen, they can visit `https:////tfa/tfa/requestconfig/` to force configuration. Note: We do not recommend disabling security settings. However, this workaround is effective only when Admin URL secret keys are disabled. + +**Issue**: Merchants cannot log in to dotdigital from the Admin in Safari when dotdigital is enabled. See the [It's impossible to login in the dotdigital via admin panel when dotdigital account is enabled](https://support.magento.com/hc/en-us/articles/360050092291) Knowledge Base article. + +**Issue**: Vertex address validation does not work during payment when the shopper selects a shipping address that differs from the billing address. The issue will be fixed in Magento 2.4.2. See the [Magento 2.4.1 known issue: Vertex Address Validation message does not disappear after updating address](https://support.magento.com/hc/en-us/articles/360050139631) Knowledge Base article. + +**Issue**: Magento displays an empty page when a merchant saves a dotdigital Page Builder form on the Safari browser. **Workaround**: Reload the page to apply your changes. See the [Magento 2.4.1 known issue: empty page after saving dotdigital Page Builder form](https://support.magento.com/hc/en-us/articles/360049819092) Knowledge Base article. + +**Issue**: Under certain conditions, Magento automatically signs in customers to previously used Amazon accounts rather prompting them to log in during checkout with Amazon Pay. See the [Magento 2.4.1 known issue: unable to change Amazon account in Google Chrome](https://support.magento.com/hc/en-us/articles/360049814152) Knowledge Base article. + +**Issue**: Magento briefly displays an error message on the billing page of the checkout workflow when PayPal Braintree payment and multiple addresses shipment are selected. See the [Magento 2.4.1 known issue: error popping up on Checkout with PayPal Braintree](https://support.magento.com/hc/en-us/articles/360050253211) Knowledge Base article. + +**Issue**: Magento displays a non-informative error message when a guest customer tries to place an order with PayPal through Braintree when guest checkout is disabled. See the [Magento 2.4.1 known issue: non-informative error message during guest checkout using Paypal through Braintree](https://support.magento.com/hc/en-us/articles/360050368111) Knowledge Base article. + +## Community contributions + +We are grateful to the wider Magento community and would like to acknowledge their contributions to this release. Check out the following ways you can learn about the community contributions to our current releases: + +* If a community member has provided a fix for this release, we identify the fix in the Fixed Issue section of these notes with the phrase, "*Fix provided by community member*". + +* The Magento Community Engineering team [Magento Contributors](https://magento.com/magento-contributors) maintains a list of top contributing individuals and partners by month, quarter, and year. From that Contributors page, you can follow links to their merged PRs on GitHub. + +### Partner contributions + +The following table highlights contributions made by Partners. This table lists the Partner who contributed the pull request, the external pull request, and the GitHub issue number associated with it (if available). + +{% include release-notes/engcomm-2-4-1-partner.md %} + +### Individual contributor contributions + +The following table identifies contributions from our community members. This table lists the external pull requests, the GitHub issue number associated with it (if available), and the community member who contributed the pull request. + +{% include release-notes/engcomm-2-4-1-issues.md %} + +### System requirements + +Our technology stack is built on PHP and MySQL. For more information, see [System Requirements]({{site.baseurl}}/system-requirements.html). + +### Installation and upgrade instructions + +You can install Magento Commerce 2.4.1 using Composer. + +## Migration tool kits + +The Data Migration Tool helps transfer existing Magento 1.x store data to Magento 2.x. This command-line interface includes verification, progress tracking, logging, and testing functions. For installation instructions, see [Install the Data Migration Tool]({{page.baseurl}}/migration/migration-tool-install.html). Consider exploring or contributing to the [Magento Data Migration repository](https://github.com/magento/data-migration-tool). + +The [Code Migration Toolkit](https://github.com/magento-commerce/code-migration) helps transfer existing Magento 1.x store extensions and customizations to Magento 2.x. The command-line interface includes scripts for converting Magento 1.x modules and layouts. diff --git a/src/guides/v2.4/release-notes/open-source-2-4-1.md b/src/guides/v2.4/release-notes/open-source-2-4-1.md new file mode 100644 index 00000000000..37b72954373 --- /dev/null +++ b/src/guides/v2.4/release-notes/open-source-2-4-1.md @@ -0,0 +1,1699 @@ +--- +group: release-notes +title: Magento Open Source 2.4.1 Release Notes +--- + +Magento Open Source 2.4.1 introduces enhancements to performance and security. Security enhancements include support for the `SameSite` attribute for cookies and the addition of CAPTCHA protection for payment-related and order-related API endpoints and the Place Order storefront page. + +This release includes all improvements to core quality that were included in Magento 2.4.0, over 150 new fixes to core code, and over 15 security enhancements. It includes the resolution of almost 300 GitHub issues by our community members. These community contributions range from minor clean-up of core code to significant enhancements in GraphQL. + +All known issues identified in Magento 2.4.0 have been fixed in this release. + +{:.bs-callout-info} + +Quarterly releases may contain backward-incompatible changes (BIC). Magento 2.4.1 contains minor backward-incompatible changes. To review minor backward-incompatible changes, see [BIC reference]({{page.baseurl}}/release-notes/backward-incompatible-changes/reference.html). (Major backward-incompatible issues are described in [BIC highlights]({{page.baseurl}}/release-notes/backward-incompatible-changes/index.html). Not all releases introduce major BICs.) + +## Security-only patch available + +Merchants can now install time-sensitive security fixes without applying the hundreds of functional fixes and enhancements that a full quarterly release (for example, Magento 2.4.0-p1) provides. Patch 2.4.0.1 (Composer package 2.4.0-p1) is a security-only patch that provides fixes for vulnerabilities that have been identified in our previous quarterly release, Magento 2.4.0. All hot fixes that were applied to the 2.4.0 release are included in this security-only patch. (A *hot fix* provides a fix to a released version of Magento that addresses a specific problem or bug.) + +For general information about security-only patches, see the Magento DevBlog post [Introducing the New Security-only Patch Release](https://community.magento.com/t5/Magento-DevBlog/Introducing-the-New-Security-only-Patch-Release/ba-p/141287). For instructions on downloading and applying security-only patches (including patch 2.3.5-p2), see [Install Magento using Composer]({{page.baseurl}}/install-gde/composer.html). Security-only patches include security bug fixes only, not the additional security enhancements that are included in the full patch. + +## Other release information + +Although code for these features is bundled with quarterly releases of the Magento core code, several of these projects (for example, Progressive Web Applications (PWA) Studio) are also released independently. Bug fixes for these projects are documented in the separate, project-specific release information that is available in the documentation for each project. + +## Highlights + +Look for the following highlights in this release. + +### Substantial security enhancements + +This release includes over 15 security fixes and platform security improvements. All security fixes have been backported to Magento 2.4.0-p1 and Magento 2.3.6. + +#### Over 15 security enhancements that help close remote code execution (RCE) and cross-site scripting (XSS) vulnerabilities + +No confirmed attacks related to these issues have occurred to date. However, certain vulnerabilities can potentially be exploited to access customer information or take over administrator sessions. Most of these issues require that an attacker first obtains access to the Admin. As a result, we remind you to take all necessary steps to protect your Admin, including but not limited to these efforts: IP allowlisting, [two-factor authentication]({{page.baseurl}}/security/two-factor-authentication.html), use of a VPN, the use of a unique location rather than `/admin`, and good password hygiene. See [Security Updates Available for Magento](https://helpx.adobe.com/security/products/magento/apsb20-59.html) for a discussion of these fixed issues. + +#### Additional security enhancements + +Security improvements for this release include: + +* **CAPTCHA** protection has been added to the following product areas: + + * Place Order storefront page and REST and GraphQL endpoints + * Payment-related REST and GraphQL endpoints. + + CAPTCHA protection for these additional pages is disabled by default. It can be enabled on the Admin in the same way that other pages covered by CAPTCHA are. This protection has been added as an anti-brute force mechanism to protect stores against carding attacks. See [CAPTCHA](https://docs.magento.com/user-guide/stores/security-captcha.html). + +* **Support for the SameSite attribute for cookies**. To support the Google Chrome enforcement of the new cookie classification system, Magento classes that handle cookies have been updated to support the `SameSite` cookie attribute. This attribute is set to `Lax` by default but can be explicitly overridden. + +* **Enhanced Magento Scan Tool**. Adobe has partnered with [Sanguine Security](https://sansec.io/), a leader in preventing digital skimming, to integrate their database of over 8700 threat signatures into the Magento Security Scan Tool. This partnership will enable merchants to get real-time insights into the security status of their site through proactive detection of malware and reduction of false positives. Merchants can register for the tool by visiting https://account.magento.com/scanner. For more information, see the [Secure Your Storefront With the Enhanced Magento Security Scan Tool](https://magento.com/blog/magento-news/secure-your-storefront-enhanced-magento-security-scan-tool) blog post. + +{:.bs-callout-info} +Starting with the release of Magento Commerce 2.3.2, Magento will assign and publish indexed Common Vulnerabilities and Exposures (CVE) numbers with each security bug reported to us by external parties. This allows users of Magento Commerce to more easily identify unaddressed vulnerabilities in their deployment. You can learn more about CVE identifiers at [CVE](https://cve.mitre.org/). + +### Infrastructure improvements + +This release contains enhancements to core quality, which improve the quality of the Framework and these functional areas: Customer Account, Catalog, CMS, OMS, Import/Export, Promotions and Targeting, Cart and Checkout, and Staging and Preview. + +### Performance improvements + +* **Reduction in the size of network transfers between Redis and Magento**. Plugin list configuration is now generated during the execution of the `bin/magento di:compile` command. This configuration information is written to generated metadata folders based on scope. Previously, this information was stored in cache. Resulting performance improvements include a decrease in network cache size and execution time for many scenarios. + +* **Enhanced message queue consumer performance**. Three new configuration settings support a decrease in consumer queue CPU consumption. These optional parameters provide increased control over consumers and save server resources. See [Configure message queues]({{page.baseurl}}/extension-dev-guide/message-queues/config-mq.html) for a description of the `maxIdleTime`, `sleep`, and `onlySpawnWhenMessageAvailable` parameters. + +* **Improved execution time** for `bin/magento` commands. + +### Adobe Stock Integration + +This release includes Adobe Stock Integration v2.1.0. + +### New Media Gallery + +The New Media Gallery is now enabled by default in the Admin. Merchants can now perform these actions on images in the Media Gallery: + +* Delete images in bulk +* Optimize media storage by identifying duplicate images and images that are not used on the storefront +* Filter images by the storefront area they are used in, including product and category content and CMS blocks +* Work with image metadata + * View metadata from the images uploaded into Media Gallery + * Edit image metadata (title, description, and keywords) + * Search for images by their metadata + +### GraphQL + +This release adds GraphQL coverage for the following features: + +* **Product reviews**. Customers and guests can write product reviews. Customers can retrieve their product review histories. See [Create a product review]({{page.baseurl}}/graphql/mutations/create-product-review.html) and [productReviewRatingsMetadata query]({{page.baseurl}}/graphql/queries/product-review-ratings-metadata.html) for information on retrieving information about the reviews infrastructure. + +* **Gift options**. All customers and guests can add a gift message to their order. Customers can also add gift wrapping, gift receipts, and printed cards to the order. See [`setGiftOptionsOnCart` mutation]({{page.baseurl}}/graphql/mutations/set-gift-options.html) and [`updateCartItems` mutation]({{page.baseurl}}/graphql/mutations/update-cart-items.html) + +* **Order history**. All customers can view details about their order histories, including invoices, shipping, and refunds. + +* **Add to cart**. The [`addProductsToCart` mutation]({{page.baseurl}}/graphql/mutations/add-products-to-cart.html) allows you to add any type of product to the active cart. We recommend using this mutation instead of single-purpose mutations such as `addSimpleProductsToCart`. _Fix submitted by Yaroslav Rogoza in pull request [27914](https://github.com/magento/magento2/pull/27914)_. [GitHub-28524](https://github.com/magento/magento2/issues/28524) + +* **Stored payment methods**. Logged-in customers can now store payment details (including Braintree credit card and Braintree with PayPal) in My Account. + +* **Support for wish lists in Magento Open Source**. Added support for Open Source wish lists. You can [add items]({{page.baseurl}}/graphql/mutations/add-products-to-wishlist.html) to, [update items]({{page.baseurl}}/graphql/mutations/update-products-in-wishlist.html) in, and [remove items]({{page.baseurl}}/graphql/mutations/remove-products-from-wishlist.html) from a wish list. + +* **Improved management of customer accounts**. We have added the [`createCustomerV2`]({{page.baseurl}}/graphql/mutations/create-customer-v2.html) and [`updateCustomerV2`]({{page.baseurl}}/graphql/mutations/update-customer-v2.html) mutations to manage customer accounts. These new mutations require different input objects than the `createCustomer` and `updateCustomer` mutations. To change a customer's email address, use the new [`updateCustomerEmail`]({{page.baseurl}}/graphql/mutations/update-customer-email.html) mutation. + +* **Support for Payflow Pro Vault**. Added GraphQL Vault support for the [Payflow Pro Vault]({{page.baseurl}}/graphql/payment-methods/payflow-pro-vault.html) payment method. _Fix submitted by Oleh Usik in pull request [28821](https://github.com/magento/magento2/pull/28821)_. [GitHub-28520](https://github.com/magento/magento2/issues/28520) + +* Updated the GraphQL [`storeConfig` query]({{page.baseurl}}/graphql/queries/store-config.html) to include new customer configuration settings. _Fix submitted by Oleh Usik in pull request [27876](https://github.com/magento/magento2/pull/27876)_. [GitHub-28521](https://github.com/magento/magento2/issues/28521) + +* Added the [`requestPasswordResetEmail` mutation]({{page.baseurl}}/graphql/mutations/request-password-reset-email.html), which triggers the password reset email for the provided email address. _Fix submitted by Oleh Usik in pull request [27876](https://github.com/magento/magento2/pull/27876)_. [GitHub-28521](https://github.com/magento/magento2/issues/28521) + +* **Klarna GraphQL**. Added or updated topics on Klarna GraphQL in [Klarna's payment method]({{page.baseurl}}/graphql/payment-methods/klarna.html) and [`createKlarnaPaymentsSession`]({{page.baseurl}}/graphql/mutations/create-klarna-payments-session.html) + +See the [GraphQL Developer Guide]({{page.baseurl}}/graphql/) for details on these enhancements. + +### PWA Studio + +PWA Studio v8.0.0 introduces new features and enhancements: + +* Updates to the Venia style guide that apply to design tokens, typography, colors, core components, and page layouts. + +* Improvements to the Venia mini-cart experience + +* Initial support for multiple locales and localized content on the Venia storefront + +* Numerous improvements to the My Account experience of the Venia storefront + +See [Magento compatibility](https://magento.github.io/pwa-studio/technologies/magento-compatibility/) for a list of PWA Studio versions and their compatible Magento core versions. For information about enhancements and bug fixes, see [PWA Studio releases](https://github.com/magento/pwa-studio/releases). + +### Magento Functional Testing Framework (MFTF) + +MFTF 3.1.0 is now available. See [Magento Functional Testing Framework Changelog](https://github.com/magento/magento2-functional-testing-framework/blob/develop/CHANGELOG.md). + +### Vendor Developed Extensions + +See the following articles for updates on features and changes for this release: + +* [Amazon Pay](https://docs.magento.com/user-guide/payment/amazon-pay.html) + +* [Braintree](https://docs.magento.com/user-guide/payment/braintree.html) + +* [dotdigital Engagement Cloud](https://docs.magento.com/user-guide/marketing/dotdigital/engagement-cloud.html) + +* [Klarna](https://docs.magento.com/user-guide/payment/klarna.html) + +* [Vertex Cloud](https://docs.magento.com/user-guide/tax/vertex.html) + +* [Yotpo Product Reviews](https://docs.magento.com/user-guide/marketing/yotpo-reviews-intro.html) + +## Fixed issues + +We have fixed hundreds of issues in the Magento 2.4.1 core code. + +### Installation, upgrade, deployment + + + +* Installation of Magento with third-party extensions that have dependencies on APIs for the Store module in CLI commands no longer fails. Previously, Magento displayed this error message: `The default website isn't defined. Set the website and try again`. This was a known issue in Magento 2.4.0. + + + +* `bin/magento setup:di:compile` no longer throws a fatal error. Previously, Magento threw an error the first time you ran this command, but the second execution resulted in successful compilation. + + + +* Upgrade no longer fails when a plugin is declared on `Magento\Framework\Encryption\Encryptor`. + + + +* Magento now displays an informative error message when some themes are not deployed after running `bin/magento setup:static-content:deploy`. Previously, when deployment completed successfully but not all packages were deployed, Magento did not display an error. When the command is executed with enabled parallel processing and each theme requires more time to be deployed then the specified maximum execution time, this command can finish successfully, although themes are not deployed. + + + +* The **Use default** checkbox for Klarna payments (**Stores** > **Configuration** > **Sales** > **Payment methods** > **Klarna**) now remain checked as expected when website scope changes. + + + +* Upgrade no longer results in the sudden failure of the Galera cluster. Previously, the Galera cluster exited abruptly after re-indexing immediately after upgrade. During Magento upgrade, index tables are altered, and the engine is changed from `MEMORY` to `InnoDB`. At this point, the content of these tables became out-of-sync between the nodes of the Galera cluster. [GitHub-25334](https://github.com/magento/magento2/issues/25334) + + + +* Disabling the PageBuilder module no longer affects the rendering of the product page. Previously, custom layouts on the product page disappeared when the module was disabled, and Magento displayed a blank page. + + + +* You can now use `bin/magento sampledata:deploy` to deploy sample data as expected after installing Magento using Composer. Previously, Magento threw this error: `Git installations must deploy sample data from GitHub; see https://devdocs.magento.com/guides/v2.3/install-gde/install/sample-data-after-clone.html for more information`. _Fix submitted by Andrii Beziazychnyi in pull request [27481](https://github.com/magento/magento2/pull/27481)_. [GitHub-19481](https://github.com/magento/magento2/issues/19481) + + + +* Storefront performance has improved by eliminating the unnecessary loading of the `Datepicker` component. _Fix submitted by Mateusz Krzeszowiak in pull request [27860](https://github.com/magento/magento2/pull/27860)_. [GitHub-28823](https://github.com/magento/magento2/issues/28823) + + + +* Executing `bin/magento setup:upgrade` no longer displays extraneous information about caches. _Fix submitted by Sathish Subramanian in pull request [27567](https://github.com/magento/magento2/pull/27567)_. [GitHub-27091](https://github.com/magento/magento2/issues/27091) + + + +* Running `bin/magento config:show /general/value` now returns `0` or an empty string as expected. Previously, it returned `Configuration for path: "vendor_module/general/value" doesn't exist`. _Fix submitted by Vadim Malesh in pull request [28549](https://github.com/magento/magento2/pull/28549)_. [GitHub-23290](https://github.com/magento/magento2/issues/23290) + + + +* `bin/magento setup:static-content:deploy --language=all` now deploys all languages that are used on the storefront and all languages configured by Admin users when no language parameter is set. (`en_US` is always deployed by default.) _Fix submitted by Anton Evers in pull request [28922](https://github.com/magento/magento2/pull/28922)_. [GitHub-29218](https://github.com/magento/magento2/issues/29218) + + + +* Magento no longer displays the Backup menu when the Backup feature is disabled. _Fix submitted by Eden Duong in pull request [29222](https://github.com/magento/magento2/pull/29222)_. [GitHub-29280](https://github.com/magento/magento2/issues/29280) + + + +* Catalog image helper initialization now uses the product model instead of `DataObject`. _Fix submitted by jmonteros422 in pull request [29435](https://github.com/magento/magento2/pull/29435)_. [GitHub-1711](https://github.com/magento/adobe-stock-integration/issues/1711) + + + +* Admin users can now save an empty **Customer Token Lifetime (hours)** field (Admin **Stores** > **Configurations** > **Services** > **OAuth** > **Access Token Expiration**). [GitHub-29502](https://github.com/magento/magento2/issues/29502) + + + +* The **Create Permanent Redirect for old URL** setting is now disabled by default for categories. _Fix submitted by Vadim Malesh in pull request [28752](https://github.com/magento/magento2/pull/28752)_. [GitHub-24922](https://github.com/magento/magento2/issues/24922) + +### Adobe Stock Integration + + + +* Images in the Adobe Stock images grid are now properly aligned after filters have been cleared. _Fix submitted by Nazar Klovanych in pull request [28366](https://github.com/magento/magento2/pull/28366)_. [GitHub-824](https://github.com/magento/adobe-stock-integration/issues/824), [GitHub-972](https://github.com/magento/adobe-stock-integration/issues/972) + + + +* Added support for reading `exif_image.png` or `exif-image.jpeg` metadata. _Fix submitted by Nazar Klovanych in pull request [29576](https://github.com/magento/magento2/pull/29576)_. [GitHub-1449](https://github.com/magento/adobe-stock-integration/issues/1449) + + + +* The **Used in** field of the Adobe Stock gallery image details page now accurately identifies if the image is associated with a product. _Fix submitted by Nazar Klovanych in pull request [28798](https://github.com/magento/magento2/pull/28798)_. [GitHub-1474](https://github.com/magento/adobe-stock-integration/issues/1474) + + + +* `\Magento\MediaGallery\Model\ResourceModel\Keyword\SaveAssetsKeywords::execute` now deletes the links to the keywords that are not specified on the parameters and insert the new ones when deleting keyword tags while editing image details. _Fix submitted by jmonteros422 in pull request [29207](https://github.com/magento/magento2/pull/29207)_. [GitHub-1391](https://github.com/magento/adobe-stock-integration/issues/1391) + + + +* The `Login failed` message that Magento displays when a merchant clicks **License** for a previously saved, unlicensed Adobe Stock image no longer contains HTML tags. _Fix submitted by yolouiese in pull request [29398](https://github.com/magento/magento2/pull/29398)_. [GitHub-1684](https://github.com/magento/adobe-stock-integration/issues/1684) + + + +* Clicking on the links in the **Used in** section of the image Details page now displays a grid that displays all entities that are filtered by the image. The asset filter is also set and displayed correctly. Previously, Magento did not display the asset title in the **Applied filters** section. _Fix submitted by Nazar Klovanych in pull request [29367](https://github.com/magento/magento2/pull/29367)_. [GitHub-1694](https://github.com/magento/adobe-stock-integration/issues/1694) + + + +* Magento no longer displays the **Used in** section of the image Details page when the image is not in use. _Fix submitted by Nazar Klovanych in pull request [29367](https://github.com/magento/magento2/pull/29367)_. [GitHub-1699](https://github.com/magento/adobe-stock-integration/issues/1699) + + + +* Corrected display issues when adding a new image tag that exceeds the maximum number of characters. _Fix submitted by Nazar Klovanych in pull request [29367](https://github.com/magento/magento2/pull/29367)_. [GitHub-1702](https://github.com/magento/adobe-stock-integration/issues/1702) + + + +* Assets can now be checked as expected using the assets filter on the image Details **Used in** section. _Fix submitted by Nazar Klovanych in pull request [29367](https://github.com/magento/magento2/pull/29367)_. [GitHub-1704](https://github.com/magento/adobe-stock-integration/issues/1704) + + + +* Information about images that are used by different entities (for example, `page` and `category`) is now listed corrected in the image Details page. _Fix submitted by Nazar Klovanych in pull request [29367](https://github.com/magento/magento2/pull/29367)_. [GitHub-1747](https://github.com/magento/adobe-stock-integration/issues/1747) + + + +* Magento no longer throws an exception when a merchant tries to save a product with its associated image when the Media Gallery is disabled. _Fix submitted by Nazar Klovanych in pull request [29492](https://github.com/magento/magento2/pull/29492)_. [GitHub-1750](https://github.com/magento/adobe-stock-integration/issues/1750) + + + +* Clicking on links in the Used in section for an image in the Media Gallery now opens the grid of entities that are filtered by the image as expected. Previously, the image title was not displayed in the applied filters section of the grid. _Fix submitted by Nazar Klovanych in pull request [29429](https://github.com/magento/magento2/pull/29429)_. [GitHub-1694](https://github.com/magento/adobe-stock-integration/issues/1694) + + + +* Magento now adds tags correctly when you edit multiple images successively in the Media Gallery. _Fix submitted by Nazar Klovanych in pull request [29429](https://github.com/magento/magento2/pull/29429)_. [GitHub-1755](https://github.com/magento/adobe-stock-integration/issues/1755 + + + +* Magento now removes tags for Adobe Stock images after a merchant deletes the tags and saves the image details. Previously, tags were not deleted until the page was refreshed. _Fix submitted by Honeymay Louiese Ignacio in pull request [29400](https://github.com/magento/magento2/pull/29400)_. [GitHub-1703](https://github.com/magento/adobe-stock-integration/issues/1703) + +### Amazon Pay + +* Amazon Pay now checks whether a user is already logged in before rendering payment options. + +* Issues with multi-factor authentication and abandoned carts have been resolved. + +* Amazon Pay now correctly populates the `store name` in emails and other displayed locations.  If the **Store Name** field in Amazon Pay configuration is empty, the extension retrieves the store's default name (that is, the name you give your store in Magento Admin). + +* Localization/translation issues for Decline scenarios have been addressed. Displayed text is no longer always in English. + +### Bundle products + + + +* Magento no longer throws an exception when you try to create a product in a deployment in which Inventory is installed but the `Magento_InventoryBundleProduct` module is disabled. + + + +* Magento now correctly calculates offline refunds for orders that contain bundle products. + + + +* The mini cart now displays the correct prices for bundle products when tier prices are also assigned for simple products. [GitHub-22807](https://github.com/magento/magento2/issues/22807) + + + +* Merchants can now create a credit memo for bundle products that provides a refund without requiring the return of the product. Previously, Magento threw an error. _Fix submitted by Dzung Nguyen in pull request [27455](https://github.com/magento/magento2/pull/27455)_. [GitHub-23440](https://github.com/magento/magento2/issues/23440) + + + +* Magento no longer displays redundant validation messages when a shopper adds a bundle product to their cart without selecting a required option. _Fix submitted by Dzung Nguyen in pull request [27455](https://github.com/magento/magento2/pull/27455)_. [GitHub-23440](https://github.com/magento/magento2/issues/23440) + + + +_Fix submitted by Michał Derlatka in pull request [29256](https://github.com/magento/magento2/pull/29256)_. [GitHub-26110](https://github.com/magento/magento2/issues/26110) + +### Cache + + + +* Local cache storage is now retained for the period of time set in **Stores** > **Configuration** > **General** > **Web** > **Default Cookie Settings**. Previously, the expiry date of cookies was hard-coded to one day, which put it out of sync with this setting. As a result, welcome messages did not retain returning customer information for the expected duration. + + + +* The number of calls to page cache `config` has been reduced. _Fix submitted by Lukasz Bajsarowicz in pull request [28992](https://github.com/magento/magento2/pull/28992)_. [GitHub-29159](https://github.com/magento/magento2/issues/29159) + + + +* Varnish no longer throws a `Connection reset by peer` error when a large catalog is reindexed on schedule. _Fix submitted by Matthew O'Loughlin in pull request [26256](https://github.com/magento/magento2/pull/26256)_. [GitHub-8815](https://github.com/magento/magento2/issues/8815) + + + +* Full page cache is no longer cleared for unrelated products when a product has been edited in the Admin. [GitHub-25670](https://github.com/magento/magento2/issues/25670) + +### Cart and checkout + + + +* Direct SQL queries have been replaced by Data Provider, which has improved checkout performance. _Fix submitted by Lukasz Bajsarowicz in pull request [29376](https://github.com/magento/magento2/pull/29376)_. [GitHub-29453](https://github.com/magento/magento2/issues/29453) + + + +* The Products in the Comparison and the Recently Compared Products lists now work as expected. Previously, when the comparison list was expanded, Magento did not display products, even though the section indicated that the list contained products. + + + +* The **Delete** button on the **Add to Shopping Cart by SKU** section of a customer’s **Manage Shopping Cart** page now works as expected when multiple rows are selected. + + + +* Magento no longer throws an error when you try to order a product by SKU when the digits you enter match a valid SKU but the case of these digits differ. Previously, when you entered an SKU on **My Account** > **Order by SKU** that did not exactly match a valid SKU, Magento threw an error. + + + +* A customer’s shipping address is now selected by default at checkout when the address is located in the country identified on the Allow Countries list and that list includes only that country. Previously, Magento did not select the address as default and displayed this error message: `Please specify a regionId in shipping address`. + + + +* Merchants can now enable **Apply to Shipping Amount** in the Action tab of **Marketing** > **Cart Price Rules** > **Add New Rule** when **Fixed amount discount for whole cart** is applied. [GitHub-24422](https://github.com/magento/magento2/issues/24422) + + + +* Magento no longer throws an exception when a shopper tries to unset the persistence cookie after beginning checkout and then navigating to the storefront home page. Previously, when the shopper clicked the **Not you?** link on the home page, Magento threw this exception: `The shipping address is missing. Set the address and try again`. [GitHub-24218](https://github.com/magento/magento2/issues/24218) + + + +* Magento now displays an add-to-cart success message when a customer adds an out-of-stock product to their cart. Previously, the product was added, but Magento did not display a success message. + + + +* Custom address attributes are now included as expected in the form that displays for the payment step in the checkout workflow. + + + +* The **State/Province/Region** input box is now enabled as expected on **My account** > **Address Book** > **Add new address**. + + + +* Discounts are now applied as expected to shipping charges when **Apply to Shipping Amount** is enabled. _Fix submitted by Andrii Kalinich in pull request [28839](https://github.com/magento/magento2/pull/28839)_. [GitHub-26723](https://github.com/magento/magento2/issues/26723) + + + +* The code that supports closing the mini cart has been refactored to remove the `closeSidebar` function. The appropriate click binding has been added to the `[data-action="close"]` element. _Fix submitted by lumnn in pull request [28906](https://github.com/magento/magento2/pull/28906)_. [GitHub-29161](https://github.com/magento/magento2/issues/29161) + + + +* The new **Show "Clear Shopping Cart" button on the cart page** configuration setting provides control over displaying a **Clear Cart** button on the shopping cart view page. By default, this setting is disabled. _Fix submitted by Pavlo Sydorenko in pull request [27917](https://github.com/magento/magento2/pull/27917)_. [GitHub-28705](https://github.com/magento/magento2/issues/28705) + + + +* Validation has been added to the phone field in the checkout workflow. _Fix submitted by Oleh Usik in pull request [27537](https://github.com/magento/magento2/pull/27537)_. [GitHub-28800](https://github.com/magento/magento2/issues/28800) + + + +* Guest checkout is now disabled as expected when a cart contains downloadable products when the **Shareable** and **Disable Guest Checkout if Cart Contains Downloadable Items** settings are disabled. _Fix submitted by Rani Priya in pull request [23972](https://github.com/magento/magento2/pull/23972)_. [GitHub-23971](https://github.com/magento/magento2/issues/23971) + + + +* The success message that Magento displays when a shopper adds a product to their cart from the customer account sidebar now contains a link to the shopper’s shopping cart. _Fix submitted by Ajith in pull request [27977](https://github.com/magento/magento2/pull/27977)_. [GitHub-29097](https://github.com/magento/magento2/issues/29097) + + + +* Magento now selects an empty value by default for the prefix dropdown options menu on the checkout workflow. _Fix submitted by Vadim Malesh in pull request [28238](https://github.com/magento/magento2/pull/28238)_. [GitHub-18823](https://github.com/magento/magento2/issues/18823) + + + +* The pop-up message that Magento displays when you delete multiple items from a shopping cart now accurately describes the number and type of entities you have selected for deletion. _Fix submitted by Nazar Klovanych in pull request [29490](https://github.com/magento/magento2/pull/29490)_. [GitHub-1749](https://github.com/magento/adobe-stock-integration/issues/1749) + + + +* Magento now displays a customer registration form when a guest user completes checkout. + + + +* Custom customer address attributes fields are now displayed as expected in the storefront checkout workflow. + + + +* Magento now retrieves the current customer group for an active quote during checkout. Previously, Magento used the customer group that was active when the product was first added to the cart, and if that customer group was deleted before checkout, Magento threw an error. _Fix submitted by Konstantin in pull request [28902](https://github.com/magento/magento2/pull/28902)_. [GitHub-29327](https://github.com/magento/magento2/issues/29327) + +### Catalog + + + +* Magento now removes disabled products from a shopper’s cart before checkout. Previously, when a shopper added a product to their cart that was disabled before checkout completed, Magento removed the disabled product from the cart, but the product remained in the quote, and the shopper could not check out. [GitHub-26680](https://github.com/magento/magento2/issues/26680) + + + +* Magento now sorts bestselling products as expected. Previously, both product count and the pagination of sort results were incorrect. [GitHub-25955](https://github.com/magento/magento2/issues/25955) + + + +* Shoppers can now open a product’s detail page by clicking on the product name in the compare products sidebar. _Fix submitted by Eduard Chitoraga in pull request [27451](https://github.com/magento/magento2/pull/27451)_. [GitHub-21101](https://github.com/magento/magento2/issues/21101) + + + +* `children_count` values now remain positive when an administrator deletes categories. Previously, when an administrator deleted categories, the `children_count` for remaining categories was negative. _Fix submitted by Vitaliy Prokopov in pull request [28044](https://github.com/magento/magento2/pull/28044)_. [GitHub-27969](https://github.com/magento/magento2/issues/27969) + + + +* Magento now uses the default option (**Configuration** > **Web** > **Default Layouts** > **Default Product Layout**) that you have selected for the `page_layout` attribute when creating a new product. Previously, your selected default value was not applied. + + + +* You can now successfully perform mass actions on Inventory product stock. Previously, when you tried to perform a mass action on inventory product stock, Magento displayed a blank page. If you performed this action with Magento in developer mode, Magento threw this error: `Notice: Undefined offset: 32000 in /Users/kodithuw/sites/m23inventory/inventory/InventoryCatalogAdminUi/view/adminhtml/templates/catalog/product/edit/action/inventory.phtml on line 24`. + + + +* The total record count displayed when you click **Add Products** on the Products tab when adding products to a catalog category no longer changes based on product sort order. + + + +* The `{products(filter: {sku: {eq: "some sku"}}) {…}` query now returns values that have been converted into the expected currency. Previously, `price_tiers.final_price.value` displayed special prices in the base currency. _Fix submitted by Petkovski Marjan in pull request [28890](https://github.com/magento/magento2/pull/28890)_. [GitHub-26121](https://github.com/magento/magento2/issues/26121) + +### Cleanup + + + +* Corrected misalignment of the Admin Sales Order grid checkbox. _Fix submitted by Tu Nguyen in pull request [27642](https://github.com/magento/magento2/pull/27642)_. [GitHub-27633](https://github.com/magento/magento2/issues/27633) + + + +* Corrected a misspelling in the shipping address ID getter in the sales order address save handler. _Fix submitted by Konstantin in pull request [28810](https://github.com/magento/magento2/pull/28810)_. [GitHub-28982](https://github.com/magento/magento2/issues/28982) + + + +* Corrected the `getRegionNameExpresion` method name to `getRegionNameExpression`. _Fix submitted by Pierre Grimaud in pull request [28832](https://github.com/magento/magento2/pull/28832)_. [GitHub-28829](https://github.com/magento/magento2/issues/28829) + + + +* A redundant `init` method has been removed from `app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator/Website.php` and `app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator/TierPriceType.php`. _Fix submitted by Oleh Usik in pull request [28650](https://github.com/magento/magento2/pull/28650)_. [GitHub-29009](https://github.com/magento/magento2/issues/29009) + + + +* `localStorage` polyfill has been moved from from `base` to `frontend`. _Fix submitted by Ihor Sviziev in pull request [28749](https://github.com/magento/magento2/pull/28749)_. [GitHub-28900](https://github.com/magento/magento2/issues/28900) + + + +* Updated the Magento Commerce logo and removed extraneous spaces from the main README file of the `magento/magento2` repository. _Fix submitted by Rafael Corr̻a Gomes in pull request [28891](https://github.com/magento/magento2/pull/28891)_. [GitHub-29056](https://github.com/magento/magento2/issues/29056) + + + +* The unnecessary `overflowed` class has been removed from the mini cart sidebar widget. _Fix submitted by lumnn in pull request [28963](https://github.com/magento/magento2/pull/28963)_. [GitHub-29160](https://github.com/magento/magento2/issues/29160) + + + +* An incorrect CSS selector in the Shipment page has been corrected. _Fix submitted by Tu Nguyen in pull request [28639](https://github.com/magento/magento2/pull/28639)_. [GitHub-29261](https://github.com/magento/magento2/issues/29261) + + + +* The `lib/internal/Magento/Framework/App/Request/Http.php` file has been simplified by optimizing logic and removing redundant variable assignments and over-usage of returns within a function. _Fix submitted by Chris Snedaker in pull request [28608](https://github.com/magento/magento2/pull/28608)_. [GitHub-29381](https://github.com/magento/magento2/issues/29381) + + + +* The `bin/magento module:status` command now accepts multiple module names as arguments. _Fix submitted by Chandru Rajendran in pull request [28250](https://github.com/magento/magento2/pull/28250)_. [GitHub-29344](https://github.com/magento/magento2/issues/29344) + + + +* Fixed a typo in the class description of `\Magento\Downloadable\Block\Sales\Order\Email\Items\Downloadable`. _Fix submitted by Benjamin Rosenberger in pull request [29451](https://github.com/magento/magento2/pull/29451)_. [GitHub-29470](https://github.com/magento/magento2/issues/29470) + + + +* The `TierPriceManagement` class has been refactored to remove redundant code. _Fix submitted by Lukasz Bajsarowicz in pull request [29202](https://github.com/magento/magento2/pull/29202)_. [GitHub-29477](https://github.com/magento/magento2/issues/29477) + + + +* `autoload.php` has been refactored to improve readability and return speed. _Fix submitted by Vitaliy Ryaboy in pull request [28923](https://github.com/magento/magento2/pull/28923)_. [GitHub-29527](https://github.com/magento/magento2/issues/29527) + +### CMS content + + + +* The Hierarchy tab for a selected default store view now displays the selected parent page as expected. + + + +* Magento no longer throws an error during store view creation when the new store view contains a CMS page with the same URL key as a page in a different store view. _Fix submitted by Vadim Malesh in pull request [28421](https://github.com/magento/magento2/pull/28421)_. [GitHub-28357](https://github.com/magento/magento2/issues/28357) + +### Configurable products + + + +* Pagination problems with the Configurable Product Edit Current Variations list have been corrected. + + + +* Magento no longer updates the Related Products price box whenever a shopper selects options for a configurable product. Previously, Magento updated the price box whenever a shopper selected an option for a configurable product. + + + +* Magento now displays the correct price for configurable products with customizable options on the Admin Create Order page. As expected, the displayed price is a sum of the child product's price and the custom option's price. Previously, Magento displayed only the custom option price. [GitHub-25766](https://github.com/magento/magento2/issues/25766) + + + +* The order summary now displays the correct discount amount when a cart price rule has been applied. Previously, the rule did not correctly round amounts when calculating shipping discounts. + + + +* Admin user accounts created from an admin account with a restricted scope can now create a configurable product with attributes as expected. Previously, Magento threw this error: `Notice: Undefined index: value_index in 23develop/app/code/Magento/ConfigurableProduct/Helper/Product/Options/Factory.php on line 101`. + + + +* Magento no longer throws a validation error when you use POST `/V1/products` to a configurable product with an `int` value of 0. Previously, Magento threw this error: `Product with id "%1" does not contain required attribute “%2”.”` _Fix submitted by Vadim Malesh in pull request [29001](https://github.com/magento/magento2/pull/29001)_. [GitHub-13210](https://github.com/magento/magento2/issues/13210) + + + +* The configuration options attribute of a parent product are no longer assigned to a new configurable product’s `size` attribute. _Fix submitted by Abel Truong in pull request [27339](https://github.com/magento/magento2/pull/27339)_. [GitHub-26449](https://github.com/magento/magento2/issues/26449) + +### Cookies + + + +* Magento now creates a maximum of one `mage-translation-file-version` and `mage-translation-storage` cookie per session. _Fix submitted by Ihor Sviziev in pull request [27364](https://github.com/magento/magento2/pull/27364)_. [GitHub-27355](https://github.com/magento/magento2/issues/27355) + +### cron + + + +* Message queue consumer configuration has been extended with new parameters that help control consumers and save server resources and that potentially decrease consumer queue CPU consumption: + + * `maxIdleTime` defines the maximum waiting time in seconds for a new message from the queue. + * `sleep` specifies time in seconds to sleep before checking if a new message is available in the queue. + * `onlySpawnWhenMessageAvailable` identifies whether a consumer should be spawned only when an available message exists in the related queue. This setting is enabled globally by default for all consumers but can be configured per consumer. + + + +* `cron` expressions such as  `3/10 * * * *` are now scheduled as expected. _Fix submitted by Anton Evers in pull request [28930](https://github.com/magento/magento2/pull/28930)_. [GitHub-29240](https://github.com/magento/magento2/issues/29240) + + + +*  `sales_clean_quotes` no longer loads all expired quotes at once. Previously, Magento failed with this fatal error because all expired quotes were loaded simultaneously: `PHP Fatal error: Allowed memory size of 2147483648 bytes exhausted (tried to allocate 20480 bytes) in /path/to/magento2/vendor/magento/framework/Model/AbstractModel.php on line 359`, + +### CSS + + + +* Magento no longer duplicates CSS when **Critical CSS** is enabled. _Fix submitted by Tu Nguyen in pull request [28480](https://github.com/magento/magento2/pull/28480)_. [GitHub-26498](https://github.com/magento/magento2/issues/26498) + + + +* The server-side LESS compiler now imports all remote CSS files as expected when you run `bin/magento setup:static-content:deploy -f`. Previously, Magento did not import the remote files and threw an error. [GitHub-25119](https://github.com/magento/magento2/issues/25119) + +### Customer + + + +* The region names in Admin customer addresses are now translated as expected. + + + +* The **State/Province** fields are now populated as expected on the Edit Address page (**My Account** > **Address book**). + + + +* Magento no longer throws an error when a customer clicks the **Submit** button multiple times on forms throughout the storefront for which invisible reCAPTCHA has been enabled. Previously, clicking this button multiple times resulted in an internal error similar to this: `Internal error: Make sure you are using reCaptcha V3 api keys`. + + + +* Saving a deleted customer from the Admin now generates an error message only. Previously, Magento displayed a blank page and generated a report that contains this string: `"0":"No such entity with customerId = 3","1":"#1 Magento\\Customer\\Model CustomerRegistry->retrieve() called at [app\/code\/Magento\/Customer\/Model\/ResourceModel\/CustomerRepository.php:340"`. + + + +* Magento now displays an error message as expected when an administrator tries to save an address for a customer whose account has just been deleted. Previously, Magento displayed a blank message box. + + + +* The labels for address fields in the checkout workflow and the address book have been edited for consistency. + + + +* Frontend labels now fall back to store labels if their values are not null. Previously, customer attributes used the default frontend labels. _Fix submitted by Toan Nguyen in pull request [27064](https://github.com/magento/magento2/pull/27064)_. [GitHub-27063](https://github.com/magento/magento2/issues/27063) + + + +* The `sortOrder`number of links in layout XML has been corrected. Previously, this order was reversed and used descending order. _Fix submitted by Tu Nguyen in pull request [27340](https://github.com/magento/magento2/pull/27340)_. [GitHub-27162](https://github.com/magento/magento2/issues/27162) + +### Directory + + + +* The format of the State/Province drop-down menu is now consistent across the Admin. + +### dotdigital + +* Order sync no long fails when an order contains product SKUs that no longer exist in the catalog. + +* Empty product categories are no longer included in web insight data. + +* Web behavior tracking now works for merchants with certain theme configurations. A new fallback selector addresses this. + +* The subscriber status data field no loner includes empty values when customer sync was run using cron. (App emulation addresses this issue.) + +* Address book mapping now works as expected when a dotdigital account is enabled at the default level but disabled for the main website. + +* Coupons are now generated (using the external dynamic content URL for coupon generation) for email addresses that contain plus ('+') signs. + +* Contacts are no longer resubscribed when their `last_subscribed_at` value is null. + +* Upgrade errors (dating from 4.5.2) that affected earlier Magento versions have been resolved. + +* A regression issue that was introduced in 4.5.3 that affected using a method to obtain the subscriber status when preparing subscriber export has been fixed. + +* The total figure for synced subscribers (presented in the logs and on screen) is now correctly calculated. + +### Downloadable + + + +* The My Downloadable Products area now displays links to purchased downloadable products that are part of a grouped product as expected. + + + +* Clicking on a downloadable product's **Sample** button from the Admin product page now downloads a sample as expected. Previously, when you clicked **Sample**, Magento displayed this error: `The product that was requested doesn't exist. Verify the product and try again`. + + + +* Shoppers can now download samples of downloadable products that are out-of-stock. Previously, when a shopper tried to download a sample, Magento opened a new tab, but did not display an informative message or begin the download process. _Fix submitted by Vadim Malesh in pull request [28898](https://github.com/magento/magento2/pull/28898)_. [GitHub-23638](https://github.com/magento/magento2/issues/23638) + + + +* The exception message that Magento displays when a shopper tries to set a shipping address for a downloadable product has been improved. _Fix submitted by Michał Derlatka in pull request [28904](https://github.com/magento/magento2/pull/28904)_. [GitHub-26107](https://github.com/magento/magento2/issues/26107) + + + +* A product’s `stock_item` data is updated and downloadable product links and samples are preserved as expected when you use a REST PUT call to update `stock_item` values. Previously, after the product update, the product no longer contained links to download content. _Fix submitted by Vadim Malesh in pull request [28799](https://github.com/magento/magento2/pull/28799)_. [GitHub-21811](https://github.com/magento/magento2/issues/21811) + + + +* Magento now displays a more informative message when a customer sets the shipping address for an order that contains only downloadable products. + +### Email + + + +* Magento now sends email notifications about order changes to the correct customer email if the customer email was changed after the order was created. + + + +* Order update emails that are sent to customers now include the correct order status. Previously, if an order status changed from `processing` to another state, the order email did not reflect the status change. + + + +* Magento no longer displays misleading messages about existing accounts during guest checkout. Previously, when a guest navigated to the checkout page, then navigated back to the shipping page, Magento displayed this error: `You already have an account with us. Sign in or continue as guest`. + + + +* Custom email templates now load the same elements as native default email templates. Previously, some elements were missing, including variable values. + + + +* Unnecessary CSS has been removed from the email Preview template. _Fix submitted by Tu Nguyen in pull request [27828](https://github.com/magento/magento2/pull/27828)_. [GitHub-27543](https://github.com/magento/magento2/issues/27543) + + + +* Text in the email template that duplicates text already displayed by the footer has been removed. _Fix submitted by Paweł Tylek in pull request [27356](https://github.com/magento/magento2/pull/27356)_. [GitHub-28433](https://github.com/magento/magento2/issues/28433) + + + +* Product alert emails are now sent from the store from which the alert is subscribed. Previously, this email was always sent from the default store. _Fix submitted by Maciej Pawłowski in pull request [26534](https://github.com/magento/magento2/pull/26534)_. [GitHub-28968](https://github.com/magento/magento2/issues/28968) + + + +* A duplicate `customer.name` variable has been removed from the email template. _Fix submitted by Paweł Tylek in pull request [29054](https://github.com/magento/magento2/pull/29054)_. [GitHub-29087](https://github.com/magento/magento2/issues/29087) + + + +* You can now create an email template that sends email with  `Content-Type: "text/plain”`. Previously, Magento ignored the content type specified in the template. _Fix submitted by twoonesixdigital in pull request [26474](https://github.com/magento/magento2/pull/26474)_. [GitHub-26471](https://github.com/magento/magento2/issues/26471) + +### Frameworks + + + +* The **Time of day to send data** field of the Admin **Stores** > **Configuration** > GENERAL > **Advanced Reporting** page is now rendered correctly. + + + +* Shoppers can now change the number of orders that are displayed per page when the Orders list spans multiple pages. Previously, Magento displayed the following message when the shopper navigated to the last page of orders and tried to change the number of orders displayed per page: `You have placed no orders`. This was a known issue for Magento 2.4.0. + + + +* You can now add products to a category when implementing Level 2 cache. + + + +* `X-Magento-Tags` headers no longer exceed the size permitted by the HTTP specification. Previously, category pages that contain many products returned an `X-Magento-Tag` header that resulted in a 503 error. + + + +* `sales_order_shipment_track_save_commit_after` is now triggered as expected when you used the REST API to create a shipment. + + + +* Magento now displays an informative error message when a `di compile` fails due to a nonexistent dependency. Previously, the message displayed did not identify the class in which the exception occurred. + + + +* Magento no longer throws the following fatal error when Redis uses all allowed memory: `report.CRITICAL: OOM command not allowed when used memory > 'maxmemory'.` + + + +* Shoppers can now add multiple products to their cart when the `Persistent` module is disabled. [GitHub-14486](https://github.com/magento/magento2/issues/14486) + +### General fixes + + + +* Sorting products on the Admin (**Stores** > **Attributes** > **Products**) now displays all products that meet your search criteria. Previously, Magento did not display records, and to sort the records, you had to navigate to the first page of search results. + + + +* Unnecessary quotation marks and escaping around a URL in `tracking.phtml` have been removed. + + + +* The `var/log/system.log` now displays a more accurate message when a user tries to access a non-existing resource file under the static directory and SCD OnDemand and production mode are enabled. Magento now logs a 404 error. Previously, Magento logged the same message that is logged when the error occurs in developer mode. + + + +* JavaScript minification now works correctly. The minification file resolver no longer leaks variables to global scope. Previously, `ctx`, `origNameToUrl`, and `baseUrl` variables under window were leaked. _Fix submitted by Mateusz Krzeszowiak in pull request [27622](https://github.com/magento/magento2/pull/27622)_. [GitHub-28110](https://github.com/magento/magento2/issues/28110) + + + +* When you debug an error that prevents object creation, Magento now prints as well as logs the original exception message. Previously, the message was only logged. _Fix submitted by Marvin Hinz in pull request [26572](https://github.com/magento/magento2/pull/26572)_. [GitHub-26550](https://github.com/magento/magento2/issues/26550) + + + +* Callback execution after database changes are committed has been improved. Previously, if one callback failed with an exception, all callbacks failed. _Fix submitted by Alok Patel in pull request [27134](https://github.com/magento/magento2/pull/27134)_. [GitHub-28167](https://github.com/magento/magento2/issues/28167) + + + +* Mixins for modules with no dependencies defined no longer throw this error: `TypeError: Cannot read property 'map' of null`. _Fix submitted by Mateusz Krzeszowiak in pull request [27690](https://github.com/magento/magento2/pull/27690)_. [GitHub-28340](https://github.com/magento/magento2/issues/28340) + + + +* Storage polyfill is now loaded and applied only when `localStorage` or `sessionStorage` are not available. _Fix submitted by Mateusz Krzeszowiak in pull request [27619](https://github.com/magento/magento2/pull/27619)_. [GitHub-28381](https://github.com/magento/magento2/issues/28381) + + + +* Multi-page storefront orders lists now behave as expected when a shopper changes the number of results displayed per page from the second or subsequent results page. Previously, Magento displayed this error when a shopper changed the number of search results displayed in the **My Account** > **My Orders** list: `You have placed no orders`. _Fix submitted by Vadim Malesh in pull request [28417](https://github.com/magento/magento2/pull/28417)_. [GitHub-28488](https://github.com/magento/magento2/issues/28488) + + + +* The deprecated `addWarning` method has been replaced with the `addWarningMessage` method in the Magento core security module. _Fix submitted by kishorekumarkesavan in pull request [28264](https://github.com/magento/magento2/pull/28264)_. [GitHub-28308](https://github.com/magento/magento2/issues/28308) + + + +* Code generated using the Magento command-line commands is now consistent with Magento requirements and coding standards. _Fix submitted by Lukasz Bajsarowicz in pull request [28351](https://github.com/magento/magento2/pull/28351)_. [GitHub-28376](https://github.com/magento/magento2/issues/28376) + + + +* Saving an attribute with `backend_type = static` no longer removes the content of the `frontend_class` field. _Fix submitted by jiten-patel in pull request [27369](https://github.com/magento/magento2/pull/27369)_. [GitHub-27051](https://github.com/magento/magento2/issues/27051) + + + +* Unnecessary code and `responsive.js` have been removed from files that are loaded by themes. _Fix submitted by Mateusz Krzeszowiak in pull request [27617](https://github.com/magento/magento2/pull/27617)_. [GitHub-28811](https://github.com/magento/magento2/issues/28811) + + + +* Validation has been added to the **Number of Symbols** field on the Admin CAPTCHA configuration page. _Fix submitted by Eden Duong in pull request [29199](https://github.com/magento/magento2/pull/29199)_. [GitHub-29198](https://github.com/magento/magento2/issues/29198) + + + +* The RSS feed now loads correctly. Previously, the feed did not load the first time, although it loaded as expected when the page was refreshed. _Fix submitted by Vadim Malesh in pull request [29455](https://github.com/magento/magento2/pull/29455)_. [GitHub-25211](https://github.com/magento/magento2/issues/25211) + + + +* An expired persistent session is now renewed as expected when the shopper logs back in. + + + +* Password lifetime as set in **Stores** > **Configuration** > **Advanced** > **Admin** is now honored. Previously, if you clicked **Forgot password?** when prompted to reset your password, you could bypass the password reset. + + + +* Coupon codes are now applied only to the specified product. Previously, Magento applied the coupon code to all products in the cart. [GitHub-28246](https://github.com/magento/magento2/issues/28246) + + + +* Cart expiry settings are no longer re-set when an inventory or price update occurs. Previously, when a cart was set to expire in 24 hours, and an inventory update or price update occurred, the indexers populated the `updated_at table`, which re-set the expiry time. + + + +* Magento no longer throws a fatal error when an administrator assigns a customer who has an active shopping cart to a customer group. + + + +* Selecting a toolbar option from **Developer tools** > **Network** on a product page when running the Chrome browser no longer initializes `toolbar.js` twice. _Fix submitted by Paweł Tylek in pull request [28838](https://github.com/magento/magento2/pull/28838)_. [GitHub-25934](https://github.com/magento/magento2/issues/25934) + + + +* Magento now adds an admin user’s ACL role ID to the product category tree cache ID. This will limit the category trees that an admin with limited scope can see as expected. _Fix submitted by quangdo-aligent in pull request [27429](https://github.com/magento/magento2/pull/27429)_. [GitHub-28306](https://github.com/magento/magento2/issues/28306) + +### GraphQL + + + +* Shoppers can select gift message options during checkout. GraphQL now covers gift message options for different types of cart items. See [`setGiftOptionsOnCart` mutation]({{page.baseurl}}/graphql/mutations/set-gift-options.html) and [`updateCartItems` mutation]({{page.baseurl}}/graphql/mutations/update-cart-items.html). _Fix submitted by Oleh Usik in pull requests [28519](https://github.com/magento/magento2/pull/28105), [27956](https://github.com/magento/magento2/pull/27956), [28072](https://github.com/magento/magento2/pull/28072), [28072](https://github.com/magento/magento2/pull/28072). [GitHub-28519](https://github.com/magento/magento2/issues/28519) + + + +* Customers and guests can write product reviews. Customers can also retrieve their product review histories. See [Create a product review]({{page.baseurl}}/graphql/mutations/create-product-review.html) and [productReviewRatingsMetadata query]({{page.baseurl}}/graphql/queries/product-review-ratings-metadata.html) for information on retrieving information about the reviews infrastructure. _Fix submitted by Eduard Chitoraga in pull request [27882](https://github.com/magento/magento2/pull/27882)_. [GitHub-28523](https://github.com/magento/magento2/issues/28523) + + + +* The [`addProductsToCart` mutation]({{page.baseurl}}/graphql/mutations/add-products-to-cart.html) allows you to add any type of product to the active cart. We recommend using this mutation instead of single-purpose mutations such as `addSimpleProductsToCart`. _Fix submitted by Yaroslav Rogoza in pull request [27914](https://github.com/magento/magento2/pull/27914)_. [GitHub-28524](https://github.com/magento/magento2/issues/28524) + + + +* The new `availableStores` query returns a list of configuration attributes for multiple stores available under the same website (based on the current store). It does not expose the list of websites. See [`availableStores` query]({{page.baseurl}}/graphql/queries/available-stores.html). _Fix submitted by Dmitriy Gallyamov in pull request [28794](https://github.com/magento/magento2/pull/28794)_. [GitHub-28569](https://github.com/magento/magento2/issues/28569) + + + +* GraphQL now uses only an authorization token to retrieve a type of user and its ID. Previously, GraphQL used an active customer's cookies to retrieve this information when the authorization token was empty. _Fix submitted by Alexander Taranovsky in pull request [27373](https://github.com/magento/magento2/pull/27373)_. [GitHub-28040](https://github.com/magento/magento2/issues/28040) + + + +* We have added the [`createCustomerV2`]({{page.baseurl}}/graphql/mutations/create-customer-v2.html) and [`updateCustomerV2`]({{page.baseurl}}/graphql/mutations/update-customer-v2.html) mutations to manage customer accounts. These new mutations require different input objects than the `createCustomer` and `updateCustomer` mutations. To change a customer's email address, use the new [`updateCustomerEmail`]({{page.baseurl}}/graphql/mutations/update-customer-email.html) mutation. _Fix submitted by Michał Derlatka in pull request [28888](https://github.com/magento/magento2/pull/28888)_. [GitHub-28570](https://github.com/magento/magento2/issues/28570) + + + +* The `updateCustomer` mutation no longer allows you to set an invalid `INT` value in the `gender` argument. _Fix submitted by Alexander Taranovsky in pull request [28487](https://github.com/magento/magento2/pull/28487)_. [GitHub-28481](https://github.com/magento/magento2/issues/28481) + + + +* You can use the `subscribeEmailToNewsletter` mutation to subscribe customers to a newsletter. See [`subscribeEmailToNewsletter` mutation]({{page.baseurl}}/graphql/mutations/subscribe-email-to-newsletter.html). _Fix submitted by Alexander Taranovsky in pull request [27586](https://github.com/magento/magento2/pull/27586)_. [GitHub-27337](https://github.com/magento/magento2/issues/27337) + + + +* Removed redundant logic in the `setShippingMethodsOnCart` mutation resolver. _Fix submitted by Alexander Taranovsky in pull request [27349](https://github.com/magento/magento2/pull/27349)_. [GitHub-28262](https://github.com/magento/magento2/issues/28262) + + + +* Added test coverage for the `Please provide Email of sender` error associated with the `sendEmailToFriend` mutation. _Fix submitted by Alexander Taranovsky in pull request [28034](https://github.com/magento/magento2/pull/28034)_. [GitHub-28138](https://github.com/magento/magento2/issues/28138) + + + +* The `products` query now returns product attribute option labels for the default store view as expected. Previously, this query returned the product attribute option labels that were set for the Admin. _Fix submitted by Dmitriy Gallyamov in pull request [28647](https://github.com/magento/magento2/pull/28647)_. [GitHub-28568](https://github.com/magento/magento2/issues/28568) + + + +* Custom attribute aggregations now return store-specific option values. _Fix submitted by Dmitriy Gallyamov in pull request [28647](https://github.com/magento/magento2/pull/28647)_. [GitHub-28572](https://github.com/magento/magento2/issues/28572) + + + +* Price intervals that are returned in a product aggregation can now be numeric only (no wildcards permitted). _Fix submitted by Dmitriy Gallyamov in pull request [28745](https://github.com/magento/magento2/pull/28745)_. [GitHub-28628](https://github.com/magento/magento2/issues/28628) + + + +* The `categoryList` query now returns the correct response when using fragments. _Fix submitted by Ulzii in pull request [28710](https://github.com/magento/magento2/pull/28710)_. [GitHub-28584](https://github.com/magento/magento2/issues/28584) + + + +* GraphQL product search now considers configured category permissions. Previously, product search ignored the **Enable** setting (**Stores** > **Configuration** > **Catalog** > **Catalog** > **Category Permissions**). _Fix submitted by Petkovski Marjan in pull request [28757](https://github.com/magento/magento2/pull/28757) and pull request 271 in private repo `partners-magento2ee`_. [GitHub-28563](https://github.com/magento/magento2/issues/28563 + + + +* You can now add a product to a cart using `addSimpleProductToCart` when other items in the cart are out-of-stock. Previously, Magento returned this error: `Some of the products are out of stock`. [GitHub-26683](https://github.com/magento/magento2/issues/26683) + +* The default GraphQL `Category` method now sorts by category position as expected. _Fix submitted by Derrik Nyomo in pull request [29301](https://github.com/magento/magento2/pull/29301)_. [GitHub-104](https://github.com/magento/catalog-storefront/issues/104) + +* Added support for wish lists in Magento Open Source. You can [add items]({{page.baseurl}}/graphql/mutations/add-products-to-wishlist.html) to, [update items]({{page.baseurl}}/graphql/mutations/update-products-in-wishlist.html) in, and [remove items]({{page.baseurl}}/graphql/mutations/remove-products-from-wishlist.html) from a wish list. _Fix submitted by Eduard Chitoraga in pull request [28205](https://github.com/magento/magento2/pull/28205)_. [GitHub-28551](https://github.com/magento/magento2/issues/28551) + +* We have added the [`createCustomerV2`]({{page.baseurl}}/graphql/mutations/create-customer-v2.html) and [`updateCustomerV2`]({{page.baseurl}}/graphql/mutations/update-customer-v2.html) mutations to manage customer accounts. These new mutations require different input objects than the `createCustomer` and `updateCustomer` mutations. To change a customer's email address, use the new [`updateCustomerEmail`]({{page.baseurl}}/graphql/mutations/update-customer-email.html) mutation. + +* Added GraphQL Vault support for the [Payflow Pro Vault]({{page.baseurl}}/graphql/payment-methods/payflow-pro-vault.html) payment method. _Fix submitted by Oleh Usik in pull request [28821](https://github.com/magento/magento2/pull/28821)_. [GitHub-28520](https://github.com/magento/magento2/issues/28520) + +* Updated the GraphQL [`storeConfig` query]({{page.baseurl}}/graphql/queries/store-config.html) to include new customer configuration settings. _Fix submitted by Oleh Usik in pull request [27876](https://github.com/magento/magento2/pull/27876)_. [GitHub-28521](https://github.com/magento/magento2/issues/28521) + +* Added the [`resetPassword` mutation]({{page.baseurl}}/graphql/mutations/reset-password.html). _Fix submitted by Oleh Usik in pull request [27876](https://github.com/magento/magento2/pull/27876)_. [GitHub-28521](https://github.com/magento/magento2/issues/28521) + +* Added the [`resetPassword` mutation]({{page.baseurl}}/graphql/mutations/reset-password.html). _Fix submitted by Oleh Usik in pull request [27876](https://github.com/magento/magento2/pull/27876)_. [GitHub-28521](https://github.com/magento/magento2/issues/28521) + +* Added the [`requestPasswordResetEmail` mutation]({{page.baseurl}}/graphql/mutations/request-password-reset-email.html), which triggers the password reset email for the provided email address. _Fix submitted by Oleh Usik in pull request [27876](https://github.com/magento/magento2/pull/27876)_. [GitHub-28521](https://github.com/magento/magento2/issues/28521) + +* Added or updated topics on Klarna GraphQL in [Klarna's payment method]({{page.baseurl}}/graphql/payment-methods/klarna.html) and[`createKlarnaPaymentsSession`]({{page.baseurl}}/graphql/mutations/create-klarna-payments-session.html) + +### Images + + + +* HTML markup for thumbnail images has been improved. _Fix submitted by Tu Nguyen in pull request [28642](https://github.com/magento/magento2/pull/28642)_. [GitHub-29468](https://github.com/magento/magento2/issues/29468) + +### Import/export + + + +* The `error_report.csv` file now downloads with content and is available inside the `var/import_history/` directory as expected. Previously, this file was not generated after import. + + + +* Importing a product by using a CSV file now generates an `error_report.csv` file as expected. Previously, Magento generated the file but removed it after the import completed. _Fix submitted by Vadim Malesh in pull request [28460](https://github.com/magento/magento2/pull/28460)_. [GitHub-28420](https://github.com/magento/magento2/issues/28420) + + + +* Removed redundant class imports throughout the code base. _Fix submitted by Oleh Usik in pull request [28696](https://github.com/magento/magento2/pull/28696)_. [GitHub-29012](https://github.com/magento/magento2/issues/29012) + + + +* Magento now successfully imports customer addresses that contain a region for a country that does not have defined regions. Previously, Magento threw this error: `Please enter a valid region`. + + + +* Magento now loads the correct entity attribute set when a merchant selects an entity type when scheduling a new export. + + + +* The position of products in the `catalog_category_product` table now updates as expected when an administrator creates a product in the Admin and assigns it to a category. Previously, the position of new products was always assigned a 0 value. + + + +* Customer data is now successfully exported from the Admin, and the export data grid displays customer data as expected. Previously, an error related to memory allocation occurred during export. + + + +* Imported CSV files now capture related product information as expected. Previously, related product information was not consistently uploaded the first time the CSV file was imported. + + + +* Removed unused construct parameters in `AdvancedPricing.php`. [GitHub-29531](https://github.com/magento/magento2/issues/29531) + +### Index + + + +* `Magento_CacheInvalidate` now handles large tag patterns correctly when doing a `PURGE`. `sendPurgeRequest` has been refactored to handle an array of tags instead of requiring the caller to use `implode()`. _Fix submitted by Matthew O'Loughlin in pull request [26256](https://github.com/magento/magento2/pull/26256)_. [GitHub-26255](https://github.com/magento/magento2/issues/26255) + + + +* Shared indexers now show a status of **valid** after you run `bin/magento indexer:status` after re-indexing. Previously, shared indexers had an **invalid** status after a full re-index. + +### Infrastructure + + + +* Problems loading catalog and product pages on deployments running PHP 7.4.9 no longer occur. Previously, Magento threw this error when you tried to load the catalog and product pages: `There has been an error processing your request. Exception printing is disabled by default for security reasons`. [GitHub-29502](https://github.com/magento/magento2/issues/29502) + + + +* All exceptions that occur when layouts are rendered in production mode are now logged in the exception log file (`var/report`). Previously, Magento logged these messages in the system log as critical issues. + + + +* Regular expressions now work properly for large pages as the result of an increase in `ipcre.backtrack_limi`t and `pcre.recursion_limit` to approximately 1000000. _Fix submitted by Mateusz Krzeszowiak in pull request [27270](https://github.com/magento/magento2/pull/27270)_. [GitHub-26026](https://github.com/magento/magento2/issues/26026) + + + +* Interceptor generation has been improved. `} else {` statements have been removed from interceptors, and `array_map` has replaced `foreach`. _Fix submitted by Lukasz Bajsarowicz in pull request [27902](https://github.com/magento/magento2/pull/27902)_. [GitHub-28383](https://github.com/magento/magento2/issues/28383) + + + +* Array creation is now consistent throughout the class (`app/code/Magento/Sales/Model/Order/Pdf/Items/Invoice/DefaultInvoice.php`). _Fix submitted by Nathan de Graaf in pull request [28515](https://github.com/magento/magento2/pull/28515)_. [GitHub-28795](https://github.com/magento/magento2/issues/28795) + + + +* Plugins have been migrated out of the Magento Framework to follow the Magento best practice of prohibiting plugins in the Framework namespace. _Fix submitted by Lukasz Bajsarowicz in pull request [27965](https://github.com/magento/magento2/pull/27965)_. [GitHub-27962](https://github.com/magento/magento2/issues/27962) + + + +* You can now use the new `UrlFilterApplier` component to apply filters on product,`cms_page`, and `cms_block` grids using the GET URL parameter. _Fix submitted by Gabriel da Gama in pull request [28932](https://github.com/magento/magento2/pull/28932)_. [GitHub-1501](https://github.com/magento/adobe-stock-integration/issues/1501) + + + +* Magento no longer throws an `Undefined class constant` error when an interceptor is generated. _Fix submitted by Vova Yatsyuk in pull request [28797](https://github.com/magento/magento2/pull/28797)_. [GitHub-28981](https://github.com/magento/magento2/issues/28981) + + + +* Form data now persists when Magento throws an integration exception when you save a integration using a name that is already in use. _Fix submitted by Aditya Yadav in pull request [26660](https://github.com/magento/magento2/pull/26660)_. [GitHub-28143](https://github.com/magento/magento2/issues/28143) + + + +* Magento no longer truncates `X-Forwarded-For` headers to 32 characters. _Fix submitted by Ihor Sviziev in pull request [27221](https://github.com/magento/magento2/pull/27221)_. [GitHub-28693](https://github.com/magento/magento2/issues/28693) + + + +* The logic that checks if a redirect is internal now works correctly in the Admin when using a custom Admin domain. Previously, problems with this logic resulted in many Admin redirects to the homepage of the default store. _Fix submitted by Vadim Malesh in pull request [29066](https://github.com/magento/magento2/pull/29066)_. [GitHub-28943](https://github.com/magento/magento2/issues/28943) + + + +* Problems with the `styles-old.less` file have been eliminated, and linting no longer identifies errors. _Fix submitted by Tu Nguyen in pull request [28895](https://github.com/magento/magento2/pull/28895)_. [GitHub-24004](https://github.com/magento/magento2/issues/24004) + + + +* `NonComposerComponentRegistration.php` has been refactored. _Fix submitted by Vitaliy Ryaboy in pull request [28975](https://github.com/magento/magento2/pull/28975)_. [GitHub-29308](https://github.com/magento/magento2/issues/29308) + + + +* `ResourceConnection.php` has been refactored to improve class readability. _Fix submitted by Lukasz Bajsarowicz in pull request [29341](https://github.com/magento/magento2/pull/29341)_. [GitHub-29389](https://github.com/magento/magento2/issues/29389) + + + +* The README file for the build-in web server has been updated to include all Elasticsearch parameters. _Fix submitted by Yevhenii Dumskyi in pull request [29300](https://github.com/magento/magento2/pull/29300)_. [GitHub-29299](https://github.com/magento/magento2/issues/29299) + + + +* The `Magento\CmsUrlRewrite\Plugin\Cms\Model\Store\View::aftersSave` plugin now returns a value as expected. Previously, this plugin did not return a value, and as a result, saving a store view resulted in an error. _Fix submitted by Pieter Hoste in pull request [29035](https://github.com/magento/magento2/pull/29035)_. [GitHub-29034](https://github.com/magento/magento2/issues/29034) + + + +* Added the following support for magic methods for `DataObject`: + + * new extension to support `get/set/has/uns` magic methods (with usage of `__call`) + * support for SessionManager, which forwards all calls to the DataObject container + * test coverage for extensions + * updated tests for Filtered Error check + * increased PHPStan check level from 0 to 1. _Fix submitted by Oleksandr Kravchuk in pull request [27905](https://github.com/magento/magento2/pull/27905)_. [GitHub-28303](https://github.com/magento/magento2/issues/28303) + + + +* `ScopeConfigInterface` can now be more than a string. The restriction of `magentoConfigFixture` to string only was the inadvertent result of a previous pull request and has been reverted. _Fix submitted by Kristof, Fooman in pull request [29305](https://github.com/magento/magento2/pull/29305)_. [GitHub-29345](https://github.com/magento/magento2/issues/29345) + + + +* The `convertConfigTimeToUtc` method no longer throws a fatal error due to sending incorrect parameters to the `Phrase` constructor. _Fix submitted by Kos Rafał in pull request [29483](https://github.com/magento/magento2/pull/29483)_. [GitHub-29525](https://github.com/magento/magento2/issues/29525) + + + +* Price filters now work as expected on grid data when `Magento\Backend\Block\Widget\Grid\Column\Filter\Price::getCondition` and `Magento\Backend\Block\Widget\Grid\Column\Filter\Price::getValue()` return an array with indexes that contain `from` or `to` string data. Previously, Magento threw this error: `Notice: A non well formed numeric value encountered in vendor/magento/module-backend/Block/Widget/Grid/Column/Filter/Price.php on line 197`. _Fix submitted by Nikita Sarychev in pull request [29214](https://github.com/magento/magento2/pull/29214)_. [GitHub-29213](https://github.com/magento/magento2/issues/29213) + + + +* Added an extension point to support adding HTML to the category page. This corrects a bug that was introduced by a previous pull request. _Fix submitted by iGerchak in pull request [29291](https://github.com/magento/magento2/pull/29291)_. [GitHub-29286](https://github.com/magento/magento2/issues/29286) + +### Layered navigation + + + +* The layered navigation sidebar now shows Boolean attributes with both options (**yes**/**no**) and matching product counts. Previously, layered navigation did not return a **no** option for Boolean attributes in deployments using Elasticsearch. + + + +* The swatch layered navigation filter is now consistent with standard filters used throughout Magento. _Fix submitted by Bartłomiej Szubert in pull request [28015](https://github.com/magento/magento2/pull/28015)_. [GitHub-28011](https://github.com/magento/magento2/issues/28011) + +### Logging + + + +* All broken reference errors are now logged when deployments are in developer mode only. Previously, one error was logged for deployments in production mode, too, which bloated error logs. _Fix submitted by Bartłomiej Szubert in pull request [28735](https://github.com/magento/magento2/pull/28735)_. [GitHub-26504](https://github.com/magento/magento2/issues/26504) + +### Media Gallery + + + +* The Media Gallery configuration UI (Admin **Stores** > **Configuration** > **Advanced** > **System** ) has been reorganized. _Fix submitted by Shankar Konar in pull request [29433](https://github.com/magento/magento2/pull/29433)_. [GitHub-28011](https://github.com/magento/adobe-stock-integration/issues/1738) + + + +* Added tests to cover the **Used In** links for an image in the Media gallery. _Fix submitted by Nazar Klovanych in pull request [29392](https://github.com/magento/magento2/pull/29392)_. [GitHub-1969](https://github.com/magento/adobe-stock-integration/issues/1693) + +### MFTF + + + +* The `AdminSubmitAdvancedInventoryFormActionGroup` , `AdminClickOnAdvancedInventoryLinkActionGroup`, and  `AdminSetStockStatusConfigActionGroup` action groups are now used within tests according to best practice. _Fix submitted by Oleh USIA in pull request [29386](https://github.com/magento/magento2/pull/29386)_. [GitHub-29420](https://github.com/magento/magento2/issues/29420) + + + +* `SearchProductGridByKeywordActionGroup` is now used for search in the product grid. _Fix submitted by Oleh Usik in pull request [29385](https://github.com/magento/magento2/pull/29385)_. [GitHub-29434](https://github.com/magento/magento2/issues/29434) + + + +* `AdminCategoriesClickDoneButtonOnPopupActionGroup` is now used to click **Done** on the Search Categories popup. _Fix submitted by Oleh Usik in pull request [28989](https://github.com/magento/magento2/pull/28989)_. [GitHub-29380](https://github.com/magento/magento2/issues/29380) + + + +* `LoginToStorefrontActionGroup` is now used to replace a sequence of actions that is used for store front customer login. _Fix submitted by Sathish Subramanian in pull request [28113](https://github.com/magento/magento2/pull/28113)_. [GitHub-28165](https://github.com/magento/magento2/issues/28165) + + + +* `AdminUpdateCustomURLRewritesPermanentTest` has been refactored to meet MFTF best practices. _Fix submitted by Kate Kyzyma in pull request [28361](https://github.com/magento/magento2/pull/28361)_. [GitHub-28393](https://github.com/magento/magento2/issues/28393) + + + +* Test names have been changed to meet MFTF conventions. _Fix submitted by Evgeny Levinsky in pull request [27839](https://github.com/magento/magento2/pull/27839)_. [GitHub-28305](https://github.com/magento/magento2/issues/28305) + +#### New action groups + + + +* `StorefrontCheckoutClickNextButtonActionGroup` _Fix submitted by Oleh Usik in pull request [29472](https://github.com/magento/magento2/pull/29472)_. [GitHub-29539](https://github.com/magento/magento2/issues/29539) + + + +* `AdminProductFormSaveActionGroup`_Fix submitted by Oleh Usik in pull request [29142](https://github.com/magento/magento2/pull/29142)_. [GitHub-29292](https://github.com/magento/magento2/issues/29292) + + + +* `AdminSaveCategoryActionGroup` _Fix submitted by Oleh Usik in pull request [28993](https://github.com/magento/magento2/pull/28993)_. [GitHub-29388](https://github.com/magento/magento2/issues/29388) + + + +* `AdminProductGridSectionClickFirstRowActionGroup` _Fix submitted by Oleh Usik in pull request [29000](https://github.com/magento/magento2/pull/29000)_. [GitHub-29295](https://github.com/magento/magento2/issues/29295) + + + +* `AdminProductFormCategoryExistInCategoryListActionGroup` and `AdminProductFormCategoryNotExistInCategoryListActionGroup` _Fix submitted by Alexander Steshuk in pull request [28287](https://github.com/magento/magento2/pull/28287)_. [GitHub-28392](https://github.com/magento/magento2/issues/28392) + + + +* `AdminExpandCategoryTreeActionGroup` _Fix submitted by Oleh Usik in pull request [29133](https://github.com/magento/magento2/pull/29133)_. [GitHub-29289](https://github.com/magento/magento2/issues/29289) + + + +* `AdminTaxRateGridOpenPageActionGroup` _Fix submitted by Oleh Usik in pull request [29007](https://github.com/magento/magento2/pull/29007)_. [GitHub-29281](https://github.com/magento/magento2/issues/29281) + + + +* `AdminNavigateNewCustomerActionGroup` _Fix submitted by Oleh Usik in pull request [29134](https://github.com/magento/magento2/pull/29134)_. [GitHub-29287](https://github.com/magento/magento2/issues/29287) + +#### New tests + + + +* Added test for deleting a CMS page as an Admin user. _Fix submitted by Dmitry Tsymbal in pull request [28112](https://github.com/magento/magento2/pull/28112)_. [GitHub-28202](https://github.com/magento/magento2/issues/28202) + +* Added the `StorefrontShareCustomerWishlistActionGroup` test for customer wish list sharing with invalid email addresses. The existing test for wish list sharing (`StorefrontShareWishlistEntityTest`) has been refactored. `StorefrontCustomerShareWishlistActionGroup` has been deprecated. + + + +* Added a test to check for the implementation of the **Only X left Threshold** configuration setting. _Fix submitted by Oleh Usik in pull request [27549](https://github.com/magento/magento2/pull/27549)_. [GitHub-28755](https://github.com/magento/magento2/issues/28755) + +### Newsletter + + + +* Exporting the Newsletter Subscribers list using the `EXCEL XML` option now results in the export of all rows as expected. Previously, exported data included only the page pagination value, not all rows. + + + +* Newsletter subscription emails now use the same HTML tags as other newsletter-related emails. _Fix submitted by Paweł Tylek in pull request [27357](https://github.com/magento/magento2/pull/27357)_. [GitHub-28165](https://github.com/magento/magento2/issues/28165) + + + +* Added a test for deleting a newsletter subscriber as an Admin user. _Fix submitted by Dmitry Tsymbal in pull request [28972](https://github.com/magento/magento2/pull/28972)_. [GitHub-29032](https://github.com/magento/magento2/issues/29032) + + + +* Added tests for newsletter subscription for guests with a disallowed option in config statements. This test replaces deprecated `VerifyRegistredLinkDisplayedForGuestSubscriptionNoTest` and `StorefrontCreateNewSubscriberActionGroup`. _Fix submitted by Dmitry Tsymbal in pull request [28872](https://github.com/magento/magento2/pull/28872)_. [GitHub-29039](https://github.com/magento/magento2/issues/29039) + +### Orders + + + +* The `GetAssetIdByContentFieldInterface` and its implementation on `MediaContent` modules now permits Adobe Stock Integration to extend `MediaGallery` filter functionality. _Fix submitted by Gabriel da Gama in pull request [29058](https://github.com/magento/magento2/pull/29058)_. [GitHub-1464](https://github.com/magento/magento2/issues/1464) + + + +* The `CustomerAddressId` values for a newly created customer are now validated in quotes. _Fix submitted by Andrii Kalinich in pull request [29139](https://github.com/magento/magento2/pull/29139)_. [GitHub-28793](https://github.com/magento/magento2/issues/28793) + + + +* The order status for a credit memo with zero total is now `Closed`. Previously, Magento reported its order status as `Complete`. _Fix submitted by Andrii Kalinich in pull request [29023](https://github.com/magento/magento2/pull/29023)_. [GitHub-22762](https://github.com/magento/magento2/issues/22762) + +### Payment methods + + + +* Magento now displays a message that prompts you to enter mandatory credit card data when you click **Submit** for an Admin order without entering valid payment information. Previously, the Braintree card validator did not throw an error when payment input fields were invalid and the page became inactive. + + + +* You can now change the shipping method for an order you create from the Admin for a customer whose account has a stored credit card (Braintree). Previously, when you selected a different shipping method, the stored card was not selected, and Magento did not place the order. + +#### PayPal + + + +* The Order Review page of the checkout workflow now displays the correct shipping amount for PayPal through Braintree orders for which the shipping method has been changed during checkout. Previously, when a customer changed the shipping method on the PayPal Order Review page of the checkout workflow, Magento did not update the order total with the correct method. + + + +* Merchants can now successfully cancel orders that were authorized using PayPal. Previously, Magento did not cancel the order and displayed this error: `Declined: 10601-Authorization has expired`. + + + +* Magento no longer empties your cart when you cancel an order by closing the PayPal payment popup window after first completing another order. + +### Performance + +* Three new configuration settings support a decrease in consumer queue CPU consumption. These optional parameters provide increased control over consumers and save server resources. See [Configure message queues]({{page.baseurl}}/extension-dev-guide/message-queues/config-mq.html) for a description of the `maxIdleTime`, `sleep`, and `onlySpawnWhenMessageAvailable` parameters. + + + +* Plugin list configuration is now generated during the execution of the `di:compile` command. This configuration information is written to generated metadata folders based on scope. Previously, this information was stored in cache. Resulting performance improvements include: + + * Network cache size has decreased + * Execution time for many scenarios has been improved. + + + +* Magento now loads the appropriate slider widget on demand, which has improved page loading. The touch slider widget customization has been moved to a separate file so it can be loaded only on compatible devices. The appropriate slider widget type is now loaded only when range binding is actually used on the page. _Fix submitted by Mateusz Krzeszowiak in pull request [27616](https://github.com/magento/magento2/pull/27616)_. [GitHub-28807](https://github.com/magento/magento2/issues/28807) + + + +* The performance of checkout with multiple simultaneous orders has been improved. + + + +* Deadlocks no longer occur when the import process executes a bulk insert and the re-index process simultaneously executes a large insert from select. Previously, Magento displayed this error: `PDOException: SQLSTATE[40001]: Serialization failure: 1213 Deadlock found when trying to get lock`. [GitHub-8933](https://github.com/magento/magento2/issues/8933) + +### Reviews + + + +* A unique key for `entity_pk_value-entity_type-store_id` has been added to the `review_entity_summary` table, which prevents the creation of duplicate rows for the same product ID (`entity_pk_value`). Previously, this lack of unique key resulted in duplicate rows for the same product ID and SQL errors. + +### Sales + + + +* Magento no longer assigns a status of `Complete` after invoicing an order that requires zero payment. + + + +* The New Shipment email generated by the REST API now contains the same shipping and customer information as shipments that are created manually from the Admin. Previously, this email did not contain the customer name, tracking information, products ordered, and other order information. + + + +* Guest user names are now visible as expected in invoice- and shipment-related emails when the emails are loaded or customized from the Admin. + + + +* The PDF invoice is now translated into the language of the store view where the order has been placed. Previously, the PDF invoice was translated in the language of the Admin. + + + +* You can now issue a refund as expected from the credit memo page. [GitHub-29014](https://github.com/magento/magento2/issues/29014) + + + +* Localised region names that are displayed on the storefront Order page are now correctly translated. Previously, the region name was not based on the specified locale unless it was edited in the Admin. + + + +* Shipments created through the POST `/rest/V1/shipment` endpoint now update orders properly. Previously, Magento created a shipment, but shipment status remained in the processing state. + + + +* Credit memos now display the payment method that is derived from the scope of the store in which the order was made. Previously, credit memos displayed the name as defined the default store scope. _Fix submitted by Ledian Hymetllari in pull request [27582](https://github.com/magento/magento2/pull/27582)_. [GitHub-27570](https://github.com/magento/magento2/issues/27570) + +### Search + + + +* You can now search for products by attribute from the Admin Customer view using QuickSearch. Previously, an exception occurred on the catalog search result page. + + + +* Magento now displays configurable products on the category page as expected after you add a product attribute. + + + +* Elasticsearch results now include the correct values for each store view’s attribute options. If a `Dropdown` or `Multiple Select` attribute has a different option value in the non-default store view than in the default store view, Elasticsearch now indexes that value or returns the product with that value in the results. Previously, Elasticsearch did not index that value or return the product with that value in the results. + + + +* Searching by SKU now works as expected in advanced search with Elasticsearch. Previously, when you tried to search by SKU, Magento displayed this error message: `We can't find any items matching these search criteria. Modify your search`. + + + +* Advanced search no longer lets shoppers filter on negative prices. _Fix submitted by Rohan Hapani in pull request [27359](https://github.com/magento/magento2/pull/27359)_. [GitHub-27358](https://github.com/magento/magento2/issues/27358) + + + +* Scope values are now reset as expected on the New Synonym Group form. _Fix submitted by Sathish Subramanian in pull request [29206](https://github.com/magento/magento2/pull/29206)_. [GitHub-28947](https://github.com/magento/magento2/issues/28947) + +### Shipping + + + +* Magento now calculates shipping table rates correctly after upgrade. Previously, shipping table rates were calculated based on net price, which excluded VAT. + + + +* Magento now displays shipping rates in the correct currency in the checkout workflow for orders specifying FedEx as the shipping method. + + + +* Multi-page PDFs of shipping labels for orders shipped by UPS now display the correct count. + + + +* Problems with the JavaScript components of the Create Packages page have been resolved. Previously, Magento did not display the **Create Shipping Label** checkbox on this page, and you could not create a shipping label for an existing order. + +### Sitemap + + + +* The sitemap in `robots.txt` is now store-specific. _Fix submitted by Vadim Malesh in pull request [29331](https://github.com/magento/magento2/pull/29331)_. [GitHub-28901](https://github.com/magento/magento2/issues/28901) + + + +* Encoded values are now correctly escaped in the `sitemap.xml` file. Previously, when you included encoded characters in a product name or image title, the generated sitemap was invalid. + +### Store + + + +* Deleting a previously created store view no longer results in an error in deployments with a split database configuration. Previously, Magento threw an exception. + + + +* You can now export `config.php` and default website code from one website to install and configure Magento on a second website in a multi website deployment. Previously, the default store and view disappeared after the export, and errors occurred on the storefront. + +### Swagger + + + +* You can now generate a customer token with Swagger. Previously, Swagger did not generate a response code when valid customer access information was entered, and Magento displayed this error: `The account sign-in was incorrect or your account is disabled temporarily. Please wait and try again later`. _Fix submitted by Vadim Malesh in pull request [28822](https://github.com/magento/magento2/pull/28822)_. [GitHub-27098](https://github.com/magento/magento2/issues/27098) + +### Swatches + + + +* Configurable products with swatches now show tier pricing when a shopper clicks **Edit** in the cart. Previously, Magento did not display tier prices in the cart before checkout. _Fix submitted by Sathish Subramanian in pull request [29137](https://github.com/magento/magento2/pull/29137)_. [GitHub-28270](https://github.com/magento/magento2/issues/28270) + + + +* Magento now displays tier prices as expected for configurable product variations. + +### Tax + + + +* Magento no longer displays a fixed product tax attribute on the storefront for a product after a merchant has unassigned it from the product’s attribute set. + +### Test + + + +* PHPUnit 9 errors have been fixed in unit tests. _Fix submitted by Anton Evers in pull request [29244](https://github.com/magento/magento2/pull/29244)_. [GitHub-29329](https://github.com/magento/magento2/issues/29329) + + + +* Added unit tests for approving a purchase order that was made with a discount that has since expired will place an order at full amount and not update the purchase order total. _Fix submitted by Joan He in pull request [18](https://github.com/magento/partners-magento2-infrastructure/pull/18)_. [GitHub-204](https://github.com/magento/partners-magento2b2b/issues/204) + + + +* `SynchronizeFilesInterface` is now covered by integration tests. _Fix submitted by jmonteros422 in pull request [29493](https://github.com/magento/magento2/pull/29493)_. [GitHub-1742](https://github.com/magento/magento2/issues/1742) + + + +* A function has been added to `\Magento\TestFramework\TestCase\WebapiAbstract` that enables the comparison of large nested arrays of expected and actual outcomes in tests and permits testers to ignore irrelevant keys in the actual outcome. _Fix submitted by Jekabs in pull request [29458](https://github.com/magento/magento2/pull/29458)_. [GitHub-29498](https://github.com/magento/magento2/issues/29498) + + + +* Corrected the inversion of expected value with actual value in `app/code/Magento/Newsletter/Test/Unit/Model/SubscriptionManagerTest.php`. _Fix submitted by Lukasz Bajsarowicz in pull request [29271](https://github.com/magento/magento2/pull/29271)_. [GitHub-29283](https://github.com/magento/magento2/issues/29283) + + + +* Issues with the serialization and unserialization of static properties when running consecutive tests have been resolved. _Fix submitted by Pavel Bystritsky in pull request [26175](https://github.com/magento/magento2/pull/26175)_. [GitHub-28319](https://github.com/magento/magento2/issues/28319), [GitHub-29313](https://github.com/magento/magento2/issues/29313) + + + +* Using `ObjectManager` for instantiating classes during test has been replaced with the new keyword in unit tests. _Fix submitted by Lukasz Bajsarowicz in pull request [29272](https://github.com/magento/magento2/pull/29272)_. [GitHub-29346](https://github.com/magento/magento2/issues/29346) + + + +* Test coverage has been added for these cases of the `updateCustomer` mutation: invalid date of birth, invalid email address, and empty customer last name. _Fix submitted by Alexander Taranovsky in pull request [28304](https://github.com/magento/magento2/pull/28304)_. [GitHub-28394](https://github.com/magento/magento2/issues/28394 + + + +* The `ApiFunctional TestFramework` GraphQL client now parses headers correctly. [GitHub-26425](https://github.com/magento/magento2/issues/26425) + +### Theme + + + +* Themes that are added in User Agent Rules are now affected as expected when you run `bin/magento catalog:images:resize`. Previously, only themes that were assigned to stores were affected when `bin/magento catalog:images:resize` was run. + +### Translation and locales + + + +* Magento no longer throws an error when an administrator changes the **Date** field during Admin product creation or save when the Admin locale is Chinese or Japanese. [GitHub-24696](https://github.com/magento/magento2/issues/24696) + + + +* Magento now checks area (frontend or `adminhtml`) before rendering inline translation markup. Previously, making an API call to `POST /V1/integration/admin/token` with bad credentials while inline translation was enabled results in the inclusion of inline translation markup around the error message in the API response. _Fix submitted by Zach Nanninga in pull request [28856](https://github.com/magento/magento2/pull/28856)_. [GitHub-28656](https://github.com/magento/magento2/issues/28656) + + + +* Bulgarian regions have been added to the `directory_country_region` table. _Fix submitted by Nikola Lardev in pull request [27957](https://github.com/magento/magento2/pull/27957)_. [GitHub-28215](https://github.com/magento/magento2/issues/28215) + + + +* The titles and buttons on the Admin **Customers** > **Add New Address** and **Edit Product** > **Advanced Inventory** modals can now be translated. _Fix submitted by Sathish Subramanian in pull request [28174](https://github.com/magento/magento2/pull/28174)_. [GitHub-28201](https://github.com/magento/magento2/issues/28201) + + + +* The term FPT can now be translated on Admin **Stores** > **Configuration** > **Sales** > **Tax** > **Fixed Product Taxes**. _Fix submitted by Vadim Malesh in pull request [28108](https://github.com/magento/magento2/pull/28108)_. [GitHub-5477](https://github.com/magento/magento2/issues/5477) + + + +* The **Ship here** button label on the checkout workflow shipping address modal has been changed to match the camel case used for other buttons. This case now matches the case that is used in the translation files. Previously, because of the mismatch in case, this label was not translated. _Fix submitted by WK in pull request [28547](https://github.com/magento/magento2/pull/28547)_. [GitHub-28685](https://github.com/magento/magento2/issues/28685) + +### UI + + + +* The privacy and cookie policy link in the page footer is now displayed as an active link when the Privacy and Cookie Policy page is displayed. _Fix submitted by Sathish Subramanian in pull request [28004](https://github.com/magento/magento2/pull/28004)_. [GitHub-27985](https://github.com/magento/magento2/issues/27985) + + + +* Fixed misalignment of the cursor in the Invoice Comments text area of the invoice associated with an order you have selected from Admin **Sales** > **Orders**. + + + +* The Create New Order page now displays **Add Products By SKU** and **Add Products** buttons as expected. + + + +* Magento now displays the Edit Review page properly when a product rating is available for the selected product. + + + +* Magento now correctly displays the Admin customer edit page on an iPhone running Safari. + + + +* Corrected unnecessary scrolling on the Create New Order page. + + + +* Directly clicking on the **Export Tax Rates** button of the Add New Tax Rule page (**Stores** > **Tax Rules**) now downloads the `tax_rates.csv` file as expected. Previously, merchants had to click on the edge of the **Export Tax Rates** button. This was a known issue in Magento 2.4.0. + + + +* The **Add selections to my cart** button on the bottom of the shopping cart now works as expected. This was a known issue in Magento 2.4.0. + + + +* The **Refresh** button of the **Recently Viewed Products** section of the Customer's Activities page now works as expected. Previously, when you clicked **Refresh**, the product list was not refreshed, and the page scrolled. + + + +* Magento now correctly displays the calendar icon used for selecting a customer’s date of birth on the Conditions tab of **Customers** > **Segments** > **Add Segment**. + + + +* The checkout summary section of the checkout workflow no longer flickers when a shopper scrolls through this page on Internet Explorer 11.x. + + + +* Magento now correctly displays the Order by SKU widget on the storefront Category page. Previously, the HTML code for this widget was not rendered, and Magento did not display the **Load a list of SKUs** link. + + + +* UI components that have been disabled using `this.disabled(true)` no longer appear on the storefront. [GitHub-29098](https://github.com/magento/magento2/issues/29098) + + + +* Magento now displays the recently viewed products widget properly in mobile view. _Fix submitted by Tu Nguyen in pull request [27572](https://github.com/magento/magento2/pull/27572)_. [GitHub-27058](https://github.com/magento/magento2/issues/27058) + + + +* Changing the position of a product from the Admin is now reflected in the product position on the storefront. _Fix submitted by Oleg Aleksin in pull request [28150](https://github.com/magento/magento2/pull/28150)_. [GitHub-28149](https://github.com/magento/magento2/issues/28149) + + + +* The login form style are now consistent with the style on other forms in the Blank theme. Unnecessary styles that set the width for container control wrap input fields have been removed. _Fix submitted by Tu Nguyen in pull request [28084](https://github.com/magento/magento2/pull/28084)_. [GitHub-28059](https://github.com/magento/magento2/issues/28059) + + + +* The **OK** button on the mini cart delete product confirmation pop-up now behaves as expected. _Fix submitted by Tu Nguyen in pull request [28083](https://github.com/magento/magento2/pull/28083)_. [GitHub-27095](https://github.com/magento/magento2/issues/27095) + + + +* Product gallery elements no longer blink during page load. _Fix submitted by Mateusz Krzeszowiak in pull request [27871](https://github.com/magento/magento2/pull/27871)_. [GitHub-28339](https://github.com/magento/magento2/issues/28339) + + + +* The CSS class that controls field width is now applied as expected for the Start Time element throughout the Admin. _Fix submitted by Shankar Konar in pull request [29511](https://github.com/magento/magento2/pull/29511)_. [GitHub-29496](https://github.com/magento/magento2/issues/29496) + + + +* The Terms and Conditions text label can now display longer text strings properly. _Fix submitted by Bartłomiej Szubert in pull request [29413](https://github.com/magento/magento2/pull/29413)_. [GitHub-24060](https://github.com/magento/magento2/issues/24060) + + + +* The title of the order failure page has been rewritten for accuracy. Previously, when a shopper canceled an order, Magento displayed a page with this title: `We received your order!`. _Fix submitted by Angelo Romano in pull request [29410](https://github.com/magento/magento2/pull/29410)_. [GitHub-29416](https://github.com/magento/magento2/issues/29416) + + + +* The total number of canceled items on the canceled order view page is now correctly identified on the canceled order view page. Previously, this field was labeled **Total Due**. _Fix submitted by Madhu Rajawat in pull request [27516](https://github.com/magento/magento2/pull/27516)_. [GitHub-26191](https://github.com/magento/magento2/issues/26191) + + + +* The toggle button on the create configurable product page now works as expected. _Fix submitted by Tu Nguyen in pull request [28032](https://github.com/magento/magento2/pull/28032)_. [GitHub-22702](https://github.com/magento/magento2/issues/22702) + + + +* The advanced attribute properties block icon on the Advanced Attribute Properties page now behaves as expected. _Fix submitted by Tu Nguyen in pull request [28032](https://github.com/magento/magento2/pull/28032)_. [GitHub-26022](https://github.com/magento/magento2/issues/26022) + + + +* The Admin section of the system configuration page now expands to display required fields as expected when you try to save configuration settings for a new module. _Fix submitted by Bartłomiej Szubert in pull request [28285](https://github.com/magento/magento2/pull/28285)_. [GitHub-26427](https://github.com/magento/magento2/issues/26427) + + + +* Corrected behavior of the magnifier when mode is set to `inside`. _Fix submitted by Sean van Zuidam in pull request [29077](https://github.com/magento/magento2/pull/29077)_. [GitHub-29076](https://github.com/magento/magento2/issues/29076) + + + +* Corrected the distractingly long input field width that resulted when a shopper entered an invalid email address in the subscribe field of the page footer. _Fix submitted by Dipesh Rangani in pull request [27106](https://github.com/magento/magento2/pull/27106)_. [GitHub-27099](https://github.com/magento/magento2/issues/27099) + + + +* An `Uncaught ReferenceError` error no longer appears in the dev console when you add a new tag and move the mouse cursor over it. _Fix submitted by Nazar Klovanych in pull request [29392](https://github.com/magento/magento2/pull/29392)_. [GitHub-1700](https://github.com/magento/magento2/issues/1700) + +### URL rewrites + + + +* Moving a store view to a different website no longer resets URLs. Previously, Magento incorrectly regenerated CMS and product URL rewrites. + + + +* Magento now preserves existing catalog URL rewrites as expected when a store view is assigned to a different store. Previously, Magento deleted the store-specific URL rewrites. + +### Varnish + + + +* Restarting Varnish no longer results in 503 errors. _Fix submitted by Ihor Sviziev in pull request [28137](https://github.com/magento/magento2/pull/28137)_. [GitHub-24353](https://github.com/magento/magento2/issues/24353) + +### Vault + + + +* Magento no longer saves credit card numbers when the **Save for later use** checkbox on the payment section of the checkout workflow is not selected. + +### Web API framework + + + +* Merchants with multiple websites can now use the REST API to create and update products while preserving image and image-role inheritance. Previously, when a merchant used the REST API to create and update products, and a product was updated for store view, the default image roles were loaded and saved for that store view. As a result, the store-view image roles stopped inheriting from the default scope after update. + + + +* An unscoped integration user account can now access a resource through the REST API when resource permissions allow access. + + + +* Search criteria filters now work as expected for product attributes that are used during the creation of a configurable product. [GitHub-29126](https://github.com/magento/magento2/issues/29126) + + + +* Customer group ID is now validated for POST `/rest/V1/customers` requests. Previously, Magento did not display an error message when you used an invalid `group_id` in these requests. _Fix submitted by Vadim Malesh in pull request [28903](https://github.com/magento/magento2/pull/28903)_. [GitHub-28064](https://github.com/magento/magento2/issues/28064) + + + +* PHP sessions are not created by default for anonymous REST calls. Previously, sessions were started even when unnecessary. _Fix submitted by Maciej Pawłowski in pull request [26032](https://github.com/magento/magento2/pull/26032)_. [GitHub-7213](https://github.com/magento/magento2/issues/7213) + + + +* Using various REST endpoints to update orders that contain custom option no longer deletes the custom option information. Previously, values in `info_buyRequest` were deleted. _Fix submitted by Vadim Malesh in pull request [28483](https://github.com/magento/magento2/pull/28483)_. [GitHub-22431](https://github.com/magento/magento2/issues/22431) + + + +* Using GET `V1/customers/me` now honors **Share Customer Accounts** setting (Admin **Stores** > **Configuration** > **Customers** > **Customer Configuration** > **Account Sharing Options**) when retrieving user information. _Fix submitted by Pavel Bystritsky in pull request [28213](https://github.com/magento/magento2/pull/28213)_. [GitHub-26089](https://github.com/magento/magento2/issues/26089) + + + +* Address-related extension attributes can be set as data arrays. Previously, Magento threw an error when a POST request that contained  `extension_attributes` was sent to `estimate-shipping-methods`. This bug, which was introduced by a previous commit, affected any extension attribute set on `Magento\Quote\Api\Data\AddressInterface` that were not objects. _Fix submitted by Alexander Menk in pull request [27338](https://github.com/magento/magento2/pull/27338)_. [GitHub-26682](https://github.com/magento/magento2/issues/26682) + + + +* You can now specify a single field when updating a customer with the PUT `V1/customers/:id` endpoint. Previously, the endpoint required you to specify the customer email and other fields that are required to create a customer. _Fix submitted by Vadim Malesh in pull request [28332](https://github.com/magento/magento2/pull/28332)_. [GitHub-21237](https://github.com/magento/magento2/issues/21237) + +### Wish list + + + +* Customers can now change the quantity of a product in a wish list from the wish list itself. Previously, Magento did not update the product quantity and did not display a message. + + + +* Customers can now change the quantity of a grouped product in a wish list from the wish list itself. Previously, Magento did not update the product quantity or display a message. + + + +* Polyfills for `Map`, `WeakMap`, `FormData`, and `MutationObserver` are now loaded only as needed. _Fix submitted by Dmitry Tsymbal in pull request [28330](https://github.com/magento/magento2/pull/28330)_. [GitHub-28377](https://github.com/magento/magento2/issues/28377) + + + +* The wish list update process now supports updating a wish list item and its description simultaneously. _Fix submitted by Eduard Chitoraga in pull request [28222](https://github.com/magento/magento2/pull/28222)_. [GitHub-28261](https://github.com/magento/magento2/issues/28261) + + + +* Added a test for sharing a customer's wish list with more than the allowed number of emails. _Fix submitted by Dmitry Tsymbal in pull request [28641](https://github.com/magento/magento2/pull/28641)_. [GitHub-28720](https://github.com/magento/magento2/issues/28720) + + + +* Administrators can now configure a configurable product that has been added by a customer to a wish list from a non-default store. Previously, when the customer had also added the configurable product from a non-default store, Magento threw an error. + + + +* Added a test for sharing a customer's wish list with more than the allowed number of emails. _Fix submitted by Dmitry Tsymbal in pull request [28641](https://github.com/magento/magento2/pull/28641)_. [GitHub-28720](https://github.com/magento/magento2/issues/28720) + + + +* Added a test for deleting items from a customer’s wish list as an Admin user. _Fix submitted by Dmitry Tsymbal in pull request [28632](https://github.com/magento/magento2/pull/28632)_. [GitHub-28721](https://github.com/magento/magento2/issues/28721) + + + +* Added a test for disabling wish list functionality. _Fix submitted by Dmitry Tsymbal in pull request [28635](https://github.com/magento/magento2/pull/28635)_. [GitHub-28744](https://github.com/magento/magento2/issues/28744) + + + +* Added a test for using invalid email addresses when sharing customer wish lists. `StorefrontShareWishlistEntityTest` has been refactored. `StorefrontCustomerShareWishlistActionGroup` has been deprecated. _Fix submitted by Dmitry Tsymbal in pull request [28330](https://github.com/magento/magento2/pull/28330)_. [GitHub-28377](https://github.com/magento/magento2/issues/28377) + + + +* Added a test for sharing a customer's wish list that exceeds the allowed text length limit. _Fix submitted by Dmitry Tsymbal in pull request [28812](https://github.com/magento/magento2/pull/28812)_. [GitHub-28969](https://github.com/magento/magento2/issues/28969) + +## Known issues + +**Issue**: The new CAPTCHA feature for checkout does not work as expected on the Place Order page when using third-party payment providers. Merchants running Magento 2.3.6 or 2.4.1 who have enabled CAPTCHA protection on the Place Order storefront page will see this error when checking out using a third-party payment provider such as PayPal: `Please provide CAPTCHA code and try again`. A fix for this issue be available in the next few weeks, and will be included in our next quarterly patch (Q12021). Please contact Support for additional information. + +**Issue**: Users without administrator privileges cannot currently set up their personal 2FA access. 2FA as implemented in Magento includes two ACL roles. One role affects global system configuration and it is needed only when configuring the system. The second ACL role affects individual user 2FA accounts. An admin user must configure this second type of 2FA ACL. **Workaround**: After the user has logged in and seen the Access denied screen, they can visit `https:////tfa/tfa/requestconfig/` to force configuration. Note: We do not recommend disabling security settings. However, this workaround is effective only when Admin URL secret keys are disabled. + +**Issue**: Merchants cannot log in to dotdigital from the Admin in Safari when dotdigital is enabled. See the [It's impossible to login in the dotdigital via admin panel when dotdigital account is enabled](https://support.magento.com/hc/en-us/articles/360050092291) Knowledge Base article. + +**Issue**: Vertex address validation does not work during payment when the shopper selects a shipping address that differs from the billing address. The issue will be fixed in Magento 2.4.2. See the [Magento 2.4.1 known issue: Vertex Address Validation message does not disappear after updating address](https://support.magento.com/hc/en-us/articles/360050139631) Knowledge Base article. + +**Issue**: Magento displays an empty page when a merchant saves a dotdigital Page Builder form on the Safari browser. **Workaround**: Reload the page to apply your changes. See the [Magento 2.4.1 known issue: empty page after saving dotdigital Page Builder form](https://support.magento.com/hc/en-us/articles/360049819092) Knowledge Base article. + +**Issue**: Under certain conditions, Magento automatically signs in customers to previously used Amazon accounts rather prompting them to log in during checkout with Amazon Pay. See the [Magento 2.4.1 known issue: unable to change Amazon account in Google Chrome](https://support.magento.com/hc/en-us/articles/360049814152) Knowledge Base article. + +**Issue**: Magento briefly displays an error message on the billing page of the checkout workflow when PayPal Braintree payment and multiple addresses shipment are selected. See the [Magento 2.4.1 known issue: error popping up on Checkout with PayPal Braintree](https://support.magento.com/hc/en-us/articles/360050253211) Knowledge Base article. + +**Issue**: Magento displays a non-informative error message when a guest customer tries to place an order with PayPal through Braintree when guest checkout is disabled. See the [Magento 2.4.1 known issue: non-informative error message during guest checkout using Paypal through Braintree](https://support.magento.com/hc/en-us/articles/360050368111) Knowledge Base article. + +## Community contributions + +We are grateful to the wider Magento community and would like to acknowledge their contributions to this release. Check out the following ways you can learn about the community contributions to our current releases: + +* If a community member has provided a fix for this release, we identify the fix in the Fixed Issue section of these notes with the phrase, "*Fix provided by community member*". + +* The Magento Community Engineering team [Magento Contributors](https://magento.com/magento-contributors) maintains a list of top contributing individuals and partners by month, quarter, and year. From that Contributors page, you can follow links to their merged PRs on GitHub. + +### Partner contributions + +The following table highlights contributions made by Partners. This table lists the Partner who contributed the pull request, the external pull request, and the GitHub issue number associated with it (if available). + +{% include release-notes/engcomm-2-4-1-partner.md %} + +### Individual contributor contributions + +The following table identifies contributions from our community members. This table lists the external pull requests, the GitHub issue number associated with it (if available), and the community member who contributed the pull request. + +{% include release-notes/engcomm-2-4-1-issues.md %} + +### System requirements + +Our technology stack is built on PHP and MySQL. For more information, see [System Requirements]({{site.baseurl}}/system-requirements.html). + +### Installation and upgrade instructions + +You can install Magento Open Source 2.4.1 using Composer. + +## Migration toolkits + +The Data Migration Tool helps transfer existing Magento 1.x store data to Magento 2.x. This command-line interface includes verification, progress tracking, logging, and testing functions. For installation instructions, see [Install the Data Migration Tool]({{page.baseurl}}/migration/migration-tool-install.html). Consider exploring or contributing to the [Magento Data Migration repository](https://github.com/magento/data-migration-tool). + +The [Code Migration Toolkit](https://github.com/magento-commerce/code-migration) helps transfer existing Magento 1.x store extensions and customizations to Magento 2.x. The command-line interface includes scripts for converting Magento 1.x modules and layouts. diff --git a/src/guides/v2.4/rest/protected-endpoints.md b/src/guides/v2.4/rest/protected-endpoints.md new file mode 120000 index 00000000000..395078c7de8 --- /dev/null +++ b/src/guides/v2.4/rest/protected-endpoints.md @@ -0,0 +1 @@ +../../v2.3/rest/protected-endpoints.md \ No newline at end of file From 6931171a10add2cde661bf3ad6311f7bfa2b1daa Mon Sep 17 00:00:00 2001 From: Margaret Eker Date: Thu, 15 Oct 2020 09:51:23 -0500 Subject: [PATCH 008/143] Cloud Patches release notes v1.0.8 (#8048) * Add release note for MCP v1.0.8 * Update MCP release version * Fix markdown error --- src/_data/var.yml | 2 +- src/cloud/release-notes/mcp-release-notes.md | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/_data/var.yml b/src/_data/var.yml index d79de521b8d..1f407e4a44c 100644 --- a/src/_data/var.yml +++ b/src/_data/var.yml @@ -28,7 +28,7 @@ ct-repo: magento/ece-tools ct-release: 2002.1.2 mcp-prod: Magento Cloud Patches mcp-package: magento/magento-cloud-patches -mcp-release: 1.0.7 +mcp-release: 1.0.8 mcd-package: magento/magento-cloud-docker mcd-prod: Magento Cloud Docker mcd-release: 1.1.2 diff --git a/src/cloud/release-notes/mcp-release-notes.md b/src/cloud/release-notes/mcp-release-notes.md index ab046af037c..ef164ceb8a7 100644 --- a/src/cloud/release-notes/mcp-release-notes.md +++ b/src/cloud/release-notes/mcp-release-notes.md @@ -21,6 +21,11 @@ See [Apply patches]({{site.baseurl}}/cloud/project/project-patch.html) for instr +## v1.0.8 +*Release date: October 14, 2020*
+ +- **Compatibility updates for {{site.data.var.mcp-package}}**–Updated the `symfony` and `semver` version constraints in the `composer.json` file for compatibility with Magento 2.4.1 and later releases. + ## v1.0.7 *Release date: October 14, 2020*
From 1dbecdaa300c68de497da85e724e708350a959f9 Mon Sep 17 00:00:00 2001 From: Margaret Eker Date: Thu, 15 Oct 2020 10:47:28 -0500 Subject: [PATCH 009/143] Add note about snapshot best practice (#8044) * Add note about snapshot best practice * Corrections to note about backups * Update src/cloud/architecture/pro-architecture.md * Update src/cloud/architecture/pro-architecture.md Co-authored-by: hguthrie * Update src/cloud/architecture/pro-architecture.md Co-authored-by: hguthrie * Update src/cloud/architecture/pro-architecture.md * Update src/cloud/architecture/pro-architecture.md * Update src/cloud/architecture/pro-architecture.md Co-authored-by: hguthrie --- src/cloud/architecture/pro-architecture.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/cloud/architecture/pro-architecture.md b/src/cloud/architecture/pro-architecture.md index b67bbb6410d..48840e2b590 100644 --- a/src/cloud/architecture/pro-architecture.md +++ b/src/cloud/architecture/pro-architecture.md @@ -178,6 +178,9 @@ Weeks 12 to 22 | One backup per month - **Recovery Point Objective (RPO)**—is 1 hour for the first 24 hours; after which, the RPO is 6 hours (maximum time to last backup). - **Recovery Time Objective (RTO)**—depends on the size of the storage. Large EBS volumes take more time to restore. +{:.bs-callout-tip} +On Pro Staging and Production environments, you must submit a support ticket to restore an environment from an automatic backup. You can backup the database and code for your Production and Staging environments using CLI commands. See [Dump your database]({{site.baseurl}}/cloud/project/project-webint-snap.html#db-dump) and [bin/magento setup:backup]({{site.baseurl }}/guides/v2.4/reference/cli/magento-commerce.html#setupbackup). For Integration environments, we highly recommend that you create a snapshot as a first step after accessing your {{site.data.var.ece}} project and before applying any major changes. See [Snapshots and backup management]({{site.baseurl}}/cloud/project/project-webint-snap.html). + ### Production technology stack The Production environment has three virtual machines (VMs) behind an Elastic Load Balancer managed by an HAProxy per VM. Each VM includes the following technologies: From 5c5de3363dce8a26d98847e4e0d87e30fafcf1af Mon Sep 17 00:00:00 2001 From: Dmitry Shevtsov <12731225+dshevtsov@users.noreply.github.com> Date: Thu, 15 Oct 2020 11:08:49 -0500 Subject: [PATCH 010/143] Updated bin-magento.json data after 2.4.1 release (#8055) Co-authored-by: magedocs --- src/_data/codebase/v2_4/commerce/bin-magento.json | 2 +- src/_data/codebase/v2_4/open-source/bin-magento.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/_data/codebase/v2_4/commerce/bin-magento.json b/src/_data/codebase/v2_4/commerce/bin-magento.json index fda57f92602..d331eae2384 100644 --- a/src/_data/codebase/v2_4/commerce/bin-magento.json +++ b/src/_data/codebase/v2_4/commerce/bin-magento.json @@ -1 +1 @@ -{"application":{"name":"Magento CLI","version":"2.4.0"},"commands":[{"name":"help","usage":["help [--format FORMAT] [--raw] [--] []"],"description":"Displays help for a command","help":"The help<\/info> command displays help for a given command:\n\n php \/var\/www\/html\/magento2\/bin\/magento help list<\/info>\n\nYou can also output the help in other formats by using the --format<\/comment> option:\n\n php \/var\/www\/html\/magento2\/bin\/magento help --format=xml list<\/info>\n\nTo display the list of available commands, please use the list<\/info> command.","definition":{"arguments":{"command_name":{"name":"command_name","is_required":false,"is_array":false,"description":"The command name","default":"help"}},"options":{"format":{"name":"--format","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The output format (txt, xml, json, or md)","default":"txt"},"raw":{"name":"--raw","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"To output raw command help","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"list","usage":["list [--raw] [--format FORMAT] [--] []"],"description":"Lists commands","help":"The list<\/info> command lists all commands:\n\n php \/var\/www\/html\/magento2\/bin\/magento list<\/info>\n\nYou can also display the commands for a specific namespace:\n\n php \/var\/www\/html\/magento2\/bin\/magento list test<\/info>\n\nYou can also output the information in other formats by using the --format<\/comment> option:\n\n php \/var\/www\/html\/magento2\/bin\/magento list --format=xml<\/info>\n\nIt's also possible to get raw list of commands (useful for embedding command runner):\n\n php \/var\/www\/html\/magento2\/bin\/magento list --raw<\/info>","definition":{"arguments":{"namespace":{"name":"namespace","is_required":false,"is_array":false,"description":"The namespace name","default":null}},"options":{"raw":{"name":"--raw","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"To output raw command list","default":false},"format":{"name":"--format","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The output format (txt, xml, json, or md)","default":"txt"}}},"hidden":false},{"name":"admin:user:create","usage":["admin:user:create [--admin-user ADMIN-USER] [--admin-password ADMIN-PASSWORD] [--admin-email ADMIN-EMAIL] [--admin-firstname ADMIN-FIRSTNAME] [--admin-lastname ADMIN-LASTNAME] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Creates an administrator","help":"Creates an administrator","definition":{"arguments":[],"options":{"admin-user":{"name":"--admin-user","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"(Required) Admin user","default":null},"admin-password":{"name":"--admin-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"(Required) Admin password","default":null},"admin-email":{"name":"--admin-email","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"(Required) Admin email","default":null},"admin-firstname":{"name":"--admin-firstname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"(Required) Admin first name","default":null},"admin-lastname":{"name":"--admin-lastname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"(Required) Admin last name","default":null},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"admin:user:unlock","usage":["admin:user:unlock "],"description":"Unlock Admin Account","help":"This command unlocks an admin account by its username.\nTo unlock:\n \/var\/www\/html\/magento2\/bin\/magento admin:user:unlock username<\/comment>","definition":{"arguments":{"username":{"name":"username","is_required":true,"is_array":false,"description":"The admin username to unlock","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"app:config:dump","usage":["app:config:dump [...]"],"description":"Create dump of application","help":"Create dump of application","definition":{"arguments":{"config-types":{"name":"config-types","is_required":false,"is_array":true,"description":"Space-separated list of config types or omit to dump all [scopes, themes, system, i18n]","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"app:config:import","usage":["app:config:import"],"description":"Import data from shared configuration files to appropriate data storage","help":"Import data from shared configuration files to appropriate data storage","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"app:config:status","usage":["app:config:status"],"description":"Checks if config propagation requires update","help":"Checks if config propagation requires update","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"braintree:migrate","usage":["braintree:migrate [--host HOST] [--dbname DBNAME] [--username USERNAME] [--password PASSWORD]"],"description":"Migrate stored cards from a Magento 1 database","help":"Migrate stored cards from a Magento 1 database","definition":{"arguments":[],"options":{"host":{"name":"--host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Hostname\/IP. Port is optional","default":null},"dbname":{"name":"--dbname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database name","default":null},"username":{"name":"--username","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database username. Must have read access","default":null},"password":{"name":"--password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Password","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cache:clean","usage":["cache:clean [--bootstrap BOOTSTRAP] [--] [...]"],"description":"Cleans cache type(s)","help":"Cleans cache type(s)","definition":{"arguments":{"types":{"name":"types","is_required":false,"is_array":true,"description":"Space-separated list of cache types or omit to apply to all cache types.","default":[]}},"options":{"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cache:disable","usage":["cache:disable [--bootstrap BOOTSTRAP] [--] [...]"],"description":"Disables cache type(s)","help":"Disables cache type(s)","definition":{"arguments":{"types":{"name":"types","is_required":false,"is_array":true,"description":"Space-separated list of cache types or omit to apply to all cache types.","default":[]}},"options":{"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cache:enable","usage":["cache:enable [--bootstrap BOOTSTRAP] [--] [...]"],"description":"Enables cache type(s)","help":"Enables cache type(s)","definition":{"arguments":{"types":{"name":"types","is_required":false,"is_array":true,"description":"Space-separated list of cache types or omit to apply to all cache types.","default":[]}},"options":{"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cache:flush","usage":["cache:flush [--bootstrap BOOTSTRAP] [--] [...]"],"description":"Flushes cache storage used by cache type(s)","help":"Flushes cache storage used by cache type(s)","definition":{"arguments":{"types":{"name":"types","is_required":false,"is_array":true,"description":"Space-separated list of cache types or omit to apply to all cache types.","default":[]}},"options":{"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cache:status","usage":["cache:status [--bootstrap BOOTSTRAP]"],"description":"Checks cache status","help":"Checks cache status","definition":{"arguments":[],"options":{"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"catalog:images:resize","usage":["catalog:images:resize [-a|--async]"],"description":"Creates resized product images","help":"Creates resized product images","definition":{"arguments":[],"options":{"async":{"name":"--async","shortcut":"-a","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Resize image in asynchronous mode","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"catalog:product:attributes:cleanup","usage":["catalog:product:attributes:cleanup"],"description":"Removes unused product attributes.","help":"Removes unused product attributes.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"config:sensitive:set","usage":["config:sensitive:set [-i|--interactive] [--scope [SCOPE]] [--scope-code [SCOPE-CODE]] [--] [ []]"],"description":"Set sensitive configuration values","help":"Set sensitive configuration values","definition":{"arguments":{"path":{"name":"path","is_required":false,"is_array":false,"description":"Configuration path for example group\/section\/field_name","default":null},"value":{"name":"value","is_required":false,"is_array":false,"description":"Configuration value","default":null}},"options":{"interactive":{"name":"--interactive","shortcut":"-i","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Enable interactive mode to set all sensitive variables","default":false},"scope":{"name":"--scope","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Scope for configuration, if not set use 'default'","default":"default"},"scope-code":{"name":"--scope-code","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Scope code for configuration, empty string by default","default":""},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"config:set","usage":["config:set [--scope SCOPE] [--scope-code SCOPE-CODE] [-e|--lock-env] [-c|--lock-config] [-l|--lock] [--] "],"description":"Change system configuration","help":"Change system configuration","definition":{"arguments":{"path":{"name":"path","is_required":true,"is_array":false,"description":"Configuration path in format section\/group\/field_name","default":null},"value":{"name":"value","is_required":true,"is_array":false,"description":"Configuration value","default":null}},"options":{"scope":{"name":"--scope","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Configuration scope (default, website, or store)","default":"default"},"scope-code":{"name":"--scope-code","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Scope code (required only if scope is not 'default')","default":null},"lock-env":{"name":"--lock-env","shortcut":"-e","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Lock value which prevents modification in the Admin (will be saved in app\/etc\/env.php)","default":false},"lock-config":{"name":"--lock-config","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Lock and share value with other installations, prevents modification in the Admin (will be saved in app\/etc\/config.php)","default":false},"lock":{"name":"--lock","shortcut":"-l","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Deprecated, use the --lock-env option instead.","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"config:show","usage":["config:show [--scope [SCOPE]] [--scope-code [SCOPE-CODE]] [--] []"],"description":"Shows configuration value for given path. If path is not specified, all saved values will be shown","help":"Shows configuration value for given path. If path is not specified, all saved values will be shown","definition":{"arguments":{"path":{"name":"path","is_required":false,"is_array":false,"description":"Configuration path, for example section_id\/group_id\/field_id","default":null}},"options":{"scope":{"name":"--scope","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Scope for configuration, if not specified, then 'default' scope will be used","default":"default"},"scope-code":{"name":"--scope-code","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Scope code (required only if scope is not `default`)","default":""},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cron:install","usage":["cron:install [-f|--force] [-d|--non-optional]"],"description":"Generates and installs crontab for current user","help":"Generates and installs crontab for current user","definition":{"arguments":[],"options":{"force":{"name":"--force","shortcut":"-f","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force install tasks","default":false},"non-optional":{"name":"--non-optional","shortcut":"-d","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Install only the non-optional (default) tasks","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cron:remove","usage":["cron:remove"],"description":"Removes tasks from crontab","help":"Removes tasks from crontab","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cron:run","usage":["cron:run [--group GROUP] [--bootstrap BOOTSTRAP]"],"description":"Runs jobs by schedule","help":"Runs jobs by schedule","definition":{"arguments":[],"options":{"group":{"name":"--group","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Run jobs only from specified group","default":null},"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"customer:hash:upgrade","usage":["customer:hash:upgrade"],"description":"Upgrade customer's hash according to the latest algorithm","help":"Upgrade customer's hash according to the latest algorithm","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"deploy:mode:set","usage":["deploy:mode:set [-s|--skip-compilation] [--] "],"description":"Set application mode.","help":"Set application mode.","definition":{"arguments":{"mode":{"name":"mode","is_required":true,"is_array":false,"description":"The application mode to set. Available options are \"developer\" or \"production\"","default":null}},"options":{"skip-compilation":{"name":"--skip-compilation","shortcut":"-s","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Skips the clearing and regeneration of static content (generated code, preprocessed CSS, and assets in pub\/static\/)","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"deploy:mode:show","usage":["deploy:mode:show"],"description":"Displays current application mode.","help":"Displays current application mode.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:di:info","usage":["dev:di:info "],"description":"Provides information on Dependency Injection configuration for the Command.","help":"Provides information on Dependency Injection configuration for the Command.","definition":{"arguments":{"class":{"name":"class","is_required":true,"is_array":false,"description":"Class name","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:profiler:disable","usage":["dev:profiler:disable"],"description":"Disable the profiler.","help":"Disable the profiler.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:profiler:enable","usage":["dev:profiler:enable []"],"description":"Enable the profiler.","help":"Enable the profiler.","definition":{"arguments":{"type":{"name":"type","is_required":false,"is_array":false,"description":"Profiler type","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:query-log:disable","usage":["dev:query-log:disable"],"description":"Disable DB query logging","help":"Disable DB query logging","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:query-log:enable","usage":["dev:query-log:enable [--include-all-queries [INCLUDE-ALL-QUERIES]] [--query-time-threshold [QUERY-TIME-THRESHOLD]] [--include-call-stack [INCLUDE-CALL-STACK]]"],"description":"Enable DB query logging","help":"Enable DB query logging","definition":{"arguments":[],"options":{"include-all-queries":{"name":"--include-all-queries","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Log all queries. [true|false]","default":"true"},"query-time-threshold":{"name":"--query-time-threshold","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Query time thresholds.","default":"0.001"},"include-call-stack":{"name":"--include-call-stack","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Include call stack. [true|false]","default":"true"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:source-theme:deploy","usage":["dev:source-theme:deploy [--type TYPE] [--locale LOCALE] [--area AREA] [--theme THEME] [--] [...]"],"description":"Collects and publishes source files for theme.","help":"Collects and publishes source files for theme.","definition":{"arguments":{"file":{"name":"file","is_required":false,"is_array":true,"description":"Files to pre-process (file should be specified without extension)","default":["css\/styles-m","css\/styles-l"]}},"options":{"type":{"name":"--type","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Type of source files: [less]","default":"less"},"locale":{"name":"--locale","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Locale: [en_US]","default":"en_US"},"area":{"name":"--area","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Area: [frontend|adminhtml]","default":"frontend"},"theme":{"name":"--theme","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Theme: [Vendor\/theme]","default":"Magento\/luma"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:template-hints:disable","usage":["dev:template-hints:disable"],"description":"Disable frontend template hints. A cache flush might be required.","help":"Disable frontend template hints. A cache flush might be required.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:template-hints:enable","usage":["dev:template-hints:enable"],"description":"Enable frontend template hints. A cache flush might be required.","help":"Enable frontend template hints. A cache flush might be required.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:template-hints:status","usage":["dev:template-hints:status"],"description":"Show frontend template hints status.","help":"Show frontend template hints status.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:tests:run","usage":["dev:tests:run [-c|--arguments ARGUMENTS] [--] []"],"description":"Runs tests","help":"Runs tests","definition":{"arguments":{"type":{"name":"type","is_required":false,"is_array":false,"description":"Type of test to run. Available types: all, unit, integration, integration-all, static, static-all, integrity, legacy, default","default":"default"}},"options":{"arguments":{"name":"--arguments","shortcut":"-c","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Additional arguments for PHPUnit. Example: \"-c'--filter=MyTest'\" (no spaces)","default":""},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:urn-catalog:generate","usage":["dev:urn-catalog:generate [--ide IDE] [--] "],"description":"Generates the catalog of URNs to *.xsd mappings for the IDE to highlight xml.","help":"Generates the catalog of URNs to *.xsd mappings for the IDE to highlight xml.","definition":{"arguments":{"path":{"name":"path","is_required":true,"is_array":false,"description":"Path to file to output the catalog. For PhpStorm use .idea\/misc.xml","default":null}},"options":{"ide":{"name":"--ide","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Format in which catalog will be generated. Supported: [phpstorm, vscode]","default":"phpstorm"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:xml:convert","usage":["dev:xml:convert [-o|--overwrite] [--] "],"description":"Converts XML file using XSL style sheets","help":"Converts XML file using XSL style sheets","definition":{"arguments":{"xml-file":{"name":"xml-file","is_required":true,"is_array":false,"description":"Path to XML file that going to be transformed","default":null},"processor":{"name":"processor","is_required":true,"is_array":false,"description":"Path to XSL style sheet that going to be applied to XML file","default":null}},"options":{"overwrite":{"name":"--overwrite","shortcut":"-o","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Overwrite XML file","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dotdigital:connector:automap","usage":["dotdigital:connector:automap"],"description":"Auto-map data fields","help":"Auto-map data fields","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dotdigital:connector:enable","usage":["dotdigital:connector:enable [--username USERNAME] [--password PASSWORD] [--automap-datafields [AUTOMAP-DATAFIELDS]] [--enable-syncs [ENABLE-SYNCS]] [--remove-ip-restriction [REMOVE-IP-RESTRICTION]] [--enable-email-capture [ENABLE-EMAIL-CAPTURE]]"],"description":"Add Dotdigital API credentials and enable the connector","help":"Add Dotdigital API credentials and enable the connector","definition":{"arguments":[],"options":{"username":{"name":"--username","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"API username","default":null},"password":{"name":"--password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"API password","default":null},"automap-datafields":{"name":"--automap-datafields","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Automap data fields","default":null},"enable-syncs":{"name":"--enable-syncs","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Enable syncs","default":null},"remove-ip-restriction":{"name":"--remove-ip-restriction","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Remove IP restriction","default":null},"enable-email-capture":{"name":"--enable-email-capture","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Enable email capture","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dotdigital:migrate","usage":["dotdigital:migrate"],"description":"Migrate data into email_ tables to sync with Engagement Cloud","help":"Migrate data into email_ tables to sync with Engagement Cloud","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dotdigital:sync","usage":["dotdigital:sync [--from [FROM]] [--] []"],"description":"Run syncs to populate email_ tables before importing to Engagement Cloud","help":"Run syncs to populate email_ tables before importing to Engagement Cloud","definition":{"arguments":{"sync":{"name":"sync","is_required":false,"is_array":false,"description":"The name of the sync to run","default":null}},"options":{"from":{"name":"--from","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Specify a date\/time (parsable by \\DateTime) to run a sync from (if supported)","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"downloadable:domains:add","usage":["downloadable:domains:add [...]"],"description":"Add domains to the downloadable domains whitelist","help":"Add domains to the downloadable domains whitelist","definition":{"arguments":{"domains":{"name":"domains","is_required":false,"is_array":true,"description":"Domains name","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"downloadable:domains:remove","usage":["downloadable:domains:remove [...]"],"description":"Remove domains from the downloadable domains whitelist","help":"Remove domains from the downloadable domains whitelist","definition":{"arguments":{"domains":{"name":"domains","is_required":false,"is_array":true,"description":"Domain names","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"downloadable:domains:show","usage":["downloadable:domains:show"],"description":"Display downloadable domains whitelist","help":"Display downloadable domains whitelist","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"encryption:payment-data:update","usage":["encryption:payment-data:update"],"description":"Re-encrypts encrypted credit card data with latest encryption cipher.","help":"Re-encrypts encrypted credit card data with latest encryption cipher.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"i18n:collect-phrases","usage":["i18n:collect-phrases [-o|--output OUTPUT] [-m|--magento] [--] []"],"description":"Discovers phrases in the codebase","help":"Discovers phrases in the codebase","definition":{"arguments":{"directory":{"name":"directory","is_required":false,"is_array":false,"description":"Directory path to parse. Not needed if --magento flag is set","default":null}},"options":{"output":{"name":"--output","shortcut":"-o","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Path (including filename) to an output file. With no file specified, defaults to stdout.","default":null},"magento":{"name":"--magento","shortcut":"-m","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Use the --magento parameter to parse the current Magento codebase. Omit the parameter if a directory is specified.","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"i18n:pack","usage":["i18n:pack [-m|--mode MODE] [-d|--allow-duplicates] [--] "],"description":"Saves language package","help":"Saves language package","definition":{"arguments":{"source":{"name":"source","is_required":true,"is_array":false,"description":"Path to source dictionary file with translations","default":null},"locale":{"name":"locale","is_required":true,"is_array":false,"description":"Target locale for dictionary, for example \"de_DE\"","default":null}},"options":{"mode":{"name":"--mode","shortcut":"-m","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Save mode for dictionary - \"replace\" - replace language pack by new one - \"merge\" - merge language packages, by default \"replace\"","default":"replace"},"allow-duplicates":{"name":"--allow-duplicates","shortcut":"-d","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Use the --allow-duplicates parameter to allow saving duplicates of translate. Otherwise omit the parameter.","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"i18n:uninstall","usage":["i18n:uninstall [-b|--backup-code] [--] ..."],"description":"Uninstalls language packages","help":"Uninstalls language packages","definition":{"arguments":{"package":{"name":"package","is_required":true,"is_array":true,"description":"Language package name","default":[]}},"options":{"backup-code":{"name":"--backup-code","shortcut":"-b","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take code and configuration files backup (excluding temporary files)","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:info","usage":["indexer:info"],"description":"Shows allowed Indexers","help":"Shows allowed Indexers","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:reindex","usage":["indexer:reindex [...]"],"description":"Reindexes Data","help":"Reindexes Data","definition":{"arguments":{"index":{"name":"index","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes.","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:reset","usage":["indexer:reset [...]"],"description":"Resets indexer status to invalid","help":"Resets indexer status to invalid","definition":{"arguments":{"index":{"name":"index","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes.","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:set-dimensions-mode","usage":["indexer:set-dimensions-mode [ []]"],"description":"Set Indexer Dimensions Mode","help":"Set Indexer Dimensions Mode","definition":{"arguments":{"indexer":{"name":"indexer","is_required":false,"is_array":false,"description":"Indexer name [catalog_product_price]","default":null},"mode":{"name":"mode","is_required":false,"is_array":false,"description":"Indexer dimension modes catalog_product_price none,website,customer_group,website_and_customer_group ","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:set-mode","usage":["indexer:set-mode [ [...]]"],"description":"Sets index mode type","help":"Sets index mode type","definition":{"arguments":{"mode":{"name":"mode","is_required":false,"is_array":false,"description":"Indexer mode type [realtime|schedule]","default":null},"index":{"name":"index","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes.","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:show-dimensions-mode","usage":["indexer:show-dimensions-mode [...]"],"description":"Shows Indexer Dimension Mode","help":"Shows Indexer Dimension Mode","definition":{"arguments":{"indexer":{"name":"indexer","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes (catalog_product_price)","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:show-mode","usage":["indexer:show-mode [...]"],"description":"Shows Index Mode","help":"Shows Index Mode","definition":{"arguments":{"index":{"name":"index","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes.","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:status","usage":["indexer:status [...]"],"description":"Shows status of Indexer","help":"Shows status of Indexer","definition":{"arguments":{"index":{"name":"index","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes.","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:adminuri","usage":["info:adminuri"],"description":"Displays the Magento Admin URI","help":"Displays the Magento Admin URI","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:backups:list","usage":["info:backups:list"],"description":"Prints list of available backup files","help":"Prints list of available backup files","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:currency:list","usage":["info:currency:list"],"description":"Displays the list of available currencies","help":"Displays the list of available currencies","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:dependencies:show-framework","usage":["info:dependencies:show-framework [-o|--output OUTPUT]"],"description":"Shows number of dependencies on Magento framework","help":"Shows number of dependencies on Magento framework","definition":{"arguments":[],"options":{"output":{"name":"--output","shortcut":"-o","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Report filename","default":"framework-dependencies.csv"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:dependencies:show-modules","usage":["info:dependencies:show-modules [-o|--output OUTPUT]"],"description":"Shows number of dependencies between modules","help":"Shows number of dependencies between modules","definition":{"arguments":[],"options":{"output":{"name":"--output","shortcut":"-o","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Report filename","default":"modules-dependencies.csv"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:dependencies:show-modules-circular","usage":["info:dependencies:show-modules-circular [-o|--output OUTPUT]"],"description":"Shows number of circular dependencies between modules","help":"Shows number of circular dependencies between modules","definition":{"arguments":[],"options":{"output":{"name":"--output","shortcut":"-o","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Report filename","default":"modules-circular-dependencies.csv"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:language:list","usage":["info:language:list"],"description":"Displays the list of available language locales","help":"Displays the list of available language locales","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:timezone:list","usage":["info:timezone:list"],"description":"Displays the list of available timezones","help":"Displays the list of available timezones","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"inventory:reservation:create-compensations","usage":["inventory:reservation:create-compensations [-r|--raw] [--] [...]"],"description":"Create reservations by provided compensation arguments","help":"Create reservations by provided compensation arguments","definition":{"arguments":{"compensations":{"name":"compensations","is_required":false,"is_array":true,"description":"List of compensation arguments in format \":::\"","default":[]}},"options":{"raw":{"name":"--raw","shortcut":"-r","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Raw output","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"inventory:reservation:list-inconsistencies","usage":["inventory:reservation:list-inconsistencies [-c|--complete-orders] [-i|--incomplete-orders] [-b|--bunch-size [BUNCH-SIZE]] [-r|--raw]"],"description":"Show all orders and products with salable quantity inconsistencies","help":"Show all orders and products with salable quantity inconsistencies","definition":{"arguments":[],"options":{"complete-orders":{"name":"--complete-orders","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Show only inconsistencies for complete orders","default":false},"incomplete-orders":{"name":"--incomplete-orders","shortcut":"-i","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Show only inconsistencies for incomplete orders","default":false},"bunch-size":{"name":"--bunch-size","shortcut":"-b","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Defines how many orders will be loaded at once","default":50},"raw":{"name":"--raw","shortcut":"-r","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Raw output","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"inventory-geonames:import","usage":["inventory-geonames:import ..."],"description":"Download and import geo names for source selection algorithm","help":"Download and import geo names for source selection algorithm","definition":{"arguments":{"countries":{"name":"countries","is_required":true,"is_array":true,"description":"List of country codes to import","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"maintenance:allow-ips","usage":["maintenance:allow-ips [--none] [--add] [--magento-init-params MAGENTO-INIT-PARAMS] [--] [...]"],"description":"Sets maintenance mode exempt IPs","help":"Sets maintenance mode exempt IPs","definition":{"arguments":{"ip":{"name":"ip","is_required":false,"is_array":true,"description":"Allowed IP addresses","default":[]}},"options":{"none":{"name":"--none","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Clear allowed IP addresses","default":false},"add":{"name":"--add","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Add the IP address to existing list","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"maintenance:disable","usage":["maintenance:disable [--ip IP] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Disables maintenance mode","help":"Disables maintenance mode","definition":{"arguments":[],"options":{"ip":{"name":"--ip","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":true,"description":"Allowed IP addresses (use 'none' to clear allowed IP list)","default":[]},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"maintenance:enable","usage":["maintenance:enable [--ip IP] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Enables maintenance mode","help":"Enables maintenance mode","definition":{"arguments":[],"options":{"ip":{"name":"--ip","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":true,"description":"Allowed IP addresses (use 'none' to clear allowed IP list)","default":[]},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"maintenance:status","usage":["maintenance:status [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Displays maintenance mode status","help":"Displays maintenance mode status","definition":{"arguments":[],"options":{"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"media-content:sync","usage":["media-content:sync"],"description":"Synchronize content with assets","help":"Synchronize content with assets","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"media-gallery:sync","usage":["media-gallery:sync"],"description":"Synchronize media storage and media assets in the database","help":"Synchronize media storage and media assets in the database","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"module:config:status","usage":["module:config:status"],"description":"Checks the modules configuration in the 'app\/etc\/config.php' file and reports if they are up to date or not","help":"Checks the modules configuration in the 'app\/etc\/config.php' file and reports if they are up to date or not","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"module:disable","usage":["module:disable [-f|--force] [--all] [-c|--clear-static-content] [--magento-init-params MAGENTO-INIT-PARAMS] [--] [...]"],"description":"Disables specified modules","help":"Disables specified modules","definition":{"arguments":{"module":{"name":"module","is_required":false,"is_array":true,"description":"Name of the module","default":[]}},"options":{"force":{"name":"--force","shortcut":"-f","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Bypass dependencies check","default":false},"all":{"name":"--all","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable all modules","default":false},"clear-static-content":{"name":"--clear-static-content","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Clear generated static view files. Necessary, if the module(s) have static view files","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"module:enable","usage":["module:enable [-f|--force] [--all] [-c|--clear-static-content] [--magento-init-params MAGENTO-INIT-PARAMS] [--] [...]"],"description":"Enables specified modules","help":"Enables specified modules","definition":{"arguments":{"module":{"name":"module","is_required":false,"is_array":true,"description":"Name of the module","default":[]}},"options":{"force":{"name":"--force","shortcut":"-f","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Bypass dependencies check","default":false},"all":{"name":"--all","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Enable all modules","default":false},"clear-static-content":{"name":"--clear-static-content","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Clear generated static view files. Necessary, if the module(s) have static view files","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"module:status","usage":["module:status [--enabled] [--disabled] [--magento-init-params MAGENTO-INIT-PARAMS] [--] []"],"description":"Displays status of modules","help":"Displays status of modules","definition":{"arguments":{"module":{"name":"module","is_required":false,"is_array":false,"description":"Optional module name","default":null}},"options":{"enabled":{"name":"--enabled","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Print only enabled modules","default":false},"disabled":{"name":"--disabled","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Print only disabled modules","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"module:uninstall","usage":["module:uninstall [-r|--remove-data] [--backup-code] [--backup-media] [--backup-db] [--non-composer] [-c|--clear-static-content] [--magento-init-params MAGENTO-INIT-PARAMS] [--] ..."],"description":"Uninstalls modules installed by composer","help":"Uninstalls modules installed by composer","definition":{"arguments":{"module":{"name":"module","is_required":true,"is_array":true,"description":"Name of the module","default":[]}},"options":{"remove-data":{"name":"--remove-data","shortcut":"-r","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Remove data installed by module(s)","default":false},"backup-code":{"name":"--backup-code","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take code and configuration files backup (excluding temporary files)","default":false},"backup-media":{"name":"--backup-media","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take media backup","default":false},"backup-db":{"name":"--backup-db","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take complete database backup","default":false},"non-composer":{"name":"--non-composer","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"All modules, that will be past here will be non composer based","default":false},"clear-static-content":{"name":"--clear-static-content","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Clear generated static view files. Necessary, if the module(s) have static view files","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"newrelic:create:deploy-marker","usage":["newrelic:create:deploy-marker []"],"description":"Check the deploy queue for entries and create an appropriate deploy marker.","help":"Check the deploy queue for entries and create an appropriate deploy marker.","definition":{"arguments":{"message":{"name":"message","is_required":true,"is_array":false,"description":"Deploy Message?","default":null},"change_log":{"name":"change_log","is_required":true,"is_array":false,"description":"Change Log?","default":null},"user":{"name":"user","is_required":false,"is_array":false,"description":"Deployment User","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"queue:consumers:list","usage":["queue:consumers:list"],"description":"List of MessageQueue consumers","help":"This command shows list of MessageQueue consumers.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"queue:consumers:start","usage":["queue:consumers:start [--max-messages MAX-MESSAGES] [--batch-size BATCH-SIZE] [--area-code AREA-CODE] [--single-thread] [--pid-file-path PID-FILE-PATH] [--] "],"description":"Start MessageQueue consumer","help":"This command starts MessageQueue consumer by its name.\n\nTo start consumer which will process all queued messages and terminate execution:\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer<\/comment>\n\nTo specify the number of messages which should be processed by consumer before its termination:\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer --max-messages=50<\/comment>\n\nTo specify the number of messages per batch for the batch consumer:\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer --batch-size=500<\/comment>\n\nTo specify the preferred area:\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer --area-code='adminhtml'<\/comment>\n \nTo do not run multiple copies of one consumer simultaneously:\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer --single-thread'<\/comment>\n\nTo save PID enter path (This option is deprecated, use --single-thread instead):\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer --pid-file-path='\/var\/someConsumer.pid'<\/comment>","definition":{"arguments":{"consumer":{"name":"consumer","is_required":true,"is_array":false,"description":"The name of the consumer to be started.","default":null}},"options":{"max-messages":{"name":"--max-messages","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The number of messages to be processed by the consumer before process termination. If not specified - terminate after processing all queued messages.","default":null},"batch-size":{"name":"--batch-size","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The number of messages per batch. Applicable for the batch consumer only.","default":null},"area-code":{"name":"--area-code","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The preferred area (global, adminhtml, etc...) default is global.","default":null},"single-thread":{"name":"--single-thread","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"This option prevents running multiple copies of one consumer simultaneously.","default":false},"pid-file-path":{"name":"--pid-file-path","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The file path for saving PID (This option is deprecated, use --single-thread instead)","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"sampledata:deploy","usage":["sampledata:deploy [--no-update]"],"description":"Deploy sample data modules for composer-based Magento installations","help":"Deploy sample data modules for composer-based Magento installations","definition":{"arguments":[],"options":{"no-update":{"name":"--no-update","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Update composer.json without executing composer update","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"sampledata:remove","usage":["sampledata:remove [--no-update]"],"description":"Remove all sample data packages from composer.json","help":"Remove all sample data packages from composer.json","definition":{"arguments":[],"options":{"no-update":{"name":"--no-update","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Update composer.json without executing composer update","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"sampledata:reset","usage":["sampledata:reset"],"description":"Reset all sample data modules for re-installation","help":"Reset all sample data modules for re-installation","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"security:recaptcha:disable-for-user-forgot-password","usage":["security:recaptcha:disable-for-user-forgot-password"],"description":"Disable reCAPTCHA for admin user forgot password form","help":"Disable reCAPTCHA for admin user forgot password form","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"security:recaptcha:disable-for-user-login","usage":["security:recaptcha:disable-for-user-login"],"description":"Disable reCAPTCHA for admin user login form","help":"Disable reCAPTCHA for admin user login form","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"security:tfa:google:set-secret","usage":["security:tfa:google:set-secret "],"description":"Set the secret used for Google OTP generation.","help":"Set the secret used for Google OTP generation.","definition":{"arguments":{"user":{"name":"user","is_required":true,"is_array":false,"description":"Username","default":null},"secret":{"name":"secret","is_required":true,"is_array":false,"description":"Secret","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"security:tfa:providers","usage":["security:tfa:providers"],"description":"List all available providers","help":"List all available providers","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"security:tfa:reset","usage":["security:tfa:reset "],"description":"Reset configuration for one user","help":"Reset configuration for one user","definition":{"arguments":{"user":{"name":"user","is_required":true,"is_array":false,"description":"Username","default":null},"provider":{"name":"provider","is_required":true,"is_array":false,"description":"Provider code","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:backup","usage":["setup:backup [--code] [--media] [--db] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Takes backup of Magento Application code base, media and database","help":"Takes backup of Magento Application code base, media and database","definition":{"arguments":[],"options":{"code":{"name":"--code","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take code and configuration files backup (excluding temporary files)","default":false},"media":{"name":"--media","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take media backup","default":false},"db":{"name":"--db","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take complete database backup","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:config:set","usage":["setup:config:set [--backend-frontname BACKEND-FRONTNAME] [--amqp-host AMQP-HOST] [--amqp-port AMQP-PORT] [--amqp-user AMQP-USER] [--amqp-password AMQP-PASSWORD] [--amqp-virtualhost AMQP-VIRTUALHOST] [--amqp-ssl AMQP-SSL] [--amqp-ssl-options AMQP-SSL-OPTIONS] [--enable-debug-logging ENABLE-DEBUG-LOGGING] [--enable-syslog-logging ENABLE-SYSLOG-LOGGING] [--consumers-wait-for-messages CONSUMERS-WAIT-FOR-MESSAGES] [--key KEY] [--db-host DB-HOST] [--db-name DB-NAME] [--db-user DB-USER] [--db-engine DB-ENGINE] [--db-password DB-PASSWORD] [--db-prefix DB-PREFIX] [--db-model DB-MODEL] [--db-init-statements DB-INIT-STATEMENTS] [-s|--skip-db-validation] [--http-cache-hosts HTTP-CACHE-HOSTS] [--db-ssl-key DB-SSL-KEY] [--db-ssl-cert DB-SSL-CERT] [--db-ssl-ca DB-SSL-CA] [--db-ssl-verify] [--session-save SESSION-SAVE] [--session-save-redis-host SESSION-SAVE-REDIS-HOST] [--session-save-redis-port SESSION-SAVE-REDIS-PORT] [--session-save-redis-password SESSION-SAVE-REDIS-PASSWORD] [--session-save-redis-timeout SESSION-SAVE-REDIS-TIMEOUT] [--session-save-redis-persistent-id SESSION-SAVE-REDIS-PERSISTENT-ID] [--session-save-redis-db SESSION-SAVE-REDIS-DB] [--session-save-redis-compression-threshold SESSION-SAVE-REDIS-COMPRESSION-THRESHOLD] [--session-save-redis-compression-lib SESSION-SAVE-REDIS-COMPRESSION-LIB] [--session-save-redis-log-level SESSION-SAVE-REDIS-LOG-LEVEL] [--session-save-redis-max-concurrency SESSION-SAVE-REDIS-MAX-CONCURRENCY] [--session-save-redis-break-after-frontend SESSION-SAVE-REDIS-BREAK-AFTER-FRONTEND] [--session-save-redis-break-after-adminhtml SESSION-SAVE-REDIS-BREAK-AFTER-ADMINHTML] [--session-save-redis-first-lifetime SESSION-SAVE-REDIS-FIRST-LIFETIME] [--session-save-redis-bot-first-lifetime SESSION-SAVE-REDIS-BOT-FIRST-LIFETIME] [--session-save-redis-bot-lifetime SESSION-SAVE-REDIS-BOT-LIFETIME] [--session-save-redis-disable-locking SESSION-SAVE-REDIS-DISABLE-LOCKING] [--session-save-redis-min-lifetime SESSION-SAVE-REDIS-MIN-LIFETIME] [--session-save-redis-max-lifetime SESSION-SAVE-REDIS-MAX-LIFETIME] [--session-save-redis-sentinel-master SESSION-SAVE-REDIS-SENTINEL-MASTER] [--session-save-redis-sentinel-servers SESSION-SAVE-REDIS-SENTINEL-SERVERS] [--session-save-redis-sentinel-verify-master SESSION-SAVE-REDIS-SENTINEL-VERIFY-MASTER] [--session-save-redis-sentinel-connect-retires SESSION-SAVE-REDIS-SENTINEL-CONNECT-RETIRES] [--cache-backend CACHE-BACKEND] [--cache-backend-redis-server CACHE-BACKEND-REDIS-SERVER] [--cache-backend-redis-db CACHE-BACKEND-REDIS-DB] [--cache-backend-redis-port CACHE-BACKEND-REDIS-PORT] [--cache-backend-redis-password CACHE-BACKEND-REDIS-PASSWORD] [--cache-backend-redis-compress-data CACHE-BACKEND-REDIS-COMPRESS-DATA] [--cache-backend-redis-compression-lib CACHE-BACKEND-REDIS-COMPRESSION-LIB] [--cache-id-prefix CACHE-ID-PREFIX] [--allow-parallel-generation] [--page-cache PAGE-CACHE] [--page-cache-redis-server PAGE-CACHE-REDIS-SERVER] [--page-cache-redis-db PAGE-CACHE-REDIS-DB] [--page-cache-redis-port PAGE-CACHE-REDIS-PORT] [--page-cache-redis-password PAGE-CACHE-REDIS-PASSWORD] [--page-cache-redis-compress-data PAGE-CACHE-REDIS-COMPRESS-DATA] [--page-cache-redis-compression-lib PAGE-CACHE-REDIS-COMPRESSION-LIB] [--page-cache-id-prefix PAGE-CACHE-ID-PREFIX] [--lock-provider LOCK-PROVIDER] [--lock-db-prefix LOCK-DB-PREFIX] [--lock-zookeeper-host LOCK-ZOOKEEPER-HOST] [--lock-zookeeper-path LOCK-ZOOKEEPER-PATH] [--lock-file-path LOCK-FILE-PATH] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Creates or modifies the deployment configuration","help":"Creates or modifies the deployment configuration","definition":{"arguments":[],"options":{"backend-frontname":{"name":"--backend-frontname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Backend frontname (will be autogenerated if missing)","default":null},"amqp-host":{"name":"--amqp-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server host","default":""},"amqp-port":{"name":"--amqp-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server port","default":"5672"},"amqp-user":{"name":"--amqp-user","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server username","default":""},"amqp-password":{"name":"--amqp-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server password","default":""},"amqp-virtualhost":{"name":"--amqp-virtualhost","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp virtualhost","default":"\/"},"amqp-ssl":{"name":"--amqp-ssl","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp SSL","default":""},"amqp-ssl-options":{"name":"--amqp-ssl-options","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp SSL Options (JSON)","default":""},"enable-debug-logging":{"name":"--enable-debug-logging","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Enable debug logging","default":null},"enable-syslog-logging":{"name":"--enable-syslog-logging","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Enable syslog logging","default":null},"consumers-wait-for-messages":{"name":"--consumers-wait-for-messages","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Should consumers wait for a message from the queue? 1 - Yes, 0 - No","default":null},"key":{"name":"--key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Encryption key","default":null},"db-host":{"name":"--db-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server host","default":null},"db-name":{"name":"--db-name","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database name","default":null},"db-user":{"name":"--db-user","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server username","default":null},"db-engine":{"name":"--db-engine","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server engine","default":null},"db-password":{"name":"--db-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server password","default":null},"db-prefix":{"name":"--db-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database table prefix","default":null},"db-model":{"name":"--db-model","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database type","default":null},"db-init-statements":{"name":"--db-init-statements","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database initial set of commands","default":null},"skip-db-validation":{"name":"--skip-db-validation","shortcut":"-s","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"If specified, then db connection validation will be skipped","default":false},"http-cache-hosts":{"name":"--http-cache-hosts","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"http Cache hosts","default":null},"db-ssl-key":{"name":"--db-ssl-key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of client key file in order to establish db connection through SSL","default":""},"db-ssl-cert":{"name":"--db-ssl-cert","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of client certificate file in order to establish db connection through SSL","default":""},"db-ssl-ca":{"name":"--db-ssl-ca","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of server certificate file in order to establish db connection through SSL","default":""},"db-ssl-verify":{"name":"--db-ssl-verify","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Verify server certification","default":false},"session-save":{"name":"--session-save","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Session save handler","default":null},"session-save-redis-host":{"name":"--session-save-redis-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Fully qualified host name, IP address, or absolute path if using UNIX sockets","default":null},"session-save-redis-port":{"name":"--session-save-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"session-save-redis-password":{"name":"--session-save-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"session-save-redis-timeout":{"name":"--session-save-redis-timeout","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Connection timeout, in seconds","default":null},"session-save-redis-persistent-id":{"name":"--session-save-redis-persistent-id","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Unique string to enable persistent connections","default":null},"session-save-redis-db":{"name":"--session-save-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis database number","default":null},"session-save-redis-compression-threshold":{"name":"--session-save-redis-compression-threshold","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis compression threshold","default":null},"session-save-redis-compression-lib":{"name":"--session-save-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis compression library. Values:\u00a0gzip (default), lzf, lz4, snappy","default":null},"session-save-redis-log-level":{"name":"--session-save-redis-log-level","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis log level. Values: 0 (least verbose) to 7 (most verbose)","default":null},"session-save-redis-max-concurrency":{"name":"--session-save-redis-max-concurrency","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Maximum number of processes that can wait for a lock on one session","default":null},"session-save-redis-break-after-frontend":{"name":"--session-save-redis-break-after-frontend","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Number of seconds to wait before trying to break a lock for frontend session","default":null},"session-save-redis-break-after-adminhtml":{"name":"--session-save-redis-break-after-adminhtml","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Number of seconds to wait before trying to break a lock for Admin session","default":null},"session-save-redis-first-lifetime":{"name":"--session-save-redis-first-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime, in seconds, of session for non-bots on the first write (use 0 to disable)","default":null},"session-save-redis-bot-first-lifetime":{"name":"--session-save-redis-bot-first-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime, in seconds, of session for bots on the first write (use 0 to disable)","default":null},"session-save-redis-bot-lifetime":{"name":"--session-save-redis-bot-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime of session for bots on subsequent writes (use 0 to disable)","default":null},"session-save-redis-disable-locking":{"name":"--session-save-redis-disable-locking","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis disable locking. Values:\u00a0false (default), true","default":null},"session-save-redis-min-lifetime":{"name":"--session-save-redis-min-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis min session lifetime, in seconds","default":null},"session-save-redis-max-lifetime":{"name":"--session-save-redis-max-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis max session lifetime, in seconds","default":null},"session-save-redis-sentinel-master":{"name":"--session-save-redis-sentinel-master","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel master","default":null},"session-save-redis-sentinel-servers":{"name":"--session-save-redis-sentinel-servers","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel servers, comma separated","default":null},"session-save-redis-sentinel-verify-master":{"name":"--session-save-redis-sentinel-verify-master","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel verify master. Values: false (default), true","default":null},"session-save-redis-sentinel-connect-retires":{"name":"--session-save-redis-sentinel-connect-retires","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel connect retries.","default":null},"cache-backend":{"name":"--cache-backend","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default cache handler","default":null},"cache-backend-redis-server":{"name":"--cache-backend-redis-server","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server","default":null},"cache-backend-redis-db":{"name":"--cache-backend-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database number for the cache","default":null},"cache-backend-redis-port":{"name":"--cache-backend-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"cache-backend-redis-password":{"name":"--cache-backend-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"cache-backend-redis-compress-data":{"name":"--cache-backend-redis-compress-data","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Set to 0 to disable compression (default is 1, enabled)","default":null},"cache-backend-redis-compression-lib":{"name":"--cache-backend-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Compression lib to use [snappy,lzf,l4z,zstd,gzip] (leave blank to determine automatically)","default":null},"cache-id-prefix":{"name":"--cache-id-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"ID prefix for cache keys","default":null},"allow-parallel-generation":{"name":"--allow-parallel-generation","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Allow generate cache in non-blocking way","default":false},"page-cache":{"name":"--page-cache","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default cache handler","default":null},"page-cache-redis-server":{"name":"--page-cache-redis-server","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server","default":null},"page-cache-redis-db":{"name":"--page-cache-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database number for the cache","default":null},"page-cache-redis-port":{"name":"--page-cache-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"page-cache-redis-password":{"name":"--page-cache-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"page-cache-redis-compress-data":{"name":"--page-cache-redis-compress-data","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Set to 1 to compress the full page cache (use 0 to disable)","default":null},"page-cache-redis-compression-lib":{"name":"--page-cache-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Compression library to use [snappy,lzf,l4z,zstd,gzip] (leave blank to determine automatically)","default":null},"page-cache-id-prefix":{"name":"--page-cache-id-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"ID prefix for cache keys","default":null},"lock-provider":{"name":"--lock-provider","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lock provider name","default":null},"lock-db-prefix":{"name":"--lock-db-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Installation specific lock prefix to avoid lock conflicts","default":null},"lock-zookeeper-host":{"name":"--lock-zookeeper-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Host and port to connect to Zookeeper cluster. For example: 127.0.0.1:2181","default":null},"lock-zookeeper-path":{"name":"--lock-zookeeper-path","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The path where Zookeeper will save locks. The default path is: \/magento\/locks","default":null},"lock-file-path":{"name":"--lock-file-path","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The path where file locks will be saved.","default":null},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-data:upgrade","usage":["setup:db-data:upgrade [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Installs and upgrades data in the DB","help":"Installs and upgrades data in the DB","definition":{"arguments":[],"options":{"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-declaration:generate-patch","usage":["setup:db-declaration:generate-patch [--revertable [REVERTABLE]] [--type [TYPE]] [--] "],"description":"Generate patch and put it in specific folder.","help":"Generate patch and put it in specific folder.","definition":{"arguments":{"module":{"name":"module","is_required":true,"is_array":false,"description":"Module name","default":null},"patch":{"name":"patch","is_required":true,"is_array":false,"description":"Patch name","default":null}},"options":{"revertable":{"name":"--revertable","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Check whether patch is revertable or not.","default":false},"type":{"name":"--type","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Find out what type of patch should be generated. Available values: `data`, `schema`.","default":"data"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-declaration:generate-whitelist","usage":["setup:db-declaration:generate-whitelist [--module-name [MODULE-NAME]]"],"description":"Generate whitelist of tables and columns that are allowed to be edited by declaration installer","help":"Generate whitelist of tables and columns that are allowed to be edited by declaration installer","definition":{"arguments":[],"options":{"module-name":{"name":"--module-name","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Name of the module where whitelist will be generated","default":"all"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-schema:add-slave","usage":["setup:db-schema:add-slave [--host HOST] [--dbname DBNAME] [--username USERNAME] [--password [PASSWORD]] [--connection [CONNECTION]] [--resource [RESOURCE]] [--maxAllowedLag [MAXALLOWEDLAG]]"],"description":"Move checkout quote related tables to a separate DB server","help":"Move checkout quote related tables to a separate DB server","definition":{"arguments":[],"options":{"host":{"name":"--host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Slave DB Server host","default":"localhost"},"dbname":{"name":"--dbname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Slave Database Name","default":null},"username":{"name":"--username","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Slave DB user name","default":"root"},"password":{"name":"--password","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Slave DB user password","default":null},"connection":{"name":"--connection","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Slave connection name","default":"default"},"resource":{"name":"--resource","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Slave Resource name","default":"default"},"maxAllowedLag":{"name":"--maxAllowedLag","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Max Allowed Lag Slave Connection (in seconds)","default":""},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-schema:split-quote","usage":["setup:db-schema:split-quote [--host HOST] [--dbname DBNAME] [--username USERNAME] [--password [PASSWORD]] [--connection [CONNECTION]] [--resource [RESOURCE]] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Move checkout quote related tables to a separate DB server","help":"Move checkout quote related tables to a separate DB server","definition":{"arguments":[],"options":{"host":{"name":"--host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Checkout DB Server host","default":null},"dbname":{"name":"--dbname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Checkout Database Name","default":null},"username":{"name":"--username","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Checkout DB user name","default":null},"password":{"name":"--password","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Checkout DB user password","default":null},"connection":{"name":"--connection","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Checkout connection name","default":"checkout"},"resource":{"name":"--resource","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Checkout resource name","default":"checkout"},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-schema:split-sales","usage":["setup:db-schema:split-sales [--host HOST] [--dbname DBNAME] [--username USERNAME] [--password [PASSWORD]] [--connection [CONNECTION]] [--resource [RESOURCE]] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Move sales related tables to a separate DB server","help":"Move sales related tables to a separate DB server","definition":{"arguments":[],"options":{"host":{"name":"--host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Sales DB Server host","default":null},"dbname":{"name":"--dbname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Sales Database Name","default":null},"username":{"name":"--username","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Sales DB user name","default":null},"password":{"name":"--password","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Sales DB user passowrd","default":null},"connection":{"name":"--connection","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Sales connection name","default":"sales"},"resource":{"name":"--resource","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Sales resource name","default":"sales"},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-schema:upgrade","usage":["setup:db-schema:upgrade [--convert-old-scripts [CONVERT-OLD-SCRIPTS]] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Installs and upgrades the DB schema","help":"Installs and upgrades the DB schema","definition":{"arguments":[],"options":{"convert-old-scripts":{"name":"--convert-old-scripts","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Allows to convert old scripts (InstallSchema, UpgradeSchema) to db_schema.xml format","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db:status","usage":["setup:db:status [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Checks if DB schema or data requires upgrade","help":"Checks if DB schema or data requires upgrade","definition":{"arguments":[],"options":{"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:di:compile","usage":["setup:di:compile"],"description":"Generates DI configuration and all missing classes that can be auto-generated","help":"Generates DI configuration and all missing classes that can be auto-generated","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:install","usage":["setup:install [--backend-frontname BACKEND-FRONTNAME] [--amqp-host AMQP-HOST] [--amqp-port AMQP-PORT] [--amqp-user AMQP-USER] [--amqp-password AMQP-PASSWORD] [--amqp-virtualhost AMQP-VIRTUALHOST] [--amqp-ssl AMQP-SSL] [--amqp-ssl-options AMQP-SSL-OPTIONS] [--enable-debug-logging ENABLE-DEBUG-LOGGING] [--enable-syslog-logging ENABLE-SYSLOG-LOGGING] [--consumers-wait-for-messages CONSUMERS-WAIT-FOR-MESSAGES] [--key KEY] [--db-host DB-HOST] [--db-name DB-NAME] [--db-user DB-USER] [--db-engine DB-ENGINE] [--db-password DB-PASSWORD] [--db-prefix DB-PREFIX] [--db-model DB-MODEL] [--db-init-statements DB-INIT-STATEMENTS] [-s|--skip-db-validation] [--http-cache-hosts HTTP-CACHE-HOSTS] [--db-ssl-key DB-SSL-KEY] [--db-ssl-cert DB-SSL-CERT] [--db-ssl-ca DB-SSL-CA] [--db-ssl-verify] [--session-save SESSION-SAVE] [--session-save-redis-host SESSION-SAVE-REDIS-HOST] [--session-save-redis-port SESSION-SAVE-REDIS-PORT] [--session-save-redis-password SESSION-SAVE-REDIS-PASSWORD] [--session-save-redis-timeout SESSION-SAVE-REDIS-TIMEOUT] [--session-save-redis-persistent-id SESSION-SAVE-REDIS-PERSISTENT-ID] [--session-save-redis-db SESSION-SAVE-REDIS-DB] [--session-save-redis-compression-threshold SESSION-SAVE-REDIS-COMPRESSION-THRESHOLD] [--session-save-redis-compression-lib SESSION-SAVE-REDIS-COMPRESSION-LIB] [--session-save-redis-log-level SESSION-SAVE-REDIS-LOG-LEVEL] [--session-save-redis-max-concurrency SESSION-SAVE-REDIS-MAX-CONCURRENCY] [--session-save-redis-break-after-frontend SESSION-SAVE-REDIS-BREAK-AFTER-FRONTEND] [--session-save-redis-break-after-adminhtml SESSION-SAVE-REDIS-BREAK-AFTER-ADMINHTML] [--session-save-redis-first-lifetime SESSION-SAVE-REDIS-FIRST-LIFETIME] [--session-save-redis-bot-first-lifetime SESSION-SAVE-REDIS-BOT-FIRST-LIFETIME] [--session-save-redis-bot-lifetime SESSION-SAVE-REDIS-BOT-LIFETIME] [--session-save-redis-disable-locking SESSION-SAVE-REDIS-DISABLE-LOCKING] [--session-save-redis-min-lifetime SESSION-SAVE-REDIS-MIN-LIFETIME] [--session-save-redis-max-lifetime SESSION-SAVE-REDIS-MAX-LIFETIME] [--session-save-redis-sentinel-master SESSION-SAVE-REDIS-SENTINEL-MASTER] [--session-save-redis-sentinel-servers SESSION-SAVE-REDIS-SENTINEL-SERVERS] [--session-save-redis-sentinel-verify-master SESSION-SAVE-REDIS-SENTINEL-VERIFY-MASTER] [--session-save-redis-sentinel-connect-retires SESSION-SAVE-REDIS-SENTINEL-CONNECT-RETIRES] [--cache-backend CACHE-BACKEND] [--cache-backend-redis-server CACHE-BACKEND-REDIS-SERVER] [--cache-backend-redis-db CACHE-BACKEND-REDIS-DB] [--cache-backend-redis-port CACHE-BACKEND-REDIS-PORT] [--cache-backend-redis-password CACHE-BACKEND-REDIS-PASSWORD] [--cache-backend-redis-compress-data CACHE-BACKEND-REDIS-COMPRESS-DATA] [--cache-backend-redis-compression-lib CACHE-BACKEND-REDIS-COMPRESSION-LIB] [--cache-id-prefix CACHE-ID-PREFIX] [--allow-parallel-generation] [--page-cache PAGE-CACHE] [--page-cache-redis-server PAGE-CACHE-REDIS-SERVER] [--page-cache-redis-db PAGE-CACHE-REDIS-DB] [--page-cache-redis-port PAGE-CACHE-REDIS-PORT] [--page-cache-redis-password PAGE-CACHE-REDIS-PASSWORD] [--page-cache-redis-compress-data PAGE-CACHE-REDIS-COMPRESS-DATA] [--page-cache-redis-compression-lib PAGE-CACHE-REDIS-COMPRESSION-LIB] [--page-cache-id-prefix PAGE-CACHE-ID-PREFIX] [--lock-provider LOCK-PROVIDER] [--lock-db-prefix LOCK-DB-PREFIX] [--lock-zookeeper-host LOCK-ZOOKEEPER-HOST] [--lock-zookeeper-path LOCK-ZOOKEEPER-PATH] [--lock-file-path LOCK-FILE-PATH] [--base-url BASE-URL] [--language LANGUAGE] [--timezone TIMEZONE] [--currency CURRENCY] [--use-rewrites USE-REWRITES] [--use-secure USE-SECURE] [--base-url-secure BASE-URL-SECURE] [--use-secure-admin USE-SECURE-ADMIN] [--admin-use-security-key ADMIN-USE-SECURITY-KEY] [--admin-user [ADMIN-USER]] [--admin-password [ADMIN-PASSWORD]] [--admin-email [ADMIN-EMAIL]] [--admin-firstname [ADMIN-FIRSTNAME]] [--admin-lastname [ADMIN-LASTNAME]] [--search-engine SEARCH-ENGINE] [--elasticsearch-host ELASTICSEARCH-HOST] [--elasticsearch-port ELASTICSEARCH-PORT] [--elasticsearch-enable-auth ELASTICSEARCH-ENABLE-AUTH] [--elasticsearch-username ELASTICSEARCH-USERNAME] [--elasticsearch-password ELASTICSEARCH-PASSWORD] [--elasticsearch-index-prefix ELASTICSEARCH-INDEX-PREFIX] [--elasticsearch-timeout ELASTICSEARCH-TIMEOUT] [--cleanup-database] [--sales-order-increment-prefix SALES-ORDER-INCREMENT-PREFIX] [--use-sample-data] [--enable-modules [ENABLE-MODULES]] [--disable-modules [DISABLE-MODULES]] [--convert-old-scripts [CONVERT-OLD-SCRIPTS]] [-i|--interactive] [--safe-mode [SAFE-MODE]] [--data-restore [DATA-RESTORE]] [--dry-run [DRY-RUN]] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Installs the Magento application","help":"Installs the Magento application","definition":{"arguments":[],"options":{"backend-frontname":{"name":"--backend-frontname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Backend frontname (will be autogenerated if missing)","default":null},"amqp-host":{"name":"--amqp-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server host","default":""},"amqp-port":{"name":"--amqp-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server port","default":"5672"},"amqp-user":{"name":"--amqp-user","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server username","default":""},"amqp-password":{"name":"--amqp-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server password","default":""},"amqp-virtualhost":{"name":"--amqp-virtualhost","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp virtualhost","default":"\/"},"amqp-ssl":{"name":"--amqp-ssl","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp SSL","default":""},"amqp-ssl-options":{"name":"--amqp-ssl-options","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp SSL Options (JSON)","default":""},"enable-debug-logging":{"name":"--enable-debug-logging","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Enable debug logging","default":null},"enable-syslog-logging":{"name":"--enable-syslog-logging","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Enable syslog logging","default":null},"consumers-wait-for-messages":{"name":"--consumers-wait-for-messages","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Should consumers wait for a message from the queue? 1 - Yes, 0 - No","default":null},"key":{"name":"--key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Encryption key","default":null},"db-host":{"name":"--db-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server host","default":null},"db-name":{"name":"--db-name","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database name","default":null},"db-user":{"name":"--db-user","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server username","default":null},"db-engine":{"name":"--db-engine","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server engine","default":null},"db-password":{"name":"--db-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server password","default":null},"db-prefix":{"name":"--db-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database table prefix","default":null},"db-model":{"name":"--db-model","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database type","default":null},"db-init-statements":{"name":"--db-init-statements","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database initial set of commands","default":null},"skip-db-validation":{"name":"--skip-db-validation","shortcut":"-s","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"If specified, then db connection validation will be skipped","default":false},"http-cache-hosts":{"name":"--http-cache-hosts","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"http Cache hosts","default":null},"db-ssl-key":{"name":"--db-ssl-key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of client key file in order to establish db connection through SSL","default":""},"db-ssl-cert":{"name":"--db-ssl-cert","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of client certificate file in order to establish db connection through SSL","default":""},"db-ssl-ca":{"name":"--db-ssl-ca","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of server certificate file in order to establish db connection through SSL","default":""},"db-ssl-verify":{"name":"--db-ssl-verify","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Verify server certification","default":false},"session-save":{"name":"--session-save","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Session save handler","default":null},"session-save-redis-host":{"name":"--session-save-redis-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Fully qualified host name, IP address, or absolute path if using UNIX sockets","default":null},"session-save-redis-port":{"name":"--session-save-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"session-save-redis-password":{"name":"--session-save-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"session-save-redis-timeout":{"name":"--session-save-redis-timeout","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Connection timeout, in seconds","default":null},"session-save-redis-persistent-id":{"name":"--session-save-redis-persistent-id","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Unique string to enable persistent connections","default":null},"session-save-redis-db":{"name":"--session-save-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis database number","default":null},"session-save-redis-compression-threshold":{"name":"--session-save-redis-compression-threshold","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis compression threshold","default":null},"session-save-redis-compression-lib":{"name":"--session-save-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis compression library. Values:\u00a0gzip (default), lzf, lz4, snappy","default":null},"session-save-redis-log-level":{"name":"--session-save-redis-log-level","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis log level. Values: 0 (least verbose) to 7 (most verbose)","default":null},"session-save-redis-max-concurrency":{"name":"--session-save-redis-max-concurrency","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Maximum number of processes that can wait for a lock on one session","default":null},"session-save-redis-break-after-frontend":{"name":"--session-save-redis-break-after-frontend","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Number of seconds to wait before trying to break a lock for frontend session","default":null},"session-save-redis-break-after-adminhtml":{"name":"--session-save-redis-break-after-adminhtml","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Number of seconds to wait before trying to break a lock for Admin session","default":null},"session-save-redis-first-lifetime":{"name":"--session-save-redis-first-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime, in seconds, of session for non-bots on the first write (use 0 to disable)","default":null},"session-save-redis-bot-first-lifetime":{"name":"--session-save-redis-bot-first-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime, in seconds, of session for bots on the first write (use 0 to disable)","default":null},"session-save-redis-bot-lifetime":{"name":"--session-save-redis-bot-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime of session for bots on subsequent writes (use 0 to disable)","default":null},"session-save-redis-disable-locking":{"name":"--session-save-redis-disable-locking","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis disable locking. Values:\u00a0false (default), true","default":null},"session-save-redis-min-lifetime":{"name":"--session-save-redis-min-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis min session lifetime, in seconds","default":null},"session-save-redis-max-lifetime":{"name":"--session-save-redis-max-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis max session lifetime, in seconds","default":null},"session-save-redis-sentinel-master":{"name":"--session-save-redis-sentinel-master","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel master","default":null},"session-save-redis-sentinel-servers":{"name":"--session-save-redis-sentinel-servers","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel servers, comma separated","default":null},"session-save-redis-sentinel-verify-master":{"name":"--session-save-redis-sentinel-verify-master","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel verify master. Values: false (default), true","default":null},"session-save-redis-sentinel-connect-retires":{"name":"--session-save-redis-sentinel-connect-retires","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel connect retries.","default":null},"cache-backend":{"name":"--cache-backend","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default cache handler","default":null},"cache-backend-redis-server":{"name":"--cache-backend-redis-server","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server","default":null},"cache-backend-redis-db":{"name":"--cache-backend-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database number for the cache","default":null},"cache-backend-redis-port":{"name":"--cache-backend-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"cache-backend-redis-password":{"name":"--cache-backend-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"cache-backend-redis-compress-data":{"name":"--cache-backend-redis-compress-data","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Set to 0 to disable compression (default is 1, enabled)","default":null},"cache-backend-redis-compression-lib":{"name":"--cache-backend-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Compression lib to use [snappy,lzf,l4z,zstd,gzip] (leave blank to determine automatically)","default":null},"cache-id-prefix":{"name":"--cache-id-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"ID prefix for cache keys","default":null},"allow-parallel-generation":{"name":"--allow-parallel-generation","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Allow generate cache in non-blocking way","default":false},"page-cache":{"name":"--page-cache","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default cache handler","default":null},"page-cache-redis-server":{"name":"--page-cache-redis-server","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server","default":null},"page-cache-redis-db":{"name":"--page-cache-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database number for the cache","default":null},"page-cache-redis-port":{"name":"--page-cache-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"page-cache-redis-password":{"name":"--page-cache-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"page-cache-redis-compress-data":{"name":"--page-cache-redis-compress-data","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Set to 1 to compress the full page cache (use 0 to disable)","default":null},"page-cache-redis-compression-lib":{"name":"--page-cache-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Compression library to use [snappy,lzf,l4z,zstd,gzip] (leave blank to determine automatically)","default":null},"page-cache-id-prefix":{"name":"--page-cache-id-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"ID prefix for cache keys","default":null},"lock-provider":{"name":"--lock-provider","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lock provider name","default":null},"lock-db-prefix":{"name":"--lock-db-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Installation specific lock prefix to avoid lock conflicts","default":null},"lock-zookeeper-host":{"name":"--lock-zookeeper-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Host and port to connect to Zookeeper cluster. For example: 127.0.0.1:2181","default":null},"lock-zookeeper-path":{"name":"--lock-zookeeper-path","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The path where Zookeeper will save locks. The default path is: \/magento\/locks","default":null},"lock-file-path":{"name":"--lock-file-path","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The path where file locks will be saved.","default":null},"base-url":{"name":"--base-url","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"URL the store is supposed to be available at. Deprecated, use config:set with path web\/unsecure\/base_url","default":null},"language":{"name":"--language","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default language code. Deprecated, use config:set with path general\/locale\/code","default":null},"timezone":{"name":"--timezone","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default time zone code. Deprecated, use config:set with path general\/locale\/timezone","default":null},"currency":{"name":"--currency","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default currency code. Deprecated, use config:set with path currency\/options\/base, currency\/options\/default and currency\/options\/allow","default":null},"use-rewrites":{"name":"--use-rewrites","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Use rewrites. Deprecated, use config:set with path web\/seo\/use_rewrites","default":null},"use-secure":{"name":"--use-secure","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Use secure URLs. Enable this option only if SSL is available. Deprecated, use config:set with path web\/secure\/use_in_frontend","default":null},"base-url-secure":{"name":"--base-url-secure","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Base URL for SSL connection. Deprecated, use config:set with path web\/secure\/base_url","default":null},"use-secure-admin":{"name":"--use-secure-admin","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Run admin interface with SSL. Deprecated, use config:set with path web\/secure\/use_in_adminhtml","default":null},"admin-use-security-key":{"name":"--admin-use-security-key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Whether to use a \"security key\" feature in Magento Admin URLs and forms. Deprecated, use config:set with path admin\/security\/use_form_key","default":null},"admin-user":{"name":"--admin-user","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Admin user","default":null},"admin-password":{"name":"--admin-password","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Admin password","default":null},"admin-email":{"name":"--admin-email","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Admin email","default":null},"admin-firstname":{"name":"--admin-firstname","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Admin first name","default":null},"admin-lastname":{"name":"--admin-lastname","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Admin last name","default":null},"search-engine":{"name":"--search-engine","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Search engine. Values: elasticsearch5, elasticsearch6, elasticsearch7","default":null},"elasticsearch-host":{"name":"--elasticsearch-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Elasticsearch server host.","default":null},"elasticsearch-port":{"name":"--elasticsearch-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Elasticsearch server port.","default":null},"elasticsearch-enable-auth":{"name":"--elasticsearch-enable-auth","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Set to 1 to enable authentication. (default is 0, disabled)","default":null},"elasticsearch-username":{"name":"--elasticsearch-username","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Elasticsearch username. Only applicable if HTTP auth is enabled","default":null},"elasticsearch-password":{"name":"--elasticsearch-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Elasticsearch password. Only applicable if HTTP auth is enabled","default":null},"elasticsearch-index-prefix":{"name":"--elasticsearch-index-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Elasticsearch index prefix.","default":null},"elasticsearch-timeout":{"name":"--elasticsearch-timeout","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Elasticsearch server timeout.","default":null},"cleanup-database":{"name":"--cleanup-database","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Cleanup the database before installation","default":false},"sales-order-increment-prefix":{"name":"--sales-order-increment-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Sales order number prefix","default":null},"use-sample-data":{"name":"--use-sample-data","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Use sample data","default":false},"enable-modules":{"name":"--enable-modules","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"List of comma-separated module names. That must be included during installation. Available magic param \"all\".","default":null},"disable-modules":{"name":"--disable-modules","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"List of comma-separated module names. That must be avoided during installation. Available magic param \"all\".","default":null},"convert-old-scripts":{"name":"--convert-old-scripts","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Allows to convert old scripts (InstallSchema, UpgradeSchema) to db_schema.xml format","default":false},"interactive":{"name":"--interactive","shortcut":"-i","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Interactive Magento installation","default":false},"safe-mode":{"name":"--safe-mode","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Safe installation of Magento with dumps on destructive operations, like column removal","default":null},"data-restore":{"name":"--data-restore","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Restore removed data from dumps","default":null},"dry-run":{"name":"--dry-run","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Magento Installation will be run in dry-run mode","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:performance:generate-fixtures","usage":["setup:performance:generate-fixtures [-s|--skip-reindex] [--] "],"description":"Generates fixtures","help":"Generates fixtures","definition":{"arguments":{"profile":{"name":"profile","is_required":true,"is_array":false,"description":"Path to profile configuration file","default":null}},"options":{"skip-reindex":{"name":"--skip-reindex","shortcut":"-s","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Skip reindex","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:rollback","usage":["setup:rollback [-c|--code-file CODE-FILE] [-m|--media-file MEDIA-FILE] [-d|--db-file DB-FILE] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Rolls back Magento Application codebase, media and database","help":"Rolls back Magento Application codebase, media and database","definition":{"arguments":[],"options":{"code-file":{"name":"--code-file","shortcut":"-c","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Basename of the code backup file in var\/backups","default":null},"media-file":{"name":"--media-file","shortcut":"-m","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Basename of the media backup file in var\/backups","default":null},"db-file":{"name":"--db-file","shortcut":"-d","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Basename of the db backup file in var\/backups","default":null},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:static-content:deploy","usage":["setup:static-content:deploy [-f|--force] [-s|--strategy [STRATEGY]] [-a|--area [AREA]] [--exclude-area [EXCLUDE-AREA]] [-t|--theme [THEME]] [--exclude-theme [EXCLUDE-THEME]] [-l|--language [LANGUAGE]] [--exclude-language [EXCLUDE-LANGUAGE]] [-j|--jobs [JOBS]] [--max-execution-time [MAX-EXECUTION-TIME]] [--symlink-locale] [--content-version CONTENT-VERSION] [--refresh-content-version-only] [--no-javascript] [--no-js-bundle] [--no-css] [--no-less] [--no-images] [--no-fonts] [--no-html] [--no-misc] [--no-html-minify] [--] [...]"],"description":"Deploys static view files","help":"Deploys static view files","definition":{"arguments":{"languages":{"name":"languages","is_required":false,"is_array":true,"description":"Space-separated list of ISO-639 language codes for which to output static view files.","default":[]}},"options":{"force":{"name":"--force","shortcut":"-f","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Deploy files in any mode.","default":false},"strategy":{"name":"--strategy","shortcut":"-s","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Deploy files using specified strategy.","default":"quick"},"area":{"name":"--area","shortcut":"-a","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Generate files only for the specified areas.","default":["all"]},"exclude-area":{"name":"--exclude-area","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Do not generate files for the specified areas.","default":["none"]},"theme":{"name":"--theme","shortcut":"-t","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Generate static view files for only the specified themes.","default":["all"]},"exclude-theme":{"name":"--exclude-theme","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Do not generate files for the specified themes.","default":["none"]},"language":{"name":"--language","shortcut":"-l","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Generate files only for the specified languages.","default":["all"]},"exclude-language":{"name":"--exclude-language","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Do not generate files for the specified languages.","default":["none"]},"jobs":{"name":"--jobs","shortcut":"-j","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Enable parallel processing using the specified number of jobs.","default":0},"max-execution-time":{"name":"--max-execution-time","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"The maximum expected execution time of deployment static process (in seconds).","default":400},"symlink-locale":{"name":"--symlink-locale","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Create symlinks for the files of those locales, which are passed for deployment, but have no customizations.","default":false},"content-version":{"name":"--content-version","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Custom version of static content can be used if running deployment on multiple nodes to ensure that static content version is identical and caching works properly.","default":null},"refresh-content-version-only":{"name":"--refresh-content-version-only","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Refreshing the version of static content only can be used to refresh static content in browser cache and CDN cache.","default":false},"no-javascript":{"name":"--no-javascript","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy JavaScript files.","default":false},"no-js-bundle":{"name":"--no-js-bundle","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy JavaScript bundle files.","default":false},"no-css":{"name":"--no-css","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy CSS files.","default":false},"no-less":{"name":"--no-less","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy LESS files.","default":false},"no-images":{"name":"--no-images","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy images.","default":false},"no-fonts":{"name":"--no-fonts","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy font files.","default":false},"no-html":{"name":"--no-html","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy HTML files.","default":false},"no-misc":{"name":"--no-misc","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy files of other types (.md, .jbf, .csv, etc.).","default":false},"no-html-minify":{"name":"--no-html-minify","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not minify HTML files.","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:store-config:set","usage":["setup:store-config:set [--base-url BASE-URL] [--language LANGUAGE] [--timezone TIMEZONE] [--currency CURRENCY] [--use-rewrites USE-REWRITES] [--use-secure USE-SECURE] [--base-url-secure BASE-URL-SECURE] [--use-secure-admin USE-SECURE-ADMIN] [--admin-use-security-key ADMIN-USE-SECURITY-KEY] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Installs the store configuration. Deprecated since 2.2.0. Use config:set instead","help":"Installs the store configuration. Deprecated since 2.2.0. Use config:set instead","definition":{"arguments":[],"options":{"base-url":{"name":"--base-url","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"URL the store is supposed to be available at. Deprecated, use config:set with path web\/unsecure\/base_url","default":null},"language":{"name":"--language","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default language code. Deprecated, use config:set with path general\/locale\/code","default":null},"timezone":{"name":"--timezone","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default time zone code. Deprecated, use config:set with path general\/locale\/timezone","default":null},"currency":{"name":"--currency","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default currency code. Deprecated, use config:set with path currency\/options\/base, currency\/options\/default and currency\/options\/allow","default":null},"use-rewrites":{"name":"--use-rewrites","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Use rewrites. Deprecated, use config:set with path web\/seo\/use_rewrites","default":null},"use-secure":{"name":"--use-secure","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Use secure URLs. Enable this option only if SSL is available. Deprecated, use config:set with path web\/secure\/use_in_frontend","default":null},"base-url-secure":{"name":"--base-url-secure","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Base URL for SSL connection. Deprecated, use config:set with path web\/secure\/base_url","default":null},"use-secure-admin":{"name":"--use-secure-admin","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Run admin interface with SSL. Deprecated, use config:set with path web\/secure\/use_in_adminhtml","default":null},"admin-use-security-key":{"name":"--admin-use-security-key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Whether to use a \"security key\" feature in Magento Admin URLs and forms. Deprecated, use config:set with path admin\/security\/use_form_key","default":null},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:uninstall","usage":["setup:uninstall [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Uninstalls the Magento application","help":"Uninstalls the Magento application","definition":{"arguments":[],"options":{"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:upgrade","usage":["setup:upgrade [--keep-generated] [--convert-old-scripts [CONVERT-OLD-SCRIPTS]] [--safe-mode [SAFE-MODE]] [--data-restore [DATA-RESTORE]] [--dry-run [DRY-RUN]] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Upgrades the Magento application, DB data, and schema","help":"Upgrades the Magento application, DB data, and schema","definition":{"arguments":[],"options":{"keep-generated":{"name":"--keep-generated","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Prevents generated files from being deleted. We discourage using this option except when deploying to production. Consult your system integrator or administrator for more information.","default":false},"convert-old-scripts":{"name":"--convert-old-scripts","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Allows to convert old scripts (InstallSchema, UpgradeSchema) to db_schema.xml format","default":false},"safe-mode":{"name":"--safe-mode","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Safe installation of Magento with dumps on destructive operations, like column removal","default":null},"data-restore":{"name":"--data-restore","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Restore removed data from dumps","default":null},"dry-run":{"name":"--dry-run","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Magento Installation will be run in dry-run mode","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"store:list","usage":["store:list"],"description":"Displays the list of stores","help":"Displays the list of stores","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"store:website:list","usage":["store:website:list"],"description":"Displays the list of websites","help":"Displays the list of websites","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"support:backup:code","usage":["support:backup:code [--name [NAME]] [-o|--output [OUTPUT]] [-l|--logs]"],"description":"Create Code backup","help":"Create Code backup","definition":{"arguments":[],"options":{"name":{"name":"--name","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Dump name","default":null},"output":{"name":"--output","shortcut":"-o","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Output path","default":null},"logs":{"name":"--logs","shortcut":"-l","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Include logs","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"support:backup:db","usage":["support:backup:db [--name [NAME]] [-o|--output [OUTPUT]] [-l|--logs] [-i|--ignore-sanitize]"],"description":"Create DB backup","help":"Create DB backup","definition":{"arguments":[],"options":{"name":{"name":"--name","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Dump name","default":null},"output":{"name":"--output","shortcut":"-o","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Output path","default":null},"logs":{"name":"--logs","shortcut":"-l","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Include logs","default":false},"ignore-sanitize":{"name":"--ignore-sanitize","shortcut":"-i","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Ignore sanitize","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"support:utility:check","usage":["support:utility:check [--hide-paths]"],"description":"Check required backup utilities","help":"Check required backup utilities","definition":{"arguments":[],"options":{"hide-paths":{"name":"--hide-paths","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Only check required console utilities","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"support:utility:paths","usage":["support:utility:paths [-f|--force]"],"description":"Create utilities paths list","help":"Create utilities paths list","definition":{"arguments":[],"options":{"force":{"name":"--force","shortcut":"-f","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"theme:uninstall","usage":["theme:uninstall [--backup-code] [-c|--clear-static-content] [--] ..."],"description":"Uninstalls theme","help":"Uninstalls theme","definition":{"arguments":{"theme":{"name":"theme","is_required":true,"is_array":true,"description":"Path of the theme. Theme path should be specified as full path which is area\/vendor\/name. For example, frontend\/Magento\/blank","default":[]}},"options":{"backup-code":{"name":"--backup-code","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take code backup (excluding temporary files)","default":false},"clear-static-content":{"name":"--clear-static-content","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Clear generated static view files.","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"varnish:vcl:generate","usage":["varnish:vcl:generate [--access-list ACCESS-LIST] [--backend-host BACKEND-HOST] [--backend-port BACKEND-PORT] [--export-version EXPORT-VERSION] [--grace-period GRACE-PERIOD] [--output-file OUTPUT-FILE]"],"description":"Generates Varnish VCL and echos it to the command line","help":"Generates Varnish VCL and echos it to the command line","definition":{"arguments":[],"options":{"access-list":{"name":"--access-list","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":true,"description":"IPs access list that can purge Varnish","default":["localhost"]},"backend-host":{"name":"--backend-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Host of the web backend","default":"localhost"},"backend-port":{"name":"--backend-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Port of the web backend","default":8080},"export-version":{"name":"--export-version","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The version of Varnish file","default":"4"},"grace-period":{"name":"--grace-period","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Grace period in seconds","default":300},"output-file":{"name":"--output-file","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Path to the file to write vcl","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"yotpo:reset","usage":["yotpo:reset [-e|--entity [ENTITY]]"],"description":"Reset Yotpo sync flags &\/or configurations","help":"Reset Yotpo sync flags &\/or configurations","definition":{"arguments":[],"options":{"entity":{"name":"--entity","shortcut":"-e","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Entity type (orders)","default":"orders"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"yotpo:sync","usage":["yotpo:sync [-e|--entity ENTITY] [-l|--limit [LIMIT]]"],"description":"Sync Yotpo manually (reviews module)","help":"Sync Yotpo manually (reviews module)","definition":{"arguments":[],"options":{"entity":{"name":"--entity","shortcut":"-e","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Entity type (allowed options: orders)","default":"orders"},"limit":{"name":"--limit","shortcut":"-l","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Max entity items to sync. WARNING: Setting a high sync limit (or no limit) may result in a high server load (0=no limit).","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"yotpo:update-metadata","usage":["yotpo:update-metadata"],"description":"Manually send platform metadata to Yotpo","help":"Manually send platform metadata to Yotpo","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false}],"namespaces":[{"id":"_global","commands":["help","list"]},{"id":"admin","commands":["admin:user:create","admin:user:unlock"]},{"id":"app","commands":["app:config:dump","app:config:import","app:config:status"]},{"id":"braintree","commands":["braintree:migrate"]},{"id":"cache","commands":["cache:clean","cache:disable","cache:enable","cache:flush","cache:status"]},{"id":"catalog","commands":["catalog:images:resize","catalog:product:attributes:cleanup"]},{"id":"config","commands":["config:sensitive:set","config:set","config:show"]},{"id":"cron","commands":["cron:install","cron:remove","cron:run"]},{"id":"customer","commands":["customer:hash:upgrade"]},{"id":"deploy","commands":["deploy:mode:set","deploy:mode:show"]},{"id":"dev","commands":["dev:di:info","dev:profiler:disable","dev:profiler:enable","dev:query-log:disable","dev:query-log:enable","dev:source-theme:deploy","dev:template-hints:disable","dev:template-hints:enable","dev:template-hints:status","dev:tests:run","dev:urn-catalog:generate","dev:xml:convert"]},{"id":"dotdigital","commands":["dotdigital:connector:automap","dotdigital:connector:enable","dotdigital:migrate","dotdigital:sync"]},{"id":"downloadable","commands":["downloadable:domains:add","downloadable:domains:remove","downloadable:domains:show"]},{"id":"encryption","commands":["encryption:payment-data:update"]},{"id":"i18n","commands":["i18n:collect-phrases","i18n:pack","i18n:uninstall"]},{"id":"indexer","commands":["indexer:info","indexer:reindex","indexer:reset","indexer:set-dimensions-mode","indexer:set-mode","indexer:show-dimensions-mode","indexer:show-mode","indexer:status"]},{"id":"info","commands":["info:adminuri","info:backups:list","info:currency:list","info:dependencies:show-framework","info:dependencies:show-modules","info:dependencies:show-modules-circular","info:language:list","info:timezone:list"]},{"id":"inventory","commands":["inventory:reservation:create-compensations","inventory:reservation:list-inconsistencies"]},{"id":"inventory-geonames","commands":["inventory-geonames:import"]},{"id":"maintenance","commands":["maintenance:allow-ips","maintenance:disable","maintenance:enable","maintenance:status"]},{"id":"media-content","commands":["media-content:sync"]},{"id":"media-gallery","commands":["media-gallery:sync"]},{"id":"module","commands":["module:config:status","module:disable","module:enable","module:status","module:uninstall"]},{"id":"newrelic","commands":["newrelic:create:deploy-marker"]},{"id":"queue","commands":["queue:consumers:list","queue:consumers:start"]},{"id":"sampledata","commands":["sampledata:deploy","sampledata:remove","sampledata:reset"]},{"id":"security","commands":["security:recaptcha:disable-for-user-forgot-password","security:recaptcha:disable-for-user-login","security:tfa:google:set-secret","security:tfa:providers","security:tfa:reset"]},{"id":"setup","commands":["setup:backup","setup:config:set","setup:db-data:upgrade","setup:db-declaration:generate-patch","setup:db-declaration:generate-whitelist","setup:db-schema:add-slave","setup:db-schema:split-quote","setup:db-schema:split-sales","setup:db-schema:upgrade","setup:db:status","setup:di:compile","setup:install","setup:performance:generate-fixtures","setup:rollback","setup:static-content:deploy","setup:store-config:set","setup:uninstall","setup:upgrade"]},{"id":"store","commands":["store:list","store:website:list"]},{"id":"support","commands":["support:backup:code","support:backup:db","support:utility:check","support:utility:paths"]},{"id":"theme","commands":["theme:uninstall"]},{"id":"varnish","commands":["varnish:vcl:generate"]},{"id":"yotpo","commands":["yotpo:reset","yotpo:sync","yotpo:update-metadata"]}]} \ No newline at end of file +{"application":{"name":"Magento CLI","version":"2.4.1"},"commands":[{"name":"help","usage":["help [--format FORMAT] [--raw] [--] []"],"description":"Displays help for a command","help":"The help<\/info> command displays help for a given command:\n\n php \/var\/www\/html\/magento2\/bin\/magento help list<\/info>\n\nYou can also output the help in other formats by using the --format<\/comment> option:\n\n php \/var\/www\/html\/magento2\/bin\/magento help --format=xml list<\/info>\n\nTo display the list of available commands, please use the list<\/info> command.","definition":{"arguments":{"command_name":{"name":"command_name","is_required":false,"is_array":false,"description":"The command name","default":"help"}},"options":{"format":{"name":"--format","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The output format (txt, xml, json, or md)","default":"txt"},"raw":{"name":"--raw","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"To output raw command help","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"list","usage":["list [--raw] [--format FORMAT] [--] []"],"description":"Lists commands","help":"The list<\/info> command lists all commands:\n\n php \/var\/www\/html\/magento2\/bin\/magento list<\/info>\n\nYou can also display the commands for a specific namespace:\n\n php \/var\/www\/html\/magento2\/bin\/magento list test<\/info>\n\nYou can also output the information in other formats by using the --format<\/comment> option:\n\n php \/var\/www\/html\/magento2\/bin\/magento list --format=xml<\/info>\n\nIt's also possible to get raw list of commands (useful for embedding command runner):\n\n php \/var\/www\/html\/magento2\/bin\/magento list --raw<\/info>","definition":{"arguments":{"namespace":{"name":"namespace","is_required":false,"is_array":false,"description":"The namespace name","default":null}},"options":{"raw":{"name":"--raw","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"To output raw command list","default":false},"format":{"name":"--format","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The output format (txt, xml, json, or md)","default":"txt"}}},"hidden":false},{"name":"admin:user:create","usage":["admin:user:create [--admin-user ADMIN-USER] [--admin-password ADMIN-PASSWORD] [--admin-email ADMIN-EMAIL] [--admin-firstname ADMIN-FIRSTNAME] [--admin-lastname ADMIN-LASTNAME] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Creates an administrator","help":"Creates an administrator","definition":{"arguments":[],"options":{"admin-user":{"name":"--admin-user","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"(Required) Admin user","default":null},"admin-password":{"name":"--admin-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"(Required) Admin password","default":null},"admin-email":{"name":"--admin-email","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"(Required) Admin email","default":null},"admin-firstname":{"name":"--admin-firstname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"(Required) Admin first name","default":null},"admin-lastname":{"name":"--admin-lastname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"(Required) Admin last name","default":null},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"admin:user:unlock","usage":["admin:user:unlock "],"description":"Unlock Admin Account","help":"This command unlocks an admin account by its username.\nTo unlock:\n \/var\/www\/html\/magento2\/bin\/magento admin:user:unlock username<\/comment>","definition":{"arguments":{"username":{"name":"username","is_required":true,"is_array":false,"description":"The admin username to unlock","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"app:config:dump","usage":["app:config:dump [...]"],"description":"Create dump of application","help":"Create dump of application","definition":{"arguments":{"config-types":{"name":"config-types","is_required":false,"is_array":true,"description":"Space-separated list of config types or omit to dump all [scopes, themes, system, i18n]","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"app:config:import","usage":["app:config:import"],"description":"Import data from shared configuration files to appropriate data storage","help":"Import data from shared configuration files to appropriate data storage","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"app:config:status","usage":["app:config:status"],"description":"Checks if config propagation requires update","help":"Checks if config propagation requires update","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"braintree:migrate","usage":["braintree:migrate [--host HOST] [--dbname DBNAME] [--username USERNAME] [--password PASSWORD]"],"description":"Migrate stored cards from a Magento 1 database","help":"Migrate stored cards from a Magento 1 database","definition":{"arguments":[],"options":{"host":{"name":"--host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Hostname\/IP. Port is optional","default":null},"dbname":{"name":"--dbname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database name","default":null},"username":{"name":"--username","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database username. Must have read access","default":null},"password":{"name":"--password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Password","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cache:clean","usage":["cache:clean [--bootstrap BOOTSTRAP] [--] [...]"],"description":"Cleans cache type(s)","help":"Cleans cache type(s)","definition":{"arguments":{"types":{"name":"types","is_required":false,"is_array":true,"description":"Space-separated list of cache types or omit to apply to all cache types.","default":[]}},"options":{"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cache:disable","usage":["cache:disable [--bootstrap BOOTSTRAP] [--] [...]"],"description":"Disables cache type(s)","help":"Disables cache type(s)","definition":{"arguments":{"types":{"name":"types","is_required":false,"is_array":true,"description":"Space-separated list of cache types or omit to apply to all cache types.","default":[]}},"options":{"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cache:enable","usage":["cache:enable [--bootstrap BOOTSTRAP] [--] [...]"],"description":"Enables cache type(s)","help":"Enables cache type(s)","definition":{"arguments":{"types":{"name":"types","is_required":false,"is_array":true,"description":"Space-separated list of cache types or omit to apply to all cache types.","default":[]}},"options":{"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cache:flush","usage":["cache:flush [--bootstrap BOOTSTRAP] [--] [...]"],"description":"Flushes cache storage used by cache type(s)","help":"Flushes cache storage used by cache type(s)","definition":{"arguments":{"types":{"name":"types","is_required":false,"is_array":true,"description":"Space-separated list of cache types or omit to apply to all cache types.","default":[]}},"options":{"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cache:status","usage":["cache:status [--bootstrap BOOTSTRAP]"],"description":"Checks cache status","help":"Checks cache status","definition":{"arguments":[],"options":{"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"catalog:images:resize","usage":["catalog:images:resize [-a|--async]"],"description":"Creates resized product images","help":"Creates resized product images","definition":{"arguments":[],"options":{"async":{"name":"--async","shortcut":"-a","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Resize image in asynchronous mode","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"catalog:product:attributes:cleanup","usage":["catalog:product:attributes:cleanup"],"description":"Removes unused product attributes.","help":"Removes unused product attributes.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"config:sensitive:set","usage":["config:sensitive:set [-i|--interactive] [--scope [SCOPE]] [--scope-code [SCOPE-CODE]] [--] [ []]"],"description":"Set sensitive configuration values","help":"Set sensitive configuration values","definition":{"arguments":{"path":{"name":"path","is_required":false,"is_array":false,"description":"Configuration path for example group\/section\/field_name","default":null},"value":{"name":"value","is_required":false,"is_array":false,"description":"Configuration value","default":null}},"options":{"interactive":{"name":"--interactive","shortcut":"-i","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Enable interactive mode to set all sensitive variables","default":false},"scope":{"name":"--scope","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Scope for configuration, if not set use 'default'","default":"default"},"scope-code":{"name":"--scope-code","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Scope code for configuration, empty string by default","default":""},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"config:set","usage":["config:set [--scope SCOPE] [--scope-code SCOPE-CODE] [-e|--lock-env] [-c|--lock-config] [-l|--lock] [--] "],"description":"Change system configuration","help":"Change system configuration","definition":{"arguments":{"path":{"name":"path","is_required":true,"is_array":false,"description":"Configuration path in format section\/group\/field_name","default":null},"value":{"name":"value","is_required":true,"is_array":false,"description":"Configuration value","default":null}},"options":{"scope":{"name":"--scope","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Configuration scope (default, website, or store)","default":"default"},"scope-code":{"name":"--scope-code","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Scope code (required only if scope is not 'default')","default":null},"lock-env":{"name":"--lock-env","shortcut":"-e","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Lock value which prevents modification in the Admin (will be saved in app\/etc\/env.php)","default":false},"lock-config":{"name":"--lock-config","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Lock and share value with other installations, prevents modification in the Admin (will be saved in app\/etc\/config.php)","default":false},"lock":{"name":"--lock","shortcut":"-l","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Deprecated, use the --lock-env option instead.","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"config:show","usage":["config:show [--scope [SCOPE]] [--scope-code [SCOPE-CODE]] [--] []"],"description":"Shows configuration value for given path. If path is not specified, all saved values will be shown","help":"Shows configuration value for given path. If path is not specified, all saved values will be shown","definition":{"arguments":{"path":{"name":"path","is_required":false,"is_array":false,"description":"Configuration path, for example section_id\/group_id\/field_id","default":null}},"options":{"scope":{"name":"--scope","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Scope for configuration, if not specified, then 'default' scope will be used","default":"default"},"scope-code":{"name":"--scope-code","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Scope code (required only if scope is not `default`)","default":""},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cron:install","usage":["cron:install [-f|--force] [-d|--non-optional]"],"description":"Generates and installs crontab for current user","help":"Generates and installs crontab for current user","definition":{"arguments":[],"options":{"force":{"name":"--force","shortcut":"-f","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force install tasks","default":false},"non-optional":{"name":"--non-optional","shortcut":"-d","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Install only the non-optional (default) tasks","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cron:remove","usage":["cron:remove"],"description":"Removes tasks from crontab","help":"Removes tasks from crontab","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cron:run","usage":["cron:run [--group GROUP] [--bootstrap BOOTSTRAP]"],"description":"Runs jobs by schedule","help":"Runs jobs by schedule","definition":{"arguments":[],"options":{"group":{"name":"--group","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Run jobs only from specified group","default":null},"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"customer:hash:upgrade","usage":["customer:hash:upgrade"],"description":"Upgrade customer's hash according to the latest algorithm","help":"Upgrade customer's hash according to the latest algorithm","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"deploy:mode:set","usage":["deploy:mode:set [-s|--skip-compilation] [--] "],"description":"Set application mode.","help":"Set application mode.","definition":{"arguments":{"mode":{"name":"mode","is_required":true,"is_array":false,"description":"The application mode to set. Available options are \"developer\" or \"production\"","default":null}},"options":{"skip-compilation":{"name":"--skip-compilation","shortcut":"-s","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Skips the clearing and regeneration of static content (generated code, preprocessed CSS, and assets in pub\/static\/)","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"deploy:mode:show","usage":["deploy:mode:show"],"description":"Displays current application mode.","help":"Displays current application mode.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:di:info","usage":["dev:di:info "],"description":"Provides information on Dependency Injection configuration for the Command.","help":"Provides information on Dependency Injection configuration for the Command.","definition":{"arguments":{"class":{"name":"class","is_required":true,"is_array":false,"description":"Class name","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:profiler:disable","usage":["dev:profiler:disable"],"description":"Disable the profiler.","help":"Disable the profiler.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:profiler:enable","usage":["dev:profiler:enable []"],"description":"Enable the profiler.","help":"Enable the profiler.","definition":{"arguments":{"type":{"name":"type","is_required":false,"is_array":false,"description":"Profiler type","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:query-log:disable","usage":["dev:query-log:disable"],"description":"Disable DB query logging","help":"Disable DB query logging","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:query-log:enable","usage":["dev:query-log:enable [--include-all-queries [INCLUDE-ALL-QUERIES]] [--query-time-threshold [QUERY-TIME-THRESHOLD]] [--include-call-stack [INCLUDE-CALL-STACK]]"],"description":"Enable DB query logging","help":"Enable DB query logging","definition":{"arguments":[],"options":{"include-all-queries":{"name":"--include-all-queries","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Log all queries. [true|false]","default":"true"},"query-time-threshold":{"name":"--query-time-threshold","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Query time thresholds.","default":"0.001"},"include-call-stack":{"name":"--include-call-stack","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Include call stack. [true|false]","default":"true"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:source-theme:deploy","usage":["dev:source-theme:deploy [--type TYPE] [--locale LOCALE] [--area AREA] [--theme THEME] [--] [...]"],"description":"Collects and publishes source files for theme.","help":"Collects and publishes source files for theme.","definition":{"arguments":{"file":{"name":"file","is_required":false,"is_array":true,"description":"Files to pre-process (file should be specified without extension)","default":["css\/styles-m","css\/styles-l"]}},"options":{"type":{"name":"--type","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Type of source files: [less]","default":"less"},"locale":{"name":"--locale","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Locale: [en_US]","default":"en_US"},"area":{"name":"--area","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Area: [frontend|adminhtml]","default":"frontend"},"theme":{"name":"--theme","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Theme: [Vendor\/theme]","default":"Magento\/luma"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:template-hints:disable","usage":["dev:template-hints:disable"],"description":"Disable frontend template hints. A cache flush might be required.","help":"Disable frontend template hints. A cache flush might be required.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:template-hints:enable","usage":["dev:template-hints:enable"],"description":"Enable frontend template hints. A cache flush might be required.","help":"Enable frontend template hints. A cache flush might be required.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:template-hints:status","usage":["dev:template-hints:status"],"description":"Show frontend template hints status.","help":"Show frontend template hints status.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:tests:run","usage":["dev:tests:run [-c|--arguments ARGUMENTS] [--] []"],"description":"Runs tests","help":"Runs tests","definition":{"arguments":{"type":{"name":"type","is_required":false,"is_array":false,"description":"Type of test to run. Available types: all, unit, integration, integration-all, static, static-all, integrity, legacy, default","default":"default"}},"options":{"arguments":{"name":"--arguments","shortcut":"-c","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Additional arguments for PHPUnit. Example: \"-c'--filter=MyTest'\" (no spaces)","default":""},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:urn-catalog:generate","usage":["dev:urn-catalog:generate [--ide IDE] [--] "],"description":"Generates the catalog of URNs to *.xsd mappings for the IDE to highlight xml.","help":"Generates the catalog of URNs to *.xsd mappings for the IDE to highlight xml.","definition":{"arguments":{"path":{"name":"path","is_required":true,"is_array":false,"description":"Path to file to output the catalog. For PhpStorm use .idea\/misc.xml","default":null}},"options":{"ide":{"name":"--ide","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Format in which catalog will be generated. Supported: [phpstorm, vscode]","default":"phpstorm"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:xml:convert","usage":["dev:xml:convert [-o|--overwrite] [--] "],"description":"Converts XML file using XSL style sheets","help":"Converts XML file using XSL style sheets","definition":{"arguments":{"xml-file":{"name":"xml-file","is_required":true,"is_array":false,"description":"Path to XML file that going to be transformed","default":null},"processor":{"name":"processor","is_required":true,"is_array":false,"description":"Path to XSL style sheet that going to be applied to XML file","default":null}},"options":{"overwrite":{"name":"--overwrite","shortcut":"-o","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Overwrite XML file","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dotdigital:connector:automap","usage":["dotdigital:connector:automap"],"description":"Auto-map data fields","help":"Auto-map data fields","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dotdigital:connector:enable","usage":["dotdigital:connector:enable [--username USERNAME] [--password PASSWORD] [--automap-datafields [AUTOMAP-DATAFIELDS]] [--enable-syncs [ENABLE-SYNCS]] [--remove-ip-restriction [REMOVE-IP-RESTRICTION]] [--enable-email-capture [ENABLE-EMAIL-CAPTURE]]"],"description":"Add Dotdigital API credentials and enable the connector","help":"Add Dotdigital API credentials and enable the connector","definition":{"arguments":[],"options":{"username":{"name":"--username","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"API username","default":null},"password":{"name":"--password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"API password","default":null},"automap-datafields":{"name":"--automap-datafields","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Automap data fields","default":null},"enable-syncs":{"name":"--enable-syncs","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Enable syncs","default":null},"remove-ip-restriction":{"name":"--remove-ip-restriction","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Remove IP restriction","default":null},"enable-email-capture":{"name":"--enable-email-capture","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Enable email capture","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dotdigital:migrate","usage":["dotdigital:migrate"],"description":"Migrate data into email_ tables to sync with Engagement Cloud","help":"Migrate data into email_ tables to sync with Engagement Cloud","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dotdigital:sync","usage":["dotdigital:sync [--from [FROM]] [--] []"],"description":"Run syncs to populate email_ tables before importing to Engagement Cloud","help":"Run syncs to populate email_ tables before importing to Engagement Cloud","definition":{"arguments":{"sync":{"name":"sync","is_required":false,"is_array":false,"description":"The name of the sync to run","default":null}},"options":{"from":{"name":"--from","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Specify a date\/time (parsable by \\DateTime) to run a sync from (if supported)","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"downloadable:domains:add","usage":["downloadable:domains:add [...]"],"description":"Add domains to the downloadable domains whitelist","help":"Add domains to the downloadable domains whitelist","definition":{"arguments":{"domains":{"name":"domains","is_required":false,"is_array":true,"description":"Domains name","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"downloadable:domains:remove","usage":["downloadable:domains:remove [...]"],"description":"Remove domains from the downloadable domains whitelist","help":"Remove domains from the downloadable domains whitelist","definition":{"arguments":{"domains":{"name":"domains","is_required":false,"is_array":true,"description":"Domain names","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"downloadable:domains:show","usage":["downloadable:domains:show"],"description":"Display downloadable domains whitelist","help":"Display downloadable domains whitelist","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"encryption:payment-data:update","usage":["encryption:payment-data:update"],"description":"Re-encrypts encrypted credit card data with latest encryption cipher.","help":"Re-encrypts encrypted credit card data with latest encryption cipher.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"i18n:collect-phrases","usage":["i18n:collect-phrases [-o|--output OUTPUT] [-m|--magento] [--] []"],"description":"Discovers phrases in the codebase","help":"Discovers phrases in the codebase","definition":{"arguments":{"directory":{"name":"directory","is_required":false,"is_array":false,"description":"Directory path to parse. Not needed if --magento flag is set","default":null}},"options":{"output":{"name":"--output","shortcut":"-o","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Path (including filename) to an output file. With no file specified, defaults to stdout.","default":null},"magento":{"name":"--magento","shortcut":"-m","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Use the --magento parameter to parse the current Magento codebase. Omit the parameter if a directory is specified.","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"i18n:pack","usage":["i18n:pack [-m|--mode MODE] [-d|--allow-duplicates] [--] "],"description":"Saves language package","help":"Saves language package","definition":{"arguments":{"source":{"name":"source","is_required":true,"is_array":false,"description":"Path to source dictionary file with translations","default":null},"locale":{"name":"locale","is_required":true,"is_array":false,"description":"Target locale for dictionary, for example \"de_DE\"","default":null}},"options":{"mode":{"name":"--mode","shortcut":"-m","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Save mode for dictionary - \"replace\" - replace language pack by new one - \"merge\" - merge language packages, by default \"replace\"","default":"replace"},"allow-duplicates":{"name":"--allow-duplicates","shortcut":"-d","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Use the --allow-duplicates parameter to allow saving duplicates of translate. Otherwise omit the parameter.","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"i18n:uninstall","usage":["i18n:uninstall [-b|--backup-code] [--] ..."],"description":"Uninstalls language packages","help":"Uninstalls language packages","definition":{"arguments":{"package":{"name":"package","is_required":true,"is_array":true,"description":"Language package name","default":[]}},"options":{"backup-code":{"name":"--backup-code","shortcut":"-b","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take code and configuration files backup (excluding temporary files)","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:info","usage":["indexer:info"],"description":"Shows allowed Indexers","help":"Shows allowed Indexers","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:reindex","usage":["indexer:reindex [...]"],"description":"Reindexes Data","help":"Reindexes Data","definition":{"arguments":{"index":{"name":"index","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes.","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:reset","usage":["indexer:reset [...]"],"description":"Resets indexer status to invalid","help":"Resets indexer status to invalid","definition":{"arguments":{"index":{"name":"index","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes.","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:set-dimensions-mode","usage":["indexer:set-dimensions-mode [ []]"],"description":"Set Indexer Dimensions Mode","help":"Set Indexer Dimensions Mode","definition":{"arguments":{"indexer":{"name":"indexer","is_required":false,"is_array":false,"description":"Indexer name [catalog_product_price]","default":null},"mode":{"name":"mode","is_required":false,"is_array":false,"description":"Indexer dimension modes catalog_product_price none,website,customer_group,website_and_customer_group ","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:set-mode","usage":["indexer:set-mode [ [...]]"],"description":"Sets index mode type","help":"Sets index mode type","definition":{"arguments":{"mode":{"name":"mode","is_required":false,"is_array":false,"description":"Indexer mode type [realtime|schedule]","default":null},"index":{"name":"index","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes.","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:show-dimensions-mode","usage":["indexer:show-dimensions-mode [...]"],"description":"Shows Indexer Dimension Mode","help":"Shows Indexer Dimension Mode","definition":{"arguments":{"indexer":{"name":"indexer","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes (catalog_product_price)","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:show-mode","usage":["indexer:show-mode [...]"],"description":"Shows Index Mode","help":"Shows Index Mode","definition":{"arguments":{"index":{"name":"index","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes.","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:status","usage":["indexer:status [...]"],"description":"Shows status of Indexer","help":"Shows status of Indexer","definition":{"arguments":{"index":{"name":"index","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes.","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:adminuri","usage":["info:adminuri"],"description":"Displays the Magento Admin URI","help":"Displays the Magento Admin URI","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:backups:list","usage":["info:backups:list"],"description":"Prints list of available backup files","help":"Prints list of available backup files","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:currency:list","usage":["info:currency:list"],"description":"Displays the list of available currencies","help":"Displays the list of available currencies","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:dependencies:show-framework","usage":["info:dependencies:show-framework [-o|--output OUTPUT]"],"description":"Shows number of dependencies on Magento framework","help":"Shows number of dependencies on Magento framework","definition":{"arguments":[],"options":{"output":{"name":"--output","shortcut":"-o","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Report filename","default":"framework-dependencies.csv"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:dependencies:show-modules","usage":["info:dependencies:show-modules [-o|--output OUTPUT]"],"description":"Shows number of dependencies between modules","help":"Shows number of dependencies between modules","definition":{"arguments":[],"options":{"output":{"name":"--output","shortcut":"-o","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Report filename","default":"modules-dependencies.csv"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:dependencies:show-modules-circular","usage":["info:dependencies:show-modules-circular [-o|--output OUTPUT]"],"description":"Shows number of circular dependencies between modules","help":"Shows number of circular dependencies between modules","definition":{"arguments":[],"options":{"output":{"name":"--output","shortcut":"-o","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Report filename","default":"modules-circular-dependencies.csv"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:language:list","usage":["info:language:list"],"description":"Displays the list of available language locales","help":"Displays the list of available language locales","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:timezone:list","usage":["info:timezone:list"],"description":"Displays the list of available timezones","help":"Displays the list of available timezones","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"inventory:reservation:create-compensations","usage":["inventory:reservation:create-compensations [-r|--raw] [--] [...]"],"description":"Create reservations by provided compensation arguments","help":"Create reservations by provided compensation arguments","definition":{"arguments":{"compensations":{"name":"compensations","is_required":false,"is_array":true,"description":"List of compensation arguments in format \":::\"","default":[]}},"options":{"raw":{"name":"--raw","shortcut":"-r","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Raw output","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"inventory:reservation:list-inconsistencies","usage":["inventory:reservation:list-inconsistencies [-c|--complete-orders] [-i|--incomplete-orders] [-b|--bunch-size [BUNCH-SIZE]] [-r|--raw]"],"description":"Show all orders and products with salable quantity inconsistencies","help":"Show all orders and products with salable quantity inconsistencies","definition":{"arguments":[],"options":{"complete-orders":{"name":"--complete-orders","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Show only inconsistencies for complete orders","default":false},"incomplete-orders":{"name":"--incomplete-orders","shortcut":"-i","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Show only inconsistencies for incomplete orders","default":false},"bunch-size":{"name":"--bunch-size","shortcut":"-b","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Defines how many orders will be loaded at once","default":50},"raw":{"name":"--raw","shortcut":"-r","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Raw output","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"inventory-geonames:import","usage":["inventory-geonames:import ..."],"description":"Download and import geo names for source selection algorithm","help":"Download and import geo names for source selection algorithm","definition":{"arguments":{"countries":{"name":"countries","is_required":true,"is_array":true,"description":"List of country codes to import","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"maintenance:allow-ips","usage":["maintenance:allow-ips [--none] [--add] [--magento-init-params MAGENTO-INIT-PARAMS] [--] [...]"],"description":"Sets maintenance mode exempt IPs","help":"Sets maintenance mode exempt IPs","definition":{"arguments":{"ip":{"name":"ip","is_required":false,"is_array":true,"description":"Allowed IP addresses","default":[]}},"options":{"none":{"name":"--none","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Clear allowed IP addresses","default":false},"add":{"name":"--add","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Add the IP address to existing list","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"maintenance:disable","usage":["maintenance:disable [--ip IP] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Disables maintenance mode","help":"Disables maintenance mode","definition":{"arguments":[],"options":{"ip":{"name":"--ip","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":true,"description":"Allowed IP addresses (use 'none' to clear allowed IP list)","default":[]},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"maintenance:enable","usage":["maintenance:enable [--ip IP] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Enables maintenance mode","help":"Enables maintenance mode","definition":{"arguments":[],"options":{"ip":{"name":"--ip","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":true,"description":"Allowed IP addresses (use 'none' to clear allowed IP list)","default":[]},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"maintenance:status","usage":["maintenance:status [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Displays maintenance mode status","help":"Displays maintenance mode status","definition":{"arguments":[],"options":{"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"media-content:sync","usage":["media-content:sync"],"description":"Synchronize content with assets","help":"Synchronize content with assets","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"media-gallery:sync","usage":["media-gallery:sync"],"description":"Synchronize media storage and media assets in the database","help":"Synchronize media storage and media assets in the database","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"module:config:status","usage":["module:config:status"],"description":"Checks the modules configuration in the 'app\/etc\/config.php' file and reports if they are up to date or not","help":"Checks the modules configuration in the 'app\/etc\/config.php' file and reports if they are up to date or not","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"module:disable","usage":["module:disable [-f|--force] [--all] [-c|--clear-static-content] [--magento-init-params MAGENTO-INIT-PARAMS] [--] [...]"],"description":"Disables specified modules","help":"Disables specified modules","definition":{"arguments":{"module":{"name":"module","is_required":false,"is_array":true,"description":"Name of the module","default":[]}},"options":{"force":{"name":"--force","shortcut":"-f","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Bypass dependencies check","default":false},"all":{"name":"--all","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable all modules","default":false},"clear-static-content":{"name":"--clear-static-content","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Clear generated static view files. Necessary, if the module(s) have static view files","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"module:enable","usage":["module:enable [-f|--force] [--all] [-c|--clear-static-content] [--magento-init-params MAGENTO-INIT-PARAMS] [--] [...]"],"description":"Enables specified modules","help":"Enables specified modules","definition":{"arguments":{"module":{"name":"module","is_required":false,"is_array":true,"description":"Name of the module","default":[]}},"options":{"force":{"name":"--force","shortcut":"-f","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Bypass dependencies check","default":false},"all":{"name":"--all","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Enable all modules","default":false},"clear-static-content":{"name":"--clear-static-content","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Clear generated static view files. Necessary, if the module(s) have static view files","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"module:status","usage":["module:status [--enabled] [--disabled] [--magento-init-params MAGENTO-INIT-PARAMS] [--] [...]"],"description":"Displays status of modules","help":"Displays status of modules","definition":{"arguments":{"module-names":{"name":"module-names","is_required":false,"is_array":true,"description":"Optional module name","default":[]}},"options":{"enabled":{"name":"--enabled","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Print only enabled modules","default":false},"disabled":{"name":"--disabled","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Print only disabled modules","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"module:uninstall","usage":["module:uninstall [-r|--remove-data] [--backup-code] [--backup-media] [--backup-db] [--non-composer] [-c|--clear-static-content] [--magento-init-params MAGENTO-INIT-PARAMS] [--] ..."],"description":"Uninstalls modules installed by composer","help":"Uninstalls modules installed by composer","definition":{"arguments":{"module":{"name":"module","is_required":true,"is_array":true,"description":"Name of the module","default":[]}},"options":{"remove-data":{"name":"--remove-data","shortcut":"-r","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Remove data installed by module(s)","default":false},"backup-code":{"name":"--backup-code","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take code and configuration files backup (excluding temporary files)","default":false},"backup-media":{"name":"--backup-media","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take media backup","default":false},"backup-db":{"name":"--backup-db","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take complete database backup","default":false},"non-composer":{"name":"--non-composer","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"All modules, that will be past here will be non composer based","default":false},"clear-static-content":{"name":"--clear-static-content","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Clear generated static view files. Necessary, if the module(s) have static view files","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"newrelic:create:deploy-marker","usage":["newrelic:create:deploy-marker []"],"description":"Check the deploy queue for entries and create an appropriate deploy marker.","help":"Check the deploy queue for entries and create an appropriate deploy marker.","definition":{"arguments":{"message":{"name":"message","is_required":true,"is_array":false,"description":"Deploy Message?","default":null},"change_log":{"name":"change_log","is_required":true,"is_array":false,"description":"Change Log?","default":null},"user":{"name":"user","is_required":false,"is_array":false,"description":"Deployment User","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"queue:consumers:list","usage":["queue:consumers:list"],"description":"List of MessageQueue consumers","help":"This command shows list of MessageQueue consumers.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"queue:consumers:start","usage":["queue:consumers:start [--max-messages MAX-MESSAGES] [--batch-size BATCH-SIZE] [--area-code AREA-CODE] [--single-thread] [--pid-file-path PID-FILE-PATH] [--] "],"description":"Start MessageQueue consumer","help":"This command starts MessageQueue consumer by its name.\n\nTo start consumer which will process all queued messages and terminate execution:\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer<\/comment>\n\nTo specify the number of messages which should be processed by consumer before its termination:\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer --max-messages=50<\/comment>\n\nTo specify the number of messages per batch for the batch consumer:\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer --batch-size=500<\/comment>\n\nTo specify the preferred area:\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer --area-code='adminhtml'<\/comment>\n\nTo do not run multiple copies of one consumer simultaneously:\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer --single-thread'<\/comment>\n\nTo save PID enter path (This option is deprecated, use --single-thread instead):\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer --pid-file-path='\/var\/someConsumer.pid'<\/comment>","definition":{"arguments":{"consumer":{"name":"consumer","is_required":true,"is_array":false,"description":"The name of the consumer to be started.","default":null}},"options":{"max-messages":{"name":"--max-messages","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The number of messages to be processed by the consumer before process termination. If not specified - terminate after processing all queued messages.","default":null},"batch-size":{"name":"--batch-size","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The number of messages per batch. Applicable for the batch consumer only.","default":null},"area-code":{"name":"--area-code","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The preferred area (global, adminhtml, etc...) default is global.","default":null},"single-thread":{"name":"--single-thread","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"This option prevents running multiple copies of one consumer simultaneously.","default":false},"pid-file-path":{"name":"--pid-file-path","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The file path for saving PID (This option is deprecated, use --single-thread instead)","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"sampledata:deploy","usage":["sampledata:deploy [--no-update]"],"description":"Deploy sample data modules for composer-based Magento installations","help":"Deploy sample data modules for composer-based Magento installations","definition":{"arguments":[],"options":{"no-update":{"name":"--no-update","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Update composer.json without executing composer update","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"sampledata:remove","usage":["sampledata:remove [--no-update]"],"description":"Remove all sample data packages from composer.json","help":"Remove all sample data packages from composer.json","definition":{"arguments":[],"options":{"no-update":{"name":"--no-update","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Update composer.json without executing composer update","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"sampledata:reset","usage":["sampledata:reset"],"description":"Reset all sample data modules for re-installation","help":"Reset all sample data modules for re-installation","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"security:recaptcha:disable-for-user-forgot-password","usage":["security:recaptcha:disable-for-user-forgot-password"],"description":"Disable reCAPTCHA for admin user forgot password form","help":"Disable reCAPTCHA for admin user forgot password form","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"security:recaptcha:disable-for-user-login","usage":["security:recaptcha:disable-for-user-login"],"description":"Disable reCAPTCHA for admin user login form","help":"Disable reCAPTCHA for admin user login form","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"security:tfa:google:set-secret","usage":["security:tfa:google:set-secret "],"description":"Set the secret used for Google OTP generation.","help":"Set the secret used for Google OTP generation.","definition":{"arguments":{"user":{"name":"user","is_required":true,"is_array":false,"description":"Username","default":null},"secret":{"name":"secret","is_required":true,"is_array":false,"description":"Secret","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"security:tfa:providers","usage":["security:tfa:providers"],"description":"List all available providers","help":"List all available providers","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"security:tfa:reset","usage":["security:tfa:reset "],"description":"Reset configuration for one user","help":"Reset configuration for one user","definition":{"arguments":{"user":{"name":"user","is_required":true,"is_array":false,"description":"Username","default":null},"provider":{"name":"provider","is_required":true,"is_array":false,"description":"Provider code","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:backup","usage":["setup:backup [--code] [--media] [--db] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Takes backup of Magento Application code base, media and database","help":"Takes backup of Magento Application code base, media and database","definition":{"arguments":[],"options":{"code":{"name":"--code","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take code and configuration files backup (excluding temporary files)","default":false},"media":{"name":"--media","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take media backup","default":false},"db":{"name":"--db","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take complete database backup","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:config:set","usage":["setup:config:set [--backend-frontname BACKEND-FRONTNAME] [--enable-debug-logging ENABLE-DEBUG-LOGGING] [--enable-syslog-logging ENABLE-SYSLOG-LOGGING] [--amqp-host AMQP-HOST] [--amqp-port AMQP-PORT] [--amqp-user AMQP-USER] [--amqp-password AMQP-PASSWORD] [--amqp-virtualhost AMQP-VIRTUALHOST] [--amqp-ssl AMQP-SSL] [--amqp-ssl-options AMQP-SSL-OPTIONS] [--consumers-wait-for-messages CONSUMERS-WAIT-FOR-MESSAGES] [--key KEY] [--db-host DB-HOST] [--db-name DB-NAME] [--db-user DB-USER] [--db-engine DB-ENGINE] [--db-password DB-PASSWORD] [--db-prefix DB-PREFIX] [--db-model DB-MODEL] [--db-init-statements DB-INIT-STATEMENTS] [-s|--skip-db-validation] [--http-cache-hosts HTTP-CACHE-HOSTS] [--db-ssl-key DB-SSL-KEY] [--db-ssl-cert DB-SSL-CERT] [--db-ssl-ca DB-SSL-CA] [--db-ssl-verify] [--session-save SESSION-SAVE] [--session-save-redis-host SESSION-SAVE-REDIS-HOST] [--session-save-redis-port SESSION-SAVE-REDIS-PORT] [--session-save-redis-password SESSION-SAVE-REDIS-PASSWORD] [--session-save-redis-timeout SESSION-SAVE-REDIS-TIMEOUT] [--session-save-redis-persistent-id SESSION-SAVE-REDIS-PERSISTENT-ID] [--session-save-redis-db SESSION-SAVE-REDIS-DB] [--session-save-redis-compression-threshold SESSION-SAVE-REDIS-COMPRESSION-THRESHOLD] [--session-save-redis-compression-lib SESSION-SAVE-REDIS-COMPRESSION-LIB] [--session-save-redis-log-level SESSION-SAVE-REDIS-LOG-LEVEL] [--session-save-redis-max-concurrency SESSION-SAVE-REDIS-MAX-CONCURRENCY] [--session-save-redis-break-after-frontend SESSION-SAVE-REDIS-BREAK-AFTER-FRONTEND] [--session-save-redis-break-after-adminhtml SESSION-SAVE-REDIS-BREAK-AFTER-ADMINHTML] [--session-save-redis-first-lifetime SESSION-SAVE-REDIS-FIRST-LIFETIME] [--session-save-redis-bot-first-lifetime SESSION-SAVE-REDIS-BOT-FIRST-LIFETIME] [--session-save-redis-bot-lifetime SESSION-SAVE-REDIS-BOT-LIFETIME] [--session-save-redis-disable-locking SESSION-SAVE-REDIS-DISABLE-LOCKING] [--session-save-redis-min-lifetime SESSION-SAVE-REDIS-MIN-LIFETIME] [--session-save-redis-max-lifetime SESSION-SAVE-REDIS-MAX-LIFETIME] [--session-save-redis-sentinel-master SESSION-SAVE-REDIS-SENTINEL-MASTER] [--session-save-redis-sentinel-servers SESSION-SAVE-REDIS-SENTINEL-SERVERS] [--session-save-redis-sentinel-verify-master SESSION-SAVE-REDIS-SENTINEL-VERIFY-MASTER] [--session-save-redis-sentinel-connect-retires SESSION-SAVE-REDIS-SENTINEL-CONNECT-RETIRES] [--cache-backend CACHE-BACKEND] [--cache-backend-redis-server CACHE-BACKEND-REDIS-SERVER] [--cache-backend-redis-db CACHE-BACKEND-REDIS-DB] [--cache-backend-redis-port CACHE-BACKEND-REDIS-PORT] [--cache-backend-redis-password CACHE-BACKEND-REDIS-PASSWORD] [--cache-backend-redis-compress-data CACHE-BACKEND-REDIS-COMPRESS-DATA] [--cache-backend-redis-compression-lib CACHE-BACKEND-REDIS-COMPRESSION-LIB] [--cache-id-prefix CACHE-ID-PREFIX] [--allow-parallel-generation] [--page-cache PAGE-CACHE] [--page-cache-redis-server PAGE-CACHE-REDIS-SERVER] [--page-cache-redis-db PAGE-CACHE-REDIS-DB] [--page-cache-redis-port PAGE-CACHE-REDIS-PORT] [--page-cache-redis-password PAGE-CACHE-REDIS-PASSWORD] [--page-cache-redis-compress-data PAGE-CACHE-REDIS-COMPRESS-DATA] [--page-cache-redis-compression-lib PAGE-CACHE-REDIS-COMPRESSION-LIB] [--page-cache-id-prefix PAGE-CACHE-ID-PREFIX] [--lock-provider LOCK-PROVIDER] [--lock-db-prefix LOCK-DB-PREFIX] [--lock-zookeeper-host LOCK-ZOOKEEPER-HOST] [--lock-zookeeper-path LOCK-ZOOKEEPER-PATH] [--lock-file-path LOCK-FILE-PATH] [--document-root-is-pub DOCUMENT-ROOT-IS-PUB] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Creates or modifies the deployment configuration","help":"Creates or modifies the deployment configuration","definition":{"arguments":[],"options":{"backend-frontname":{"name":"--backend-frontname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Backend frontname (will be autogenerated if missing)","default":null},"enable-debug-logging":{"name":"--enable-debug-logging","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Enable debug logging","default":null},"enable-syslog-logging":{"name":"--enable-syslog-logging","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Enable syslog logging","default":null},"amqp-host":{"name":"--amqp-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server host","default":""},"amqp-port":{"name":"--amqp-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server port","default":"5672"},"amqp-user":{"name":"--amqp-user","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server username","default":""},"amqp-password":{"name":"--amqp-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server password","default":""},"amqp-virtualhost":{"name":"--amqp-virtualhost","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp virtualhost","default":"\/"},"amqp-ssl":{"name":"--amqp-ssl","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp SSL","default":""},"amqp-ssl-options":{"name":"--amqp-ssl-options","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp SSL Options (JSON)","default":""},"consumers-wait-for-messages":{"name":"--consumers-wait-for-messages","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Should consumers wait for a message from the queue? 1 - Yes, 0 - No","default":null},"key":{"name":"--key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Encryption key","default":null},"db-host":{"name":"--db-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server host","default":null},"db-name":{"name":"--db-name","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database name","default":null},"db-user":{"name":"--db-user","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server username","default":null},"db-engine":{"name":"--db-engine","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server engine","default":null},"db-password":{"name":"--db-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server password","default":null},"db-prefix":{"name":"--db-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database table prefix","default":null},"db-model":{"name":"--db-model","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database type","default":null},"db-init-statements":{"name":"--db-init-statements","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database initial set of commands","default":null},"skip-db-validation":{"name":"--skip-db-validation","shortcut":"-s","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"If specified, then db connection validation will be skipped","default":false},"http-cache-hosts":{"name":"--http-cache-hosts","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"http Cache hosts","default":null},"db-ssl-key":{"name":"--db-ssl-key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of client key file in order to establish db connection through SSL","default":""},"db-ssl-cert":{"name":"--db-ssl-cert","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of client certificate file in order to establish db connection through SSL","default":""},"db-ssl-ca":{"name":"--db-ssl-ca","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of server certificate file in order to establish db connection through SSL","default":""},"db-ssl-verify":{"name":"--db-ssl-verify","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Verify server certification","default":false},"session-save":{"name":"--session-save","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Session save handler","default":null},"session-save-redis-host":{"name":"--session-save-redis-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Fully qualified host name, IP address, or absolute path if using UNIX sockets","default":null},"session-save-redis-port":{"name":"--session-save-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"session-save-redis-password":{"name":"--session-save-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"session-save-redis-timeout":{"name":"--session-save-redis-timeout","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Connection timeout, in seconds","default":null},"session-save-redis-persistent-id":{"name":"--session-save-redis-persistent-id","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Unique string to enable persistent connections","default":null},"session-save-redis-db":{"name":"--session-save-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis database number","default":null},"session-save-redis-compression-threshold":{"name":"--session-save-redis-compression-threshold","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis compression threshold","default":null},"session-save-redis-compression-lib":{"name":"--session-save-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis compression library. Values:\u00a0gzip (default), lzf, lz4, snappy","default":null},"session-save-redis-log-level":{"name":"--session-save-redis-log-level","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis log level. Values: 0 (least verbose) to 7 (most verbose)","default":null},"session-save-redis-max-concurrency":{"name":"--session-save-redis-max-concurrency","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Maximum number of processes that can wait for a lock on one session","default":null},"session-save-redis-break-after-frontend":{"name":"--session-save-redis-break-after-frontend","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Number of seconds to wait before trying to break a lock for frontend session","default":null},"session-save-redis-break-after-adminhtml":{"name":"--session-save-redis-break-after-adminhtml","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Number of seconds to wait before trying to break a lock for Admin session","default":null},"session-save-redis-first-lifetime":{"name":"--session-save-redis-first-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime, in seconds, of session for non-bots on the first write (use 0 to disable)","default":null},"session-save-redis-bot-first-lifetime":{"name":"--session-save-redis-bot-first-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime, in seconds, of session for bots on the first write (use 0 to disable)","default":null},"session-save-redis-bot-lifetime":{"name":"--session-save-redis-bot-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime of session for bots on subsequent writes (use 0 to disable)","default":null},"session-save-redis-disable-locking":{"name":"--session-save-redis-disable-locking","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis disable locking. Values:\u00a0false (default), true","default":null},"session-save-redis-min-lifetime":{"name":"--session-save-redis-min-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis min session lifetime, in seconds","default":null},"session-save-redis-max-lifetime":{"name":"--session-save-redis-max-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis max session lifetime, in seconds","default":null},"session-save-redis-sentinel-master":{"name":"--session-save-redis-sentinel-master","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel master","default":null},"session-save-redis-sentinel-servers":{"name":"--session-save-redis-sentinel-servers","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel servers, comma separated","default":null},"session-save-redis-sentinel-verify-master":{"name":"--session-save-redis-sentinel-verify-master","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel verify master. Values: false (default), true","default":null},"session-save-redis-sentinel-connect-retires":{"name":"--session-save-redis-sentinel-connect-retires","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel connect retries.","default":null},"cache-backend":{"name":"--cache-backend","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default cache handler","default":null},"cache-backend-redis-server":{"name":"--cache-backend-redis-server","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server","default":null},"cache-backend-redis-db":{"name":"--cache-backend-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database number for the cache","default":null},"cache-backend-redis-port":{"name":"--cache-backend-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"cache-backend-redis-password":{"name":"--cache-backend-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"cache-backend-redis-compress-data":{"name":"--cache-backend-redis-compress-data","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Set to 0 to disable compression (default is 1, enabled)","default":null},"cache-backend-redis-compression-lib":{"name":"--cache-backend-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Compression lib to use [snappy,lzf,l4z,zstd,gzip] (leave blank to determine automatically)","default":null},"cache-id-prefix":{"name":"--cache-id-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"ID prefix for cache keys","default":null},"allow-parallel-generation":{"name":"--allow-parallel-generation","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Allow generate cache in non-blocking way","default":false},"page-cache":{"name":"--page-cache","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default cache handler","default":null},"page-cache-redis-server":{"name":"--page-cache-redis-server","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server","default":null},"page-cache-redis-db":{"name":"--page-cache-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database number for the cache","default":null},"page-cache-redis-port":{"name":"--page-cache-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"page-cache-redis-password":{"name":"--page-cache-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"page-cache-redis-compress-data":{"name":"--page-cache-redis-compress-data","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Set to 1 to compress the full page cache (use 0 to disable)","default":null},"page-cache-redis-compression-lib":{"name":"--page-cache-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Compression library to use [snappy,lzf,l4z,zstd,gzip] (leave blank to determine automatically)","default":null},"page-cache-id-prefix":{"name":"--page-cache-id-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"ID prefix for cache keys","default":null},"lock-provider":{"name":"--lock-provider","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lock provider name","default":null},"lock-db-prefix":{"name":"--lock-db-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Installation specific lock prefix to avoid lock conflicts","default":null},"lock-zookeeper-host":{"name":"--lock-zookeeper-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Host and port to connect to Zookeeper cluster. For example: 127.0.0.1:2181","default":null},"lock-zookeeper-path":{"name":"--lock-zookeeper-path","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The path where Zookeeper will save locks. The default path is: \/magento\/locks","default":null},"lock-file-path":{"name":"--lock-file-path","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The path where file locks will be saved.","default":null},"document-root-is-pub":{"name":"--document-root-is-pub","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Flag to show is Pub is on root, can be true or false only","default":null},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-data:upgrade","usage":["setup:db-data:upgrade [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Installs and upgrades data in the DB","help":"Installs and upgrades data in the DB","definition":{"arguments":[],"options":{"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-declaration:generate-patch","usage":["setup:db-declaration:generate-patch [--revertable [REVERTABLE]] [--type [TYPE]] [--] "],"description":"Generate patch and put it in specific folder.","help":"Generate patch and put it in specific folder.","definition":{"arguments":{"module":{"name":"module","is_required":true,"is_array":false,"description":"Module name","default":null},"patch":{"name":"patch","is_required":true,"is_array":false,"description":"Patch name","default":null}},"options":{"revertable":{"name":"--revertable","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Check whether patch is revertable or not.","default":false},"type":{"name":"--type","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Find out what type of patch should be generated. Available values: `data`, `schema`.","default":"data"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-declaration:generate-whitelist","usage":["setup:db-declaration:generate-whitelist [--module-name [MODULE-NAME]]"],"description":"Generate whitelist of tables and columns that are allowed to be edited by declaration installer","help":"Generate whitelist of tables and columns that are allowed to be edited by declaration installer","definition":{"arguments":[],"options":{"module-name":{"name":"--module-name","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Name of the module where whitelist will be generated","default":"all"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-schema:add-slave","usage":["setup:db-schema:add-slave [--host HOST] [--dbname DBNAME] [--username USERNAME] [--password [PASSWORD]] [--connection [CONNECTION]] [--resource [RESOURCE]] [--maxAllowedLag [MAXALLOWEDLAG]]"],"description":"Move checkout quote related tables to a separate DB server","help":"Move checkout quote related tables to a separate DB server","definition":{"arguments":[],"options":{"host":{"name":"--host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Slave DB Server host","default":"localhost"},"dbname":{"name":"--dbname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Slave Database Name","default":null},"username":{"name":"--username","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Slave DB user name","default":"root"},"password":{"name":"--password","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Slave DB user password","default":null},"connection":{"name":"--connection","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Slave connection name","default":"default"},"resource":{"name":"--resource","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Slave Resource name","default":"default"},"maxAllowedLag":{"name":"--maxAllowedLag","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Max Allowed Lag Slave Connection (in seconds)","default":""},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-schema:split-quote","usage":["setup:db-schema:split-quote [--host HOST] [--dbname DBNAME] [--username USERNAME] [--password [PASSWORD]] [--connection [CONNECTION]] [--resource [RESOURCE]] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Move checkout quote related tables to a separate DB server","help":"Move checkout quote related tables to a separate DB server","definition":{"arguments":[],"options":{"host":{"name":"--host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Checkout DB Server host","default":null},"dbname":{"name":"--dbname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Checkout Database Name","default":null},"username":{"name":"--username","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Checkout DB user name","default":null},"password":{"name":"--password","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Checkout DB user password","default":null},"connection":{"name":"--connection","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Checkout connection name","default":"checkout"},"resource":{"name":"--resource","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Checkout resource name","default":"checkout"},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-schema:split-sales","usage":["setup:db-schema:split-sales [--host HOST] [--dbname DBNAME] [--username USERNAME] [--password [PASSWORD]] [--connection [CONNECTION]] [--resource [RESOURCE]] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Move sales related tables to a separate DB server","help":"Move sales related tables to a separate DB server","definition":{"arguments":[],"options":{"host":{"name":"--host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Sales DB Server host","default":null},"dbname":{"name":"--dbname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Sales Database Name","default":null},"username":{"name":"--username","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Sales DB user name","default":null},"password":{"name":"--password","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Sales DB user passowrd","default":null},"connection":{"name":"--connection","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Sales connection name","default":"sales"},"resource":{"name":"--resource","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Sales resource name","default":"sales"},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-schema:upgrade","usage":["setup:db-schema:upgrade [--convert-old-scripts [CONVERT-OLD-SCRIPTS]] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Installs and upgrades the DB schema","help":"Installs and upgrades the DB schema","definition":{"arguments":[],"options":{"convert-old-scripts":{"name":"--convert-old-scripts","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Allows to convert old scripts (InstallSchema, UpgradeSchema) to db_schema.xml format","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db:status","usage":["setup:db:status [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Checks if DB schema or data requires upgrade","help":"Checks if DB schema or data requires upgrade","definition":{"arguments":[],"options":{"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:di:compile","usage":["setup:di:compile"],"description":"Generates DI configuration and all missing classes that can be auto-generated","help":"Generates DI configuration and all missing classes that can be auto-generated","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:install","usage":["setup:install [--backend-frontname BACKEND-FRONTNAME] [--enable-debug-logging ENABLE-DEBUG-LOGGING] [--enable-syslog-logging ENABLE-SYSLOG-LOGGING] [--amqp-host AMQP-HOST] [--amqp-port AMQP-PORT] [--amqp-user AMQP-USER] [--amqp-password AMQP-PASSWORD] [--amqp-virtualhost AMQP-VIRTUALHOST] [--amqp-ssl AMQP-SSL] [--amqp-ssl-options AMQP-SSL-OPTIONS] [--consumers-wait-for-messages CONSUMERS-WAIT-FOR-MESSAGES] [--key KEY] [--db-host DB-HOST] [--db-name DB-NAME] [--db-user DB-USER] [--db-engine DB-ENGINE] [--db-password DB-PASSWORD] [--db-prefix DB-PREFIX] [--db-model DB-MODEL] [--db-init-statements DB-INIT-STATEMENTS] [-s|--skip-db-validation] [--http-cache-hosts HTTP-CACHE-HOSTS] [--db-ssl-key DB-SSL-KEY] [--db-ssl-cert DB-SSL-CERT] [--db-ssl-ca DB-SSL-CA] [--db-ssl-verify] [--session-save SESSION-SAVE] [--session-save-redis-host SESSION-SAVE-REDIS-HOST] [--session-save-redis-port SESSION-SAVE-REDIS-PORT] [--session-save-redis-password SESSION-SAVE-REDIS-PASSWORD] [--session-save-redis-timeout SESSION-SAVE-REDIS-TIMEOUT] [--session-save-redis-persistent-id SESSION-SAVE-REDIS-PERSISTENT-ID] [--session-save-redis-db SESSION-SAVE-REDIS-DB] [--session-save-redis-compression-threshold SESSION-SAVE-REDIS-COMPRESSION-THRESHOLD] [--session-save-redis-compression-lib SESSION-SAVE-REDIS-COMPRESSION-LIB] [--session-save-redis-log-level SESSION-SAVE-REDIS-LOG-LEVEL] [--session-save-redis-max-concurrency SESSION-SAVE-REDIS-MAX-CONCURRENCY] [--session-save-redis-break-after-frontend SESSION-SAVE-REDIS-BREAK-AFTER-FRONTEND] [--session-save-redis-break-after-adminhtml SESSION-SAVE-REDIS-BREAK-AFTER-ADMINHTML] [--session-save-redis-first-lifetime SESSION-SAVE-REDIS-FIRST-LIFETIME] [--session-save-redis-bot-first-lifetime SESSION-SAVE-REDIS-BOT-FIRST-LIFETIME] [--session-save-redis-bot-lifetime SESSION-SAVE-REDIS-BOT-LIFETIME] [--session-save-redis-disable-locking SESSION-SAVE-REDIS-DISABLE-LOCKING] [--session-save-redis-min-lifetime SESSION-SAVE-REDIS-MIN-LIFETIME] [--session-save-redis-max-lifetime SESSION-SAVE-REDIS-MAX-LIFETIME] [--session-save-redis-sentinel-master SESSION-SAVE-REDIS-SENTINEL-MASTER] [--session-save-redis-sentinel-servers SESSION-SAVE-REDIS-SENTINEL-SERVERS] [--session-save-redis-sentinel-verify-master SESSION-SAVE-REDIS-SENTINEL-VERIFY-MASTER] [--session-save-redis-sentinel-connect-retires SESSION-SAVE-REDIS-SENTINEL-CONNECT-RETIRES] [--cache-backend CACHE-BACKEND] [--cache-backend-redis-server CACHE-BACKEND-REDIS-SERVER] [--cache-backend-redis-db CACHE-BACKEND-REDIS-DB] [--cache-backend-redis-port CACHE-BACKEND-REDIS-PORT] [--cache-backend-redis-password CACHE-BACKEND-REDIS-PASSWORD] [--cache-backend-redis-compress-data CACHE-BACKEND-REDIS-COMPRESS-DATA] [--cache-backend-redis-compression-lib CACHE-BACKEND-REDIS-COMPRESSION-LIB] [--cache-id-prefix CACHE-ID-PREFIX] [--allow-parallel-generation] [--page-cache PAGE-CACHE] [--page-cache-redis-server PAGE-CACHE-REDIS-SERVER] [--page-cache-redis-db PAGE-CACHE-REDIS-DB] [--page-cache-redis-port PAGE-CACHE-REDIS-PORT] [--page-cache-redis-password PAGE-CACHE-REDIS-PASSWORD] [--page-cache-redis-compress-data PAGE-CACHE-REDIS-COMPRESS-DATA] [--page-cache-redis-compression-lib PAGE-CACHE-REDIS-COMPRESSION-LIB] [--page-cache-id-prefix PAGE-CACHE-ID-PREFIX] [--lock-provider LOCK-PROVIDER] [--lock-db-prefix LOCK-DB-PREFIX] [--lock-zookeeper-host LOCK-ZOOKEEPER-HOST] [--lock-zookeeper-path LOCK-ZOOKEEPER-PATH] [--lock-file-path LOCK-FILE-PATH] [--document-root-is-pub DOCUMENT-ROOT-IS-PUB] [--base-url BASE-URL] [--language LANGUAGE] [--timezone TIMEZONE] [--currency CURRENCY] [--use-rewrites USE-REWRITES] [--use-secure USE-SECURE] [--base-url-secure BASE-URL-SECURE] [--use-secure-admin USE-SECURE-ADMIN] [--admin-use-security-key ADMIN-USE-SECURITY-KEY] [--admin-user [ADMIN-USER]] [--admin-password [ADMIN-PASSWORD]] [--admin-email [ADMIN-EMAIL]] [--admin-firstname [ADMIN-FIRSTNAME]] [--admin-lastname [ADMIN-LASTNAME]] [--search-engine SEARCH-ENGINE] [--elasticsearch-host ELASTICSEARCH-HOST] [--elasticsearch-port ELASTICSEARCH-PORT] [--elasticsearch-enable-auth ELASTICSEARCH-ENABLE-AUTH] [--elasticsearch-username ELASTICSEARCH-USERNAME] [--elasticsearch-password ELASTICSEARCH-PASSWORD] [--elasticsearch-index-prefix ELASTICSEARCH-INDEX-PREFIX] [--elasticsearch-timeout ELASTICSEARCH-TIMEOUT] [--cleanup-database] [--sales-order-increment-prefix SALES-ORDER-INCREMENT-PREFIX] [--use-sample-data] [--enable-modules [ENABLE-MODULES]] [--disable-modules [DISABLE-MODULES]] [--convert-old-scripts [CONVERT-OLD-SCRIPTS]] [-i|--interactive] [--safe-mode [SAFE-MODE]] [--data-restore [DATA-RESTORE]] [--dry-run [DRY-RUN]] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Installs the Magento application","help":"Installs the Magento application","definition":{"arguments":[],"options":{"backend-frontname":{"name":"--backend-frontname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Backend frontname (will be autogenerated if missing)","default":null},"enable-debug-logging":{"name":"--enable-debug-logging","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Enable debug logging","default":null},"enable-syslog-logging":{"name":"--enable-syslog-logging","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Enable syslog logging","default":null},"amqp-host":{"name":"--amqp-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server host","default":""},"amqp-port":{"name":"--amqp-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server port","default":"5672"},"amqp-user":{"name":"--amqp-user","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server username","default":""},"amqp-password":{"name":"--amqp-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server password","default":""},"amqp-virtualhost":{"name":"--amqp-virtualhost","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp virtualhost","default":"\/"},"amqp-ssl":{"name":"--amqp-ssl","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp SSL","default":""},"amqp-ssl-options":{"name":"--amqp-ssl-options","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp SSL Options (JSON)","default":""},"consumers-wait-for-messages":{"name":"--consumers-wait-for-messages","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Should consumers wait for a message from the queue? 1 - Yes, 0 - No","default":null},"key":{"name":"--key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Encryption key","default":null},"db-host":{"name":"--db-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server host","default":null},"db-name":{"name":"--db-name","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database name","default":null},"db-user":{"name":"--db-user","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server username","default":null},"db-engine":{"name":"--db-engine","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server engine","default":null},"db-password":{"name":"--db-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server password","default":null},"db-prefix":{"name":"--db-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database table prefix","default":null},"db-model":{"name":"--db-model","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database type","default":null},"db-init-statements":{"name":"--db-init-statements","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database initial set of commands","default":null},"skip-db-validation":{"name":"--skip-db-validation","shortcut":"-s","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"If specified, then db connection validation will be skipped","default":false},"http-cache-hosts":{"name":"--http-cache-hosts","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"http Cache hosts","default":null},"db-ssl-key":{"name":"--db-ssl-key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of client key file in order to establish db connection through SSL","default":""},"db-ssl-cert":{"name":"--db-ssl-cert","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of client certificate file in order to establish db connection through SSL","default":""},"db-ssl-ca":{"name":"--db-ssl-ca","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of server certificate file in order to establish db connection through SSL","default":""},"db-ssl-verify":{"name":"--db-ssl-verify","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Verify server certification","default":false},"session-save":{"name":"--session-save","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Session save handler","default":null},"session-save-redis-host":{"name":"--session-save-redis-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Fully qualified host name, IP address, or absolute path if using UNIX sockets","default":null},"session-save-redis-port":{"name":"--session-save-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"session-save-redis-password":{"name":"--session-save-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"session-save-redis-timeout":{"name":"--session-save-redis-timeout","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Connection timeout, in seconds","default":null},"session-save-redis-persistent-id":{"name":"--session-save-redis-persistent-id","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Unique string to enable persistent connections","default":null},"session-save-redis-db":{"name":"--session-save-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis database number","default":null},"session-save-redis-compression-threshold":{"name":"--session-save-redis-compression-threshold","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis compression threshold","default":null},"session-save-redis-compression-lib":{"name":"--session-save-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis compression library. Values:\u00a0gzip (default), lzf, lz4, snappy","default":null},"session-save-redis-log-level":{"name":"--session-save-redis-log-level","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis log level. Values: 0 (least verbose) to 7 (most verbose)","default":null},"session-save-redis-max-concurrency":{"name":"--session-save-redis-max-concurrency","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Maximum number of processes that can wait for a lock on one session","default":null},"session-save-redis-break-after-frontend":{"name":"--session-save-redis-break-after-frontend","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Number of seconds to wait before trying to break a lock for frontend session","default":null},"session-save-redis-break-after-adminhtml":{"name":"--session-save-redis-break-after-adminhtml","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Number of seconds to wait before trying to break a lock for Admin session","default":null},"session-save-redis-first-lifetime":{"name":"--session-save-redis-first-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime, in seconds, of session for non-bots on the first write (use 0 to disable)","default":null},"session-save-redis-bot-first-lifetime":{"name":"--session-save-redis-bot-first-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime, in seconds, of session for bots on the first write (use 0 to disable)","default":null},"session-save-redis-bot-lifetime":{"name":"--session-save-redis-bot-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime of session for bots on subsequent writes (use 0 to disable)","default":null},"session-save-redis-disable-locking":{"name":"--session-save-redis-disable-locking","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis disable locking. Values:\u00a0false (default), true","default":null},"session-save-redis-min-lifetime":{"name":"--session-save-redis-min-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis min session lifetime, in seconds","default":null},"session-save-redis-max-lifetime":{"name":"--session-save-redis-max-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis max session lifetime, in seconds","default":null},"session-save-redis-sentinel-master":{"name":"--session-save-redis-sentinel-master","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel master","default":null},"session-save-redis-sentinel-servers":{"name":"--session-save-redis-sentinel-servers","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel servers, comma separated","default":null},"session-save-redis-sentinel-verify-master":{"name":"--session-save-redis-sentinel-verify-master","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel verify master. Values: false (default), true","default":null},"session-save-redis-sentinel-connect-retires":{"name":"--session-save-redis-sentinel-connect-retires","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel connect retries.","default":null},"cache-backend":{"name":"--cache-backend","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default cache handler","default":null},"cache-backend-redis-server":{"name":"--cache-backend-redis-server","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server","default":null},"cache-backend-redis-db":{"name":"--cache-backend-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database number for the cache","default":null},"cache-backend-redis-port":{"name":"--cache-backend-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"cache-backend-redis-password":{"name":"--cache-backend-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"cache-backend-redis-compress-data":{"name":"--cache-backend-redis-compress-data","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Set to 0 to disable compression (default is 1, enabled)","default":null},"cache-backend-redis-compression-lib":{"name":"--cache-backend-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Compression lib to use [snappy,lzf,l4z,zstd,gzip] (leave blank to determine automatically)","default":null},"cache-id-prefix":{"name":"--cache-id-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"ID prefix for cache keys","default":null},"allow-parallel-generation":{"name":"--allow-parallel-generation","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Allow generate cache in non-blocking way","default":false},"page-cache":{"name":"--page-cache","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default cache handler","default":null},"page-cache-redis-server":{"name":"--page-cache-redis-server","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server","default":null},"page-cache-redis-db":{"name":"--page-cache-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database number for the cache","default":null},"page-cache-redis-port":{"name":"--page-cache-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"page-cache-redis-password":{"name":"--page-cache-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"page-cache-redis-compress-data":{"name":"--page-cache-redis-compress-data","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Set to 1 to compress the full page cache (use 0 to disable)","default":null},"page-cache-redis-compression-lib":{"name":"--page-cache-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Compression library to use [snappy,lzf,l4z,zstd,gzip] (leave blank to determine automatically)","default":null},"page-cache-id-prefix":{"name":"--page-cache-id-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"ID prefix for cache keys","default":null},"lock-provider":{"name":"--lock-provider","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lock provider name","default":null},"lock-db-prefix":{"name":"--lock-db-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Installation specific lock prefix to avoid lock conflicts","default":null},"lock-zookeeper-host":{"name":"--lock-zookeeper-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Host and port to connect to Zookeeper cluster. For example: 127.0.0.1:2181","default":null},"lock-zookeeper-path":{"name":"--lock-zookeeper-path","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The path where Zookeeper will save locks. The default path is: \/magento\/locks","default":null},"lock-file-path":{"name":"--lock-file-path","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The path where file locks will be saved.","default":null},"document-root-is-pub":{"name":"--document-root-is-pub","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Flag to show is Pub is on root, can be true or false only","default":null},"base-url":{"name":"--base-url","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"URL the store is supposed to be available at. Deprecated, use config:set with path web\/unsecure\/base_url","default":null},"language":{"name":"--language","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default language code. Deprecated, use config:set with path general\/locale\/code","default":null},"timezone":{"name":"--timezone","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default time zone code. Deprecated, use config:set with path general\/locale\/timezone","default":null},"currency":{"name":"--currency","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default currency code. Deprecated, use config:set with path currency\/options\/base, currency\/options\/default and currency\/options\/allow","default":null},"use-rewrites":{"name":"--use-rewrites","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Use rewrites. Deprecated, use config:set with path web\/seo\/use_rewrites","default":null},"use-secure":{"name":"--use-secure","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Use secure URLs. Enable this option only if SSL is available. Deprecated, use config:set with path web\/secure\/use_in_frontend","default":null},"base-url-secure":{"name":"--base-url-secure","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Base URL for SSL connection. Deprecated, use config:set with path web\/secure\/base_url","default":null},"use-secure-admin":{"name":"--use-secure-admin","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Run admin interface with SSL. Deprecated, use config:set with path web\/secure\/use_in_adminhtml","default":null},"admin-use-security-key":{"name":"--admin-use-security-key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Whether to use a \"security key\" feature in Magento Admin URLs and forms. Deprecated, use config:set with path admin\/security\/use_form_key","default":null},"admin-user":{"name":"--admin-user","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Admin user","default":null},"admin-password":{"name":"--admin-password","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Admin password","default":null},"admin-email":{"name":"--admin-email","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Admin email","default":null},"admin-firstname":{"name":"--admin-firstname","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Admin first name","default":null},"admin-lastname":{"name":"--admin-lastname","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Admin last name","default":null},"search-engine":{"name":"--search-engine","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Search engine. Values: elasticsearch5, elasticsearch6, elasticsearch7","default":null},"elasticsearch-host":{"name":"--elasticsearch-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Elasticsearch server host.","default":null},"elasticsearch-port":{"name":"--elasticsearch-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Elasticsearch server port.","default":null},"elasticsearch-enable-auth":{"name":"--elasticsearch-enable-auth","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Set to 1 to enable authentication. (default is 0, disabled)","default":null},"elasticsearch-username":{"name":"--elasticsearch-username","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Elasticsearch username. Only applicable if HTTP auth is enabled","default":null},"elasticsearch-password":{"name":"--elasticsearch-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Elasticsearch password. Only applicable if HTTP auth is enabled","default":null},"elasticsearch-index-prefix":{"name":"--elasticsearch-index-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Elasticsearch index prefix.","default":null},"elasticsearch-timeout":{"name":"--elasticsearch-timeout","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Elasticsearch server timeout.","default":null},"cleanup-database":{"name":"--cleanup-database","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Cleanup the database before installation","default":false},"sales-order-increment-prefix":{"name":"--sales-order-increment-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Sales order number prefix","default":null},"use-sample-data":{"name":"--use-sample-data","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Use sample data","default":false},"enable-modules":{"name":"--enable-modules","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"List of comma-separated module names. That must be included during installation. Available magic param \"all\".","default":null},"disable-modules":{"name":"--disable-modules","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"List of comma-separated module names. That must be avoided during installation. Available magic param \"all\".","default":null},"convert-old-scripts":{"name":"--convert-old-scripts","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Allows to convert old scripts (InstallSchema, UpgradeSchema) to db_schema.xml format","default":false},"interactive":{"name":"--interactive","shortcut":"-i","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Interactive Magento installation","default":false},"safe-mode":{"name":"--safe-mode","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Safe installation of Magento with dumps on destructive operations, like column removal","default":null},"data-restore":{"name":"--data-restore","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Restore removed data from dumps","default":null},"dry-run":{"name":"--dry-run","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Magento Installation will be run in dry-run mode","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:performance:generate-fixtures","usage":["setup:performance:generate-fixtures [-s|--skip-reindex] [--] "],"description":"Generates fixtures","help":"Generates fixtures","definition":{"arguments":{"profile":{"name":"profile","is_required":true,"is_array":false,"description":"Path to profile configuration file","default":null}},"options":{"skip-reindex":{"name":"--skip-reindex","shortcut":"-s","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Skip reindex","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:rollback","usage":["setup:rollback [-c|--code-file CODE-FILE] [-m|--media-file MEDIA-FILE] [-d|--db-file DB-FILE] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Rolls back Magento Application codebase, media and database","help":"Rolls back Magento Application codebase, media and database","definition":{"arguments":[],"options":{"code-file":{"name":"--code-file","shortcut":"-c","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Basename of the code backup file in var\/backups","default":null},"media-file":{"name":"--media-file","shortcut":"-m","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Basename of the media backup file in var\/backups","default":null},"db-file":{"name":"--db-file","shortcut":"-d","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Basename of the db backup file in var\/backups","default":null},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:static-content:deploy","usage":["setup:static-content:deploy [-f|--force] [-s|--strategy [STRATEGY]] [-a|--area [AREA]] [--exclude-area [EXCLUDE-AREA]] [-t|--theme [THEME]] [--exclude-theme [EXCLUDE-THEME]] [-l|--language [LANGUAGE]] [--exclude-language [EXCLUDE-LANGUAGE]] [-j|--jobs [JOBS]] [--max-execution-time [MAX-EXECUTION-TIME]] [--symlink-locale] [--content-version CONTENT-VERSION] [--refresh-content-version-only] [--no-javascript] [--no-js-bundle] [--no-css] [--no-less] [--no-images] [--no-fonts] [--no-html] [--no-misc] [--no-html-minify] [--] [...]"],"description":"Deploys static view files","help":"Deploys static view files","definition":{"arguments":{"languages":{"name":"languages","is_required":false,"is_array":true,"description":"Space-separated list of ISO-639 language codes for which to output static view files.","default":[]}},"options":{"force":{"name":"--force","shortcut":"-f","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Deploy files in any mode.","default":false},"strategy":{"name":"--strategy","shortcut":"-s","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Deploy files using specified strategy.","default":"quick"},"area":{"name":"--area","shortcut":"-a","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Generate files only for the specified areas.","default":["all"]},"exclude-area":{"name":"--exclude-area","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Do not generate files for the specified areas.","default":["none"]},"theme":{"name":"--theme","shortcut":"-t","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Generate static view files for only the specified themes.","default":["all"]},"exclude-theme":{"name":"--exclude-theme","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Do not generate files for the specified themes.","default":["none"]},"language":{"name":"--language","shortcut":"-l","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Generate files only for the specified languages.","default":["all"]},"exclude-language":{"name":"--exclude-language","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Do not generate files for the specified languages.","default":["none"]},"jobs":{"name":"--jobs","shortcut":"-j","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Enable parallel processing using the specified number of jobs.","default":0},"max-execution-time":{"name":"--max-execution-time","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"The maximum expected execution time of deployment static process (in seconds).","default":900},"symlink-locale":{"name":"--symlink-locale","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Create symlinks for the files of those locales, which are passed for deployment, but have no customizations.","default":false},"content-version":{"name":"--content-version","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Custom version of static content can be used if running deployment on multiple nodes to ensure that static content version is identical and caching works properly.","default":null},"refresh-content-version-only":{"name":"--refresh-content-version-only","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Refreshing the version of static content only can be used to refresh static content in browser cache and CDN cache.","default":false},"no-javascript":{"name":"--no-javascript","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy JavaScript files.","default":false},"no-js-bundle":{"name":"--no-js-bundle","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy JavaScript bundle files.","default":false},"no-css":{"name":"--no-css","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy CSS files.","default":false},"no-less":{"name":"--no-less","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy LESS files.","default":false},"no-images":{"name":"--no-images","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy images.","default":false},"no-fonts":{"name":"--no-fonts","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy font files.","default":false},"no-html":{"name":"--no-html","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy HTML files.","default":false},"no-misc":{"name":"--no-misc","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy files of other types (.md, .jbf, .csv, etc.).","default":false},"no-html-minify":{"name":"--no-html-minify","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not minify HTML files.","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:store-config:set","usage":["setup:store-config:set [--base-url BASE-URL] [--language LANGUAGE] [--timezone TIMEZONE] [--currency CURRENCY] [--use-rewrites USE-REWRITES] [--use-secure USE-SECURE] [--base-url-secure BASE-URL-SECURE] [--use-secure-admin USE-SECURE-ADMIN] [--admin-use-security-key ADMIN-USE-SECURITY-KEY] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Installs the store configuration. Deprecated since 2.2.0. Use config:set instead","help":"Installs the store configuration. Deprecated since 2.2.0. Use config:set instead","definition":{"arguments":[],"options":{"base-url":{"name":"--base-url","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"URL the store is supposed to be available at. Deprecated, use config:set with path web\/unsecure\/base_url","default":null},"language":{"name":"--language","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default language code. Deprecated, use config:set with path general\/locale\/code","default":null},"timezone":{"name":"--timezone","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default time zone code. Deprecated, use config:set with path general\/locale\/timezone","default":null},"currency":{"name":"--currency","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default currency code. Deprecated, use config:set with path currency\/options\/base, currency\/options\/default and currency\/options\/allow","default":null},"use-rewrites":{"name":"--use-rewrites","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Use rewrites. Deprecated, use config:set with path web\/seo\/use_rewrites","default":null},"use-secure":{"name":"--use-secure","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Use secure URLs. Enable this option only if SSL is available. Deprecated, use config:set with path web\/secure\/use_in_frontend","default":null},"base-url-secure":{"name":"--base-url-secure","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Base URL for SSL connection. Deprecated, use config:set with path web\/secure\/base_url","default":null},"use-secure-admin":{"name":"--use-secure-admin","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Run admin interface with SSL. Deprecated, use config:set with path web\/secure\/use_in_adminhtml","default":null},"admin-use-security-key":{"name":"--admin-use-security-key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Whether to use a \"security key\" feature in Magento Admin URLs and forms. Deprecated, use config:set with path admin\/security\/use_form_key","default":null},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:uninstall","usage":["setup:uninstall [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Uninstalls the Magento application","help":"Uninstalls the Magento application","definition":{"arguments":[],"options":{"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:upgrade","usage":["setup:upgrade [--keep-generated] [--convert-old-scripts [CONVERT-OLD-SCRIPTS]] [--safe-mode [SAFE-MODE]] [--data-restore [DATA-RESTORE]] [--dry-run [DRY-RUN]] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Upgrades the Magento application, DB data, and schema","help":"Upgrades the Magento application, DB data, and schema","definition":{"arguments":[],"options":{"keep-generated":{"name":"--keep-generated","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Prevents generated files from being deleted. We discourage using this option except when deploying to production. Consult your system integrator or administrator for more information.","default":false},"convert-old-scripts":{"name":"--convert-old-scripts","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Allows to convert old scripts (InstallSchema, UpgradeSchema) to db_schema.xml format","default":false},"safe-mode":{"name":"--safe-mode","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Safe installation of Magento with dumps on destructive operations, like column removal","default":null},"data-restore":{"name":"--data-restore","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Restore removed data from dumps","default":null},"dry-run":{"name":"--dry-run","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Magento Installation will be run in dry-run mode","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"store:list","usage":["store:list"],"description":"Displays the list of stores","help":"Displays the list of stores","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"store:website:list","usage":["store:website:list"],"description":"Displays the list of websites","help":"Displays the list of websites","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"support:backup:code","usage":["support:backup:code [--name [NAME]] [-o|--output [OUTPUT]] [-l|--logs]"],"description":"Create Code backup","help":"Create Code backup","definition":{"arguments":[],"options":{"name":{"name":"--name","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Dump name","default":null},"output":{"name":"--output","shortcut":"-o","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Output path","default":null},"logs":{"name":"--logs","shortcut":"-l","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Include logs","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"support:backup:db","usage":["support:backup:db [--name [NAME]] [-o|--output [OUTPUT]] [-l|--logs] [-i|--ignore-sanitize]"],"description":"Create DB backup","help":"Create DB backup","definition":{"arguments":[],"options":{"name":{"name":"--name","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Dump name","default":null},"output":{"name":"--output","shortcut":"-o","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Output path","default":null},"logs":{"name":"--logs","shortcut":"-l","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Include logs","default":false},"ignore-sanitize":{"name":"--ignore-sanitize","shortcut":"-i","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Ignore sanitize","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"support:utility:check","usage":["support:utility:check [--hide-paths]"],"description":"Check required backup utilities","help":"Check required backup utilities","definition":{"arguments":[],"options":{"hide-paths":{"name":"--hide-paths","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Only check required console utilities","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"support:utility:paths","usage":["support:utility:paths [-f|--force]"],"description":"Create utilities paths list","help":"Create utilities paths list","definition":{"arguments":[],"options":{"force":{"name":"--force","shortcut":"-f","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"theme:uninstall","usage":["theme:uninstall [--backup-code] [-c|--clear-static-content] [--] ..."],"description":"Uninstalls theme","help":"Uninstalls theme","definition":{"arguments":{"theme":{"name":"theme","is_required":true,"is_array":true,"description":"Path of the theme. Theme path should be specified as full path which is area\/vendor\/name. For example, frontend\/Magento\/blank","default":[]}},"options":{"backup-code":{"name":"--backup-code","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take code backup (excluding temporary files)","default":false},"clear-static-content":{"name":"--clear-static-content","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Clear generated static view files.","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"varnish:vcl:generate","usage":["varnish:vcl:generate [--access-list ACCESS-LIST] [--backend-host BACKEND-HOST] [--backend-port BACKEND-PORT] [--export-version EXPORT-VERSION] [--grace-period GRACE-PERIOD] [--output-file OUTPUT-FILE]"],"description":"Generates Varnish VCL and echos it to the command line","help":"Generates Varnish VCL and echos it to the command line","definition":{"arguments":[],"options":{"access-list":{"name":"--access-list","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":true,"description":"IPs access list that can purge Varnish","default":["localhost"]},"backend-host":{"name":"--backend-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Host of the web backend","default":"localhost"},"backend-port":{"name":"--backend-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Port of the web backend","default":8080},"export-version":{"name":"--export-version","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The version of Varnish file","default":"4"},"grace-period":{"name":"--grace-period","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Grace period in seconds","default":300},"output-file":{"name":"--output-file","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Path to the file to write vcl","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"yotpo:reset","usage":["yotpo:reset [-e|--entity [ENTITY]]"],"description":"Reset Yotpo sync flags &\/or configurations","help":"Reset Yotpo sync flags &\/or configurations","definition":{"arguments":[],"options":{"entity":{"name":"--entity","shortcut":"-e","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Entity type (orders)","default":"orders"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"yotpo:sync","usage":["yotpo:sync [-e|--entity ENTITY] [-l|--limit [LIMIT]]"],"description":"Sync Yotpo manually (reviews module)","help":"Sync Yotpo manually (reviews module)","definition":{"arguments":[],"options":{"entity":{"name":"--entity","shortcut":"-e","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Entity type (allowed options: orders)","default":"orders"},"limit":{"name":"--limit","shortcut":"-l","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Max entity items to sync. WARNING: Setting a high sync limit (or no limit) may result in a high server load (0=no limit).","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"yotpo:update-metadata","usage":["yotpo:update-metadata"],"description":"Manually send platform metadata to Yotpo","help":"Manually send platform metadata to Yotpo","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false}],"namespaces":[{"id":"_global","commands":["help","list"]},{"id":"admin","commands":["admin:user:create","admin:user:unlock"]},{"id":"app","commands":["app:config:dump","app:config:import","app:config:status"]},{"id":"braintree","commands":["braintree:migrate"]},{"id":"cache","commands":["cache:clean","cache:disable","cache:enable","cache:flush","cache:status"]},{"id":"catalog","commands":["catalog:images:resize","catalog:product:attributes:cleanup"]},{"id":"config","commands":["config:sensitive:set","config:set","config:show"]},{"id":"cron","commands":["cron:install","cron:remove","cron:run"]},{"id":"customer","commands":["customer:hash:upgrade"]},{"id":"deploy","commands":["deploy:mode:set","deploy:mode:show"]},{"id":"dev","commands":["dev:di:info","dev:profiler:disable","dev:profiler:enable","dev:query-log:disable","dev:query-log:enable","dev:source-theme:deploy","dev:template-hints:disable","dev:template-hints:enable","dev:template-hints:status","dev:tests:run","dev:urn-catalog:generate","dev:xml:convert"]},{"id":"dotdigital","commands":["dotdigital:connector:automap","dotdigital:connector:enable","dotdigital:migrate","dotdigital:sync"]},{"id":"downloadable","commands":["downloadable:domains:add","downloadable:domains:remove","downloadable:domains:show"]},{"id":"encryption","commands":["encryption:payment-data:update"]},{"id":"i18n","commands":["i18n:collect-phrases","i18n:pack","i18n:uninstall"]},{"id":"indexer","commands":["indexer:info","indexer:reindex","indexer:reset","indexer:set-dimensions-mode","indexer:set-mode","indexer:show-dimensions-mode","indexer:show-mode","indexer:status"]},{"id":"info","commands":["info:adminuri","info:backups:list","info:currency:list","info:dependencies:show-framework","info:dependencies:show-modules","info:dependencies:show-modules-circular","info:language:list","info:timezone:list"]},{"id":"inventory","commands":["inventory:reservation:create-compensations","inventory:reservation:list-inconsistencies"]},{"id":"inventory-geonames","commands":["inventory-geonames:import"]},{"id":"maintenance","commands":["maintenance:allow-ips","maintenance:disable","maintenance:enable","maintenance:status"]},{"id":"media-content","commands":["media-content:sync"]},{"id":"media-gallery","commands":["media-gallery:sync"]},{"id":"module","commands":["module:config:status","module:disable","module:enable","module:status","module:uninstall"]},{"id":"newrelic","commands":["newrelic:create:deploy-marker"]},{"id":"queue","commands":["queue:consumers:list","queue:consumers:start"]},{"id":"sampledata","commands":["sampledata:deploy","sampledata:remove","sampledata:reset"]},{"id":"security","commands":["security:recaptcha:disable-for-user-forgot-password","security:recaptcha:disable-for-user-login","security:tfa:google:set-secret","security:tfa:providers","security:tfa:reset"]},{"id":"setup","commands":["setup:backup","setup:config:set","setup:db-data:upgrade","setup:db-declaration:generate-patch","setup:db-declaration:generate-whitelist","setup:db-schema:add-slave","setup:db-schema:split-quote","setup:db-schema:split-sales","setup:db-schema:upgrade","setup:db:status","setup:di:compile","setup:install","setup:performance:generate-fixtures","setup:rollback","setup:static-content:deploy","setup:store-config:set","setup:uninstall","setup:upgrade"]},{"id":"store","commands":["store:list","store:website:list"]},{"id":"support","commands":["support:backup:code","support:backup:db","support:utility:check","support:utility:paths"]},{"id":"theme","commands":["theme:uninstall"]},{"id":"varnish","commands":["varnish:vcl:generate"]},{"id":"yotpo","commands":["yotpo:reset","yotpo:sync","yotpo:update-metadata"]}]} \ No newline at end of file diff --git a/src/_data/codebase/v2_4/open-source/bin-magento.json b/src/_data/codebase/v2_4/open-source/bin-magento.json index df3cf3f9460..3506baa1818 100644 --- a/src/_data/codebase/v2_4/open-source/bin-magento.json +++ b/src/_data/codebase/v2_4/open-source/bin-magento.json @@ -1 +1 @@ -{"application":{"name":"Magento CLI","version":"2.4.0"},"commands":[{"name":"help","usage":["help [--format FORMAT] [--raw] [--] []"],"description":"Displays help for a command","help":"The help<\/info> command displays help for a given command:\n\n php \/var\/www\/html\/magento2\/bin\/magento help list<\/info>\n\nYou can also output the help in other formats by using the --format<\/comment> option:\n\n php \/var\/www\/html\/magento2\/bin\/magento help --format=xml list<\/info>\n\nTo display the list of available commands, please use the list<\/info> command.","definition":{"arguments":{"command_name":{"name":"command_name","is_required":false,"is_array":false,"description":"The command name","default":"help"}},"options":{"format":{"name":"--format","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The output format (txt, xml, json, or md)","default":"txt"},"raw":{"name":"--raw","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"To output raw command help","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"list","usage":["list [--raw] [--format FORMAT] [--] []"],"description":"Lists commands","help":"The list<\/info> command lists all commands:\n\n php \/var\/www\/html\/magento2\/bin\/magento list<\/info>\n\nYou can also display the commands for a specific namespace:\n\n php \/var\/www\/html\/magento2\/bin\/magento list test<\/info>\n\nYou can also output the information in other formats by using the --format<\/comment> option:\n\n php \/var\/www\/html\/magento2\/bin\/magento list --format=xml<\/info>\n\nIt's also possible to get raw list of commands (useful for embedding command runner):\n\n php \/var\/www\/html\/magento2\/bin\/magento list --raw<\/info>","definition":{"arguments":{"namespace":{"name":"namespace","is_required":false,"is_array":false,"description":"The namespace name","default":null}},"options":{"raw":{"name":"--raw","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"To output raw command list","default":false},"format":{"name":"--format","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The output format (txt, xml, json, or md)","default":"txt"}}},"hidden":false},{"name":"admin:user:create","usage":["admin:user:create [--admin-user ADMIN-USER] [--admin-password ADMIN-PASSWORD] [--admin-email ADMIN-EMAIL] [--admin-firstname ADMIN-FIRSTNAME] [--admin-lastname ADMIN-LASTNAME] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Creates an administrator","help":"Creates an administrator","definition":{"arguments":[],"options":{"admin-user":{"name":"--admin-user","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"(Required) Admin user","default":null},"admin-password":{"name":"--admin-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"(Required) Admin password","default":null},"admin-email":{"name":"--admin-email","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"(Required) Admin email","default":null},"admin-firstname":{"name":"--admin-firstname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"(Required) Admin first name","default":null},"admin-lastname":{"name":"--admin-lastname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"(Required) Admin last name","default":null},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"admin:user:unlock","usage":["admin:user:unlock "],"description":"Unlock Admin Account","help":"This command unlocks an admin account by its username.\nTo unlock:\n \/var\/www\/html\/magento2\/bin\/magento admin:user:unlock username<\/comment>","definition":{"arguments":{"username":{"name":"username","is_required":true,"is_array":false,"description":"The admin username to unlock","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"app:config:dump","usage":["app:config:dump [...]"],"description":"Create dump of application","help":"Create dump of application","definition":{"arguments":{"config-types":{"name":"config-types","is_required":false,"is_array":true,"description":"Space-separated list of config types or omit to dump all [scopes, themes, system, i18n]","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"app:config:import","usage":["app:config:import"],"description":"Import data from shared configuration files to appropriate data storage","help":"Import data from shared configuration files to appropriate data storage","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"app:config:status","usage":["app:config:status"],"description":"Checks if config propagation requires update","help":"Checks if config propagation requires update","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"braintree:migrate","usage":["braintree:migrate [--host HOST] [--dbname DBNAME] [--username USERNAME] [--password PASSWORD]"],"description":"Migrate stored cards from a Magento 1 database","help":"Migrate stored cards from a Magento 1 database","definition":{"arguments":[],"options":{"host":{"name":"--host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Hostname\/IP. Port is optional","default":null},"dbname":{"name":"--dbname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database name","default":null},"username":{"name":"--username","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database username. Must have read access","default":null},"password":{"name":"--password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Password","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cache:clean","usage":["cache:clean [--bootstrap BOOTSTRAP] [--] [...]"],"description":"Cleans cache type(s)","help":"Cleans cache type(s)","definition":{"arguments":{"types":{"name":"types","is_required":false,"is_array":true,"description":"Space-separated list of cache types or omit to apply to all cache types.","default":[]}},"options":{"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cache:disable","usage":["cache:disable [--bootstrap BOOTSTRAP] [--] [...]"],"description":"Disables cache type(s)","help":"Disables cache type(s)","definition":{"arguments":{"types":{"name":"types","is_required":false,"is_array":true,"description":"Space-separated list of cache types or omit to apply to all cache types.","default":[]}},"options":{"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cache:enable","usage":["cache:enable [--bootstrap BOOTSTRAP] [--] [...]"],"description":"Enables cache type(s)","help":"Enables cache type(s)","definition":{"arguments":{"types":{"name":"types","is_required":false,"is_array":true,"description":"Space-separated list of cache types or omit to apply to all cache types.","default":[]}},"options":{"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cache:flush","usage":["cache:flush [--bootstrap BOOTSTRAP] [--] [...]"],"description":"Flushes cache storage used by cache type(s)","help":"Flushes cache storage used by cache type(s)","definition":{"arguments":{"types":{"name":"types","is_required":false,"is_array":true,"description":"Space-separated list of cache types or omit to apply to all cache types.","default":[]}},"options":{"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cache:status","usage":["cache:status [--bootstrap BOOTSTRAP]"],"description":"Checks cache status","help":"Checks cache status","definition":{"arguments":[],"options":{"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"catalog:images:resize","usage":["catalog:images:resize [-a|--async]"],"description":"Creates resized product images","help":"Creates resized product images","definition":{"arguments":[],"options":{"async":{"name":"--async","shortcut":"-a","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Resize image in asynchronous mode","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"catalog:product:attributes:cleanup","usage":["catalog:product:attributes:cleanup"],"description":"Removes unused product attributes.","help":"Removes unused product attributes.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"config:sensitive:set","usage":["config:sensitive:set [-i|--interactive] [--scope [SCOPE]] [--scope-code [SCOPE-CODE]] [--] [ []]"],"description":"Set sensitive configuration values","help":"Set sensitive configuration values","definition":{"arguments":{"path":{"name":"path","is_required":false,"is_array":false,"description":"Configuration path for example group\/section\/field_name","default":null},"value":{"name":"value","is_required":false,"is_array":false,"description":"Configuration value","default":null}},"options":{"interactive":{"name":"--interactive","shortcut":"-i","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Enable interactive mode to set all sensitive variables","default":false},"scope":{"name":"--scope","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Scope for configuration, if not set use 'default'","default":"default"},"scope-code":{"name":"--scope-code","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Scope code for configuration, empty string by default","default":""},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"config:set","usage":["config:set [--scope SCOPE] [--scope-code SCOPE-CODE] [-e|--lock-env] [-c|--lock-config] [-l|--lock] [--] "],"description":"Change system configuration","help":"Change system configuration","definition":{"arguments":{"path":{"name":"path","is_required":true,"is_array":false,"description":"Configuration path in format section\/group\/field_name","default":null},"value":{"name":"value","is_required":true,"is_array":false,"description":"Configuration value","default":null}},"options":{"scope":{"name":"--scope","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Configuration scope (default, website, or store)","default":"default"},"scope-code":{"name":"--scope-code","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Scope code (required only if scope is not 'default')","default":null},"lock-env":{"name":"--lock-env","shortcut":"-e","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Lock value which prevents modification in the Admin (will be saved in app\/etc\/env.php)","default":false},"lock-config":{"name":"--lock-config","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Lock and share value with other installations, prevents modification in the Admin (will be saved in app\/etc\/config.php)","default":false},"lock":{"name":"--lock","shortcut":"-l","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Deprecated, use the --lock-env option instead.","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"config:show","usage":["config:show [--scope [SCOPE]] [--scope-code [SCOPE-CODE]] [--] []"],"description":"Shows configuration value for given path. If path is not specified, all saved values will be shown","help":"Shows configuration value for given path. If path is not specified, all saved values will be shown","definition":{"arguments":{"path":{"name":"path","is_required":false,"is_array":false,"description":"Configuration path, for example section_id\/group_id\/field_id","default":null}},"options":{"scope":{"name":"--scope","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Scope for configuration, if not specified, then 'default' scope will be used","default":"default"},"scope-code":{"name":"--scope-code","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Scope code (required only if scope is not `default`)","default":""},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cron:install","usage":["cron:install [-f|--force] [-d|--non-optional]"],"description":"Generates and installs crontab for current user","help":"Generates and installs crontab for current user","definition":{"arguments":[],"options":{"force":{"name":"--force","shortcut":"-f","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force install tasks","default":false},"non-optional":{"name":"--non-optional","shortcut":"-d","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Install only the non-optional (default) tasks","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cron:remove","usage":["cron:remove"],"description":"Removes tasks from crontab","help":"Removes tasks from crontab","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cron:run","usage":["cron:run [--group GROUP] [--bootstrap BOOTSTRAP]"],"description":"Runs jobs by schedule","help":"Runs jobs by schedule","definition":{"arguments":[],"options":{"group":{"name":"--group","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Run jobs only from specified group","default":null},"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"customer:hash:upgrade","usage":["customer:hash:upgrade"],"description":"Upgrade customer's hash according to the latest algorithm","help":"Upgrade customer's hash according to the latest algorithm","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"deploy:mode:set","usage":["deploy:mode:set [-s|--skip-compilation] [--] "],"description":"Set application mode.","help":"Set application mode.","definition":{"arguments":{"mode":{"name":"mode","is_required":true,"is_array":false,"description":"The application mode to set. Available options are \"developer\" or \"production\"","default":null}},"options":{"skip-compilation":{"name":"--skip-compilation","shortcut":"-s","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Skips the clearing and regeneration of static content (generated code, preprocessed CSS, and assets in pub\/static\/)","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"deploy:mode:show","usage":["deploy:mode:show"],"description":"Displays current application mode.","help":"Displays current application mode.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:di:info","usage":["dev:di:info "],"description":"Provides information on Dependency Injection configuration for the Command.","help":"Provides information on Dependency Injection configuration for the Command.","definition":{"arguments":{"class":{"name":"class","is_required":true,"is_array":false,"description":"Class name","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:profiler:disable","usage":["dev:profiler:disable"],"description":"Disable the profiler.","help":"Disable the profiler.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:profiler:enable","usage":["dev:profiler:enable []"],"description":"Enable the profiler.","help":"Enable the profiler.","definition":{"arguments":{"type":{"name":"type","is_required":false,"is_array":false,"description":"Profiler type","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:query-log:disable","usage":["dev:query-log:disable"],"description":"Disable DB query logging","help":"Disable DB query logging","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:query-log:enable","usage":["dev:query-log:enable [--include-all-queries [INCLUDE-ALL-QUERIES]] [--query-time-threshold [QUERY-TIME-THRESHOLD]] [--include-call-stack [INCLUDE-CALL-STACK]]"],"description":"Enable DB query logging","help":"Enable DB query logging","definition":{"arguments":[],"options":{"include-all-queries":{"name":"--include-all-queries","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Log all queries. [true|false]","default":"true"},"query-time-threshold":{"name":"--query-time-threshold","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Query time thresholds.","default":"0.001"},"include-call-stack":{"name":"--include-call-stack","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Include call stack. [true|false]","default":"true"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:source-theme:deploy","usage":["dev:source-theme:deploy [--type TYPE] [--locale LOCALE] [--area AREA] [--theme THEME] [--] [...]"],"description":"Collects and publishes source files for theme.","help":"Collects and publishes source files for theme.","definition":{"arguments":{"file":{"name":"file","is_required":false,"is_array":true,"description":"Files to pre-process (file should be specified without extension)","default":["css\/styles-m","css\/styles-l"]}},"options":{"type":{"name":"--type","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Type of source files: [less]","default":"less"},"locale":{"name":"--locale","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Locale: [en_US]","default":"en_US"},"area":{"name":"--area","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Area: [frontend|adminhtml]","default":"frontend"},"theme":{"name":"--theme","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Theme: [Vendor\/theme]","default":"Magento\/luma"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:template-hints:disable","usage":["dev:template-hints:disable"],"description":"Disable frontend template hints. A cache flush might be required.","help":"Disable frontend template hints. A cache flush might be required.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:template-hints:enable","usage":["dev:template-hints:enable"],"description":"Enable frontend template hints. A cache flush might be required.","help":"Enable frontend template hints. A cache flush might be required.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:template-hints:status","usage":["dev:template-hints:status"],"description":"Show frontend template hints status.","help":"Show frontend template hints status.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:tests:run","usage":["dev:tests:run [-c|--arguments ARGUMENTS] [--] []"],"description":"Runs tests","help":"Runs tests","definition":{"arguments":{"type":{"name":"type","is_required":false,"is_array":false,"description":"Type of test to run. Available types: all, unit, integration, integration-all, static, static-all, integrity, legacy, default","default":"default"}},"options":{"arguments":{"name":"--arguments","shortcut":"-c","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Additional arguments for PHPUnit. Example: \"-c'--filter=MyTest'\" (no spaces)","default":""},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:urn-catalog:generate","usage":["dev:urn-catalog:generate [--ide IDE] [--] "],"description":"Generates the catalog of URNs to *.xsd mappings for the IDE to highlight xml.","help":"Generates the catalog of URNs to *.xsd mappings for the IDE to highlight xml.","definition":{"arguments":{"path":{"name":"path","is_required":true,"is_array":false,"description":"Path to file to output the catalog. For PhpStorm use .idea\/misc.xml","default":null}},"options":{"ide":{"name":"--ide","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Format in which catalog will be generated. Supported: [phpstorm, vscode]","default":"phpstorm"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:xml:convert","usage":["dev:xml:convert [-o|--overwrite] [--] "],"description":"Converts XML file using XSL style sheets","help":"Converts XML file using XSL style sheets","definition":{"arguments":{"xml-file":{"name":"xml-file","is_required":true,"is_array":false,"description":"Path to XML file that going to be transformed","default":null},"processor":{"name":"processor","is_required":true,"is_array":false,"description":"Path to XSL style sheet that going to be applied to XML file","default":null}},"options":{"overwrite":{"name":"--overwrite","shortcut":"-o","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Overwrite XML file","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dotdigital:connector:automap","usage":["dotdigital:connector:automap"],"description":"Auto-map data fields","help":"Auto-map data fields","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dotdigital:connector:enable","usage":["dotdigital:connector:enable [--username USERNAME] [--password PASSWORD] [--automap-datafields [AUTOMAP-DATAFIELDS]] [--enable-syncs [ENABLE-SYNCS]] [--remove-ip-restriction [REMOVE-IP-RESTRICTION]] [--enable-email-capture [ENABLE-EMAIL-CAPTURE]]"],"description":"Add Dotdigital API credentials and enable the connector","help":"Add Dotdigital API credentials and enable the connector","definition":{"arguments":[],"options":{"username":{"name":"--username","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"API username","default":null},"password":{"name":"--password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"API password","default":null},"automap-datafields":{"name":"--automap-datafields","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Automap data fields","default":null},"enable-syncs":{"name":"--enable-syncs","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Enable syncs","default":null},"remove-ip-restriction":{"name":"--remove-ip-restriction","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Remove IP restriction","default":null},"enable-email-capture":{"name":"--enable-email-capture","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Enable email capture","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dotdigital:migrate","usage":["dotdigital:migrate"],"description":"Migrate data into email_ tables to sync with Engagement Cloud","help":"Migrate data into email_ tables to sync with Engagement Cloud","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dotdigital:sync","usage":["dotdigital:sync [--from [FROM]] [--] []"],"description":"Run syncs to populate email_ tables before importing to Engagement Cloud","help":"Run syncs to populate email_ tables before importing to Engagement Cloud","definition":{"arguments":{"sync":{"name":"sync","is_required":false,"is_array":false,"description":"The name of the sync to run","default":null}},"options":{"from":{"name":"--from","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Specify a date\/time (parsable by \\DateTime) to run a sync from (if supported)","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"downloadable:domains:add","usage":["downloadable:domains:add [...]"],"description":"Add domains to the downloadable domains whitelist","help":"Add domains to the downloadable domains whitelist","definition":{"arguments":{"domains":{"name":"domains","is_required":false,"is_array":true,"description":"Domains name","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"downloadable:domains:remove","usage":["downloadable:domains:remove [...]"],"description":"Remove domains from the downloadable domains whitelist","help":"Remove domains from the downloadable domains whitelist","definition":{"arguments":{"domains":{"name":"domains","is_required":false,"is_array":true,"description":"Domain names","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"downloadable:domains:show","usage":["downloadable:domains:show"],"description":"Display downloadable domains whitelist","help":"Display downloadable domains whitelist","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"encryption:payment-data:update","usage":["encryption:payment-data:update"],"description":"Re-encrypts encrypted credit card data with latest encryption cipher.","help":"Re-encrypts encrypted credit card data with latest encryption cipher.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"i18n:collect-phrases","usage":["i18n:collect-phrases [-o|--output OUTPUT] [-m|--magento] [--] []"],"description":"Discovers phrases in the codebase","help":"Discovers phrases in the codebase","definition":{"arguments":{"directory":{"name":"directory","is_required":false,"is_array":false,"description":"Directory path to parse. Not needed if --magento flag is set","default":null}},"options":{"output":{"name":"--output","shortcut":"-o","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Path (including filename) to an output file. With no file specified, defaults to stdout.","default":null},"magento":{"name":"--magento","shortcut":"-m","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Use the --magento parameter to parse the current Magento codebase. Omit the parameter if a directory is specified.","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"i18n:pack","usage":["i18n:pack [-m|--mode MODE] [-d|--allow-duplicates] [--] "],"description":"Saves language package","help":"Saves language package","definition":{"arguments":{"source":{"name":"source","is_required":true,"is_array":false,"description":"Path to source dictionary file with translations","default":null},"locale":{"name":"locale","is_required":true,"is_array":false,"description":"Target locale for dictionary, for example \"de_DE\"","default":null}},"options":{"mode":{"name":"--mode","shortcut":"-m","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Save mode for dictionary - \"replace\" - replace language pack by new one - \"merge\" - merge language packages, by default \"replace\"","default":"replace"},"allow-duplicates":{"name":"--allow-duplicates","shortcut":"-d","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Use the --allow-duplicates parameter to allow saving duplicates of translate. Otherwise omit the parameter.","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"i18n:uninstall","usage":["i18n:uninstall [-b|--backup-code] [--] ..."],"description":"Uninstalls language packages","help":"Uninstalls language packages","definition":{"arguments":{"package":{"name":"package","is_required":true,"is_array":true,"description":"Language package name","default":[]}},"options":{"backup-code":{"name":"--backup-code","shortcut":"-b","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take code and configuration files backup (excluding temporary files)","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:info","usage":["indexer:info"],"description":"Shows allowed Indexers","help":"Shows allowed Indexers","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:reindex","usage":["indexer:reindex [...]"],"description":"Reindexes Data","help":"Reindexes Data","definition":{"arguments":{"index":{"name":"index","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes.","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:reset","usage":["indexer:reset [...]"],"description":"Resets indexer status to invalid","help":"Resets indexer status to invalid","definition":{"arguments":{"index":{"name":"index","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes.","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:set-dimensions-mode","usage":["indexer:set-dimensions-mode [ []]"],"description":"Set Indexer Dimensions Mode","help":"Set Indexer Dimensions Mode","definition":{"arguments":{"indexer":{"name":"indexer","is_required":false,"is_array":false,"description":"Indexer name [catalog_product_price]","default":null},"mode":{"name":"mode","is_required":false,"is_array":false,"description":"Indexer dimension modes catalog_product_price none,website,customer_group,website_and_customer_group ","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:set-mode","usage":["indexer:set-mode [ [...]]"],"description":"Sets index mode type","help":"Sets index mode type","definition":{"arguments":{"mode":{"name":"mode","is_required":false,"is_array":false,"description":"Indexer mode type [realtime|schedule]","default":null},"index":{"name":"index","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes.","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:show-dimensions-mode","usage":["indexer:show-dimensions-mode [...]"],"description":"Shows Indexer Dimension Mode","help":"Shows Indexer Dimension Mode","definition":{"arguments":{"indexer":{"name":"indexer","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes (catalog_product_price)","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:show-mode","usage":["indexer:show-mode [...]"],"description":"Shows Index Mode","help":"Shows Index Mode","definition":{"arguments":{"index":{"name":"index","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes.","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:status","usage":["indexer:status [...]"],"description":"Shows status of Indexer","help":"Shows status of Indexer","definition":{"arguments":{"index":{"name":"index","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes.","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:adminuri","usage":["info:adminuri"],"description":"Displays the Magento Admin URI","help":"Displays the Magento Admin URI","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:backups:list","usage":["info:backups:list"],"description":"Prints list of available backup files","help":"Prints list of available backup files","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:currency:list","usage":["info:currency:list"],"description":"Displays the list of available currencies","help":"Displays the list of available currencies","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:dependencies:show-framework","usage":["info:dependencies:show-framework [-o|--output OUTPUT]"],"description":"Shows number of dependencies on Magento framework","help":"Shows number of dependencies on Magento framework","definition":{"arguments":[],"options":{"output":{"name":"--output","shortcut":"-o","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Report filename","default":"framework-dependencies.csv"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:dependencies:show-modules","usage":["info:dependencies:show-modules [-o|--output OUTPUT]"],"description":"Shows number of dependencies between modules","help":"Shows number of dependencies between modules","definition":{"arguments":[],"options":{"output":{"name":"--output","shortcut":"-o","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Report filename","default":"modules-dependencies.csv"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:dependencies:show-modules-circular","usage":["info:dependencies:show-modules-circular [-o|--output OUTPUT]"],"description":"Shows number of circular dependencies between modules","help":"Shows number of circular dependencies between modules","definition":{"arguments":[],"options":{"output":{"name":"--output","shortcut":"-o","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Report filename","default":"modules-circular-dependencies.csv"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:language:list","usage":["info:language:list"],"description":"Displays the list of available language locales","help":"Displays the list of available language locales","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:timezone:list","usage":["info:timezone:list"],"description":"Displays the list of available timezones","help":"Displays the list of available timezones","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"inventory:reservation:create-compensations","usage":["inventory:reservation:create-compensations [-r|--raw] [--] [...]"],"description":"Create reservations by provided compensation arguments","help":"Create reservations by provided compensation arguments","definition":{"arguments":{"compensations":{"name":"compensations","is_required":false,"is_array":true,"description":"List of compensation arguments in format \":::\"","default":[]}},"options":{"raw":{"name":"--raw","shortcut":"-r","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Raw output","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"inventory:reservation:list-inconsistencies","usage":["inventory:reservation:list-inconsistencies [-c|--complete-orders] [-i|--incomplete-orders] [-b|--bunch-size [BUNCH-SIZE]] [-r|--raw]"],"description":"Show all orders and products with salable quantity inconsistencies","help":"Show all orders and products with salable quantity inconsistencies","definition":{"arguments":[],"options":{"complete-orders":{"name":"--complete-orders","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Show only inconsistencies for complete orders","default":false},"incomplete-orders":{"name":"--incomplete-orders","shortcut":"-i","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Show only inconsistencies for incomplete orders","default":false},"bunch-size":{"name":"--bunch-size","shortcut":"-b","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Defines how many orders will be loaded at once","default":50},"raw":{"name":"--raw","shortcut":"-r","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Raw output","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"inventory-geonames:import","usage":["inventory-geonames:import ..."],"description":"Download and import geo names for source selection algorithm","help":"Download and import geo names for source selection algorithm","definition":{"arguments":{"countries":{"name":"countries","is_required":true,"is_array":true,"description":"List of country codes to import","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"maintenance:allow-ips","usage":["maintenance:allow-ips [--none] [--add] [--magento-init-params MAGENTO-INIT-PARAMS] [--] [...]"],"description":"Sets maintenance mode exempt IPs","help":"Sets maintenance mode exempt IPs","definition":{"arguments":{"ip":{"name":"ip","is_required":false,"is_array":true,"description":"Allowed IP addresses","default":[]}},"options":{"none":{"name":"--none","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Clear allowed IP addresses","default":false},"add":{"name":"--add","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Add the IP address to existing list","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"maintenance:disable","usage":["maintenance:disable [--ip IP] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Disables maintenance mode","help":"Disables maintenance mode","definition":{"arguments":[],"options":{"ip":{"name":"--ip","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":true,"description":"Allowed IP addresses (use 'none' to clear allowed IP list)","default":[]},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"maintenance:enable","usage":["maintenance:enable [--ip IP] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Enables maintenance mode","help":"Enables maintenance mode","definition":{"arguments":[],"options":{"ip":{"name":"--ip","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":true,"description":"Allowed IP addresses (use 'none' to clear allowed IP list)","default":[]},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"maintenance:status","usage":["maintenance:status [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Displays maintenance mode status","help":"Displays maintenance mode status","definition":{"arguments":[],"options":{"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"media-content:sync","usage":["media-content:sync"],"description":"Synchronize content with assets","help":"Synchronize content with assets","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"media-gallery:sync","usage":["media-gallery:sync"],"description":"Synchronize media storage and media assets in the database","help":"Synchronize media storage and media assets in the database","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"module:config:status","usage":["module:config:status"],"description":"Checks the modules configuration in the 'app\/etc\/config.php' file and reports if they are up to date or not","help":"Checks the modules configuration in the 'app\/etc\/config.php' file and reports if they are up to date or not","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"module:disable","usage":["module:disable [-f|--force] [--all] [-c|--clear-static-content] [--magento-init-params MAGENTO-INIT-PARAMS] [--] [...]"],"description":"Disables specified modules","help":"Disables specified modules","definition":{"arguments":{"module":{"name":"module","is_required":false,"is_array":true,"description":"Name of the module","default":[]}},"options":{"force":{"name":"--force","shortcut":"-f","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Bypass dependencies check","default":false},"all":{"name":"--all","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable all modules","default":false},"clear-static-content":{"name":"--clear-static-content","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Clear generated static view files. Necessary, if the module(s) have static view files","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"module:enable","usage":["module:enable [-f|--force] [--all] [-c|--clear-static-content] [--magento-init-params MAGENTO-INIT-PARAMS] [--] [...]"],"description":"Enables specified modules","help":"Enables specified modules","definition":{"arguments":{"module":{"name":"module","is_required":false,"is_array":true,"description":"Name of the module","default":[]}},"options":{"force":{"name":"--force","shortcut":"-f","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Bypass dependencies check","default":false},"all":{"name":"--all","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Enable all modules","default":false},"clear-static-content":{"name":"--clear-static-content","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Clear generated static view files. Necessary, if the module(s) have static view files","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"module:status","usage":["module:status [--enabled] [--disabled] [--magento-init-params MAGENTO-INIT-PARAMS] [--] []"],"description":"Displays status of modules","help":"Displays status of modules","definition":{"arguments":{"module":{"name":"module","is_required":false,"is_array":false,"description":"Optional module name","default":null}},"options":{"enabled":{"name":"--enabled","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Print only enabled modules","default":false},"disabled":{"name":"--disabled","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Print only disabled modules","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"module:uninstall","usage":["module:uninstall [-r|--remove-data] [--backup-code] [--backup-media] [--backup-db] [--non-composer] [-c|--clear-static-content] [--magento-init-params MAGENTO-INIT-PARAMS] [--] ..."],"description":"Uninstalls modules installed by composer","help":"Uninstalls modules installed by composer","definition":{"arguments":{"module":{"name":"module","is_required":true,"is_array":true,"description":"Name of the module","default":[]}},"options":{"remove-data":{"name":"--remove-data","shortcut":"-r","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Remove data installed by module(s)","default":false},"backup-code":{"name":"--backup-code","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take code and configuration files backup (excluding temporary files)","default":false},"backup-media":{"name":"--backup-media","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take media backup","default":false},"backup-db":{"name":"--backup-db","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take complete database backup","default":false},"non-composer":{"name":"--non-composer","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"All modules, that will be past here will be non composer based","default":false},"clear-static-content":{"name":"--clear-static-content","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Clear generated static view files. Necessary, if the module(s) have static view files","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"newrelic:create:deploy-marker","usage":["newrelic:create:deploy-marker []"],"description":"Check the deploy queue for entries and create an appropriate deploy marker.","help":"Check the deploy queue for entries and create an appropriate deploy marker.","definition":{"arguments":{"message":{"name":"message","is_required":true,"is_array":false,"description":"Deploy Message?","default":null},"change_log":{"name":"change_log","is_required":true,"is_array":false,"description":"Change Log?","default":null},"user":{"name":"user","is_required":false,"is_array":false,"description":"Deployment User","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"queue:consumers:list","usage":["queue:consumers:list"],"description":"List of MessageQueue consumers","help":"This command shows list of MessageQueue consumers.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"queue:consumers:start","usage":["queue:consumers:start [--max-messages MAX-MESSAGES] [--batch-size BATCH-SIZE] [--area-code AREA-CODE] [--single-thread] [--pid-file-path PID-FILE-PATH] [--] "],"description":"Start MessageQueue consumer","help":"This command starts MessageQueue consumer by its name.\n\nTo start consumer which will process all queued messages and terminate execution:\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer<\/comment>\n\nTo specify the number of messages which should be processed by consumer before its termination:\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer --max-messages=50<\/comment>\n\nTo specify the number of messages per batch for the batch consumer:\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer --batch-size=500<\/comment>\n\nTo specify the preferred area:\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer --area-code='adminhtml'<\/comment>\n \nTo do not run multiple copies of one consumer simultaneously:\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer --single-thread'<\/comment>\n\nTo save PID enter path (This option is deprecated, use --single-thread instead):\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer --pid-file-path='\/var\/someConsumer.pid'<\/comment>","definition":{"arguments":{"consumer":{"name":"consumer","is_required":true,"is_array":false,"description":"The name of the consumer to be started.","default":null}},"options":{"max-messages":{"name":"--max-messages","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The number of messages to be processed by the consumer before process termination. If not specified - terminate after processing all queued messages.","default":null},"batch-size":{"name":"--batch-size","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The number of messages per batch. Applicable for the batch consumer only.","default":null},"area-code":{"name":"--area-code","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The preferred area (global, adminhtml, etc...) default is global.","default":null},"single-thread":{"name":"--single-thread","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"This option prevents running multiple copies of one consumer simultaneously.","default":false},"pid-file-path":{"name":"--pid-file-path","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The file path for saving PID (This option is deprecated, use --single-thread instead)","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"sampledata:deploy","usage":["sampledata:deploy [--no-update]"],"description":"Deploy sample data modules for composer-based Magento installations","help":"Deploy sample data modules for composer-based Magento installations","definition":{"arguments":[],"options":{"no-update":{"name":"--no-update","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Update composer.json without executing composer update","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"sampledata:remove","usage":["sampledata:remove [--no-update]"],"description":"Remove all sample data packages from composer.json","help":"Remove all sample data packages from composer.json","definition":{"arguments":[],"options":{"no-update":{"name":"--no-update","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Update composer.json without executing composer update","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"sampledata:reset","usage":["sampledata:reset"],"description":"Reset all sample data modules for re-installation","help":"Reset all sample data modules for re-installation","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"security:recaptcha:disable-for-user-forgot-password","usage":["security:recaptcha:disable-for-user-forgot-password"],"description":"Disable reCAPTCHA for admin user forgot password form","help":"Disable reCAPTCHA for admin user forgot password form","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"security:recaptcha:disable-for-user-login","usage":["security:recaptcha:disable-for-user-login"],"description":"Disable reCAPTCHA for admin user login form","help":"Disable reCAPTCHA for admin user login form","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"security:tfa:google:set-secret","usage":["security:tfa:google:set-secret "],"description":"Set the secret used for Google OTP generation.","help":"Set the secret used for Google OTP generation.","definition":{"arguments":{"user":{"name":"user","is_required":true,"is_array":false,"description":"Username","default":null},"secret":{"name":"secret","is_required":true,"is_array":false,"description":"Secret","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"security:tfa:providers","usage":["security:tfa:providers"],"description":"List all available providers","help":"List all available providers","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"security:tfa:reset","usage":["security:tfa:reset "],"description":"Reset configuration for one user","help":"Reset configuration for one user","definition":{"arguments":{"user":{"name":"user","is_required":true,"is_array":false,"description":"Username","default":null},"provider":{"name":"provider","is_required":true,"is_array":false,"description":"Provider code","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:backup","usage":["setup:backup [--code] [--media] [--db] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Takes backup of Magento Application code base, media and database","help":"Takes backup of Magento Application code base, media and database","definition":{"arguments":[],"options":{"code":{"name":"--code","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take code and configuration files backup (excluding temporary files)","default":false},"media":{"name":"--media","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take media backup","default":false},"db":{"name":"--db","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take complete database backup","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:config:set","usage":["setup:config:set [--amqp-host AMQP-HOST] [--amqp-port AMQP-PORT] [--amqp-user AMQP-USER] [--amqp-password AMQP-PASSWORD] [--amqp-virtualhost AMQP-VIRTUALHOST] [--amqp-ssl AMQP-SSL] [--amqp-ssl-options AMQP-SSL-OPTIONS] [--enable-debug-logging ENABLE-DEBUG-LOGGING] [--enable-syslog-logging ENABLE-SYSLOG-LOGGING] [--backend-frontname BACKEND-FRONTNAME] [--consumers-wait-for-messages CONSUMERS-WAIT-FOR-MESSAGES] [--key KEY] [--db-host DB-HOST] [--db-name DB-NAME] [--db-user DB-USER] [--db-engine DB-ENGINE] [--db-password DB-PASSWORD] [--db-prefix DB-PREFIX] [--db-model DB-MODEL] [--db-init-statements DB-INIT-STATEMENTS] [-s|--skip-db-validation] [--http-cache-hosts HTTP-CACHE-HOSTS] [--db-ssl-key DB-SSL-KEY] [--db-ssl-cert DB-SSL-CERT] [--db-ssl-ca DB-SSL-CA] [--db-ssl-verify] [--session-save SESSION-SAVE] [--session-save-redis-host SESSION-SAVE-REDIS-HOST] [--session-save-redis-port SESSION-SAVE-REDIS-PORT] [--session-save-redis-password SESSION-SAVE-REDIS-PASSWORD] [--session-save-redis-timeout SESSION-SAVE-REDIS-TIMEOUT] [--session-save-redis-persistent-id SESSION-SAVE-REDIS-PERSISTENT-ID] [--session-save-redis-db SESSION-SAVE-REDIS-DB] [--session-save-redis-compression-threshold SESSION-SAVE-REDIS-COMPRESSION-THRESHOLD] [--session-save-redis-compression-lib SESSION-SAVE-REDIS-COMPRESSION-LIB] [--session-save-redis-log-level SESSION-SAVE-REDIS-LOG-LEVEL] [--session-save-redis-max-concurrency SESSION-SAVE-REDIS-MAX-CONCURRENCY] [--session-save-redis-break-after-frontend SESSION-SAVE-REDIS-BREAK-AFTER-FRONTEND] [--session-save-redis-break-after-adminhtml SESSION-SAVE-REDIS-BREAK-AFTER-ADMINHTML] [--session-save-redis-first-lifetime SESSION-SAVE-REDIS-FIRST-LIFETIME] [--session-save-redis-bot-first-lifetime SESSION-SAVE-REDIS-BOT-FIRST-LIFETIME] [--session-save-redis-bot-lifetime SESSION-SAVE-REDIS-BOT-LIFETIME] [--session-save-redis-disable-locking SESSION-SAVE-REDIS-DISABLE-LOCKING] [--session-save-redis-min-lifetime SESSION-SAVE-REDIS-MIN-LIFETIME] [--session-save-redis-max-lifetime SESSION-SAVE-REDIS-MAX-LIFETIME] [--session-save-redis-sentinel-master SESSION-SAVE-REDIS-SENTINEL-MASTER] [--session-save-redis-sentinel-servers SESSION-SAVE-REDIS-SENTINEL-SERVERS] [--session-save-redis-sentinel-verify-master SESSION-SAVE-REDIS-SENTINEL-VERIFY-MASTER] [--session-save-redis-sentinel-connect-retires SESSION-SAVE-REDIS-SENTINEL-CONNECT-RETIRES] [--cache-backend CACHE-BACKEND] [--cache-backend-redis-server CACHE-BACKEND-REDIS-SERVER] [--cache-backend-redis-db CACHE-BACKEND-REDIS-DB] [--cache-backend-redis-port CACHE-BACKEND-REDIS-PORT] [--cache-backend-redis-password CACHE-BACKEND-REDIS-PASSWORD] [--cache-backend-redis-compress-data CACHE-BACKEND-REDIS-COMPRESS-DATA] [--cache-backend-redis-compression-lib CACHE-BACKEND-REDIS-COMPRESSION-LIB] [--cache-id-prefix CACHE-ID-PREFIX] [--allow-parallel-generation] [--page-cache PAGE-CACHE] [--page-cache-redis-server PAGE-CACHE-REDIS-SERVER] [--page-cache-redis-db PAGE-CACHE-REDIS-DB] [--page-cache-redis-port PAGE-CACHE-REDIS-PORT] [--page-cache-redis-password PAGE-CACHE-REDIS-PASSWORD] [--page-cache-redis-compress-data PAGE-CACHE-REDIS-COMPRESS-DATA] [--page-cache-redis-compression-lib PAGE-CACHE-REDIS-COMPRESSION-LIB] [--page-cache-id-prefix PAGE-CACHE-ID-PREFIX] [--lock-provider LOCK-PROVIDER] [--lock-db-prefix LOCK-DB-PREFIX] [--lock-zookeeper-host LOCK-ZOOKEEPER-HOST] [--lock-zookeeper-path LOCK-ZOOKEEPER-PATH] [--lock-file-path LOCK-FILE-PATH] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Creates or modifies the deployment configuration","help":"Creates or modifies the deployment configuration","definition":{"arguments":[],"options":{"amqp-host":{"name":"--amqp-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server host","default":""},"amqp-port":{"name":"--amqp-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server port","default":"5672"},"amqp-user":{"name":"--amqp-user","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server username","default":""},"amqp-password":{"name":"--amqp-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server password","default":""},"amqp-virtualhost":{"name":"--amqp-virtualhost","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp virtualhost","default":"\/"},"amqp-ssl":{"name":"--amqp-ssl","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp SSL","default":""},"amqp-ssl-options":{"name":"--amqp-ssl-options","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp SSL Options (JSON)","default":""},"enable-debug-logging":{"name":"--enable-debug-logging","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Enable debug logging","default":null},"enable-syslog-logging":{"name":"--enable-syslog-logging","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Enable syslog logging","default":null},"backend-frontname":{"name":"--backend-frontname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Backend frontname (will be autogenerated if missing)","default":null},"consumers-wait-for-messages":{"name":"--consumers-wait-for-messages","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Should consumers wait for a message from the queue? 1 - Yes, 0 - No","default":null},"key":{"name":"--key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Encryption key","default":null},"db-host":{"name":"--db-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server host","default":null},"db-name":{"name":"--db-name","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database name","default":null},"db-user":{"name":"--db-user","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server username","default":null},"db-engine":{"name":"--db-engine","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server engine","default":null},"db-password":{"name":"--db-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server password","default":null},"db-prefix":{"name":"--db-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database table prefix","default":null},"db-model":{"name":"--db-model","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database type","default":null},"db-init-statements":{"name":"--db-init-statements","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database initial set of commands","default":null},"skip-db-validation":{"name":"--skip-db-validation","shortcut":"-s","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"If specified, then db connection validation will be skipped","default":false},"http-cache-hosts":{"name":"--http-cache-hosts","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"http Cache hosts","default":null},"db-ssl-key":{"name":"--db-ssl-key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of client key file in order to establish db connection through SSL","default":""},"db-ssl-cert":{"name":"--db-ssl-cert","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of client certificate file in order to establish db connection through SSL","default":""},"db-ssl-ca":{"name":"--db-ssl-ca","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of server certificate file in order to establish db connection through SSL","default":""},"db-ssl-verify":{"name":"--db-ssl-verify","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Verify server certification","default":false},"session-save":{"name":"--session-save","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Session save handler","default":null},"session-save-redis-host":{"name":"--session-save-redis-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Fully qualified host name, IP address, or absolute path if using UNIX sockets","default":null},"session-save-redis-port":{"name":"--session-save-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"session-save-redis-password":{"name":"--session-save-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"session-save-redis-timeout":{"name":"--session-save-redis-timeout","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Connection timeout, in seconds","default":null},"session-save-redis-persistent-id":{"name":"--session-save-redis-persistent-id","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Unique string to enable persistent connections","default":null},"session-save-redis-db":{"name":"--session-save-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis database number","default":null},"session-save-redis-compression-threshold":{"name":"--session-save-redis-compression-threshold","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis compression threshold","default":null},"session-save-redis-compression-lib":{"name":"--session-save-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis compression library. Values:\u00a0gzip (default), lzf, lz4, snappy","default":null},"session-save-redis-log-level":{"name":"--session-save-redis-log-level","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis log level. Values: 0 (least verbose) to 7 (most verbose)","default":null},"session-save-redis-max-concurrency":{"name":"--session-save-redis-max-concurrency","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Maximum number of processes that can wait for a lock on one session","default":null},"session-save-redis-break-after-frontend":{"name":"--session-save-redis-break-after-frontend","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Number of seconds to wait before trying to break a lock for frontend session","default":null},"session-save-redis-break-after-adminhtml":{"name":"--session-save-redis-break-after-adminhtml","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Number of seconds to wait before trying to break a lock for Admin session","default":null},"session-save-redis-first-lifetime":{"name":"--session-save-redis-first-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime, in seconds, of session for non-bots on the first write (use 0 to disable)","default":null},"session-save-redis-bot-first-lifetime":{"name":"--session-save-redis-bot-first-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime, in seconds, of session for bots on the first write (use 0 to disable)","default":null},"session-save-redis-bot-lifetime":{"name":"--session-save-redis-bot-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime of session for bots on subsequent writes (use 0 to disable)","default":null},"session-save-redis-disable-locking":{"name":"--session-save-redis-disable-locking","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis disable locking. Values:\u00a0false (default), true","default":null},"session-save-redis-min-lifetime":{"name":"--session-save-redis-min-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis min session lifetime, in seconds","default":null},"session-save-redis-max-lifetime":{"name":"--session-save-redis-max-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis max session lifetime, in seconds","default":null},"session-save-redis-sentinel-master":{"name":"--session-save-redis-sentinel-master","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel master","default":null},"session-save-redis-sentinel-servers":{"name":"--session-save-redis-sentinel-servers","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel servers, comma separated","default":null},"session-save-redis-sentinel-verify-master":{"name":"--session-save-redis-sentinel-verify-master","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel verify master. Values: false (default), true","default":null},"session-save-redis-sentinel-connect-retires":{"name":"--session-save-redis-sentinel-connect-retires","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel connect retries.","default":null},"cache-backend":{"name":"--cache-backend","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default cache handler","default":null},"cache-backend-redis-server":{"name":"--cache-backend-redis-server","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server","default":null},"cache-backend-redis-db":{"name":"--cache-backend-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database number for the cache","default":null},"cache-backend-redis-port":{"name":"--cache-backend-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"cache-backend-redis-password":{"name":"--cache-backend-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"cache-backend-redis-compress-data":{"name":"--cache-backend-redis-compress-data","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Set to 0 to disable compression (default is 1, enabled)","default":null},"cache-backend-redis-compression-lib":{"name":"--cache-backend-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Compression lib to use [snappy,lzf,l4z,zstd,gzip] (leave blank to determine automatically)","default":null},"cache-id-prefix":{"name":"--cache-id-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"ID prefix for cache keys","default":null},"allow-parallel-generation":{"name":"--allow-parallel-generation","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Allow generate cache in non-blocking way","default":false},"page-cache":{"name":"--page-cache","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default cache handler","default":null},"page-cache-redis-server":{"name":"--page-cache-redis-server","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server","default":null},"page-cache-redis-db":{"name":"--page-cache-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database number for the cache","default":null},"page-cache-redis-port":{"name":"--page-cache-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"page-cache-redis-password":{"name":"--page-cache-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"page-cache-redis-compress-data":{"name":"--page-cache-redis-compress-data","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Set to 1 to compress the full page cache (use 0 to disable)","default":null},"page-cache-redis-compression-lib":{"name":"--page-cache-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Compression library to use [snappy,lzf,l4z,zstd,gzip] (leave blank to determine automatically)","default":null},"page-cache-id-prefix":{"name":"--page-cache-id-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"ID prefix for cache keys","default":null},"lock-provider":{"name":"--lock-provider","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lock provider name","default":null},"lock-db-prefix":{"name":"--lock-db-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Installation specific lock prefix to avoid lock conflicts","default":null},"lock-zookeeper-host":{"name":"--lock-zookeeper-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Host and port to connect to Zookeeper cluster. For example: 127.0.0.1:2181","default":null},"lock-zookeeper-path":{"name":"--lock-zookeeper-path","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The path where Zookeeper will save locks. The default path is: \/magento\/locks","default":null},"lock-file-path":{"name":"--lock-file-path","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The path where file locks will be saved.","default":null},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-data:upgrade","usage":["setup:db-data:upgrade [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Installs and upgrades data in the DB","help":"Installs and upgrades data in the DB","definition":{"arguments":[],"options":{"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-declaration:generate-patch","usage":["setup:db-declaration:generate-patch [--revertable [REVERTABLE]] [--type [TYPE]] [--] "],"description":"Generate patch and put it in specific folder.","help":"Generate patch and put it in specific folder.","definition":{"arguments":{"module":{"name":"module","is_required":true,"is_array":false,"description":"Module name","default":null},"patch":{"name":"patch","is_required":true,"is_array":false,"description":"Patch name","default":null}},"options":{"revertable":{"name":"--revertable","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Check whether patch is revertable or not.","default":false},"type":{"name":"--type","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Find out what type of patch should be generated. Available values: `data`, `schema`.","default":"data"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-declaration:generate-whitelist","usage":["setup:db-declaration:generate-whitelist [--module-name [MODULE-NAME]]"],"description":"Generate whitelist of tables and columns that are allowed to be edited by declaration installer","help":"Generate whitelist of tables and columns that are allowed to be edited by declaration installer","definition":{"arguments":[],"options":{"module-name":{"name":"--module-name","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Name of the module where whitelist will be generated","default":"all"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-schema:upgrade","usage":["setup:db-schema:upgrade [--convert-old-scripts [CONVERT-OLD-SCRIPTS]] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Installs and upgrades the DB schema","help":"Installs and upgrades the DB schema","definition":{"arguments":[],"options":{"convert-old-scripts":{"name":"--convert-old-scripts","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Allows to convert old scripts (InstallSchema, UpgradeSchema) to db_schema.xml format","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db:status","usage":["setup:db:status [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Checks if DB schema or data requires upgrade","help":"Checks if DB schema or data requires upgrade","definition":{"arguments":[],"options":{"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:di:compile","usage":["setup:di:compile"],"description":"Generates DI configuration and all missing classes that can be auto-generated","help":"Generates DI configuration and all missing classes that can be auto-generated","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:install","usage":["setup:install [--amqp-host AMQP-HOST] [--amqp-port AMQP-PORT] [--amqp-user AMQP-USER] [--amqp-password AMQP-PASSWORD] [--amqp-virtualhost AMQP-VIRTUALHOST] [--amqp-ssl AMQP-SSL] [--amqp-ssl-options AMQP-SSL-OPTIONS] [--enable-debug-logging ENABLE-DEBUG-LOGGING] [--enable-syslog-logging ENABLE-SYSLOG-LOGGING] [--backend-frontname BACKEND-FRONTNAME] [--consumers-wait-for-messages CONSUMERS-WAIT-FOR-MESSAGES] [--key KEY] [--db-host DB-HOST] [--db-name DB-NAME] [--db-user DB-USER] [--db-engine DB-ENGINE] [--db-password DB-PASSWORD] [--db-prefix DB-PREFIX] [--db-model DB-MODEL] [--db-init-statements DB-INIT-STATEMENTS] [-s|--skip-db-validation] [--http-cache-hosts HTTP-CACHE-HOSTS] [--db-ssl-key DB-SSL-KEY] [--db-ssl-cert DB-SSL-CERT] [--db-ssl-ca DB-SSL-CA] [--db-ssl-verify] [--session-save SESSION-SAVE] [--session-save-redis-host SESSION-SAVE-REDIS-HOST] [--session-save-redis-port SESSION-SAVE-REDIS-PORT] [--session-save-redis-password SESSION-SAVE-REDIS-PASSWORD] [--session-save-redis-timeout SESSION-SAVE-REDIS-TIMEOUT] [--session-save-redis-persistent-id SESSION-SAVE-REDIS-PERSISTENT-ID] [--session-save-redis-db SESSION-SAVE-REDIS-DB] [--session-save-redis-compression-threshold SESSION-SAVE-REDIS-COMPRESSION-THRESHOLD] [--session-save-redis-compression-lib SESSION-SAVE-REDIS-COMPRESSION-LIB] [--session-save-redis-log-level SESSION-SAVE-REDIS-LOG-LEVEL] [--session-save-redis-max-concurrency SESSION-SAVE-REDIS-MAX-CONCURRENCY] [--session-save-redis-break-after-frontend SESSION-SAVE-REDIS-BREAK-AFTER-FRONTEND] [--session-save-redis-break-after-adminhtml SESSION-SAVE-REDIS-BREAK-AFTER-ADMINHTML] [--session-save-redis-first-lifetime SESSION-SAVE-REDIS-FIRST-LIFETIME] [--session-save-redis-bot-first-lifetime SESSION-SAVE-REDIS-BOT-FIRST-LIFETIME] [--session-save-redis-bot-lifetime SESSION-SAVE-REDIS-BOT-LIFETIME] [--session-save-redis-disable-locking SESSION-SAVE-REDIS-DISABLE-LOCKING] [--session-save-redis-min-lifetime SESSION-SAVE-REDIS-MIN-LIFETIME] [--session-save-redis-max-lifetime SESSION-SAVE-REDIS-MAX-LIFETIME] [--session-save-redis-sentinel-master SESSION-SAVE-REDIS-SENTINEL-MASTER] [--session-save-redis-sentinel-servers SESSION-SAVE-REDIS-SENTINEL-SERVERS] [--session-save-redis-sentinel-verify-master SESSION-SAVE-REDIS-SENTINEL-VERIFY-MASTER] [--session-save-redis-sentinel-connect-retires SESSION-SAVE-REDIS-SENTINEL-CONNECT-RETIRES] [--cache-backend CACHE-BACKEND] [--cache-backend-redis-server CACHE-BACKEND-REDIS-SERVER] [--cache-backend-redis-db CACHE-BACKEND-REDIS-DB] [--cache-backend-redis-port CACHE-BACKEND-REDIS-PORT] [--cache-backend-redis-password CACHE-BACKEND-REDIS-PASSWORD] [--cache-backend-redis-compress-data CACHE-BACKEND-REDIS-COMPRESS-DATA] [--cache-backend-redis-compression-lib CACHE-BACKEND-REDIS-COMPRESSION-LIB] [--cache-id-prefix CACHE-ID-PREFIX] [--allow-parallel-generation] [--page-cache PAGE-CACHE] [--page-cache-redis-server PAGE-CACHE-REDIS-SERVER] [--page-cache-redis-db PAGE-CACHE-REDIS-DB] [--page-cache-redis-port PAGE-CACHE-REDIS-PORT] [--page-cache-redis-password PAGE-CACHE-REDIS-PASSWORD] [--page-cache-redis-compress-data PAGE-CACHE-REDIS-COMPRESS-DATA] [--page-cache-redis-compression-lib PAGE-CACHE-REDIS-COMPRESSION-LIB] [--page-cache-id-prefix PAGE-CACHE-ID-PREFIX] [--lock-provider LOCK-PROVIDER] [--lock-db-prefix LOCK-DB-PREFIX] [--lock-zookeeper-host LOCK-ZOOKEEPER-HOST] [--lock-zookeeper-path LOCK-ZOOKEEPER-PATH] [--lock-file-path LOCK-FILE-PATH] [--base-url BASE-URL] [--language LANGUAGE] [--timezone TIMEZONE] [--currency CURRENCY] [--use-rewrites USE-REWRITES] [--use-secure USE-SECURE] [--base-url-secure BASE-URL-SECURE] [--use-secure-admin USE-SECURE-ADMIN] [--admin-use-security-key ADMIN-USE-SECURITY-KEY] [--admin-user [ADMIN-USER]] [--admin-password [ADMIN-PASSWORD]] [--admin-email [ADMIN-EMAIL]] [--admin-firstname [ADMIN-FIRSTNAME]] [--admin-lastname [ADMIN-LASTNAME]] [--search-engine SEARCH-ENGINE] [--elasticsearch-host ELASTICSEARCH-HOST] [--elasticsearch-port ELASTICSEARCH-PORT] [--elasticsearch-enable-auth ELASTICSEARCH-ENABLE-AUTH] [--elasticsearch-username ELASTICSEARCH-USERNAME] [--elasticsearch-password ELASTICSEARCH-PASSWORD] [--elasticsearch-index-prefix ELASTICSEARCH-INDEX-PREFIX] [--elasticsearch-timeout ELASTICSEARCH-TIMEOUT] [--cleanup-database] [--sales-order-increment-prefix SALES-ORDER-INCREMENT-PREFIX] [--use-sample-data] [--enable-modules [ENABLE-MODULES]] [--disable-modules [DISABLE-MODULES]] [--convert-old-scripts [CONVERT-OLD-SCRIPTS]] [-i|--interactive] [--safe-mode [SAFE-MODE]] [--data-restore [DATA-RESTORE]] [--dry-run [DRY-RUN]] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Installs the Magento application","help":"Installs the Magento application","definition":{"arguments":[],"options":{"amqp-host":{"name":"--amqp-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server host","default":""},"amqp-port":{"name":"--amqp-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server port","default":"5672"},"amqp-user":{"name":"--amqp-user","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server username","default":""},"amqp-password":{"name":"--amqp-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server password","default":""},"amqp-virtualhost":{"name":"--amqp-virtualhost","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp virtualhost","default":"\/"},"amqp-ssl":{"name":"--amqp-ssl","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp SSL","default":""},"amqp-ssl-options":{"name":"--amqp-ssl-options","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp SSL Options (JSON)","default":""},"enable-debug-logging":{"name":"--enable-debug-logging","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Enable debug logging","default":null},"enable-syslog-logging":{"name":"--enable-syslog-logging","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Enable syslog logging","default":null},"backend-frontname":{"name":"--backend-frontname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Backend frontname (will be autogenerated if missing)","default":null},"consumers-wait-for-messages":{"name":"--consumers-wait-for-messages","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Should consumers wait for a message from the queue? 1 - Yes, 0 - No","default":null},"key":{"name":"--key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Encryption key","default":null},"db-host":{"name":"--db-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server host","default":null},"db-name":{"name":"--db-name","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database name","default":null},"db-user":{"name":"--db-user","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server username","default":null},"db-engine":{"name":"--db-engine","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server engine","default":null},"db-password":{"name":"--db-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server password","default":null},"db-prefix":{"name":"--db-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database table prefix","default":null},"db-model":{"name":"--db-model","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database type","default":null},"db-init-statements":{"name":"--db-init-statements","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database initial set of commands","default":null},"skip-db-validation":{"name":"--skip-db-validation","shortcut":"-s","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"If specified, then db connection validation will be skipped","default":false},"http-cache-hosts":{"name":"--http-cache-hosts","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"http Cache hosts","default":null},"db-ssl-key":{"name":"--db-ssl-key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of client key file in order to establish db connection through SSL","default":""},"db-ssl-cert":{"name":"--db-ssl-cert","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of client certificate file in order to establish db connection through SSL","default":""},"db-ssl-ca":{"name":"--db-ssl-ca","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of server certificate file in order to establish db connection through SSL","default":""},"db-ssl-verify":{"name":"--db-ssl-verify","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Verify server certification","default":false},"session-save":{"name":"--session-save","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Session save handler","default":null},"session-save-redis-host":{"name":"--session-save-redis-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Fully qualified host name, IP address, or absolute path if using UNIX sockets","default":null},"session-save-redis-port":{"name":"--session-save-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"session-save-redis-password":{"name":"--session-save-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"session-save-redis-timeout":{"name":"--session-save-redis-timeout","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Connection timeout, in seconds","default":null},"session-save-redis-persistent-id":{"name":"--session-save-redis-persistent-id","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Unique string to enable persistent connections","default":null},"session-save-redis-db":{"name":"--session-save-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis database number","default":null},"session-save-redis-compression-threshold":{"name":"--session-save-redis-compression-threshold","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis compression threshold","default":null},"session-save-redis-compression-lib":{"name":"--session-save-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis compression library. Values:\u00a0gzip (default), lzf, lz4, snappy","default":null},"session-save-redis-log-level":{"name":"--session-save-redis-log-level","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis log level. Values: 0 (least verbose) to 7 (most verbose)","default":null},"session-save-redis-max-concurrency":{"name":"--session-save-redis-max-concurrency","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Maximum number of processes that can wait for a lock on one session","default":null},"session-save-redis-break-after-frontend":{"name":"--session-save-redis-break-after-frontend","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Number of seconds to wait before trying to break a lock for frontend session","default":null},"session-save-redis-break-after-adminhtml":{"name":"--session-save-redis-break-after-adminhtml","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Number of seconds to wait before trying to break a lock for Admin session","default":null},"session-save-redis-first-lifetime":{"name":"--session-save-redis-first-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime, in seconds, of session for non-bots on the first write (use 0 to disable)","default":null},"session-save-redis-bot-first-lifetime":{"name":"--session-save-redis-bot-first-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime, in seconds, of session for bots on the first write (use 0 to disable)","default":null},"session-save-redis-bot-lifetime":{"name":"--session-save-redis-bot-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime of session for bots on subsequent writes (use 0 to disable)","default":null},"session-save-redis-disable-locking":{"name":"--session-save-redis-disable-locking","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis disable locking. Values:\u00a0false (default), true","default":null},"session-save-redis-min-lifetime":{"name":"--session-save-redis-min-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis min session lifetime, in seconds","default":null},"session-save-redis-max-lifetime":{"name":"--session-save-redis-max-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis max session lifetime, in seconds","default":null},"session-save-redis-sentinel-master":{"name":"--session-save-redis-sentinel-master","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel master","default":null},"session-save-redis-sentinel-servers":{"name":"--session-save-redis-sentinel-servers","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel servers, comma separated","default":null},"session-save-redis-sentinel-verify-master":{"name":"--session-save-redis-sentinel-verify-master","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel verify master. Values: false (default), true","default":null},"session-save-redis-sentinel-connect-retires":{"name":"--session-save-redis-sentinel-connect-retires","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel connect retries.","default":null},"cache-backend":{"name":"--cache-backend","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default cache handler","default":null},"cache-backend-redis-server":{"name":"--cache-backend-redis-server","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server","default":null},"cache-backend-redis-db":{"name":"--cache-backend-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database number for the cache","default":null},"cache-backend-redis-port":{"name":"--cache-backend-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"cache-backend-redis-password":{"name":"--cache-backend-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"cache-backend-redis-compress-data":{"name":"--cache-backend-redis-compress-data","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Set to 0 to disable compression (default is 1, enabled)","default":null},"cache-backend-redis-compression-lib":{"name":"--cache-backend-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Compression lib to use [snappy,lzf,l4z,zstd,gzip] (leave blank to determine automatically)","default":null},"cache-id-prefix":{"name":"--cache-id-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"ID prefix for cache keys","default":null},"allow-parallel-generation":{"name":"--allow-parallel-generation","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Allow generate cache in non-blocking way","default":false},"page-cache":{"name":"--page-cache","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default cache handler","default":null},"page-cache-redis-server":{"name":"--page-cache-redis-server","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server","default":null},"page-cache-redis-db":{"name":"--page-cache-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database number for the cache","default":null},"page-cache-redis-port":{"name":"--page-cache-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"page-cache-redis-password":{"name":"--page-cache-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"page-cache-redis-compress-data":{"name":"--page-cache-redis-compress-data","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Set to 1 to compress the full page cache (use 0 to disable)","default":null},"page-cache-redis-compression-lib":{"name":"--page-cache-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Compression library to use [snappy,lzf,l4z,zstd,gzip] (leave blank to determine automatically)","default":null},"page-cache-id-prefix":{"name":"--page-cache-id-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"ID prefix for cache keys","default":null},"lock-provider":{"name":"--lock-provider","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lock provider name","default":null},"lock-db-prefix":{"name":"--lock-db-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Installation specific lock prefix to avoid lock conflicts","default":null},"lock-zookeeper-host":{"name":"--lock-zookeeper-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Host and port to connect to Zookeeper cluster. For example: 127.0.0.1:2181","default":null},"lock-zookeeper-path":{"name":"--lock-zookeeper-path","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The path where Zookeeper will save locks. The default path is: \/magento\/locks","default":null},"lock-file-path":{"name":"--lock-file-path","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The path where file locks will be saved.","default":null},"base-url":{"name":"--base-url","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"URL the store is supposed to be available at. Deprecated, use config:set with path web\/unsecure\/base_url","default":null},"language":{"name":"--language","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default language code. Deprecated, use config:set with path general\/locale\/code","default":null},"timezone":{"name":"--timezone","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default time zone code. Deprecated, use config:set with path general\/locale\/timezone","default":null},"currency":{"name":"--currency","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default currency code. Deprecated, use config:set with path currency\/options\/base, currency\/options\/default and currency\/options\/allow","default":null},"use-rewrites":{"name":"--use-rewrites","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Use rewrites. Deprecated, use config:set with path web\/seo\/use_rewrites","default":null},"use-secure":{"name":"--use-secure","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Use secure URLs. Enable this option only if SSL is available. Deprecated, use config:set with path web\/secure\/use_in_frontend","default":null},"base-url-secure":{"name":"--base-url-secure","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Base URL for SSL connection. Deprecated, use config:set with path web\/secure\/base_url","default":null},"use-secure-admin":{"name":"--use-secure-admin","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Run admin interface with SSL. Deprecated, use config:set with path web\/secure\/use_in_adminhtml","default":null},"admin-use-security-key":{"name":"--admin-use-security-key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Whether to use a \"security key\" feature in Magento Admin URLs and forms. Deprecated, use config:set with path admin\/security\/use_form_key","default":null},"admin-user":{"name":"--admin-user","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Admin user","default":null},"admin-password":{"name":"--admin-password","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Admin password","default":null},"admin-email":{"name":"--admin-email","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Admin email","default":null},"admin-firstname":{"name":"--admin-firstname","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Admin first name","default":null},"admin-lastname":{"name":"--admin-lastname","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Admin last name","default":null},"search-engine":{"name":"--search-engine","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Search engine. Values: elasticsearch5, elasticsearch6, elasticsearch7","default":null},"elasticsearch-host":{"name":"--elasticsearch-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Elasticsearch server host.","default":null},"elasticsearch-port":{"name":"--elasticsearch-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Elasticsearch server port.","default":null},"elasticsearch-enable-auth":{"name":"--elasticsearch-enable-auth","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Set to 1 to enable authentication. (default is 0, disabled)","default":null},"elasticsearch-username":{"name":"--elasticsearch-username","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Elasticsearch username. Only applicable if HTTP auth is enabled","default":null},"elasticsearch-password":{"name":"--elasticsearch-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Elasticsearch password. Only applicable if HTTP auth is enabled","default":null},"elasticsearch-index-prefix":{"name":"--elasticsearch-index-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Elasticsearch index prefix.","default":null},"elasticsearch-timeout":{"name":"--elasticsearch-timeout","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Elasticsearch server timeout.","default":null},"cleanup-database":{"name":"--cleanup-database","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Cleanup the database before installation","default":false},"sales-order-increment-prefix":{"name":"--sales-order-increment-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Sales order number prefix","default":null},"use-sample-data":{"name":"--use-sample-data","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Use sample data","default":false},"enable-modules":{"name":"--enable-modules","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"List of comma-separated module names. That must be included during installation. Available magic param \"all\".","default":null},"disable-modules":{"name":"--disable-modules","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"List of comma-separated module names. That must be avoided during installation. Available magic param \"all\".","default":null},"convert-old-scripts":{"name":"--convert-old-scripts","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Allows to convert old scripts (InstallSchema, UpgradeSchema) to db_schema.xml format","default":false},"interactive":{"name":"--interactive","shortcut":"-i","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Interactive Magento installation","default":false},"safe-mode":{"name":"--safe-mode","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Safe installation of Magento with dumps on destructive operations, like column removal","default":null},"data-restore":{"name":"--data-restore","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Restore removed data from dumps","default":null},"dry-run":{"name":"--dry-run","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Magento Installation will be run in dry-run mode","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:performance:generate-fixtures","usage":["setup:performance:generate-fixtures [-s|--skip-reindex] [--] "],"description":"Generates fixtures","help":"Generates fixtures","definition":{"arguments":{"profile":{"name":"profile","is_required":true,"is_array":false,"description":"Path to profile configuration file","default":null}},"options":{"skip-reindex":{"name":"--skip-reindex","shortcut":"-s","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Skip reindex","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:rollback","usage":["setup:rollback [-c|--code-file CODE-FILE] [-m|--media-file MEDIA-FILE] [-d|--db-file DB-FILE] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Rolls back Magento Application codebase, media and database","help":"Rolls back Magento Application codebase, media and database","definition":{"arguments":[],"options":{"code-file":{"name":"--code-file","shortcut":"-c","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Basename of the code backup file in var\/backups","default":null},"media-file":{"name":"--media-file","shortcut":"-m","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Basename of the media backup file in var\/backups","default":null},"db-file":{"name":"--db-file","shortcut":"-d","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Basename of the db backup file in var\/backups","default":null},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:static-content:deploy","usage":["setup:static-content:deploy [-f|--force] [-s|--strategy [STRATEGY]] [-a|--area [AREA]] [--exclude-area [EXCLUDE-AREA]] [-t|--theme [THEME]] [--exclude-theme [EXCLUDE-THEME]] [-l|--language [LANGUAGE]] [--exclude-language [EXCLUDE-LANGUAGE]] [-j|--jobs [JOBS]] [--max-execution-time [MAX-EXECUTION-TIME]] [--symlink-locale] [--content-version CONTENT-VERSION] [--refresh-content-version-only] [--no-javascript] [--no-js-bundle] [--no-css] [--no-less] [--no-images] [--no-fonts] [--no-html] [--no-misc] [--no-html-minify] [--] [...]"],"description":"Deploys static view files","help":"Deploys static view files","definition":{"arguments":{"languages":{"name":"languages","is_required":false,"is_array":true,"description":"Space-separated list of ISO-639 language codes for which to output static view files.","default":[]}},"options":{"force":{"name":"--force","shortcut":"-f","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Deploy files in any mode.","default":false},"strategy":{"name":"--strategy","shortcut":"-s","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Deploy files using specified strategy.","default":"quick"},"area":{"name":"--area","shortcut":"-a","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Generate files only for the specified areas.","default":["all"]},"exclude-area":{"name":"--exclude-area","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Do not generate files for the specified areas.","default":["none"]},"theme":{"name":"--theme","shortcut":"-t","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Generate static view files for only the specified themes.","default":["all"]},"exclude-theme":{"name":"--exclude-theme","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Do not generate files for the specified themes.","default":["none"]},"language":{"name":"--language","shortcut":"-l","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Generate files only for the specified languages.","default":["all"]},"exclude-language":{"name":"--exclude-language","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Do not generate files for the specified languages.","default":["none"]},"jobs":{"name":"--jobs","shortcut":"-j","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Enable parallel processing using the specified number of jobs.","default":0},"max-execution-time":{"name":"--max-execution-time","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"The maximum expected execution time of deployment static process (in seconds).","default":400},"symlink-locale":{"name":"--symlink-locale","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Create symlinks for the files of those locales, which are passed for deployment, but have no customizations.","default":false},"content-version":{"name":"--content-version","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Custom version of static content can be used if running deployment on multiple nodes to ensure that static content version is identical and caching works properly.","default":null},"refresh-content-version-only":{"name":"--refresh-content-version-only","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Refreshing the version of static content only can be used to refresh static content in browser cache and CDN cache.","default":false},"no-javascript":{"name":"--no-javascript","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy JavaScript files.","default":false},"no-js-bundle":{"name":"--no-js-bundle","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy JavaScript bundle files.","default":false},"no-css":{"name":"--no-css","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy CSS files.","default":false},"no-less":{"name":"--no-less","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy LESS files.","default":false},"no-images":{"name":"--no-images","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy images.","default":false},"no-fonts":{"name":"--no-fonts","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy font files.","default":false},"no-html":{"name":"--no-html","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy HTML files.","default":false},"no-misc":{"name":"--no-misc","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy files of other types (.md, .jbf, .csv, etc.).","default":false},"no-html-minify":{"name":"--no-html-minify","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not minify HTML files.","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:store-config:set","usage":["setup:store-config:set [--base-url BASE-URL] [--language LANGUAGE] [--timezone TIMEZONE] [--currency CURRENCY] [--use-rewrites USE-REWRITES] [--use-secure USE-SECURE] [--base-url-secure BASE-URL-SECURE] [--use-secure-admin USE-SECURE-ADMIN] [--admin-use-security-key ADMIN-USE-SECURITY-KEY] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Installs the store configuration. Deprecated since 2.2.0. Use config:set instead","help":"Installs the store configuration. Deprecated since 2.2.0. Use config:set instead","definition":{"arguments":[],"options":{"base-url":{"name":"--base-url","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"URL the store is supposed to be available at. Deprecated, use config:set with path web\/unsecure\/base_url","default":null},"language":{"name":"--language","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default language code. Deprecated, use config:set with path general\/locale\/code","default":null},"timezone":{"name":"--timezone","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default time zone code. Deprecated, use config:set with path general\/locale\/timezone","default":null},"currency":{"name":"--currency","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default currency code. Deprecated, use config:set with path currency\/options\/base, currency\/options\/default and currency\/options\/allow","default":null},"use-rewrites":{"name":"--use-rewrites","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Use rewrites. Deprecated, use config:set with path web\/seo\/use_rewrites","default":null},"use-secure":{"name":"--use-secure","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Use secure URLs. Enable this option only if SSL is available. Deprecated, use config:set with path web\/secure\/use_in_frontend","default":null},"base-url-secure":{"name":"--base-url-secure","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Base URL for SSL connection. Deprecated, use config:set with path web\/secure\/base_url","default":null},"use-secure-admin":{"name":"--use-secure-admin","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Run admin interface with SSL. Deprecated, use config:set with path web\/secure\/use_in_adminhtml","default":null},"admin-use-security-key":{"name":"--admin-use-security-key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Whether to use a \"security key\" feature in Magento Admin URLs and forms. Deprecated, use config:set with path admin\/security\/use_form_key","default":null},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:uninstall","usage":["setup:uninstall [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Uninstalls the Magento application","help":"Uninstalls the Magento application","definition":{"arguments":[],"options":{"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:upgrade","usage":["setup:upgrade [--keep-generated] [--convert-old-scripts [CONVERT-OLD-SCRIPTS]] [--safe-mode [SAFE-MODE]] [--data-restore [DATA-RESTORE]] [--dry-run [DRY-RUN]] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Upgrades the Magento application, DB data, and schema","help":"Upgrades the Magento application, DB data, and schema","definition":{"arguments":[],"options":{"keep-generated":{"name":"--keep-generated","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Prevents generated files from being deleted. We discourage using this option except when deploying to production. Consult your system integrator or administrator for more information.","default":false},"convert-old-scripts":{"name":"--convert-old-scripts","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Allows to convert old scripts (InstallSchema, UpgradeSchema) to db_schema.xml format","default":false},"safe-mode":{"name":"--safe-mode","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Safe installation of Magento with dumps on destructive operations, like column removal","default":null},"data-restore":{"name":"--data-restore","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Restore removed data from dumps","default":null},"dry-run":{"name":"--dry-run","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Magento Installation will be run in dry-run mode","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"store:list","usage":["store:list"],"description":"Displays the list of stores","help":"Displays the list of stores","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"store:website:list","usage":["store:website:list"],"description":"Displays the list of websites","help":"Displays the list of websites","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"theme:uninstall","usage":["theme:uninstall [--backup-code] [-c|--clear-static-content] [--] ..."],"description":"Uninstalls theme","help":"Uninstalls theme","definition":{"arguments":{"theme":{"name":"theme","is_required":true,"is_array":true,"description":"Path of the theme. Theme path should be specified as full path which is area\/vendor\/name. For example, frontend\/Magento\/blank","default":[]}},"options":{"backup-code":{"name":"--backup-code","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take code backup (excluding temporary files)","default":false},"clear-static-content":{"name":"--clear-static-content","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Clear generated static view files.","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"varnish:vcl:generate","usage":["varnish:vcl:generate [--access-list ACCESS-LIST] [--backend-host BACKEND-HOST] [--backend-port BACKEND-PORT] [--export-version EXPORT-VERSION] [--grace-period GRACE-PERIOD] [--output-file OUTPUT-FILE]"],"description":"Generates Varnish VCL and echos it to the command line","help":"Generates Varnish VCL and echos it to the command line","definition":{"arguments":[],"options":{"access-list":{"name":"--access-list","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":true,"description":"IPs access list that can purge Varnish","default":["localhost"]},"backend-host":{"name":"--backend-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Host of the web backend","default":"localhost"},"backend-port":{"name":"--backend-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Port of the web backend","default":8080},"export-version":{"name":"--export-version","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The version of Varnish file","default":"4"},"grace-period":{"name":"--grace-period","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Grace period in seconds","default":300},"output-file":{"name":"--output-file","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Path to the file to write vcl","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"yotpo:reset","usage":["yotpo:reset [-e|--entity [ENTITY]]"],"description":"Reset Yotpo sync flags &\/or configurations","help":"Reset Yotpo sync flags &\/or configurations","definition":{"arguments":[],"options":{"entity":{"name":"--entity","shortcut":"-e","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Entity type (orders)","default":"orders"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"yotpo:sync","usage":["yotpo:sync [-e|--entity ENTITY] [-l|--limit [LIMIT]]"],"description":"Sync Yotpo manually (reviews module)","help":"Sync Yotpo manually (reviews module)","definition":{"arguments":[],"options":{"entity":{"name":"--entity","shortcut":"-e","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Entity type (allowed options: orders)","default":"orders"},"limit":{"name":"--limit","shortcut":"-l","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Max entity items to sync. WARNING: Setting a high sync limit (or no limit) may result in a high server load (0=no limit).","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"yotpo:update-metadata","usage":["yotpo:update-metadata"],"description":"Manually send platform metadata to Yotpo","help":"Manually send platform metadata to Yotpo","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false}],"namespaces":[{"id":"_global","commands":["help","list"]},{"id":"admin","commands":["admin:user:create","admin:user:unlock"]},{"id":"app","commands":["app:config:dump","app:config:import","app:config:status"]},{"id":"braintree","commands":["braintree:migrate"]},{"id":"cache","commands":["cache:clean","cache:disable","cache:enable","cache:flush","cache:status"]},{"id":"catalog","commands":["catalog:images:resize","catalog:product:attributes:cleanup"]},{"id":"config","commands":["config:sensitive:set","config:set","config:show"]},{"id":"cron","commands":["cron:install","cron:remove","cron:run"]},{"id":"customer","commands":["customer:hash:upgrade"]},{"id":"deploy","commands":["deploy:mode:set","deploy:mode:show"]},{"id":"dev","commands":["dev:di:info","dev:profiler:disable","dev:profiler:enable","dev:query-log:disable","dev:query-log:enable","dev:source-theme:deploy","dev:template-hints:disable","dev:template-hints:enable","dev:template-hints:status","dev:tests:run","dev:urn-catalog:generate","dev:xml:convert"]},{"id":"dotdigital","commands":["dotdigital:connector:automap","dotdigital:connector:enable","dotdigital:migrate","dotdigital:sync"]},{"id":"downloadable","commands":["downloadable:domains:add","downloadable:domains:remove","downloadable:domains:show"]},{"id":"encryption","commands":["encryption:payment-data:update"]},{"id":"i18n","commands":["i18n:collect-phrases","i18n:pack","i18n:uninstall"]},{"id":"indexer","commands":["indexer:info","indexer:reindex","indexer:reset","indexer:set-dimensions-mode","indexer:set-mode","indexer:show-dimensions-mode","indexer:show-mode","indexer:status"]},{"id":"info","commands":["info:adminuri","info:backups:list","info:currency:list","info:dependencies:show-framework","info:dependencies:show-modules","info:dependencies:show-modules-circular","info:language:list","info:timezone:list"]},{"id":"inventory","commands":["inventory:reservation:create-compensations","inventory:reservation:list-inconsistencies"]},{"id":"inventory-geonames","commands":["inventory-geonames:import"]},{"id":"maintenance","commands":["maintenance:allow-ips","maintenance:disable","maintenance:enable","maintenance:status"]},{"id":"media-content","commands":["media-content:sync"]},{"id":"media-gallery","commands":["media-gallery:sync"]},{"id":"module","commands":["module:config:status","module:disable","module:enable","module:status","module:uninstall"]},{"id":"newrelic","commands":["newrelic:create:deploy-marker"]},{"id":"queue","commands":["queue:consumers:list","queue:consumers:start"]},{"id":"sampledata","commands":["sampledata:deploy","sampledata:remove","sampledata:reset"]},{"id":"security","commands":["security:recaptcha:disable-for-user-forgot-password","security:recaptcha:disable-for-user-login","security:tfa:google:set-secret","security:tfa:providers","security:tfa:reset"]},{"id":"setup","commands":["setup:backup","setup:config:set","setup:db-data:upgrade","setup:db-declaration:generate-patch","setup:db-declaration:generate-whitelist","setup:db-schema:upgrade","setup:db:status","setup:di:compile","setup:install","setup:performance:generate-fixtures","setup:rollback","setup:static-content:deploy","setup:store-config:set","setup:uninstall","setup:upgrade"]},{"id":"store","commands":["store:list","store:website:list"]},{"id":"theme","commands":["theme:uninstall"]},{"id":"varnish","commands":["varnish:vcl:generate"]},{"id":"yotpo","commands":["yotpo:reset","yotpo:sync","yotpo:update-metadata"]}]} \ No newline at end of file +{"application":{"name":"Magento CLI","version":"2.4.1"},"commands":[{"name":"help","usage":["help [--format FORMAT] [--raw] [--] []"],"description":"Displays help for a command","help":"The help<\/info> command displays help for a given command:\n\n php \/var\/www\/html\/magento2\/bin\/magento help list<\/info>\n\nYou can also output the help in other formats by using the --format<\/comment> option:\n\n php \/var\/www\/html\/magento2\/bin\/magento help --format=xml list<\/info>\n\nTo display the list of available commands, please use the list<\/info> command.","definition":{"arguments":{"command_name":{"name":"command_name","is_required":false,"is_array":false,"description":"The command name","default":"help"}},"options":{"format":{"name":"--format","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The output format (txt, xml, json, or md)","default":"txt"},"raw":{"name":"--raw","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"To output raw command help","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"list","usage":["list [--raw] [--format FORMAT] [--] []"],"description":"Lists commands","help":"The list<\/info> command lists all commands:\n\n php \/var\/www\/html\/magento2\/bin\/magento list<\/info>\n\nYou can also display the commands for a specific namespace:\n\n php \/var\/www\/html\/magento2\/bin\/magento list test<\/info>\n\nYou can also output the information in other formats by using the --format<\/comment> option:\n\n php \/var\/www\/html\/magento2\/bin\/magento list --format=xml<\/info>\n\nIt's also possible to get raw list of commands (useful for embedding command runner):\n\n php \/var\/www\/html\/magento2\/bin\/magento list --raw<\/info>","definition":{"arguments":{"namespace":{"name":"namespace","is_required":false,"is_array":false,"description":"The namespace name","default":null}},"options":{"raw":{"name":"--raw","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"To output raw command list","default":false},"format":{"name":"--format","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The output format (txt, xml, json, or md)","default":"txt"}}},"hidden":false},{"name":"admin:user:create","usage":["admin:user:create [--admin-user ADMIN-USER] [--admin-password ADMIN-PASSWORD] [--admin-email ADMIN-EMAIL] [--admin-firstname ADMIN-FIRSTNAME] [--admin-lastname ADMIN-LASTNAME] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Creates an administrator","help":"Creates an administrator","definition":{"arguments":[],"options":{"admin-user":{"name":"--admin-user","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"(Required) Admin user","default":null},"admin-password":{"name":"--admin-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"(Required) Admin password","default":null},"admin-email":{"name":"--admin-email","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"(Required) Admin email","default":null},"admin-firstname":{"name":"--admin-firstname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"(Required) Admin first name","default":null},"admin-lastname":{"name":"--admin-lastname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"(Required) Admin last name","default":null},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"admin:user:unlock","usage":["admin:user:unlock "],"description":"Unlock Admin Account","help":"This command unlocks an admin account by its username.\nTo unlock:\n \/var\/www\/html\/magento2\/bin\/magento admin:user:unlock username<\/comment>","definition":{"arguments":{"username":{"name":"username","is_required":true,"is_array":false,"description":"The admin username to unlock","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"app:config:dump","usage":["app:config:dump [...]"],"description":"Create dump of application","help":"Create dump of application","definition":{"arguments":{"config-types":{"name":"config-types","is_required":false,"is_array":true,"description":"Space-separated list of config types or omit to dump all [scopes, themes, system, i18n]","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"app:config:import","usage":["app:config:import"],"description":"Import data from shared configuration files to appropriate data storage","help":"Import data from shared configuration files to appropriate data storage","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"app:config:status","usage":["app:config:status"],"description":"Checks if config propagation requires update","help":"Checks if config propagation requires update","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"braintree:migrate","usage":["braintree:migrate [--host HOST] [--dbname DBNAME] [--username USERNAME] [--password PASSWORD]"],"description":"Migrate stored cards from a Magento 1 database","help":"Migrate stored cards from a Magento 1 database","definition":{"arguments":[],"options":{"host":{"name":"--host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Hostname\/IP. Port is optional","default":null},"dbname":{"name":"--dbname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database name","default":null},"username":{"name":"--username","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database username. Must have read access","default":null},"password":{"name":"--password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Password","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cache:clean","usage":["cache:clean [--bootstrap BOOTSTRAP] [--] [...]"],"description":"Cleans cache type(s)","help":"Cleans cache type(s)","definition":{"arguments":{"types":{"name":"types","is_required":false,"is_array":true,"description":"Space-separated list of cache types or omit to apply to all cache types.","default":[]}},"options":{"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cache:disable","usage":["cache:disable [--bootstrap BOOTSTRAP] [--] [...]"],"description":"Disables cache type(s)","help":"Disables cache type(s)","definition":{"arguments":{"types":{"name":"types","is_required":false,"is_array":true,"description":"Space-separated list of cache types or omit to apply to all cache types.","default":[]}},"options":{"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cache:enable","usage":["cache:enable [--bootstrap BOOTSTRAP] [--] [...]"],"description":"Enables cache type(s)","help":"Enables cache type(s)","definition":{"arguments":{"types":{"name":"types","is_required":false,"is_array":true,"description":"Space-separated list of cache types or omit to apply to all cache types.","default":[]}},"options":{"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cache:flush","usage":["cache:flush [--bootstrap BOOTSTRAP] [--] [...]"],"description":"Flushes cache storage used by cache type(s)","help":"Flushes cache storage used by cache type(s)","definition":{"arguments":{"types":{"name":"types","is_required":false,"is_array":true,"description":"Space-separated list of cache types or omit to apply to all cache types.","default":[]}},"options":{"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cache:status","usage":["cache:status [--bootstrap BOOTSTRAP]"],"description":"Checks cache status","help":"Checks cache status","definition":{"arguments":[],"options":{"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"catalog:images:resize","usage":["catalog:images:resize [-a|--async]"],"description":"Creates resized product images","help":"Creates resized product images","definition":{"arguments":[],"options":{"async":{"name":"--async","shortcut":"-a","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Resize image in asynchronous mode","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"catalog:product:attributes:cleanup","usage":["catalog:product:attributes:cleanup"],"description":"Removes unused product attributes.","help":"Removes unused product attributes.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"config:sensitive:set","usage":["config:sensitive:set [-i|--interactive] [--scope [SCOPE]] [--scope-code [SCOPE-CODE]] [--] [ []]"],"description":"Set sensitive configuration values","help":"Set sensitive configuration values","definition":{"arguments":{"path":{"name":"path","is_required":false,"is_array":false,"description":"Configuration path for example group\/section\/field_name","default":null},"value":{"name":"value","is_required":false,"is_array":false,"description":"Configuration value","default":null}},"options":{"interactive":{"name":"--interactive","shortcut":"-i","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Enable interactive mode to set all sensitive variables","default":false},"scope":{"name":"--scope","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Scope for configuration, if not set use 'default'","default":"default"},"scope-code":{"name":"--scope-code","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Scope code for configuration, empty string by default","default":""},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"config:set","usage":["config:set [--scope SCOPE] [--scope-code SCOPE-CODE] [-e|--lock-env] [-c|--lock-config] [-l|--lock] [--] "],"description":"Change system configuration","help":"Change system configuration","definition":{"arguments":{"path":{"name":"path","is_required":true,"is_array":false,"description":"Configuration path in format section\/group\/field_name","default":null},"value":{"name":"value","is_required":true,"is_array":false,"description":"Configuration value","default":null}},"options":{"scope":{"name":"--scope","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Configuration scope (default, website, or store)","default":"default"},"scope-code":{"name":"--scope-code","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Scope code (required only if scope is not 'default')","default":null},"lock-env":{"name":"--lock-env","shortcut":"-e","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Lock value which prevents modification in the Admin (will be saved in app\/etc\/env.php)","default":false},"lock-config":{"name":"--lock-config","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Lock and share value with other installations, prevents modification in the Admin (will be saved in app\/etc\/config.php)","default":false},"lock":{"name":"--lock","shortcut":"-l","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Deprecated, use the --lock-env option instead.","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"config:show","usage":["config:show [--scope [SCOPE]] [--scope-code [SCOPE-CODE]] [--] []"],"description":"Shows configuration value for given path. If path is not specified, all saved values will be shown","help":"Shows configuration value for given path. If path is not specified, all saved values will be shown","definition":{"arguments":{"path":{"name":"path","is_required":false,"is_array":false,"description":"Configuration path, for example section_id\/group_id\/field_id","default":null}},"options":{"scope":{"name":"--scope","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Scope for configuration, if not specified, then 'default' scope will be used","default":"default"},"scope-code":{"name":"--scope-code","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Scope code (required only if scope is not `default`)","default":""},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cron:install","usage":["cron:install [-f|--force] [-d|--non-optional]"],"description":"Generates and installs crontab for current user","help":"Generates and installs crontab for current user","definition":{"arguments":[],"options":{"force":{"name":"--force","shortcut":"-f","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force install tasks","default":false},"non-optional":{"name":"--non-optional","shortcut":"-d","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Install only the non-optional (default) tasks","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cron:remove","usage":["cron:remove"],"description":"Removes tasks from crontab","help":"Removes tasks from crontab","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cron:run","usage":["cron:run [--group GROUP] [--bootstrap BOOTSTRAP]"],"description":"Runs jobs by schedule","help":"Runs jobs by schedule","definition":{"arguments":[],"options":{"group":{"name":"--group","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Run jobs only from specified group","default":null},"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"customer:hash:upgrade","usage":["customer:hash:upgrade"],"description":"Upgrade customer's hash according to the latest algorithm","help":"Upgrade customer's hash according to the latest algorithm","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"deploy:mode:set","usage":["deploy:mode:set [-s|--skip-compilation] [--] "],"description":"Set application mode.","help":"Set application mode.","definition":{"arguments":{"mode":{"name":"mode","is_required":true,"is_array":false,"description":"The application mode to set. Available options are \"developer\" or \"production\"","default":null}},"options":{"skip-compilation":{"name":"--skip-compilation","shortcut":"-s","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Skips the clearing and regeneration of static content (generated code, preprocessed CSS, and assets in pub\/static\/)","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"deploy:mode:show","usage":["deploy:mode:show"],"description":"Displays current application mode.","help":"Displays current application mode.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:di:info","usage":["dev:di:info "],"description":"Provides information on Dependency Injection configuration for the Command.","help":"Provides information on Dependency Injection configuration for the Command.","definition":{"arguments":{"class":{"name":"class","is_required":true,"is_array":false,"description":"Class name","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:profiler:disable","usage":["dev:profiler:disable"],"description":"Disable the profiler.","help":"Disable the profiler.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:profiler:enable","usage":["dev:profiler:enable []"],"description":"Enable the profiler.","help":"Enable the profiler.","definition":{"arguments":{"type":{"name":"type","is_required":false,"is_array":false,"description":"Profiler type","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:query-log:disable","usage":["dev:query-log:disable"],"description":"Disable DB query logging","help":"Disable DB query logging","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:query-log:enable","usage":["dev:query-log:enable [--include-all-queries [INCLUDE-ALL-QUERIES]] [--query-time-threshold [QUERY-TIME-THRESHOLD]] [--include-call-stack [INCLUDE-CALL-STACK]]"],"description":"Enable DB query logging","help":"Enable DB query logging","definition":{"arguments":[],"options":{"include-all-queries":{"name":"--include-all-queries","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Log all queries. [true|false]","default":"true"},"query-time-threshold":{"name":"--query-time-threshold","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Query time thresholds.","default":"0.001"},"include-call-stack":{"name":"--include-call-stack","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Include call stack. [true|false]","default":"true"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:source-theme:deploy","usage":["dev:source-theme:deploy [--type TYPE] [--locale LOCALE] [--area AREA] [--theme THEME] [--] [...]"],"description":"Collects and publishes source files for theme.","help":"Collects and publishes source files for theme.","definition":{"arguments":{"file":{"name":"file","is_required":false,"is_array":true,"description":"Files to pre-process (file should be specified without extension)","default":["css\/styles-m","css\/styles-l"]}},"options":{"type":{"name":"--type","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Type of source files: [less]","default":"less"},"locale":{"name":"--locale","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Locale: [en_US]","default":"en_US"},"area":{"name":"--area","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Area: [frontend|adminhtml]","default":"frontend"},"theme":{"name":"--theme","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Theme: [Vendor\/theme]","default":"Magento\/luma"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:template-hints:disable","usage":["dev:template-hints:disable"],"description":"Disable frontend template hints. A cache flush might be required.","help":"Disable frontend template hints. A cache flush might be required.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:template-hints:enable","usage":["dev:template-hints:enable"],"description":"Enable frontend template hints. A cache flush might be required.","help":"Enable frontend template hints. A cache flush might be required.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:template-hints:status","usage":["dev:template-hints:status"],"description":"Show frontend template hints status.","help":"Show frontend template hints status.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:tests:run","usage":["dev:tests:run [-c|--arguments ARGUMENTS] [--] []"],"description":"Runs tests","help":"Runs tests","definition":{"arguments":{"type":{"name":"type","is_required":false,"is_array":false,"description":"Type of test to run. Available types: all, unit, integration, integration-all, static, static-all, integrity, legacy, default","default":"default"}},"options":{"arguments":{"name":"--arguments","shortcut":"-c","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Additional arguments for PHPUnit. Example: \"-c'--filter=MyTest'\" (no spaces)","default":""},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:urn-catalog:generate","usage":["dev:urn-catalog:generate [--ide IDE] [--] "],"description":"Generates the catalog of URNs to *.xsd mappings for the IDE to highlight xml.","help":"Generates the catalog of URNs to *.xsd mappings for the IDE to highlight xml.","definition":{"arguments":{"path":{"name":"path","is_required":true,"is_array":false,"description":"Path to file to output the catalog. For PhpStorm use .idea\/misc.xml","default":null}},"options":{"ide":{"name":"--ide","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Format in which catalog will be generated. Supported: [phpstorm, vscode]","default":"phpstorm"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:xml:convert","usage":["dev:xml:convert [-o|--overwrite] [--] "],"description":"Converts XML file using XSL style sheets","help":"Converts XML file using XSL style sheets","definition":{"arguments":{"xml-file":{"name":"xml-file","is_required":true,"is_array":false,"description":"Path to XML file that going to be transformed","default":null},"processor":{"name":"processor","is_required":true,"is_array":false,"description":"Path to XSL style sheet that going to be applied to XML file","default":null}},"options":{"overwrite":{"name":"--overwrite","shortcut":"-o","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Overwrite XML file","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dotdigital:connector:automap","usage":["dotdigital:connector:automap"],"description":"Auto-map data fields","help":"Auto-map data fields","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dotdigital:connector:enable","usage":["dotdigital:connector:enable [--username USERNAME] [--password PASSWORD] [--automap-datafields [AUTOMAP-DATAFIELDS]] [--enable-syncs [ENABLE-SYNCS]] [--remove-ip-restriction [REMOVE-IP-RESTRICTION]] [--enable-email-capture [ENABLE-EMAIL-CAPTURE]]"],"description":"Add Dotdigital API credentials and enable the connector","help":"Add Dotdigital API credentials and enable the connector","definition":{"arguments":[],"options":{"username":{"name":"--username","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"API username","default":null},"password":{"name":"--password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"API password","default":null},"automap-datafields":{"name":"--automap-datafields","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Automap data fields","default":null},"enable-syncs":{"name":"--enable-syncs","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Enable syncs","default":null},"remove-ip-restriction":{"name":"--remove-ip-restriction","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Remove IP restriction","default":null},"enable-email-capture":{"name":"--enable-email-capture","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Enable email capture","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dotdigital:migrate","usage":["dotdigital:migrate"],"description":"Migrate data into email_ tables to sync with Engagement Cloud","help":"Migrate data into email_ tables to sync with Engagement Cloud","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dotdigital:sync","usage":["dotdigital:sync [--from [FROM]] [--] []"],"description":"Run syncs to populate email_ tables before importing to Engagement Cloud","help":"Run syncs to populate email_ tables before importing to Engagement Cloud","definition":{"arguments":{"sync":{"name":"sync","is_required":false,"is_array":false,"description":"The name of the sync to run","default":null}},"options":{"from":{"name":"--from","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Specify a date\/time (parsable by \\DateTime) to run a sync from (if supported)","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"downloadable:domains:add","usage":["downloadable:domains:add [...]"],"description":"Add domains to the downloadable domains whitelist","help":"Add domains to the downloadable domains whitelist","definition":{"arguments":{"domains":{"name":"domains","is_required":false,"is_array":true,"description":"Domains name","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"downloadable:domains:remove","usage":["downloadable:domains:remove [...]"],"description":"Remove domains from the downloadable domains whitelist","help":"Remove domains from the downloadable domains whitelist","definition":{"arguments":{"domains":{"name":"domains","is_required":false,"is_array":true,"description":"Domain names","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"downloadable:domains:show","usage":["downloadable:domains:show"],"description":"Display downloadable domains whitelist","help":"Display downloadable domains whitelist","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"encryption:payment-data:update","usage":["encryption:payment-data:update"],"description":"Re-encrypts encrypted credit card data with latest encryption cipher.","help":"Re-encrypts encrypted credit card data with latest encryption cipher.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"i18n:collect-phrases","usage":["i18n:collect-phrases [-o|--output OUTPUT] [-m|--magento] [--] []"],"description":"Discovers phrases in the codebase","help":"Discovers phrases in the codebase","definition":{"arguments":{"directory":{"name":"directory","is_required":false,"is_array":false,"description":"Directory path to parse. Not needed if --magento flag is set","default":null}},"options":{"output":{"name":"--output","shortcut":"-o","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Path (including filename) to an output file. With no file specified, defaults to stdout.","default":null},"magento":{"name":"--magento","shortcut":"-m","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Use the --magento parameter to parse the current Magento codebase. Omit the parameter if a directory is specified.","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"i18n:pack","usage":["i18n:pack [-m|--mode MODE] [-d|--allow-duplicates] [--] "],"description":"Saves language package","help":"Saves language package","definition":{"arguments":{"source":{"name":"source","is_required":true,"is_array":false,"description":"Path to source dictionary file with translations","default":null},"locale":{"name":"locale","is_required":true,"is_array":false,"description":"Target locale for dictionary, for example \"de_DE\"","default":null}},"options":{"mode":{"name":"--mode","shortcut":"-m","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Save mode for dictionary - \"replace\" - replace language pack by new one - \"merge\" - merge language packages, by default \"replace\"","default":"replace"},"allow-duplicates":{"name":"--allow-duplicates","shortcut":"-d","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Use the --allow-duplicates parameter to allow saving duplicates of translate. Otherwise omit the parameter.","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"i18n:uninstall","usage":["i18n:uninstall [-b|--backup-code] [--] ..."],"description":"Uninstalls language packages","help":"Uninstalls language packages","definition":{"arguments":{"package":{"name":"package","is_required":true,"is_array":true,"description":"Language package name","default":[]}},"options":{"backup-code":{"name":"--backup-code","shortcut":"-b","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take code and configuration files backup (excluding temporary files)","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:info","usage":["indexer:info"],"description":"Shows allowed Indexers","help":"Shows allowed Indexers","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:reindex","usage":["indexer:reindex [...]"],"description":"Reindexes Data","help":"Reindexes Data","definition":{"arguments":{"index":{"name":"index","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes.","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:reset","usage":["indexer:reset [...]"],"description":"Resets indexer status to invalid","help":"Resets indexer status to invalid","definition":{"arguments":{"index":{"name":"index","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes.","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:set-dimensions-mode","usage":["indexer:set-dimensions-mode [ []]"],"description":"Set Indexer Dimensions Mode","help":"Set Indexer Dimensions Mode","definition":{"arguments":{"indexer":{"name":"indexer","is_required":false,"is_array":false,"description":"Indexer name [catalog_product_price]","default":null},"mode":{"name":"mode","is_required":false,"is_array":false,"description":"Indexer dimension modes catalog_product_price none,website,customer_group,website_and_customer_group ","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:set-mode","usage":["indexer:set-mode [ [...]]"],"description":"Sets index mode type","help":"Sets index mode type","definition":{"arguments":{"mode":{"name":"mode","is_required":false,"is_array":false,"description":"Indexer mode type [realtime|schedule]","default":null},"index":{"name":"index","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes.","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:show-dimensions-mode","usage":["indexer:show-dimensions-mode [...]"],"description":"Shows Indexer Dimension Mode","help":"Shows Indexer Dimension Mode","definition":{"arguments":{"indexer":{"name":"indexer","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes (catalog_product_price)","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:show-mode","usage":["indexer:show-mode [...]"],"description":"Shows Index Mode","help":"Shows Index Mode","definition":{"arguments":{"index":{"name":"index","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes.","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:status","usage":["indexer:status [...]"],"description":"Shows status of Indexer","help":"Shows status of Indexer","definition":{"arguments":{"index":{"name":"index","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes.","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:adminuri","usage":["info:adminuri"],"description":"Displays the Magento Admin URI","help":"Displays the Magento Admin URI","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:backups:list","usage":["info:backups:list"],"description":"Prints list of available backup files","help":"Prints list of available backup files","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:currency:list","usage":["info:currency:list"],"description":"Displays the list of available currencies","help":"Displays the list of available currencies","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:dependencies:show-framework","usage":["info:dependencies:show-framework [-o|--output OUTPUT]"],"description":"Shows number of dependencies on Magento framework","help":"Shows number of dependencies on Magento framework","definition":{"arguments":[],"options":{"output":{"name":"--output","shortcut":"-o","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Report filename","default":"framework-dependencies.csv"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:dependencies:show-modules","usage":["info:dependencies:show-modules [-o|--output OUTPUT]"],"description":"Shows number of dependencies between modules","help":"Shows number of dependencies between modules","definition":{"arguments":[],"options":{"output":{"name":"--output","shortcut":"-o","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Report filename","default":"modules-dependencies.csv"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:dependencies:show-modules-circular","usage":["info:dependencies:show-modules-circular [-o|--output OUTPUT]"],"description":"Shows number of circular dependencies between modules","help":"Shows number of circular dependencies between modules","definition":{"arguments":[],"options":{"output":{"name":"--output","shortcut":"-o","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Report filename","default":"modules-circular-dependencies.csv"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:language:list","usage":["info:language:list"],"description":"Displays the list of available language locales","help":"Displays the list of available language locales","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:timezone:list","usage":["info:timezone:list"],"description":"Displays the list of available timezones","help":"Displays the list of available timezones","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"inventory:reservation:create-compensations","usage":["inventory:reservation:create-compensations [-r|--raw] [--] [...]"],"description":"Create reservations by provided compensation arguments","help":"Create reservations by provided compensation arguments","definition":{"arguments":{"compensations":{"name":"compensations","is_required":false,"is_array":true,"description":"List of compensation arguments in format \":::\"","default":[]}},"options":{"raw":{"name":"--raw","shortcut":"-r","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Raw output","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"inventory:reservation:list-inconsistencies","usage":["inventory:reservation:list-inconsistencies [-c|--complete-orders] [-i|--incomplete-orders] [-b|--bunch-size [BUNCH-SIZE]] [-r|--raw]"],"description":"Show all orders and products with salable quantity inconsistencies","help":"Show all orders and products with salable quantity inconsistencies","definition":{"arguments":[],"options":{"complete-orders":{"name":"--complete-orders","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Show only inconsistencies for complete orders","default":false},"incomplete-orders":{"name":"--incomplete-orders","shortcut":"-i","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Show only inconsistencies for incomplete orders","default":false},"bunch-size":{"name":"--bunch-size","shortcut":"-b","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Defines how many orders will be loaded at once","default":50},"raw":{"name":"--raw","shortcut":"-r","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Raw output","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"inventory-geonames:import","usage":["inventory-geonames:import ..."],"description":"Download and import geo names for source selection algorithm","help":"Download and import geo names for source selection algorithm","definition":{"arguments":{"countries":{"name":"countries","is_required":true,"is_array":true,"description":"List of country codes to import","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"maintenance:allow-ips","usage":["maintenance:allow-ips [--none] [--add] [--magento-init-params MAGENTO-INIT-PARAMS] [--] [...]"],"description":"Sets maintenance mode exempt IPs","help":"Sets maintenance mode exempt IPs","definition":{"arguments":{"ip":{"name":"ip","is_required":false,"is_array":true,"description":"Allowed IP addresses","default":[]}},"options":{"none":{"name":"--none","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Clear allowed IP addresses","default":false},"add":{"name":"--add","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Add the IP address to existing list","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"maintenance:disable","usage":["maintenance:disable [--ip IP] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Disables maintenance mode","help":"Disables maintenance mode","definition":{"arguments":[],"options":{"ip":{"name":"--ip","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":true,"description":"Allowed IP addresses (use 'none' to clear allowed IP list)","default":[]},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"maintenance:enable","usage":["maintenance:enable [--ip IP] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Enables maintenance mode","help":"Enables maintenance mode","definition":{"arguments":[],"options":{"ip":{"name":"--ip","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":true,"description":"Allowed IP addresses (use 'none' to clear allowed IP list)","default":[]},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"maintenance:status","usage":["maintenance:status [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Displays maintenance mode status","help":"Displays maintenance mode status","definition":{"arguments":[],"options":{"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"media-content:sync","usage":["media-content:sync"],"description":"Synchronize content with assets","help":"Synchronize content with assets","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"media-gallery:sync","usage":["media-gallery:sync"],"description":"Synchronize media storage and media assets in the database","help":"Synchronize media storage and media assets in the database","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"module:config:status","usage":["module:config:status"],"description":"Checks the modules configuration in the 'app\/etc\/config.php' file and reports if they are up to date or not","help":"Checks the modules configuration in the 'app\/etc\/config.php' file and reports if they are up to date or not","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"module:disable","usage":["module:disable [-f|--force] [--all] [-c|--clear-static-content] [--magento-init-params MAGENTO-INIT-PARAMS] [--] [...]"],"description":"Disables specified modules","help":"Disables specified modules","definition":{"arguments":{"module":{"name":"module","is_required":false,"is_array":true,"description":"Name of the module","default":[]}},"options":{"force":{"name":"--force","shortcut":"-f","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Bypass dependencies check","default":false},"all":{"name":"--all","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable all modules","default":false},"clear-static-content":{"name":"--clear-static-content","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Clear generated static view files. Necessary, if the module(s) have static view files","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"module:enable","usage":["module:enable [-f|--force] [--all] [-c|--clear-static-content] [--magento-init-params MAGENTO-INIT-PARAMS] [--] [...]"],"description":"Enables specified modules","help":"Enables specified modules","definition":{"arguments":{"module":{"name":"module","is_required":false,"is_array":true,"description":"Name of the module","default":[]}},"options":{"force":{"name":"--force","shortcut":"-f","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Bypass dependencies check","default":false},"all":{"name":"--all","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Enable all modules","default":false},"clear-static-content":{"name":"--clear-static-content","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Clear generated static view files. Necessary, if the module(s) have static view files","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"module:status","usage":["module:status [--enabled] [--disabled] [--magento-init-params MAGENTO-INIT-PARAMS] [--] [...]"],"description":"Displays status of modules","help":"Displays status of modules","definition":{"arguments":{"module-names":{"name":"module-names","is_required":false,"is_array":true,"description":"Optional module name","default":[]}},"options":{"enabled":{"name":"--enabled","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Print only enabled modules","default":false},"disabled":{"name":"--disabled","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Print only disabled modules","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"module:uninstall","usage":["module:uninstall [-r|--remove-data] [--backup-code] [--backup-media] [--backup-db] [--non-composer] [-c|--clear-static-content] [--magento-init-params MAGENTO-INIT-PARAMS] [--] ..."],"description":"Uninstalls modules installed by composer","help":"Uninstalls modules installed by composer","definition":{"arguments":{"module":{"name":"module","is_required":true,"is_array":true,"description":"Name of the module","default":[]}},"options":{"remove-data":{"name":"--remove-data","shortcut":"-r","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Remove data installed by module(s)","default":false},"backup-code":{"name":"--backup-code","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take code and configuration files backup (excluding temporary files)","default":false},"backup-media":{"name":"--backup-media","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take media backup","default":false},"backup-db":{"name":"--backup-db","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take complete database backup","default":false},"non-composer":{"name":"--non-composer","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"All modules, that will be past here will be non composer based","default":false},"clear-static-content":{"name":"--clear-static-content","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Clear generated static view files. Necessary, if the module(s) have static view files","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"newrelic:create:deploy-marker","usage":["newrelic:create:deploy-marker []"],"description":"Check the deploy queue for entries and create an appropriate deploy marker.","help":"Check the deploy queue for entries and create an appropriate deploy marker.","definition":{"arguments":{"message":{"name":"message","is_required":true,"is_array":false,"description":"Deploy Message?","default":null},"change_log":{"name":"change_log","is_required":true,"is_array":false,"description":"Change Log?","default":null},"user":{"name":"user","is_required":false,"is_array":false,"description":"Deployment User","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"queue:consumers:list","usage":["queue:consumers:list"],"description":"List of MessageQueue consumers","help":"This command shows list of MessageQueue consumers.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"queue:consumers:start","usage":["queue:consumers:start [--max-messages MAX-MESSAGES] [--batch-size BATCH-SIZE] [--area-code AREA-CODE] [--single-thread] [--pid-file-path PID-FILE-PATH] [--] "],"description":"Start MessageQueue consumer","help":"This command starts MessageQueue consumer by its name.\n\nTo start consumer which will process all queued messages and terminate execution:\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer<\/comment>\n\nTo specify the number of messages which should be processed by consumer before its termination:\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer --max-messages=50<\/comment>\n\nTo specify the number of messages per batch for the batch consumer:\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer --batch-size=500<\/comment>\n\nTo specify the preferred area:\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer --area-code='adminhtml'<\/comment>\n\nTo do not run multiple copies of one consumer simultaneously:\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer --single-thread'<\/comment>\n\nTo save PID enter path (This option is deprecated, use --single-thread instead):\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer --pid-file-path='\/var\/someConsumer.pid'<\/comment>","definition":{"arguments":{"consumer":{"name":"consumer","is_required":true,"is_array":false,"description":"The name of the consumer to be started.","default":null}},"options":{"max-messages":{"name":"--max-messages","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The number of messages to be processed by the consumer before process termination. If not specified - terminate after processing all queued messages.","default":null},"batch-size":{"name":"--batch-size","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The number of messages per batch. Applicable for the batch consumer only.","default":null},"area-code":{"name":"--area-code","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The preferred area (global, adminhtml, etc...) default is global.","default":null},"single-thread":{"name":"--single-thread","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"This option prevents running multiple copies of one consumer simultaneously.","default":false},"pid-file-path":{"name":"--pid-file-path","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The file path for saving PID (This option is deprecated, use --single-thread instead)","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"sampledata:deploy","usage":["sampledata:deploy [--no-update]"],"description":"Deploy sample data modules for composer-based Magento installations","help":"Deploy sample data modules for composer-based Magento installations","definition":{"arguments":[],"options":{"no-update":{"name":"--no-update","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Update composer.json without executing composer update","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"sampledata:remove","usage":["sampledata:remove [--no-update]"],"description":"Remove all sample data packages from composer.json","help":"Remove all sample data packages from composer.json","definition":{"arguments":[],"options":{"no-update":{"name":"--no-update","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Update composer.json without executing composer update","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"sampledata:reset","usage":["sampledata:reset"],"description":"Reset all sample data modules for re-installation","help":"Reset all sample data modules for re-installation","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"security:recaptcha:disable-for-user-forgot-password","usage":["security:recaptcha:disable-for-user-forgot-password"],"description":"Disable reCAPTCHA for admin user forgot password form","help":"Disable reCAPTCHA for admin user forgot password form","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"security:recaptcha:disable-for-user-login","usage":["security:recaptcha:disable-for-user-login"],"description":"Disable reCAPTCHA for admin user login form","help":"Disable reCAPTCHA for admin user login form","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"security:tfa:google:set-secret","usage":["security:tfa:google:set-secret "],"description":"Set the secret used for Google OTP generation.","help":"Set the secret used for Google OTP generation.","definition":{"arguments":{"user":{"name":"user","is_required":true,"is_array":false,"description":"Username","default":null},"secret":{"name":"secret","is_required":true,"is_array":false,"description":"Secret","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"security:tfa:providers","usage":["security:tfa:providers"],"description":"List all available providers","help":"List all available providers","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"security:tfa:reset","usage":["security:tfa:reset "],"description":"Reset configuration for one user","help":"Reset configuration for one user","definition":{"arguments":{"user":{"name":"user","is_required":true,"is_array":false,"description":"Username","default":null},"provider":{"name":"provider","is_required":true,"is_array":false,"description":"Provider code","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:backup","usage":["setup:backup [--code] [--media] [--db] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Takes backup of Magento Application code base, media and database","help":"Takes backup of Magento Application code base, media and database","definition":{"arguments":[],"options":{"code":{"name":"--code","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take code and configuration files backup (excluding temporary files)","default":false},"media":{"name":"--media","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take media backup","default":false},"db":{"name":"--db","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take complete database backup","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:config:set","usage":["setup:config:set [--backend-frontname BACKEND-FRONTNAME] [--enable-debug-logging ENABLE-DEBUG-LOGGING] [--enable-syslog-logging ENABLE-SYSLOG-LOGGING] [--amqp-host AMQP-HOST] [--amqp-port AMQP-PORT] [--amqp-user AMQP-USER] [--amqp-password AMQP-PASSWORD] [--amqp-virtualhost AMQP-VIRTUALHOST] [--amqp-ssl AMQP-SSL] [--amqp-ssl-options AMQP-SSL-OPTIONS] [--consumers-wait-for-messages CONSUMERS-WAIT-FOR-MESSAGES] [--key KEY] [--db-host DB-HOST] [--db-name DB-NAME] [--db-user DB-USER] [--db-engine DB-ENGINE] [--db-password DB-PASSWORD] [--db-prefix DB-PREFIX] [--db-model DB-MODEL] [--db-init-statements DB-INIT-STATEMENTS] [-s|--skip-db-validation] [--http-cache-hosts HTTP-CACHE-HOSTS] [--db-ssl-key DB-SSL-KEY] [--db-ssl-cert DB-SSL-CERT] [--db-ssl-ca DB-SSL-CA] [--db-ssl-verify] [--session-save SESSION-SAVE] [--session-save-redis-host SESSION-SAVE-REDIS-HOST] [--session-save-redis-port SESSION-SAVE-REDIS-PORT] [--session-save-redis-password SESSION-SAVE-REDIS-PASSWORD] [--session-save-redis-timeout SESSION-SAVE-REDIS-TIMEOUT] [--session-save-redis-persistent-id SESSION-SAVE-REDIS-PERSISTENT-ID] [--session-save-redis-db SESSION-SAVE-REDIS-DB] [--session-save-redis-compression-threshold SESSION-SAVE-REDIS-COMPRESSION-THRESHOLD] [--session-save-redis-compression-lib SESSION-SAVE-REDIS-COMPRESSION-LIB] [--session-save-redis-log-level SESSION-SAVE-REDIS-LOG-LEVEL] [--session-save-redis-max-concurrency SESSION-SAVE-REDIS-MAX-CONCURRENCY] [--session-save-redis-break-after-frontend SESSION-SAVE-REDIS-BREAK-AFTER-FRONTEND] [--session-save-redis-break-after-adminhtml SESSION-SAVE-REDIS-BREAK-AFTER-ADMINHTML] [--session-save-redis-first-lifetime SESSION-SAVE-REDIS-FIRST-LIFETIME] [--session-save-redis-bot-first-lifetime SESSION-SAVE-REDIS-BOT-FIRST-LIFETIME] [--session-save-redis-bot-lifetime SESSION-SAVE-REDIS-BOT-LIFETIME] [--session-save-redis-disable-locking SESSION-SAVE-REDIS-DISABLE-LOCKING] [--session-save-redis-min-lifetime SESSION-SAVE-REDIS-MIN-LIFETIME] [--session-save-redis-max-lifetime SESSION-SAVE-REDIS-MAX-LIFETIME] [--session-save-redis-sentinel-master SESSION-SAVE-REDIS-SENTINEL-MASTER] [--session-save-redis-sentinel-servers SESSION-SAVE-REDIS-SENTINEL-SERVERS] [--session-save-redis-sentinel-verify-master SESSION-SAVE-REDIS-SENTINEL-VERIFY-MASTER] [--session-save-redis-sentinel-connect-retires SESSION-SAVE-REDIS-SENTINEL-CONNECT-RETIRES] [--cache-backend CACHE-BACKEND] [--cache-backend-redis-server CACHE-BACKEND-REDIS-SERVER] [--cache-backend-redis-db CACHE-BACKEND-REDIS-DB] [--cache-backend-redis-port CACHE-BACKEND-REDIS-PORT] [--cache-backend-redis-password CACHE-BACKEND-REDIS-PASSWORD] [--cache-backend-redis-compress-data CACHE-BACKEND-REDIS-COMPRESS-DATA] [--cache-backend-redis-compression-lib CACHE-BACKEND-REDIS-COMPRESSION-LIB] [--cache-id-prefix CACHE-ID-PREFIX] [--allow-parallel-generation] [--page-cache PAGE-CACHE] [--page-cache-redis-server PAGE-CACHE-REDIS-SERVER] [--page-cache-redis-db PAGE-CACHE-REDIS-DB] [--page-cache-redis-port PAGE-CACHE-REDIS-PORT] [--page-cache-redis-password PAGE-CACHE-REDIS-PASSWORD] [--page-cache-redis-compress-data PAGE-CACHE-REDIS-COMPRESS-DATA] [--page-cache-redis-compression-lib PAGE-CACHE-REDIS-COMPRESSION-LIB] [--page-cache-id-prefix PAGE-CACHE-ID-PREFIX] [--lock-provider LOCK-PROVIDER] [--lock-db-prefix LOCK-DB-PREFIX] [--lock-zookeeper-host LOCK-ZOOKEEPER-HOST] [--lock-zookeeper-path LOCK-ZOOKEEPER-PATH] [--lock-file-path LOCK-FILE-PATH] [--document-root-is-pub DOCUMENT-ROOT-IS-PUB] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Creates or modifies the deployment configuration","help":"Creates or modifies the deployment configuration","definition":{"arguments":[],"options":{"backend-frontname":{"name":"--backend-frontname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Backend frontname (will be autogenerated if missing)","default":null},"enable-debug-logging":{"name":"--enable-debug-logging","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Enable debug logging","default":null},"enable-syslog-logging":{"name":"--enable-syslog-logging","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Enable syslog logging","default":null},"amqp-host":{"name":"--amqp-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server host","default":""},"amqp-port":{"name":"--amqp-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server port","default":"5672"},"amqp-user":{"name":"--amqp-user","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server username","default":""},"amqp-password":{"name":"--amqp-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server password","default":""},"amqp-virtualhost":{"name":"--amqp-virtualhost","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp virtualhost","default":"\/"},"amqp-ssl":{"name":"--amqp-ssl","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp SSL","default":""},"amqp-ssl-options":{"name":"--amqp-ssl-options","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp SSL Options (JSON)","default":""},"consumers-wait-for-messages":{"name":"--consumers-wait-for-messages","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Should consumers wait for a message from the queue? 1 - Yes, 0 - No","default":null},"key":{"name":"--key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Encryption key","default":null},"db-host":{"name":"--db-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server host","default":null},"db-name":{"name":"--db-name","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database name","default":null},"db-user":{"name":"--db-user","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server username","default":null},"db-engine":{"name":"--db-engine","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server engine","default":null},"db-password":{"name":"--db-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server password","default":null},"db-prefix":{"name":"--db-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database table prefix","default":null},"db-model":{"name":"--db-model","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database type","default":null},"db-init-statements":{"name":"--db-init-statements","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database initial set of commands","default":null},"skip-db-validation":{"name":"--skip-db-validation","shortcut":"-s","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"If specified, then db connection validation will be skipped","default":false},"http-cache-hosts":{"name":"--http-cache-hosts","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"http Cache hosts","default":null},"db-ssl-key":{"name":"--db-ssl-key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of client key file in order to establish db connection through SSL","default":""},"db-ssl-cert":{"name":"--db-ssl-cert","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of client certificate file in order to establish db connection through SSL","default":""},"db-ssl-ca":{"name":"--db-ssl-ca","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of server certificate file in order to establish db connection through SSL","default":""},"db-ssl-verify":{"name":"--db-ssl-verify","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Verify server certification","default":false},"session-save":{"name":"--session-save","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Session save handler","default":null},"session-save-redis-host":{"name":"--session-save-redis-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Fully qualified host name, IP address, or absolute path if using UNIX sockets","default":null},"session-save-redis-port":{"name":"--session-save-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"session-save-redis-password":{"name":"--session-save-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"session-save-redis-timeout":{"name":"--session-save-redis-timeout","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Connection timeout, in seconds","default":null},"session-save-redis-persistent-id":{"name":"--session-save-redis-persistent-id","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Unique string to enable persistent connections","default":null},"session-save-redis-db":{"name":"--session-save-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis database number","default":null},"session-save-redis-compression-threshold":{"name":"--session-save-redis-compression-threshold","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis compression threshold","default":null},"session-save-redis-compression-lib":{"name":"--session-save-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis compression library. Values:\u00a0gzip (default), lzf, lz4, snappy","default":null},"session-save-redis-log-level":{"name":"--session-save-redis-log-level","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis log level. Values: 0 (least verbose) to 7 (most verbose)","default":null},"session-save-redis-max-concurrency":{"name":"--session-save-redis-max-concurrency","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Maximum number of processes that can wait for a lock on one session","default":null},"session-save-redis-break-after-frontend":{"name":"--session-save-redis-break-after-frontend","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Number of seconds to wait before trying to break a lock for frontend session","default":null},"session-save-redis-break-after-adminhtml":{"name":"--session-save-redis-break-after-adminhtml","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Number of seconds to wait before trying to break a lock for Admin session","default":null},"session-save-redis-first-lifetime":{"name":"--session-save-redis-first-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime, in seconds, of session for non-bots on the first write (use 0 to disable)","default":null},"session-save-redis-bot-first-lifetime":{"name":"--session-save-redis-bot-first-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime, in seconds, of session for bots on the first write (use 0 to disable)","default":null},"session-save-redis-bot-lifetime":{"name":"--session-save-redis-bot-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime of session for bots on subsequent writes (use 0 to disable)","default":null},"session-save-redis-disable-locking":{"name":"--session-save-redis-disable-locking","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis disable locking. Values:\u00a0false (default), true","default":null},"session-save-redis-min-lifetime":{"name":"--session-save-redis-min-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis min session lifetime, in seconds","default":null},"session-save-redis-max-lifetime":{"name":"--session-save-redis-max-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis max session lifetime, in seconds","default":null},"session-save-redis-sentinel-master":{"name":"--session-save-redis-sentinel-master","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel master","default":null},"session-save-redis-sentinel-servers":{"name":"--session-save-redis-sentinel-servers","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel servers, comma separated","default":null},"session-save-redis-sentinel-verify-master":{"name":"--session-save-redis-sentinel-verify-master","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel verify master. Values: false (default), true","default":null},"session-save-redis-sentinel-connect-retires":{"name":"--session-save-redis-sentinel-connect-retires","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel connect retries.","default":null},"cache-backend":{"name":"--cache-backend","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default cache handler","default":null},"cache-backend-redis-server":{"name":"--cache-backend-redis-server","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server","default":null},"cache-backend-redis-db":{"name":"--cache-backend-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database number for the cache","default":null},"cache-backend-redis-port":{"name":"--cache-backend-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"cache-backend-redis-password":{"name":"--cache-backend-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"cache-backend-redis-compress-data":{"name":"--cache-backend-redis-compress-data","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Set to 0 to disable compression (default is 1, enabled)","default":null},"cache-backend-redis-compression-lib":{"name":"--cache-backend-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Compression lib to use [snappy,lzf,l4z,zstd,gzip] (leave blank to determine automatically)","default":null},"cache-id-prefix":{"name":"--cache-id-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"ID prefix for cache keys","default":null},"allow-parallel-generation":{"name":"--allow-parallel-generation","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Allow generate cache in non-blocking way","default":false},"page-cache":{"name":"--page-cache","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default cache handler","default":null},"page-cache-redis-server":{"name":"--page-cache-redis-server","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server","default":null},"page-cache-redis-db":{"name":"--page-cache-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database number for the cache","default":null},"page-cache-redis-port":{"name":"--page-cache-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"page-cache-redis-password":{"name":"--page-cache-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"page-cache-redis-compress-data":{"name":"--page-cache-redis-compress-data","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Set to 1 to compress the full page cache (use 0 to disable)","default":null},"page-cache-redis-compression-lib":{"name":"--page-cache-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Compression library to use [snappy,lzf,l4z,zstd,gzip] (leave blank to determine automatically)","default":null},"page-cache-id-prefix":{"name":"--page-cache-id-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"ID prefix for cache keys","default":null},"lock-provider":{"name":"--lock-provider","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lock provider name","default":null},"lock-db-prefix":{"name":"--lock-db-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Installation specific lock prefix to avoid lock conflicts","default":null},"lock-zookeeper-host":{"name":"--lock-zookeeper-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Host and port to connect to Zookeeper cluster. For example: 127.0.0.1:2181","default":null},"lock-zookeeper-path":{"name":"--lock-zookeeper-path","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The path where Zookeeper will save locks. The default path is: \/magento\/locks","default":null},"lock-file-path":{"name":"--lock-file-path","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The path where file locks will be saved.","default":null},"document-root-is-pub":{"name":"--document-root-is-pub","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Flag to show is Pub is on root, can be true or false only","default":null},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-data:upgrade","usage":["setup:db-data:upgrade [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Installs and upgrades data in the DB","help":"Installs and upgrades data in the DB","definition":{"arguments":[],"options":{"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-declaration:generate-patch","usage":["setup:db-declaration:generate-patch [--revertable [REVERTABLE]] [--type [TYPE]] [--] "],"description":"Generate patch and put it in specific folder.","help":"Generate patch and put it in specific folder.","definition":{"arguments":{"module":{"name":"module","is_required":true,"is_array":false,"description":"Module name","default":null},"patch":{"name":"patch","is_required":true,"is_array":false,"description":"Patch name","default":null}},"options":{"revertable":{"name":"--revertable","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Check whether patch is revertable or not.","default":false},"type":{"name":"--type","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Find out what type of patch should be generated. Available values: `data`, `schema`.","default":"data"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-declaration:generate-whitelist","usage":["setup:db-declaration:generate-whitelist [--module-name [MODULE-NAME]]"],"description":"Generate whitelist of tables and columns that are allowed to be edited by declaration installer","help":"Generate whitelist of tables and columns that are allowed to be edited by declaration installer","definition":{"arguments":[],"options":{"module-name":{"name":"--module-name","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Name of the module where whitelist will be generated","default":"all"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-schema:upgrade","usage":["setup:db-schema:upgrade [--convert-old-scripts [CONVERT-OLD-SCRIPTS]] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Installs and upgrades the DB schema","help":"Installs and upgrades the DB schema","definition":{"arguments":[],"options":{"convert-old-scripts":{"name":"--convert-old-scripts","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Allows to convert old scripts (InstallSchema, UpgradeSchema) to db_schema.xml format","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db:status","usage":["setup:db:status [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Checks if DB schema or data requires upgrade","help":"Checks if DB schema or data requires upgrade","definition":{"arguments":[],"options":{"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:di:compile","usage":["setup:di:compile"],"description":"Generates DI configuration and all missing classes that can be auto-generated","help":"Generates DI configuration and all missing classes that can be auto-generated","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:install","usage":["setup:install [--backend-frontname BACKEND-FRONTNAME] [--enable-debug-logging ENABLE-DEBUG-LOGGING] [--enable-syslog-logging ENABLE-SYSLOG-LOGGING] [--amqp-host AMQP-HOST] [--amqp-port AMQP-PORT] [--amqp-user AMQP-USER] [--amqp-password AMQP-PASSWORD] [--amqp-virtualhost AMQP-VIRTUALHOST] [--amqp-ssl AMQP-SSL] [--amqp-ssl-options AMQP-SSL-OPTIONS] [--consumers-wait-for-messages CONSUMERS-WAIT-FOR-MESSAGES] [--key KEY] [--db-host DB-HOST] [--db-name DB-NAME] [--db-user DB-USER] [--db-engine DB-ENGINE] [--db-password DB-PASSWORD] [--db-prefix DB-PREFIX] [--db-model DB-MODEL] [--db-init-statements DB-INIT-STATEMENTS] [-s|--skip-db-validation] [--http-cache-hosts HTTP-CACHE-HOSTS] [--db-ssl-key DB-SSL-KEY] [--db-ssl-cert DB-SSL-CERT] [--db-ssl-ca DB-SSL-CA] [--db-ssl-verify] [--session-save SESSION-SAVE] [--session-save-redis-host SESSION-SAVE-REDIS-HOST] [--session-save-redis-port SESSION-SAVE-REDIS-PORT] [--session-save-redis-password SESSION-SAVE-REDIS-PASSWORD] [--session-save-redis-timeout SESSION-SAVE-REDIS-TIMEOUT] [--session-save-redis-persistent-id SESSION-SAVE-REDIS-PERSISTENT-ID] [--session-save-redis-db SESSION-SAVE-REDIS-DB] [--session-save-redis-compression-threshold SESSION-SAVE-REDIS-COMPRESSION-THRESHOLD] [--session-save-redis-compression-lib SESSION-SAVE-REDIS-COMPRESSION-LIB] [--session-save-redis-log-level SESSION-SAVE-REDIS-LOG-LEVEL] [--session-save-redis-max-concurrency SESSION-SAVE-REDIS-MAX-CONCURRENCY] [--session-save-redis-break-after-frontend SESSION-SAVE-REDIS-BREAK-AFTER-FRONTEND] [--session-save-redis-break-after-adminhtml SESSION-SAVE-REDIS-BREAK-AFTER-ADMINHTML] [--session-save-redis-first-lifetime SESSION-SAVE-REDIS-FIRST-LIFETIME] [--session-save-redis-bot-first-lifetime SESSION-SAVE-REDIS-BOT-FIRST-LIFETIME] [--session-save-redis-bot-lifetime SESSION-SAVE-REDIS-BOT-LIFETIME] [--session-save-redis-disable-locking SESSION-SAVE-REDIS-DISABLE-LOCKING] [--session-save-redis-min-lifetime SESSION-SAVE-REDIS-MIN-LIFETIME] [--session-save-redis-max-lifetime SESSION-SAVE-REDIS-MAX-LIFETIME] [--session-save-redis-sentinel-master SESSION-SAVE-REDIS-SENTINEL-MASTER] [--session-save-redis-sentinel-servers SESSION-SAVE-REDIS-SENTINEL-SERVERS] [--session-save-redis-sentinel-verify-master SESSION-SAVE-REDIS-SENTINEL-VERIFY-MASTER] [--session-save-redis-sentinel-connect-retires SESSION-SAVE-REDIS-SENTINEL-CONNECT-RETIRES] [--cache-backend CACHE-BACKEND] [--cache-backend-redis-server CACHE-BACKEND-REDIS-SERVER] [--cache-backend-redis-db CACHE-BACKEND-REDIS-DB] [--cache-backend-redis-port CACHE-BACKEND-REDIS-PORT] [--cache-backend-redis-password CACHE-BACKEND-REDIS-PASSWORD] [--cache-backend-redis-compress-data CACHE-BACKEND-REDIS-COMPRESS-DATA] [--cache-backend-redis-compression-lib CACHE-BACKEND-REDIS-COMPRESSION-LIB] [--cache-id-prefix CACHE-ID-PREFIX] [--allow-parallel-generation] [--page-cache PAGE-CACHE] [--page-cache-redis-server PAGE-CACHE-REDIS-SERVER] [--page-cache-redis-db PAGE-CACHE-REDIS-DB] [--page-cache-redis-port PAGE-CACHE-REDIS-PORT] [--page-cache-redis-password PAGE-CACHE-REDIS-PASSWORD] [--page-cache-redis-compress-data PAGE-CACHE-REDIS-COMPRESS-DATA] [--page-cache-redis-compression-lib PAGE-CACHE-REDIS-COMPRESSION-LIB] [--page-cache-id-prefix PAGE-CACHE-ID-PREFIX] [--lock-provider LOCK-PROVIDER] [--lock-db-prefix LOCK-DB-PREFIX] [--lock-zookeeper-host LOCK-ZOOKEEPER-HOST] [--lock-zookeeper-path LOCK-ZOOKEEPER-PATH] [--lock-file-path LOCK-FILE-PATH] [--document-root-is-pub DOCUMENT-ROOT-IS-PUB] [--base-url BASE-URL] [--language LANGUAGE] [--timezone TIMEZONE] [--currency CURRENCY] [--use-rewrites USE-REWRITES] [--use-secure USE-SECURE] [--base-url-secure BASE-URL-SECURE] [--use-secure-admin USE-SECURE-ADMIN] [--admin-use-security-key ADMIN-USE-SECURITY-KEY] [--admin-user [ADMIN-USER]] [--admin-password [ADMIN-PASSWORD]] [--admin-email [ADMIN-EMAIL]] [--admin-firstname [ADMIN-FIRSTNAME]] [--admin-lastname [ADMIN-LASTNAME]] [--search-engine SEARCH-ENGINE] [--elasticsearch-host ELASTICSEARCH-HOST] [--elasticsearch-port ELASTICSEARCH-PORT] [--elasticsearch-enable-auth ELASTICSEARCH-ENABLE-AUTH] [--elasticsearch-username ELASTICSEARCH-USERNAME] [--elasticsearch-password ELASTICSEARCH-PASSWORD] [--elasticsearch-index-prefix ELASTICSEARCH-INDEX-PREFIX] [--elasticsearch-timeout ELASTICSEARCH-TIMEOUT] [--cleanup-database] [--sales-order-increment-prefix SALES-ORDER-INCREMENT-PREFIX] [--use-sample-data] [--enable-modules [ENABLE-MODULES]] [--disable-modules [DISABLE-MODULES]] [--convert-old-scripts [CONVERT-OLD-SCRIPTS]] [-i|--interactive] [--safe-mode [SAFE-MODE]] [--data-restore [DATA-RESTORE]] [--dry-run [DRY-RUN]] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Installs the Magento application","help":"Installs the Magento application","definition":{"arguments":[],"options":{"backend-frontname":{"name":"--backend-frontname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Backend frontname (will be autogenerated if missing)","default":null},"enable-debug-logging":{"name":"--enable-debug-logging","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Enable debug logging","default":null},"enable-syslog-logging":{"name":"--enable-syslog-logging","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Enable syslog logging","default":null},"amqp-host":{"name":"--amqp-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server host","default":""},"amqp-port":{"name":"--amqp-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server port","default":"5672"},"amqp-user":{"name":"--amqp-user","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server username","default":""},"amqp-password":{"name":"--amqp-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server password","default":""},"amqp-virtualhost":{"name":"--amqp-virtualhost","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp virtualhost","default":"\/"},"amqp-ssl":{"name":"--amqp-ssl","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp SSL","default":""},"amqp-ssl-options":{"name":"--amqp-ssl-options","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp SSL Options (JSON)","default":""},"consumers-wait-for-messages":{"name":"--consumers-wait-for-messages","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Should consumers wait for a message from the queue? 1 - Yes, 0 - No","default":null},"key":{"name":"--key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Encryption key","default":null},"db-host":{"name":"--db-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server host","default":null},"db-name":{"name":"--db-name","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database name","default":null},"db-user":{"name":"--db-user","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server username","default":null},"db-engine":{"name":"--db-engine","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server engine","default":null},"db-password":{"name":"--db-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server password","default":null},"db-prefix":{"name":"--db-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database table prefix","default":null},"db-model":{"name":"--db-model","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database type","default":null},"db-init-statements":{"name":"--db-init-statements","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database initial set of commands","default":null},"skip-db-validation":{"name":"--skip-db-validation","shortcut":"-s","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"If specified, then db connection validation will be skipped","default":false},"http-cache-hosts":{"name":"--http-cache-hosts","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"http Cache hosts","default":null},"db-ssl-key":{"name":"--db-ssl-key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of client key file in order to establish db connection through SSL","default":""},"db-ssl-cert":{"name":"--db-ssl-cert","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of client certificate file in order to establish db connection through SSL","default":""},"db-ssl-ca":{"name":"--db-ssl-ca","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of server certificate file in order to establish db connection through SSL","default":""},"db-ssl-verify":{"name":"--db-ssl-verify","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Verify server certification","default":false},"session-save":{"name":"--session-save","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Session save handler","default":null},"session-save-redis-host":{"name":"--session-save-redis-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Fully qualified host name, IP address, or absolute path if using UNIX sockets","default":null},"session-save-redis-port":{"name":"--session-save-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"session-save-redis-password":{"name":"--session-save-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"session-save-redis-timeout":{"name":"--session-save-redis-timeout","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Connection timeout, in seconds","default":null},"session-save-redis-persistent-id":{"name":"--session-save-redis-persistent-id","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Unique string to enable persistent connections","default":null},"session-save-redis-db":{"name":"--session-save-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis database number","default":null},"session-save-redis-compression-threshold":{"name":"--session-save-redis-compression-threshold","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis compression threshold","default":null},"session-save-redis-compression-lib":{"name":"--session-save-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis compression library. Values:\u00a0gzip (default), lzf, lz4, snappy","default":null},"session-save-redis-log-level":{"name":"--session-save-redis-log-level","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis log level. Values: 0 (least verbose) to 7 (most verbose)","default":null},"session-save-redis-max-concurrency":{"name":"--session-save-redis-max-concurrency","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Maximum number of processes that can wait for a lock on one session","default":null},"session-save-redis-break-after-frontend":{"name":"--session-save-redis-break-after-frontend","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Number of seconds to wait before trying to break a lock for frontend session","default":null},"session-save-redis-break-after-adminhtml":{"name":"--session-save-redis-break-after-adminhtml","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Number of seconds to wait before trying to break a lock for Admin session","default":null},"session-save-redis-first-lifetime":{"name":"--session-save-redis-first-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime, in seconds, of session for non-bots on the first write (use 0 to disable)","default":null},"session-save-redis-bot-first-lifetime":{"name":"--session-save-redis-bot-first-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime, in seconds, of session for bots on the first write (use 0 to disable)","default":null},"session-save-redis-bot-lifetime":{"name":"--session-save-redis-bot-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime of session for bots on subsequent writes (use 0 to disable)","default":null},"session-save-redis-disable-locking":{"name":"--session-save-redis-disable-locking","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis disable locking. Values:\u00a0false (default), true","default":null},"session-save-redis-min-lifetime":{"name":"--session-save-redis-min-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis min session lifetime, in seconds","default":null},"session-save-redis-max-lifetime":{"name":"--session-save-redis-max-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis max session lifetime, in seconds","default":null},"session-save-redis-sentinel-master":{"name":"--session-save-redis-sentinel-master","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel master","default":null},"session-save-redis-sentinel-servers":{"name":"--session-save-redis-sentinel-servers","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel servers, comma separated","default":null},"session-save-redis-sentinel-verify-master":{"name":"--session-save-redis-sentinel-verify-master","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel verify master. Values: false (default), true","default":null},"session-save-redis-sentinel-connect-retires":{"name":"--session-save-redis-sentinel-connect-retires","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel connect retries.","default":null},"cache-backend":{"name":"--cache-backend","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default cache handler","default":null},"cache-backend-redis-server":{"name":"--cache-backend-redis-server","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server","default":null},"cache-backend-redis-db":{"name":"--cache-backend-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database number for the cache","default":null},"cache-backend-redis-port":{"name":"--cache-backend-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"cache-backend-redis-password":{"name":"--cache-backend-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"cache-backend-redis-compress-data":{"name":"--cache-backend-redis-compress-data","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Set to 0 to disable compression (default is 1, enabled)","default":null},"cache-backend-redis-compression-lib":{"name":"--cache-backend-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Compression lib to use [snappy,lzf,l4z,zstd,gzip] (leave blank to determine automatically)","default":null},"cache-id-prefix":{"name":"--cache-id-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"ID prefix for cache keys","default":null},"allow-parallel-generation":{"name":"--allow-parallel-generation","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Allow generate cache in non-blocking way","default":false},"page-cache":{"name":"--page-cache","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default cache handler","default":null},"page-cache-redis-server":{"name":"--page-cache-redis-server","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server","default":null},"page-cache-redis-db":{"name":"--page-cache-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database number for the cache","default":null},"page-cache-redis-port":{"name":"--page-cache-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"page-cache-redis-password":{"name":"--page-cache-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"page-cache-redis-compress-data":{"name":"--page-cache-redis-compress-data","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Set to 1 to compress the full page cache (use 0 to disable)","default":null},"page-cache-redis-compression-lib":{"name":"--page-cache-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Compression library to use [snappy,lzf,l4z,zstd,gzip] (leave blank to determine automatically)","default":null},"page-cache-id-prefix":{"name":"--page-cache-id-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"ID prefix for cache keys","default":null},"lock-provider":{"name":"--lock-provider","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lock provider name","default":null},"lock-db-prefix":{"name":"--lock-db-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Installation specific lock prefix to avoid lock conflicts","default":null},"lock-zookeeper-host":{"name":"--lock-zookeeper-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Host and port to connect to Zookeeper cluster. For example: 127.0.0.1:2181","default":null},"lock-zookeeper-path":{"name":"--lock-zookeeper-path","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The path where Zookeeper will save locks. The default path is: \/magento\/locks","default":null},"lock-file-path":{"name":"--lock-file-path","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The path where file locks will be saved.","default":null},"document-root-is-pub":{"name":"--document-root-is-pub","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Flag to show is Pub is on root, can be true or false only","default":null},"base-url":{"name":"--base-url","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"URL the store is supposed to be available at. Deprecated, use config:set with path web\/unsecure\/base_url","default":null},"language":{"name":"--language","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default language code. Deprecated, use config:set with path general\/locale\/code","default":null},"timezone":{"name":"--timezone","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default time zone code. Deprecated, use config:set with path general\/locale\/timezone","default":null},"currency":{"name":"--currency","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default currency code. Deprecated, use config:set with path currency\/options\/base, currency\/options\/default and currency\/options\/allow","default":null},"use-rewrites":{"name":"--use-rewrites","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Use rewrites. Deprecated, use config:set with path web\/seo\/use_rewrites","default":null},"use-secure":{"name":"--use-secure","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Use secure URLs. Enable this option only if SSL is available. Deprecated, use config:set with path web\/secure\/use_in_frontend","default":null},"base-url-secure":{"name":"--base-url-secure","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Base URL for SSL connection. Deprecated, use config:set with path web\/secure\/base_url","default":null},"use-secure-admin":{"name":"--use-secure-admin","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Run admin interface with SSL. Deprecated, use config:set with path web\/secure\/use_in_adminhtml","default":null},"admin-use-security-key":{"name":"--admin-use-security-key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Whether to use a \"security key\" feature in Magento Admin URLs and forms. Deprecated, use config:set with path admin\/security\/use_form_key","default":null},"admin-user":{"name":"--admin-user","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Admin user","default":null},"admin-password":{"name":"--admin-password","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Admin password","default":null},"admin-email":{"name":"--admin-email","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Admin email","default":null},"admin-firstname":{"name":"--admin-firstname","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Admin first name","default":null},"admin-lastname":{"name":"--admin-lastname","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Admin last name","default":null},"search-engine":{"name":"--search-engine","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Search engine. Values: elasticsearch5, elasticsearch6, elasticsearch7","default":null},"elasticsearch-host":{"name":"--elasticsearch-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Elasticsearch server host.","default":null},"elasticsearch-port":{"name":"--elasticsearch-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Elasticsearch server port.","default":null},"elasticsearch-enable-auth":{"name":"--elasticsearch-enable-auth","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Set to 1 to enable authentication. (default is 0, disabled)","default":null},"elasticsearch-username":{"name":"--elasticsearch-username","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Elasticsearch username. Only applicable if HTTP auth is enabled","default":null},"elasticsearch-password":{"name":"--elasticsearch-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Elasticsearch password. Only applicable if HTTP auth is enabled","default":null},"elasticsearch-index-prefix":{"name":"--elasticsearch-index-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Elasticsearch index prefix.","default":null},"elasticsearch-timeout":{"name":"--elasticsearch-timeout","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Elasticsearch server timeout.","default":null},"cleanup-database":{"name":"--cleanup-database","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Cleanup the database before installation","default":false},"sales-order-increment-prefix":{"name":"--sales-order-increment-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Sales order number prefix","default":null},"use-sample-data":{"name":"--use-sample-data","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Use sample data","default":false},"enable-modules":{"name":"--enable-modules","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"List of comma-separated module names. That must be included during installation. Available magic param \"all\".","default":null},"disable-modules":{"name":"--disable-modules","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"List of comma-separated module names. That must be avoided during installation. Available magic param \"all\".","default":null},"convert-old-scripts":{"name":"--convert-old-scripts","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Allows to convert old scripts (InstallSchema, UpgradeSchema) to db_schema.xml format","default":false},"interactive":{"name":"--interactive","shortcut":"-i","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Interactive Magento installation","default":false},"safe-mode":{"name":"--safe-mode","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Safe installation of Magento with dumps on destructive operations, like column removal","default":null},"data-restore":{"name":"--data-restore","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Restore removed data from dumps","default":null},"dry-run":{"name":"--dry-run","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Magento Installation will be run in dry-run mode","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:performance:generate-fixtures","usage":["setup:performance:generate-fixtures [-s|--skip-reindex] [--] "],"description":"Generates fixtures","help":"Generates fixtures","definition":{"arguments":{"profile":{"name":"profile","is_required":true,"is_array":false,"description":"Path to profile configuration file","default":null}},"options":{"skip-reindex":{"name":"--skip-reindex","shortcut":"-s","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Skip reindex","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:rollback","usage":["setup:rollback [-c|--code-file CODE-FILE] [-m|--media-file MEDIA-FILE] [-d|--db-file DB-FILE] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Rolls back Magento Application codebase, media and database","help":"Rolls back Magento Application codebase, media and database","definition":{"arguments":[],"options":{"code-file":{"name":"--code-file","shortcut":"-c","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Basename of the code backup file in var\/backups","default":null},"media-file":{"name":"--media-file","shortcut":"-m","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Basename of the media backup file in var\/backups","default":null},"db-file":{"name":"--db-file","shortcut":"-d","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Basename of the db backup file in var\/backups","default":null},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:static-content:deploy","usage":["setup:static-content:deploy [-f|--force] [-s|--strategy [STRATEGY]] [-a|--area [AREA]] [--exclude-area [EXCLUDE-AREA]] [-t|--theme [THEME]] [--exclude-theme [EXCLUDE-THEME]] [-l|--language [LANGUAGE]] [--exclude-language [EXCLUDE-LANGUAGE]] [-j|--jobs [JOBS]] [--max-execution-time [MAX-EXECUTION-TIME]] [--symlink-locale] [--content-version CONTENT-VERSION] [--refresh-content-version-only] [--no-javascript] [--no-js-bundle] [--no-css] [--no-less] [--no-images] [--no-fonts] [--no-html] [--no-misc] [--no-html-minify] [--] [...]"],"description":"Deploys static view files","help":"Deploys static view files","definition":{"arguments":{"languages":{"name":"languages","is_required":false,"is_array":true,"description":"Space-separated list of ISO-639 language codes for which to output static view files.","default":[]}},"options":{"force":{"name":"--force","shortcut":"-f","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Deploy files in any mode.","default":false},"strategy":{"name":"--strategy","shortcut":"-s","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Deploy files using specified strategy.","default":"quick"},"area":{"name":"--area","shortcut":"-a","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Generate files only for the specified areas.","default":["all"]},"exclude-area":{"name":"--exclude-area","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Do not generate files for the specified areas.","default":["none"]},"theme":{"name":"--theme","shortcut":"-t","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Generate static view files for only the specified themes.","default":["all"]},"exclude-theme":{"name":"--exclude-theme","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Do not generate files for the specified themes.","default":["none"]},"language":{"name":"--language","shortcut":"-l","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Generate files only for the specified languages.","default":["all"]},"exclude-language":{"name":"--exclude-language","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Do not generate files for the specified languages.","default":["none"]},"jobs":{"name":"--jobs","shortcut":"-j","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Enable parallel processing using the specified number of jobs.","default":0},"max-execution-time":{"name":"--max-execution-time","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"The maximum expected execution time of deployment static process (in seconds).","default":900},"symlink-locale":{"name":"--symlink-locale","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Create symlinks for the files of those locales, which are passed for deployment, but have no customizations.","default":false},"content-version":{"name":"--content-version","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Custom version of static content can be used if running deployment on multiple nodes to ensure that static content version is identical and caching works properly.","default":null},"refresh-content-version-only":{"name":"--refresh-content-version-only","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Refreshing the version of static content only can be used to refresh static content in browser cache and CDN cache.","default":false},"no-javascript":{"name":"--no-javascript","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy JavaScript files.","default":false},"no-js-bundle":{"name":"--no-js-bundle","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy JavaScript bundle files.","default":false},"no-css":{"name":"--no-css","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy CSS files.","default":false},"no-less":{"name":"--no-less","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy LESS files.","default":false},"no-images":{"name":"--no-images","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy images.","default":false},"no-fonts":{"name":"--no-fonts","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy font files.","default":false},"no-html":{"name":"--no-html","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy HTML files.","default":false},"no-misc":{"name":"--no-misc","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy files of other types (.md, .jbf, .csv, etc.).","default":false},"no-html-minify":{"name":"--no-html-minify","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not minify HTML files.","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:store-config:set","usage":["setup:store-config:set [--base-url BASE-URL] [--language LANGUAGE] [--timezone TIMEZONE] [--currency CURRENCY] [--use-rewrites USE-REWRITES] [--use-secure USE-SECURE] [--base-url-secure BASE-URL-SECURE] [--use-secure-admin USE-SECURE-ADMIN] [--admin-use-security-key ADMIN-USE-SECURITY-KEY] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Installs the store configuration. Deprecated since 2.2.0. Use config:set instead","help":"Installs the store configuration. Deprecated since 2.2.0. Use config:set instead","definition":{"arguments":[],"options":{"base-url":{"name":"--base-url","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"URL the store is supposed to be available at. Deprecated, use config:set with path web\/unsecure\/base_url","default":null},"language":{"name":"--language","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default language code. Deprecated, use config:set with path general\/locale\/code","default":null},"timezone":{"name":"--timezone","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default time zone code. Deprecated, use config:set with path general\/locale\/timezone","default":null},"currency":{"name":"--currency","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default currency code. Deprecated, use config:set with path currency\/options\/base, currency\/options\/default and currency\/options\/allow","default":null},"use-rewrites":{"name":"--use-rewrites","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Use rewrites. Deprecated, use config:set with path web\/seo\/use_rewrites","default":null},"use-secure":{"name":"--use-secure","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Use secure URLs. Enable this option only if SSL is available. Deprecated, use config:set with path web\/secure\/use_in_frontend","default":null},"base-url-secure":{"name":"--base-url-secure","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Base URL for SSL connection. Deprecated, use config:set with path web\/secure\/base_url","default":null},"use-secure-admin":{"name":"--use-secure-admin","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Run admin interface with SSL. Deprecated, use config:set with path web\/secure\/use_in_adminhtml","default":null},"admin-use-security-key":{"name":"--admin-use-security-key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Whether to use a \"security key\" feature in Magento Admin URLs and forms. Deprecated, use config:set with path admin\/security\/use_form_key","default":null},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:uninstall","usage":["setup:uninstall [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Uninstalls the Magento application","help":"Uninstalls the Magento application","definition":{"arguments":[],"options":{"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:upgrade","usage":["setup:upgrade [--keep-generated] [--convert-old-scripts [CONVERT-OLD-SCRIPTS]] [--safe-mode [SAFE-MODE]] [--data-restore [DATA-RESTORE]] [--dry-run [DRY-RUN]] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Upgrades the Magento application, DB data, and schema","help":"Upgrades the Magento application, DB data, and schema","definition":{"arguments":[],"options":{"keep-generated":{"name":"--keep-generated","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Prevents generated files from being deleted. We discourage using this option except when deploying to production. Consult your system integrator or administrator for more information.","default":false},"convert-old-scripts":{"name":"--convert-old-scripts","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Allows to convert old scripts (InstallSchema, UpgradeSchema) to db_schema.xml format","default":false},"safe-mode":{"name":"--safe-mode","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Safe installation of Magento with dumps on destructive operations, like column removal","default":null},"data-restore":{"name":"--data-restore","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Restore removed data from dumps","default":null},"dry-run":{"name":"--dry-run","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Magento Installation will be run in dry-run mode","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"store:list","usage":["store:list"],"description":"Displays the list of stores","help":"Displays the list of stores","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"store:website:list","usage":["store:website:list"],"description":"Displays the list of websites","help":"Displays the list of websites","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"theme:uninstall","usage":["theme:uninstall [--backup-code] [-c|--clear-static-content] [--] ..."],"description":"Uninstalls theme","help":"Uninstalls theme","definition":{"arguments":{"theme":{"name":"theme","is_required":true,"is_array":true,"description":"Path of the theme. Theme path should be specified as full path which is area\/vendor\/name. For example, frontend\/Magento\/blank","default":[]}},"options":{"backup-code":{"name":"--backup-code","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take code backup (excluding temporary files)","default":false},"clear-static-content":{"name":"--clear-static-content","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Clear generated static view files.","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"varnish:vcl:generate","usage":["varnish:vcl:generate [--access-list ACCESS-LIST] [--backend-host BACKEND-HOST] [--backend-port BACKEND-PORT] [--export-version EXPORT-VERSION] [--grace-period GRACE-PERIOD] [--output-file OUTPUT-FILE]"],"description":"Generates Varnish VCL and echos it to the command line","help":"Generates Varnish VCL and echos it to the command line","definition":{"arguments":[],"options":{"access-list":{"name":"--access-list","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":true,"description":"IPs access list that can purge Varnish","default":["localhost"]},"backend-host":{"name":"--backend-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Host of the web backend","default":"localhost"},"backend-port":{"name":"--backend-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Port of the web backend","default":8080},"export-version":{"name":"--export-version","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The version of Varnish file","default":"4"},"grace-period":{"name":"--grace-period","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Grace period in seconds","default":300},"output-file":{"name":"--output-file","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Path to the file to write vcl","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"yotpo:reset","usage":["yotpo:reset [-e|--entity [ENTITY]]"],"description":"Reset Yotpo sync flags &\/or configurations","help":"Reset Yotpo sync flags &\/or configurations","definition":{"arguments":[],"options":{"entity":{"name":"--entity","shortcut":"-e","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Entity type (orders)","default":"orders"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"yotpo:sync","usage":["yotpo:sync [-e|--entity ENTITY] [-l|--limit [LIMIT]]"],"description":"Sync Yotpo manually (reviews module)","help":"Sync Yotpo manually (reviews module)","definition":{"arguments":[],"options":{"entity":{"name":"--entity","shortcut":"-e","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Entity type (allowed options: orders)","default":"orders"},"limit":{"name":"--limit","shortcut":"-l","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Max entity items to sync. WARNING: Setting a high sync limit (or no limit) may result in a high server load (0=no limit).","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"yotpo:update-metadata","usage":["yotpo:update-metadata"],"description":"Manually send platform metadata to Yotpo","help":"Manually send platform metadata to Yotpo","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false}],"namespaces":[{"id":"_global","commands":["help","list"]},{"id":"admin","commands":["admin:user:create","admin:user:unlock"]},{"id":"app","commands":["app:config:dump","app:config:import","app:config:status"]},{"id":"braintree","commands":["braintree:migrate"]},{"id":"cache","commands":["cache:clean","cache:disable","cache:enable","cache:flush","cache:status"]},{"id":"catalog","commands":["catalog:images:resize","catalog:product:attributes:cleanup"]},{"id":"config","commands":["config:sensitive:set","config:set","config:show"]},{"id":"cron","commands":["cron:install","cron:remove","cron:run"]},{"id":"customer","commands":["customer:hash:upgrade"]},{"id":"deploy","commands":["deploy:mode:set","deploy:mode:show"]},{"id":"dev","commands":["dev:di:info","dev:profiler:disable","dev:profiler:enable","dev:query-log:disable","dev:query-log:enable","dev:source-theme:deploy","dev:template-hints:disable","dev:template-hints:enable","dev:template-hints:status","dev:tests:run","dev:urn-catalog:generate","dev:xml:convert"]},{"id":"dotdigital","commands":["dotdigital:connector:automap","dotdigital:connector:enable","dotdigital:migrate","dotdigital:sync"]},{"id":"downloadable","commands":["downloadable:domains:add","downloadable:domains:remove","downloadable:domains:show"]},{"id":"encryption","commands":["encryption:payment-data:update"]},{"id":"i18n","commands":["i18n:collect-phrases","i18n:pack","i18n:uninstall"]},{"id":"indexer","commands":["indexer:info","indexer:reindex","indexer:reset","indexer:set-dimensions-mode","indexer:set-mode","indexer:show-dimensions-mode","indexer:show-mode","indexer:status"]},{"id":"info","commands":["info:adminuri","info:backups:list","info:currency:list","info:dependencies:show-framework","info:dependencies:show-modules","info:dependencies:show-modules-circular","info:language:list","info:timezone:list"]},{"id":"inventory","commands":["inventory:reservation:create-compensations","inventory:reservation:list-inconsistencies"]},{"id":"inventory-geonames","commands":["inventory-geonames:import"]},{"id":"maintenance","commands":["maintenance:allow-ips","maintenance:disable","maintenance:enable","maintenance:status"]},{"id":"media-content","commands":["media-content:sync"]},{"id":"media-gallery","commands":["media-gallery:sync"]},{"id":"module","commands":["module:config:status","module:disable","module:enable","module:status","module:uninstall"]},{"id":"newrelic","commands":["newrelic:create:deploy-marker"]},{"id":"queue","commands":["queue:consumers:list","queue:consumers:start"]},{"id":"sampledata","commands":["sampledata:deploy","sampledata:remove","sampledata:reset"]},{"id":"security","commands":["security:recaptcha:disable-for-user-forgot-password","security:recaptcha:disable-for-user-login","security:tfa:google:set-secret","security:tfa:providers","security:tfa:reset"]},{"id":"setup","commands":["setup:backup","setup:config:set","setup:db-data:upgrade","setup:db-declaration:generate-patch","setup:db-declaration:generate-whitelist","setup:db-schema:upgrade","setup:db:status","setup:di:compile","setup:install","setup:performance:generate-fixtures","setup:rollback","setup:static-content:deploy","setup:store-config:set","setup:uninstall","setup:upgrade"]},{"id":"store","commands":["store:list","store:website:list"]},{"id":"theme","commands":["theme:uninstall"]},{"id":"varnish","commands":["varnish:vcl:generate"]},{"id":"yotpo","commands":["yotpo:reset","yotpo:sync","yotpo:update-metadata"]}]} \ No newline at end of file From faad39b537e4092c33f7d334aaf8f6617d18ab83 Mon Sep 17 00:00:00 2001 From: Dmitry Shevtsov <12731225+dshevtsov@users.noreply.github.com> Date: Thu, 15 Oct 2020 11:28:39 -0500 Subject: [PATCH 011/143] Updated Module Reference Guide data after 2.3.6 release (#8057) Co-authored-by: magedocs --- .../v2_3/mrg/b2b/{B2b.yaml => B2b.yml} | 2 +- ...leQuote.yaml => BundleNegotiableQuote.yml} | 2 +- ...ionList.yaml => BundleRequisitionList.yml} | 2 +- ...edCatalog.yaml => BundleSharedCatalog.yml} | 2 +- ... CheckoutAddressSearchNegotiableQuote.yml} | 2 +- ... => CheckoutAgreementsNegotiableQuote.yml} | 2 +- .../mrg/b2b/{Company.yaml => Company.yml} | 2 +- .../{CompanyCredit.yaml => CompanyCredit.yml} | 2 +- ...CompanyPayment.yaml => CompanyPayment.yml} | 2 +- ...e.yaml => ConfigurableNegotiableQuote.yml} | 2 +- ...t.yaml => ConfigurableRequisitionList.yml} | 2 +- ...log.yaml => ConfigurableSharedCatalog.yml} | 2 +- ...Quote.yaml => GiftCardNegotiableQuote.yml} | 2 +- ...nList.yaml => GiftCardRequisitionList.yml} | 2 +- ...Catalog.yaml => GiftCardSharedCatalog.yml} | 2 +- ...onList.yaml => GroupedRequisitionList.yml} | 2 +- ...dCatalog.yaml => GroupedSharedCatalog.yml} | 2 +- ...gotiableQuote.yaml => NegotiableQuote.yml} | 2 +- ....yaml => NegotiableQuoteSharedCatalog.yml} | 2 +- .../b2b/{QuickOrder.yaml => QuickOrder.yml} | 2 +- ...quisitionList.yaml => RequisitionList.yml} | 2 +- .../{SharedCatalog.yaml => SharedCatalog.yml} | 2 +- ...AdminAnalytics.yaml => AdminAnalytics.yml} | 2 +- ...otification.yaml => AdminNotification.yml} | 2 +- ...t.yaml => AdvancedPricingImportExport.yml} | 2 +- ...AdvancedSearch.yaml => AdvancedSearch.yml} | 2 +- .../v2_3/mrg/ce/{Amqp.yaml => Amqp.yml} | 2 +- .../mrg/ce/{AmqpStore.yaml => AmqpStore.yml} | 2 +- .../mrg/ce/{Analytics.yaml => Analytics.yml} | 2 +- ...ations.yaml => AsynchronousOperations.yml} | 2 +- .../{Authorization.yaml => Authorization.yml} | 2 +- .../{Authorizenet.yaml => Authorizenet.yml} | 2 +- ...Acceptjs.yaml => AuthorizenetAcceptjs.yml} | 2 +- ...Cardinal.yaml => AuthorizenetCardinal.yml} | 2 +- ...etGraphQl.yaml => AuthorizenetGraphQl.yml} | 2 +- .../v2_3/mrg/ce/{Backend.yaml => Backend.yml} | 3 +- .../v2_3/mrg/ce/{Backup.yaml => Backup.yml} | 2 +- .../mrg/ce/{Braintree.yaml => Braintree.yml} | 2 +- ...ntreeGraphQl.yaml => BraintreeGraphQl.yml} | 2 +- .../v2_3/mrg/ce/{Bundle.yaml => Bundle.yml} | 2 +- .../{BundleGraphQl.yaml => BundleGraphQl.yml} | 2 +- ...portExport.yaml => BundleImportExport.yml} | 2 +- ...cheInvalidate.yaml => CacheInvalidate.yml} | 2 +- .../v2_3/mrg/ce/{Captcha.yaml => Captcha.yml} | 2 +- ...inalCommerce.yaml => CardinalCommerce.yml} | 2 +- .../v2_3/mrg/ce/{Catalog.yaml => Catalog.yml} | 2 +- ...logAnalytics.yaml => CatalogAnalytics.yml} | 2 +- ...gCmsGraphQl.yaml => CatalogCmsGraphQl.yml} | 2 +- ...raphQl.yaml => CatalogCustomerGraphQl.yml} | 2 +- ...CatalogGraphQl.yaml => CatalogGraphQl.yml} | 2 +- ...logInventory.yaml => CatalogInventory.yml} | 2 +- ...aphQl.yaml => CatalogInventoryGraphQl.yml} | 2 +- .../ce/{CatalogRule.yaml => CatalogRule.yml} | 2 +- ...rable.yaml => CatalogRuleConfigurable.yml} | 2 +- .../v2_3/mrg/ce/CatalogRuleGraphQl.yml | 10 +++++++ .../{CatalogSearch.yaml => CatalogSearch.yml} | 2 +- ...phQl.yaml => CatalogUrlRewriteGraphQl.yml} | 2 +- .../{CatalogWidget.yaml => CatalogWidget.yml} | 2 +- .../mrg/ce/{Checkout.yaml => Checkout.yml} | 2 +- ...Agreements.yaml => CheckoutAgreements.yml} | 2 +- ...hQl.yaml => CheckoutAgreementsGraphQl.yml} | 2 +- .../v2_3/mrg/ce/{Cms.yaml => Cms.yml} | 2 +- .../ce/{CmsGraphQl.yaml => CmsGraphQl.yml} | 2 +- .../{CmsUrlRewrite.yaml => CmsUrlRewrite.yml} | 2 +- ...eGraphQl.yaml => CmsUrlRewriteGraphQl.yml} | 2 +- .../v2_3/mrg/ce/{Config.yaml => Config.yml} | 2 +- ...leProduct.yaml => ConfigurableProduct.yml} | 2 +- ...Ql.yaml => ConfigurableProductGraphQl.yml} | 2 +- .../v2_3/mrg/ce/ConfigurableProductSales.yaml | 8 ----- .../v2_3/mrg/ce/ConfigurableProductSales.yml | 9 ++++++ .../v2_3/mrg/ce/{Contact.yaml => Contact.yml} | 2 +- .../v2_3/mrg/ce/{Cookie.yaml => Cookie.yml} | 2 +- .../v2_3/mrg/ce/{Cron.yaml => Cron.yml} | 2 +- .../v2_3/mrg/ce/{Csp.yaml => Csp.yml} | 2 +- ...CurrencySymbol.yaml => CurrencySymbol.yml} | 2 +- .../mrg/ce/{Customer.yaml => Customer.yml} | 2 +- ...erAnalytics.yaml => CustomerAnalytics.yml} | 2 +- ...l.yaml => CustomerDownloadableGraphQl.yml} | 2 +- ...stomerGraphQl.yaml => CustomerGraphQl.yml} | 2 +- ...rtExport.yaml => CustomerImportExport.yml} | 2 +- .../v2_3/mrg/ce/{Deploy.yaml => Deploy.yml} | 2 +- .../mrg/ce/{Developer.yaml => Developer.yml} | 2 +- .../v2_3/mrg/ce/{Dhl.yaml => Dhl.yml} | 2 +- .../mrg/ce/{Directory.yaml => Directory.yml} | 2 +- ...ctoryGraphQl.yaml => DirectoryGraphQl.yml} | 2 +- .../{Downloadable.yaml => Downloadable.yml} | 2 +- ...leGraphQl.yaml => DownloadableGraphQl.yml} | 2 +- ...port.yaml => DownloadableImportExport.yml} | 2 +- .../v2_3/mrg/ce/{Eav.yaml => Eav.yml} | 2 +- .../ce/{EavGraphQl.yaml => EavGraphQl.yml} | 2 +- .../{Elasticsearch.yaml => Elasticsearch.yml} | 2 +- ...Elasticsearch6.yaml => Elasticsearch6.yml} | 4 +-- ...Elasticsearch7.yaml => Elasticsearch7.yml} | 2 +- .../v2_3/mrg/ce/{Email.yaml => Email.yml} | 2 +- .../{EncryptionKey.yaml => EncryptionKey.yml} | 2 +- .../v2_3/mrg/ce/{Fedex.yaml => Fedex.yml} | 2 +- .../ce/{GiftMessage.yaml => GiftMessage.yml} | 2 +- .../{GoogleAdwords.yaml => GoogleAdwords.yml} | 2 +- ...ogleAnalytics.yaml => GoogleAnalytics.yml} | 2 +- ...ogleOptimizer.yaml => GoogleOptimizer.yml} | 2 +- .../v2_3/mrg/ce/{GraphQl.yaml => GraphQl.yml} | 2 +- .../{GraphQlCache.yaml => GraphQlCache.yml} | 2 +- ...ntory.yaml => GroupedCatalogInventory.yml} | 2 +- ...GroupedProduct.yaml => GroupedProduct.yml} | 2 +- ...GraphQl.yaml => GroupedProductGraphQl.yml} | 2 +- .../{ImportExport.yaml => ImportExport.yml} | 2 +- .../v2_3/mrg/ce/{Indexer.yaml => Indexer.yml} | 2 +- ...stantPurchase.yaml => InstantPurchase.yml} | 2 +- .../ce/{Integration.yaml => Integration.yml} | 2 +- ...dNavigation.yaml => LayeredNavigation.yml} | 2 +- .../ce/{Marketplace.yaml => Marketplace.yml} | 2 +- .../{MediaGallery.yaml => MediaGallery.yml} | 2 +- ...diaGalleryApi.yaml => MediaGalleryApi.yml} | 2 +- .../{MediaStorage.yaml => MediaStorage.yml} | 2 +- .../{MessageQueue.yaml => MessageQueue.yml} | 2 +- ...oduct.yaml => MsrpConfigurableProduct.yml} | 2 +- ...pedProduct.yaml => MsrpGroupedProduct.yml} | 2 +- .../{Multishipping.yaml => Multishipping.yml} | 2 +- .../v2_3/mrg/ce/{MysqlMq.yaml => MysqlMq.yml} | 2 +- ...icReporting.yaml => NewRelicReporting.yml} | 2 +- .../ce/{Newsletter.yaml => Newsletter.yml} | 2 +- ...flinePayments.yaml => OfflinePayments.yml} | 2 +- ...flineShipping.yaml => OfflineShipping.yml} | 2 +- .../mrg/ce/{PageCache.yaml => PageCache.yml} | 2 +- .../v2_3/mrg/ce/{Payment.yaml => Payment.yml} | 2 +- .../v2_3/mrg/ce/{Paypal.yaml => Paypal.yml} | 2 +- .../{PaypalCaptcha.yaml => PaypalCaptcha.yml} | 2 +- .../{PaypalGraphQl.yaml => PaypalGraphQl.yml} | 2 +- .../ce/{Persistent.yaml => Persistent.yml} | 2 +- .../{ProductAlert.yaml => ProductAlert.yml} | 2 +- .../{ProductVideo.yaml => ProductVideo.yml} | 2 +- .../v2_3/mrg/ce/{Quote.yaml => Quote.yml} | 2 +- ...QuoteAnalytics.yaml => QuoteAnalytics.yml} | 2 +- .../{QuoteGraphQl.yaml => QuoteGraphQl.yml} | 2 +- ...GraphQl.yaml => RelatedProductGraphQl.yml} | 2 +- ...ification.yaml => ReleaseNotification.yml} | 2 +- .../v2_3/mrg/ce/{Reports.yaml => Reports.yml} | 2 +- .../mrg/ce/{RequireJs.yaml => RequireJs.yml} | 2 +- .../v2_3/mrg/ce/{Review.yaml => Review.yml} | 2 +- ...viewAnalytics.yaml => ReviewAnalytics.yml} | 2 +- .../v2_3/mrg/ce/{Robots.yaml => Robots.yml} | 2 +- .../v2_3/mrg/ce/{Rss.yaml => Rss.yml} | 2 +- .../v2_3/mrg/ce/{Rule.yaml => Rule.yml} | 2 +- .../v2_3/mrg/ce/{Sales.yaml => Sales.yml} | 2 +- ...SalesAnalytics.yaml => SalesAnalytics.yml} | 2 +- .../{SalesGraphQl.yaml => SalesGraphQl.yml} | 2 +- ...SalesInventory.yaml => SalesInventory.yml} | 2 +- .../mrg/ce/{SalesRule.yaml => SalesRule.yml} | 2 +- .../{SalesSequence.yaml => SalesSequence.yml} | 2 +- .../ce/{SampleData.yaml => SampleData.yml} | 2 +- .../v2_3/mrg/ce/{Search.yaml => Search.yml} | 2 +- .../mrg/ce/{Security.yaml => Security.yml} | 2 +- .../ce/{SendFriend.yaml => SendFriend.yml} | 2 +- ...iendGraphQl.yaml => SendFriendGraphQl.yml} | 2 +- .../mrg/ce/{Shipping.yaml => Shipping.yml} | 2 +- .../mrg/ce/{Signifyd.yaml => Signifyd.yml} | 2 +- .../v2_3/mrg/ce/{Sitemap.yaml => Sitemap.yml} | 2 +- .../v2_3/mrg/ce/{Store.yaml => Store.yml} | 2 +- .../{StoreGraphQl.yaml => StoreGraphQl.yml} | 2 +- .../v2_3/mrg/ce/{Swagger.yaml => Swagger.yml} | 2 +- .../{SwaggerWebapi.yaml => SwaggerWebapi.yml} | 2 +- ...ebapiAsync.yaml => SwaggerWebapiAsync.yml} | 2 +- .../mrg/ce/{Swatches.yaml => Swatches.yml} | 2 +- ...atchesGraphQl.yaml => SwatchesGraphQl.yml} | 2 +- ...ion.yaml => SwatchesLayeredNavigation.yml} | 2 +- .../v2_3/mrg/ce/{Tax.yaml => Tax.yml} | 2 +- .../ce/{TaxGraphQl.yaml => TaxGraphQl.yml} | 2 +- .../v2_3/mrg/ce/{Theme.yaml => Theme.yml} | 2 +- .../{ThemeGraphQl.yaml => ThemeGraphQl.yml} | 2 +- .../mrg/ce/{Tinymce3.yaml => Tinymce3.yml} | 2 +- .../ce/{Translation.yaml => Translation.yml} | 2 +- .../codebase/v2_3/mrg/ce/{Ui.yaml => Ui.yml} | 2 +- .../v2_3/mrg/ce/{Ups.yaml => Ups.yml} | 2 +- .../ce/{UrlRewrite.yaml => UrlRewrite.yml} | 2 +- ...riteGraphQl.yaml => UrlRewriteGraphQl.yml} | 2 +- .../v2_3/mrg/ce/{User.yaml => User.yml} | 2 +- .../v2_3/mrg/ce/{Usps.yaml => Usps.yml} | 2 +- .../mrg/ce/{Variable.yaml => Variable.yml} | 2 +- .../v2_3/mrg/ce/{Vault.yaml => Vault.yml} | 2 +- .../{VaultGraphQl.yaml => VaultGraphQl.yml} | 2 +- .../v2_3/mrg/ce/{Version.yaml => Version.yml} | 2 +- .../v2_3/mrg/ce/{Webapi.yaml => Webapi.yml} | 2 +- .../ce/{WebapiAsync.yaml => WebapiAsync.yml} | 2 +- ...WebapiSecurity.yaml => WebapiSecurity.yml} | 2 +- .../v2_3/mrg/ce/{Weee.yaml => Weee.yml} | 2 +- .../ce/{WeeeGraphQl.yaml => WeeeGraphQl.yml} | 2 +- .../v2_3/mrg/ce/{Widget.yaml => Widget.yml} | 2 +- .../mrg/ce/{Wishlist.yaml => Wishlist.yml} | 2 +- ...stAnalytics.yaml => WishlistAnalytics.yml} | 2 +- ...shlistGraphQl.yaml => WishlistGraphQl.yml} | 2 +- .../mrg/ee/{AdminGws.yaml => AdminGws.yml} | 2 +- .../mrg/ee/AdminGwsConfigurableProduct.yml | 30 +++++++++++++++++++ .../codebase/v2_3/mrg/ee/AdminGwsStaging.yml | 30 +++++++++++++++++++ ...vancedCatalog.yaml => AdvancedCatalog.yml} | 2 +- ...ncedCheckout.yaml => AdvancedCheckout.yml} | 2 +- .../{AdvancedRule.yaml => AdvancedRule.yml} | 2 +- ...edSalesRule.yaml => AdvancedSalesRule.yml} | 2 +- .../v2_3/mrg/ee/{Banner.yaml => Banner.yml} | 2 +- ...Segment.yaml => BannerCustomerSegment.yml} | 2 +- ...ing.yaml => BundleImportExportStaging.yml} | 2 +- .../{BundleStaging.yaml => BundleStaging.yml} | 2 +- .../{CatalogEvent.yaml => CatalogEvent.yml} | 2 +- ...ng.yaml => CatalogImportExportStaging.yml} | 2 +- ...aging.yaml => CatalogInventoryStaging.yml} | 2 +- ...ermissions.yaml => CatalogPermissions.yml} | 2 +- ...uleStaging.yaml => CatalogRuleStaging.yml} | 2 +- ...CatalogStaging.yaml => CatalogStaging.yml} | 2 +- ...GraphQl.yaml => CatalogStagingGraphQl.yml} | 2 +- ...ging.yaml => CatalogUrlRewriteStaging.yml} | 2 +- ...sSearch.yaml => CheckoutAddressSearch.yml} | 2 +- ... => CheckoutAddressSearchGiftRegistry.yml} | 2 +- ...eckoutStaging.yaml => CheckoutStaging.yml} | 2 +- .../ee/{CmsStaging.yaml => CmsStaging.yml} | 2 +- ...ng.yaml => ConfigurableProductStaging.yml} | 2 +- ...ent.yaml => CustomAttributeManagement.yml} | 2 +- ...stomerBalance.yaml => CustomerBalance.yml} | 2 +- ...raphQl.yaml => CustomerBalanceGraphQl.yml} | 2 +- ...utes.yaml => CustomerCustomAttributes.yml} | 2 +- ...stomerFinance.yaml => CustomerFinance.yml} | 2 +- ...stomerSegment.yaml => CustomerSegment.yml} | 2 +- .../ee/{Cybersource.yaml => Cybersource.yml} | 2 +- ...leStaging.yaml => DownloadableStaging.yml} | 2 +- ...ml => ElasticsearchCatalogPermissions.yml} | 2 +- .../ee/{Enterprise.yaml => Enterprise.yml} | 2 +- .../v2_3/mrg/ee/{Eway.yaml => Eway.yml} | 2 +- .../mrg/ee/{GiftCard.yaml => GiftCard.yml} | 2 +- ...ftCardAccount.yaml => GiftCardAccount.yml} | 2 +- ...raphQl.yaml => GiftCardAccountGraphQl.yml} | 2 +- ...ftCardGraphQl.yaml => GiftCardGraphQl.yml} | 2 +- ...rtExport.yaml => GiftCardImportExport.yml} | 2 +- ...ftCardStaging.yaml => GiftCardStaging.yml} | 2 +- ...ageStaging.yaml => GiftMessageStaging.yml} | 2 +- .../{GiftRegistry.yaml => GiftRegistry.yml} | 2 +- .../{GiftWrapping.yaml => GiftWrapping.yml} | 2 +- ...ngStaging.yaml => GiftWrappingStaging.yml} | 2 +- ...taging.yaml => GoogleOptimizerStaging.yml} | 2 +- ...leTagManager.yaml => GoogleTagManager.yml} | 2 +- ...Staging.yaml => GroupedProductStaging.yml} | 2 +- .../ee/{Invitation.yaml => Invitation.yml} | 2 +- ...ging.yaml => LayeredNavigationStaging.yml} | 2 +- .../v2_3/mrg/ee/{Logging.yaml => Logging.yml} | 2 +- .../ee/{MsrpStaging.yaml => MsrpStaging.yml} | 2 +- ...ipleWishlist.yaml => MultipleWishlist.yml} | 2 +- ...PaymentStaging.yaml => PaymentStaging.yml} | 2 +- ...tentHistory.yaml => PersistentHistory.yml} | 2 +- ...ePermissions.yaml => PricePermissions.yml} | 2 +- ...eoStaging.yaml => ProductVideoStaging.yml} | 2 +- ...missions.yaml => PromotionPermissions.yml} | 2 +- .../mrg/ee/{Reminder.yaml => Reminder.yml} | 2 +- ...nnections.yaml => ResourceConnections.yml} | 2 +- .../{ReviewStaging.yaml => ReviewStaging.yml} | 2 +- .../v2_3/mrg/ee/{Reward.yaml => Reward.yml} | 2 +- .../{RewardGraphQl.yaml => RewardGraphQl.yml} | 2 +- .../{RewardStaging.yaml => RewardStaging.yml} | 2 +- .../v2_3/mrg/ee/{Rma.yaml => Rma.yml} | 2 +- .../ee/{RmaGraphQl.yaml => RmaGraphQl.yml} | 2 +- .../ee/{RmaStaging.yaml => RmaStaging.yml} | 2 +- .../{SalesArchive.yaml => SalesArchive.yml} | 2 +- ...sRuleStaging.yaml => SalesRuleStaging.yml} | 2 +- ...ableCheckout.yaml => ScalableCheckout.yml} | 2 +- ...leInventory.yaml => ScalableInventory.yml} | 2 +- .../ee/{ScalableOms.yaml => ScalableOms.yml} | 2 +- ...tExport.yaml => ScheduledImportExport.yml} | 2 +- .../{SearchStaging.yaml => SearchStaging.yml} | 2 +- .../v2_3/mrg/ee/{Staging.yaml => Staging.yml} | 2 +- ...StagingGraphQl.yaml => StagingGraphQl.yml} | 2 +- .../v2_3/mrg/ee/{Support.yaml => Support.yml} | 2 +- .../ee/{TargetRule.yaml => TargetRule.yml} | 2 +- ...Tinymce3Banner.yaml => Tinymce3Banner.yml} | 2 +- .../ee/{VersionsCms.yaml => VersionsCms.yml} | 2 +- ...Rewrite.yaml => VersionsCmsUrlRewrite.yml} | 2 +- ...rchandiser.yaml => VisualMerchandiser.yml} | 2 +- ...estriction.yaml => WebsiteRestriction.yml} | 2 +- .../ee/{WeeeStaging.yaml => WeeeStaging.yml} | 2 +- .../mrg/ee/{Worldpay.yaml => Worldpay.yml} | 2 +- .../mrg/msi/{Inventory.yaml => Inventory.yml} | 2 +- ...ntoryAdminUi.yaml => InventoryAdminUi.yml} | 2 +- ...out.yaml => InventoryAdvancedCheckout.yml} | 2 +- .../{InventoryApi.yaml => InventoryApi.yml} | 2 +- ...roduct.yaml => InventoryBundleProduct.yml} | 2 +- ...yaml => InventoryBundleProductAdminUi.yml} | 2 +- ...InventoryCache.yaml => InventoryCache.yml} | 2 +- ...ntoryCatalog.yaml => InventoryCatalog.yml} | 2 +- ...minUi.yaml => InventoryCatalogAdminUi.yml} | 2 +- ...atalogApi.yaml => InventoryCatalogApi.yml} | 2 +- ...Search.yaml => InventoryCatalogSearch.yml} | 2 +- ....yaml => InventoryConfigurableProduct.yml} | 2 +- ...> InventoryConfigurableProductAdminUi.yml} | 2 +- ...> InventoryConfigurableProductIndexer.yml} | 2 +- ...ration.yaml => InventoryConfiguration.yml} | 2 +- ...Api.yaml => InventoryConfigurationApi.yml} | 2 +- ...InventoryDistanceBasedSourceSelection.yml} | 2 +- ...ryDistanceBasedSourceSelectionAdminUi.yml} | 2 +- ...entoryDistanceBasedSourceSelectionApi.yml} | 2 +- ...search.yaml => InventoryElasticsearch.yml} | 2 +- ...ortStock.yaml => InventoryExportStock.yml} | 2 +- ...ckApi.yaml => InventoryExportStockApi.yml} | 2 +- ...ntoryGraphQl.yaml => InventoryGraphQl.yml} | 2 +- ...oduct.yaml => InventoryGroupedProduct.yml} | 2 +- ...aml => InventoryGroupedProductAdminUi.yml} | 2 +- ...aml => InventoryGroupedProductIndexer.yml} | 2 +- ...tExport.yaml => InventoryImportExport.yml} | 2 +- ...ntoryIndexer.yaml => InventoryIndexer.yml} | 2 +- ...l => InventoryLowQuantityNotification.yml} | 2 +- ...ventoryLowQuantityNotificationAdminUi.yml} | 2 +- ...> InventoryLowQuantityNotificationApi.yml} | 2 +- ...> InventoryMultiDimensionalIndexerApi.yml} | 2 +- ...ctAlert.yaml => InventoryProductAlert.yml} | 2 +- ...List.yaml => InventoryRequisitionList.yml} | 2 +- ...onCli.yaml => InventoryReservationCli.yml} | 2 +- ...vations.yaml => InventoryReservations.yml} | 2 +- ...sApi.yaml => InventoryReservationsApi.yml} | 2 +- ...InventorySales.yaml => InventorySales.yml} | 2 +- ...AdminUi.yaml => InventorySalesAdminUi.yml} | 2 +- ...orySalesApi.yaml => InventorySalesApi.yml} | 2 +- ...ndUi.yaml => InventorySalesFrontendUi.yml} | 2 +- ...aml => InventorySetupFixtureGenerator.yml} | 2 +- ...oryShipping.yaml => InventoryShipping.yml} | 2 +- ...inUi.yaml => InventoryShippingAdminUi.yml} | 2 +- ...i.yaml => InventorySourceDeductionApi.yml} | 2 +- ...tion.yaml => InventorySourceSelection.yml} | 2 +- ...i.yaml => InventorySourceSelectionApi.yml} | 2 +- src/_data/toc/module-reference-guide-2_3.yml | 17 ++++++++--- 323 files changed, 411 insertions(+), 330 deletions(-) rename src/_data/codebase/v2_3/mrg/b2b/{B2b.yaml => B2b.yml} (99%) rename src/_data/codebase/v2_3/mrg/b2b/{BundleNegotiableQuote.yaml => BundleNegotiableQuote.yml} (99%) rename src/_data/codebase/v2_3/mrg/b2b/{BundleRequisitionList.yaml => BundleRequisitionList.yml} (99%) rename src/_data/codebase/v2_3/mrg/b2b/{BundleSharedCatalog.yaml => BundleSharedCatalog.yml} (99%) rename src/_data/codebase/v2_3/mrg/b2b/{CheckoutAddressSearchNegotiableQuote.yaml => CheckoutAddressSearchNegotiableQuote.yml} (97%) rename src/_data/codebase/v2_3/mrg/b2b/{CheckoutAgreementsNegotiableQuote.yaml => CheckoutAgreementsNegotiableQuote.yml} (96%) rename src/_data/codebase/v2_3/mrg/b2b/{Company.yaml => Company.yml} (99%) rename src/_data/codebase/v2_3/mrg/b2b/{CompanyCredit.yaml => CompanyCredit.yml} (99%) rename src/_data/codebase/v2_3/mrg/b2b/{CompanyPayment.yaml => CompanyPayment.yml} (99%) rename src/_data/codebase/v2_3/mrg/b2b/{ConfigurableNegotiableQuote.yaml => ConfigurableNegotiableQuote.yml} (99%) rename src/_data/codebase/v2_3/mrg/b2b/{ConfigurableRequisitionList.yaml => ConfigurableRequisitionList.yml} (99%) rename src/_data/codebase/v2_3/mrg/b2b/{ConfigurableSharedCatalog.yaml => ConfigurableSharedCatalog.yml} (99%) rename src/_data/codebase/v2_3/mrg/b2b/{GiftCardNegotiableQuote.yaml => GiftCardNegotiableQuote.yml} (98%) rename src/_data/codebase/v2_3/mrg/b2b/{GiftCardRequisitionList.yaml => GiftCardRequisitionList.yml} (98%) rename src/_data/codebase/v2_3/mrg/b2b/{GiftCardSharedCatalog.yaml => GiftCardSharedCatalog.yml} (99%) rename src/_data/codebase/v2_3/mrg/b2b/{GroupedRequisitionList.yaml => GroupedRequisitionList.yml} (99%) rename src/_data/codebase/v2_3/mrg/b2b/{GroupedSharedCatalog.yaml => GroupedSharedCatalog.yml} (99%) rename src/_data/codebase/v2_3/mrg/b2b/{NegotiableQuote.yaml => NegotiableQuote.yml} (99%) rename src/_data/codebase/v2_3/mrg/b2b/{NegotiableQuoteSharedCatalog.yaml => NegotiableQuoteSharedCatalog.yml} (99%) rename src/_data/codebase/v2_3/mrg/b2b/{QuickOrder.yaml => QuickOrder.yml} (99%) rename src/_data/codebase/v2_3/mrg/b2b/{RequisitionList.yaml => RequisitionList.yml} (99%) rename src/_data/codebase/v2_3/mrg/b2b/{SharedCatalog.yaml => SharedCatalog.yml} (99%) rename src/_data/codebase/v2_3/mrg/ce/{AdminAnalytics.yaml => AdminAnalytics.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{AdminNotification.yaml => AdminNotification.yml} (99%) rename src/_data/codebase/v2_3/mrg/ce/{AdvancedPricingImportExport.yaml => AdvancedPricingImportExport.yml} (98%) rename src/_data/codebase/v2_3/mrg/ce/{AdvancedSearch.yaml => AdvancedSearch.yml} (99%) rename src/_data/codebase/v2_3/mrg/ce/{Amqp.yaml => Amqp.yml} (97%) rename src/_data/codebase/v2_3/mrg/ce/{AmqpStore.yaml => AmqpStore.yml} (98%) rename src/_data/codebase/v2_3/mrg/ce/{Analytics.yaml => Analytics.yml} (99%) rename src/_data/codebase/v2_3/mrg/ce/{AsynchronousOperations.yaml => AsynchronousOperations.yml} (99%) rename src/_data/codebase/v2_3/mrg/ce/{Authorization.yaml => Authorization.yml} (98%) rename src/_data/codebase/v2_3/mrg/ce/{Authorizenet.yaml => Authorizenet.yml} (99%) rename src/_data/codebase/v2_3/mrg/ce/{AuthorizenetAcceptjs.yaml => AuthorizenetAcceptjs.yml} (99%) rename src/_data/codebase/v2_3/mrg/ce/{AuthorizenetCardinal.yaml => AuthorizenetCardinal.yml} (99%) rename src/_data/codebase/v2_3/mrg/ce/{AuthorizenetGraphQl.yaml => AuthorizenetGraphQl.yml} (98%) rename src/_data/codebase/v2_3/mrg/ce/{Backend.yaml => Backend.yml} (97%) rename src/_data/codebase/v2_3/mrg/ce/{Backup.yaml => Backup.yml} (99%) rename src/_data/codebase/v2_3/mrg/ce/{Braintree.yaml => Braintree.yml} (99%) rename src/_data/codebase/v2_3/mrg/ce/{BraintreeGraphQl.yaml => BraintreeGraphQl.yml} (98%) rename src/_data/codebase/v2_3/mrg/ce/{Bundle.yaml => Bundle.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{BundleGraphQl.yaml => BundleGraphQl.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{BundleImportExport.yaml => BundleImportExport.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{CacheInvalidate.yaml => CacheInvalidate.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{Captcha.yaml => Captcha.yml} (94%) rename src/_data/codebase/v2_3/mrg/ce/{CardinalCommerce.yaml => CardinalCommerce.yml} (94%) rename src/_data/codebase/v2_3/mrg/ce/{Catalog.yaml => Catalog.yml} (97%) rename src/_data/codebase/v2_3/mrg/ce/{CatalogAnalytics.yaml => CatalogAnalytics.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{CatalogCmsGraphQl.yaml => CatalogCmsGraphQl.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{CatalogCustomerGraphQl.yaml => CatalogCustomerGraphQl.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{CatalogGraphQl.yaml => CatalogGraphQl.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{CatalogInventory.yaml => CatalogInventory.yml} (94%) rename src/_data/codebase/v2_3/mrg/ce/{CatalogInventoryGraphQl.yaml => CatalogInventoryGraphQl.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{CatalogRule.yaml => CatalogRule.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{CatalogRuleConfigurable.yaml => CatalogRuleConfigurable.yml} (96%) create mode 100644 src/_data/codebase/v2_3/mrg/ce/CatalogRuleGraphQl.yml rename src/_data/codebase/v2_3/mrg/ce/{CatalogSearch.yaml => CatalogSearch.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{CatalogUrlRewriteGraphQl.yaml => CatalogUrlRewriteGraphQl.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{CatalogWidget.yaml => CatalogWidget.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{Checkout.yaml => Checkout.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{CheckoutAgreements.yaml => CheckoutAgreements.yml} (97%) rename src/_data/codebase/v2_3/mrg/ce/{CheckoutAgreementsGraphQl.yaml => CheckoutAgreementsGraphQl.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{Cms.yaml => Cms.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{CmsGraphQl.yaml => CmsGraphQl.yml} (94%) rename src/_data/codebase/v2_3/mrg/ce/{CmsUrlRewrite.yaml => CmsUrlRewrite.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{CmsUrlRewriteGraphQl.yaml => CmsUrlRewriteGraphQl.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{Config.yaml => Config.yml} (97%) rename src/_data/codebase/v2_3/mrg/ce/{ConfigurableProduct.yaml => ConfigurableProduct.yml} (97%) rename src/_data/codebase/v2_3/mrg/ce/{ConfigurableProductGraphQl.yaml => ConfigurableProductGraphQl.yml} (95%) delete mode 100644 src/_data/codebase/v2_3/mrg/ce/ConfigurableProductSales.yaml create mode 100644 src/_data/codebase/v2_3/mrg/ce/ConfigurableProductSales.yml rename src/_data/codebase/v2_3/mrg/ce/{Contact.yaml => Contact.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{Cookie.yaml => Cookie.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{Cron.yaml => Cron.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{Csp.yaml => Csp.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{CurrencySymbol.yaml => CurrencySymbol.yml} (98%) rename src/_data/codebase/v2_3/mrg/ce/{Customer.yaml => Customer.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{CustomerAnalytics.yaml => CustomerAnalytics.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{CustomerDownloadableGraphQl.yaml => CustomerDownloadableGraphQl.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{CustomerGraphQl.yaml => CustomerGraphQl.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{CustomerImportExport.yaml => CustomerImportExport.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{Deploy.yaml => Deploy.yml} (98%) rename src/_data/codebase/v2_3/mrg/ce/{Developer.yaml => Developer.yml} (94%) rename src/_data/codebase/v2_3/mrg/ce/{Dhl.yaml => Dhl.yml} (94%) rename src/_data/codebase/v2_3/mrg/ce/{Directory.yaml => Directory.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{DirectoryGraphQl.yaml => DirectoryGraphQl.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{Downloadable.yaml => Downloadable.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{DownloadableGraphQl.yaml => DownloadableGraphQl.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{DownloadableImportExport.yaml => DownloadableImportExport.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{Eav.yaml => Eav.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{EavGraphQl.yaml => EavGraphQl.yml} (94%) rename src/_data/codebase/v2_3/mrg/ce/{Elasticsearch.yaml => Elasticsearch.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{Elasticsearch6.yaml => Elasticsearch6.yml} (82%) rename src/_data/codebase/v2_3/mrg/ce/{Elasticsearch7.yaml => Elasticsearch7.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{Email.yaml => Email.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{EncryptionKey.yaml => EncryptionKey.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{Fedex.yaml => Fedex.yml} (93%) rename src/_data/codebase/v2_3/mrg/ce/{GiftMessage.yaml => GiftMessage.yml} (94%) rename src/_data/codebase/v2_3/mrg/ce/{GoogleAdwords.yaml => GoogleAdwords.yml} (94%) rename src/_data/codebase/v2_3/mrg/ce/{GoogleAnalytics.yaml => GoogleAnalytics.yml} (94%) rename src/_data/codebase/v2_3/mrg/ce/{GoogleOptimizer.yaml => GoogleOptimizer.yml} (98%) rename src/_data/codebase/v2_3/mrg/ce/{GraphQl.yaml => GraphQl.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{GraphQlCache.yaml => GraphQlCache.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{GroupedCatalogInventory.yaml => GroupedCatalogInventory.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{GroupedProduct.yaml => GroupedProduct.yml} (97%) rename src/_data/codebase/v2_3/mrg/ce/{GroupedProductGraphQl.yaml => GroupedProductGraphQl.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{ImportExport.yaml => ImportExport.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{Indexer.yaml => Indexer.yml} (97%) rename src/_data/codebase/v2_3/mrg/ce/{InstantPurchase.yaml => InstantPurchase.yml} (99%) rename src/_data/codebase/v2_3/mrg/ce/{Integration.yaml => Integration.yml} (97%) rename src/_data/codebase/v2_3/mrg/ce/{LayeredNavigation.yaml => LayeredNavigation.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{Marketplace.yaml => Marketplace.yml} (94%) rename src/_data/codebase/v2_3/mrg/ce/{MediaGallery.yaml => MediaGallery.yml} (98%) rename src/_data/codebase/v2_3/mrg/ce/{MediaGalleryApi.yaml => MediaGalleryApi.yml} (98%) rename src/_data/codebase/v2_3/mrg/ce/{MediaStorage.yaml => MediaStorage.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{MessageQueue.yaml => MessageQueue.yml} (94%) rename src/_data/codebase/v2_3/mrg/ce/{MsrpConfigurableProduct.yaml => MsrpConfigurableProduct.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{MsrpGroupedProduct.yaml => MsrpGroupedProduct.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{Multishipping.yaml => Multishipping.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{MysqlMq.yaml => MysqlMq.yml} (93%) rename src/_data/codebase/v2_3/mrg/ce/{NewRelicReporting.yaml => NewRelicReporting.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{Newsletter.yaml => Newsletter.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{OfflinePayments.yaml => OfflinePayments.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{OfflineShipping.yaml => OfflineShipping.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{PageCache.yaml => PageCache.yml} (98%) rename src/_data/codebase/v2_3/mrg/ce/{Payment.yaml => Payment.yml} (97%) rename src/_data/codebase/v2_3/mrg/ce/{Paypal.yaml => Paypal.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{PaypalCaptcha.yaml => PaypalCaptcha.yml} (94%) rename src/_data/codebase/v2_3/mrg/ce/{PaypalGraphQl.yaml => PaypalGraphQl.yml} (94%) rename src/_data/codebase/v2_3/mrg/ce/{Persistent.yaml => Persistent.yml} (97%) rename src/_data/codebase/v2_3/mrg/ce/{ProductAlert.yaml => ProductAlert.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{ProductVideo.yaml => ProductVideo.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{Quote.yaml => Quote.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{QuoteAnalytics.yaml => QuoteAnalytics.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{QuoteGraphQl.yaml => QuoteGraphQl.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{RelatedProductGraphQl.yaml => RelatedProductGraphQl.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{ReleaseNotification.yaml => ReleaseNotification.yml} (99%) rename src/_data/codebase/v2_3/mrg/ce/{Reports.yaml => Reports.yml} (97%) rename src/_data/codebase/v2_3/mrg/ce/{RequireJs.yaml => RequireJs.yml} (97%) rename src/_data/codebase/v2_3/mrg/ce/{Review.yaml => Review.yml} (93%) rename src/_data/codebase/v2_3/mrg/ce/{ReviewAnalytics.yaml => ReviewAnalytics.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{Robots.yaml => Robots.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{Rss.yaml => Rss.yml} (94%) rename src/_data/codebase/v2_3/mrg/ce/{Rule.yaml => Rule.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{Sales.yaml => Sales.yml} (98%) rename src/_data/codebase/v2_3/mrg/ce/{SalesAnalytics.yaml => SalesAnalytics.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{SalesGraphQl.yaml => SalesGraphQl.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{SalesInventory.yaml => SalesInventory.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{SalesRule.yaml => SalesRule.yml} (94%) rename src/_data/codebase/v2_3/mrg/ce/{SalesSequence.yaml => SalesSequence.yml} (98%) rename src/_data/codebase/v2_3/mrg/ce/{SampleData.yaml => SampleData.yml} (99%) rename src/_data/codebase/v2_3/mrg/ce/{Search.yaml => Search.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{Security.yaml => Security.yml} (98%) rename src/_data/codebase/v2_3/mrg/ce/{SendFriend.yaml => SendFriend.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{SendFriendGraphQl.yaml => SendFriendGraphQl.yml} (94%) rename src/_data/codebase/v2_3/mrg/ce/{Shipping.yaml => Shipping.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{Signifyd.yaml => Signifyd.yml} (99%) rename src/_data/codebase/v2_3/mrg/ce/{Sitemap.yaml => Sitemap.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{Store.yaml => Store.yml} (97%) rename src/_data/codebase/v2_3/mrg/ce/{StoreGraphQl.yaml => StoreGraphQl.yml} (94%) rename src/_data/codebase/v2_3/mrg/ce/{Swagger.yaml => Swagger.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{SwaggerWebapi.yaml => SwaggerWebapi.yml} (94%) rename src/_data/codebase/v2_3/mrg/ce/{SwaggerWebapiAsync.yaml => SwaggerWebapiAsync.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{Swatches.yaml => Swatches.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{SwatchesGraphQl.yaml => SwatchesGraphQl.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{SwatchesLayeredNavigation.yaml => SwatchesLayeredNavigation.yml} (98%) rename src/_data/codebase/v2_3/mrg/ce/{Tax.yaml => Tax.yml} (99%) rename src/_data/codebase/v2_3/mrg/ce/{TaxGraphQl.yaml => TaxGraphQl.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{Theme.yaml => Theme.yml} (94%) rename src/_data/codebase/v2_3/mrg/ce/{ThemeGraphQl.yaml => ThemeGraphQl.yml} (94%) rename src/_data/codebase/v2_3/mrg/ce/{Tinymce3.yaml => Tinymce3.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{Translation.yaml => Translation.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{Ui.yaml => Ui.yml} (97%) rename src/_data/codebase/v2_3/mrg/ce/{Ups.yaml => Ups.yml} (94%) rename src/_data/codebase/v2_3/mrg/ce/{UrlRewrite.yaml => UrlRewrite.yml} (94%) rename src/_data/codebase/v2_3/mrg/ce/{UrlRewriteGraphQl.yaml => UrlRewriteGraphQl.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{User.yaml => User.yml} (97%) rename src/_data/codebase/v2_3/mrg/ce/{Usps.yaml => Usps.yml} (94%) rename src/_data/codebase/v2_3/mrg/ce/{Variable.yaml => Variable.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{Vault.yaml => Vault.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{VaultGraphQl.yaml => VaultGraphQl.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{Version.yaml => Version.yml} (94%) rename src/_data/codebase/v2_3/mrg/ce/{Webapi.yaml => Webapi.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{WebapiAsync.yaml => WebapiAsync.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{WebapiSecurity.yaml => WebapiSecurity.yml} (97%) rename src/_data/codebase/v2_3/mrg/ce/{Weee.yaml => Weee.yml} (99%) rename src/_data/codebase/v2_3/mrg/ce/{WeeeGraphQl.yaml => WeeeGraphQl.yml} (95%) rename src/_data/codebase/v2_3/mrg/ce/{Widget.yaml => Widget.yml} (94%) rename src/_data/codebase/v2_3/mrg/ce/{Wishlist.yaml => Wishlist.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{WishlistAnalytics.yaml => WishlistAnalytics.yml} (96%) rename src/_data/codebase/v2_3/mrg/ce/{WishlistGraphQl.yaml => WishlistGraphQl.yml} (94%) rename src/_data/codebase/v2_3/mrg/ee/{AdminGws.yaml => AdminGws.yml} (96%) create mode 100644 src/_data/codebase/v2_3/mrg/ee/AdminGwsConfigurableProduct.yml create mode 100644 src/_data/codebase/v2_3/mrg/ee/AdminGwsStaging.yml rename src/_data/codebase/v2_3/mrg/ee/{AdvancedCatalog.yaml => AdvancedCatalog.yml} (96%) rename src/_data/codebase/v2_3/mrg/ee/{AdvancedCheckout.yaml => AdvancedCheckout.yml} (96%) rename src/_data/codebase/v2_3/mrg/ee/{AdvancedRule.yaml => AdvancedRule.yml} (94%) rename src/_data/codebase/v2_3/mrg/ee/{AdvancedSalesRule.yaml => AdvancedSalesRule.yml} (94%) rename src/_data/codebase/v2_3/mrg/ee/{Banner.yaml => Banner.yml} (95%) rename src/_data/codebase/v2_3/mrg/ee/{BannerCustomerSegment.yaml => BannerCustomerSegment.yml} (95%) rename src/_data/codebase/v2_3/mrg/ee/{BundleImportExportStaging.yaml => BundleImportExportStaging.yml} (98%) rename src/_data/codebase/v2_3/mrg/ee/{BundleStaging.yaml => BundleStaging.yml} (99%) rename src/_data/codebase/v2_3/mrg/ee/{CatalogEvent.yaml => CatalogEvent.yml} (96%) rename src/_data/codebase/v2_3/mrg/ee/{CatalogImportExportStaging.yaml => CatalogImportExportStaging.yml} (99%) rename src/_data/codebase/v2_3/mrg/ee/{CatalogInventoryStaging.yaml => CatalogInventoryStaging.yml} (99%) rename src/_data/codebase/v2_3/mrg/ee/{CatalogPermissions.yaml => CatalogPermissions.yml} (96%) rename src/_data/codebase/v2_3/mrg/ee/{CatalogRuleStaging.yaml => CatalogRuleStaging.yml} (99%) rename src/_data/codebase/v2_3/mrg/ee/{CatalogStaging.yaml => CatalogStaging.yml} (99%) rename src/_data/codebase/v2_3/mrg/ee/{CatalogStagingGraphQl.yaml => CatalogStagingGraphQl.yml} (95%) rename src/_data/codebase/v2_3/mrg/ee/{CatalogUrlRewriteStaging.yaml => CatalogUrlRewriteStaging.yml} (98%) rename src/_data/codebase/v2_3/mrg/ee/{CheckoutAddressSearch.yaml => CheckoutAddressSearch.yml} (97%) rename src/_data/codebase/v2_3/mrg/ee/{CheckoutAddressSearchGiftRegistry.yaml => CheckoutAddressSearchGiftRegistry.yml} (97%) rename src/_data/codebase/v2_3/mrg/ee/{CheckoutStaging.yaml => CheckoutStaging.yml} (99%) rename src/_data/codebase/v2_3/mrg/ee/{CmsStaging.yaml => CmsStaging.yml} (99%) rename src/_data/codebase/v2_3/mrg/ee/{ConfigurableProductStaging.yaml => ConfigurableProductStaging.yml} (99%) rename src/_data/codebase/v2_3/mrg/ee/{CustomAttributeManagement.yaml => CustomAttributeManagement.yml} (98%) rename src/_data/codebase/v2_3/mrg/ee/{CustomerBalance.yaml => CustomerBalance.yml} (96%) rename src/_data/codebase/v2_3/mrg/ee/{CustomerBalanceGraphQl.yaml => CustomerBalanceGraphQl.yml} (96%) rename src/_data/codebase/v2_3/mrg/ee/{CustomerCustomAttributes.yaml => CustomerCustomAttributes.yml} (96%) rename src/_data/codebase/v2_3/mrg/ee/{CustomerFinance.yaml => CustomerFinance.yml} (97%) rename src/_data/codebase/v2_3/mrg/ee/{CustomerSegment.yaml => CustomerSegment.yml} (97%) rename src/_data/codebase/v2_3/mrg/ee/{Cybersource.yaml => Cybersource.yml} (95%) rename src/_data/codebase/v2_3/mrg/ee/{DownloadableStaging.yaml => DownloadableStaging.yml} (99%) rename src/_data/codebase/v2_3/mrg/ee/{ElasticsearchCatalogPermissions.yaml => ElasticsearchCatalogPermissions.yml} (96%) rename src/_data/codebase/v2_3/mrg/ee/{Enterprise.yaml => Enterprise.yml} (96%) rename src/_data/codebase/v2_3/mrg/ee/{Eway.yaml => Eway.yml} (95%) rename src/_data/codebase/v2_3/mrg/ee/{GiftCard.yaml => GiftCard.yml} (97%) rename src/_data/codebase/v2_3/mrg/ee/{GiftCardAccount.yaml => GiftCardAccount.yml} (95%) rename src/_data/codebase/v2_3/mrg/ee/{GiftCardAccountGraphQl.yaml => GiftCardAccountGraphQl.yml} (95%) rename src/_data/codebase/v2_3/mrg/ee/{GiftCardGraphQl.yaml => GiftCardGraphQl.yml} (95%) rename src/_data/codebase/v2_3/mrg/ee/{GiftCardImportExport.yaml => GiftCardImportExport.yml} (96%) rename src/_data/codebase/v2_3/mrg/ee/{GiftCardStaging.yaml => GiftCardStaging.yml} (99%) rename src/_data/codebase/v2_3/mrg/ee/{GiftMessageStaging.yaml => GiftMessageStaging.yml} (98%) rename src/_data/codebase/v2_3/mrg/ee/{GiftRegistry.yaml => GiftRegistry.yml} (98%) rename src/_data/codebase/v2_3/mrg/ee/{GiftWrapping.yaml => GiftWrapping.yml} (96%) rename src/_data/codebase/v2_3/mrg/ee/{GiftWrappingStaging.yaml => GiftWrappingStaging.yml} (98%) rename src/_data/codebase/v2_3/mrg/ee/{GoogleOptimizerStaging.yaml => GoogleOptimizerStaging.yml} (98%) rename src/_data/codebase/v2_3/mrg/ee/{GoogleTagManager.yaml => GoogleTagManager.yml} (94%) rename src/_data/codebase/v2_3/mrg/ee/{GroupedProductStaging.yaml => GroupedProductStaging.yml} (98%) rename src/_data/codebase/v2_3/mrg/ee/{Invitation.yaml => Invitation.yml} (94%) rename src/_data/codebase/v2_3/mrg/ee/{LayeredNavigationStaging.yaml => LayeredNavigationStaging.yml} (99%) rename src/_data/codebase/v2_3/mrg/ee/{Logging.yaml => Logging.yml} (96%) rename src/_data/codebase/v2_3/mrg/ee/{MsrpStaging.yaml => MsrpStaging.yml} (98%) rename src/_data/codebase/v2_3/mrg/ee/{MultipleWishlist.yaml => MultipleWishlist.yml} (96%) rename src/_data/codebase/v2_3/mrg/ee/{PaymentStaging.yaml => PaymentStaging.yml} (99%) rename src/_data/codebase/v2_3/mrg/ee/{PersistentHistory.yaml => PersistentHistory.yml} (96%) rename src/_data/codebase/v2_3/mrg/ee/{PricePermissions.yaml => PricePermissions.yml} (95%) rename src/_data/codebase/v2_3/mrg/ee/{ProductVideoStaging.yaml => ProductVideoStaging.yml} (99%) rename src/_data/codebase/v2_3/mrg/ee/{PromotionPermissions.yaml => PromotionPermissions.yml} (96%) rename src/_data/codebase/v2_3/mrg/ee/{Reminder.yaml => Reminder.yml} (95%) rename src/_data/codebase/v2_3/mrg/ee/{ResourceConnections.yaml => ResourceConnections.yml} (99%) rename src/_data/codebase/v2_3/mrg/ee/{ReviewStaging.yaml => ReviewStaging.yml} (99%) rename src/_data/codebase/v2_3/mrg/ee/{Reward.yaml => Reward.yml} (97%) rename src/_data/codebase/v2_3/mrg/ee/{RewardGraphQl.yaml => RewardGraphQl.yml} (95%) rename src/_data/codebase/v2_3/mrg/ee/{RewardStaging.yaml => RewardStaging.yml} (98%) rename src/_data/codebase/v2_3/mrg/ee/{Rma.yaml => Rma.yml} (93%) rename src/_data/codebase/v2_3/mrg/ee/{RmaGraphQl.yaml => RmaGraphQl.yml} (95%) rename src/_data/codebase/v2_3/mrg/ee/{RmaStaging.yaml => RmaStaging.yml} (98%) rename src/_data/codebase/v2_3/mrg/ee/{SalesArchive.yaml => SalesArchive.yml} (96%) rename src/_data/codebase/v2_3/mrg/ee/{SalesRuleStaging.yaml => SalesRuleStaging.yml} (99%) rename src/_data/codebase/v2_3/mrg/ee/{ScalableCheckout.yaml => ScalableCheckout.yml} (97%) rename src/_data/codebase/v2_3/mrg/ee/{ScalableInventory.yaml => ScalableInventory.yml} (97%) rename src/_data/codebase/v2_3/mrg/ee/{ScalableOms.yaml => ScalableOms.yml} (97%) rename src/_data/codebase/v2_3/mrg/ee/{ScheduledImportExport.yaml => ScheduledImportExport.yml} (97%) rename src/_data/codebase/v2_3/mrg/ee/{SearchStaging.yaml => SearchStaging.yml} (99%) rename src/_data/codebase/v2_3/mrg/ee/{Staging.yaml => Staging.yml} (98%) rename src/_data/codebase/v2_3/mrg/ee/{StagingGraphQl.yaml => StagingGraphQl.yml} (94%) rename src/_data/codebase/v2_3/mrg/ee/{Support.yaml => Support.yml} (95%) rename src/_data/codebase/v2_3/mrg/ee/{TargetRule.yaml => TargetRule.yml} (94%) rename src/_data/codebase/v2_3/mrg/ee/{Tinymce3Banner.yaml => Tinymce3Banner.yml} (97%) rename src/_data/codebase/v2_3/mrg/ee/{VersionsCms.yaml => VersionsCms.yml} (95%) rename src/_data/codebase/v2_3/mrg/ee/{VersionsCmsUrlRewrite.yaml => VersionsCmsUrlRewrite.yml} (96%) rename src/_data/codebase/v2_3/mrg/ee/{VisualMerchandiser.yaml => VisualMerchandiser.yml} (97%) rename src/_data/codebase/v2_3/mrg/ee/{WebsiteRestriction.yaml => WebsiteRestriction.yml} (97%) rename src/_data/codebase/v2_3/mrg/ee/{WeeeStaging.yaml => WeeeStaging.yml} (99%) rename src/_data/codebase/v2_3/mrg/ee/{Worldpay.yaml => Worldpay.yml} (95%) rename src/_data/codebase/v2_3/mrg/msi/{Inventory.yaml => Inventory.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryAdminUi.yaml => InventoryAdminUi.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryAdvancedCheckout.yaml => InventoryAdvancedCheckout.yml} (96%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryApi.yaml => InventoryApi.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryBundleProduct.yaml => InventoryBundleProduct.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryBundleProductAdminUi.yaml => InventoryBundleProductAdminUi.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryCache.yaml => InventoryCache.yml} (97%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryCatalog.yaml => InventoryCatalog.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryCatalogAdminUi.yaml => InventoryCatalogAdminUi.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryCatalogApi.yaml => InventoryCatalogApi.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryCatalogSearch.yaml => InventoryCatalogSearch.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryConfigurableProduct.yaml => InventoryConfigurableProduct.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryConfigurableProductAdminUi.yaml => InventoryConfigurableProductAdminUi.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryConfigurableProductIndexer.yaml => InventoryConfigurableProductIndexer.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryConfiguration.yaml => InventoryConfiguration.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryConfigurationApi.yaml => InventoryConfigurationApi.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryDistanceBasedSourceSelection.yaml => InventoryDistanceBasedSourceSelection.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryDistanceBasedSourceSelectionAdminUi.yaml => InventoryDistanceBasedSourceSelectionAdminUi.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryDistanceBasedSourceSelectionApi.yaml => InventoryDistanceBasedSourceSelectionApi.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryElasticsearch.yaml => InventoryElasticsearch.yml} (97%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryExportStock.yaml => InventoryExportStock.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryExportStockApi.yaml => InventoryExportStockApi.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryGraphQl.yaml => InventoryGraphQl.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryGroupedProduct.yaml => InventoryGroupedProduct.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryGroupedProductAdminUi.yaml => InventoryGroupedProductAdminUi.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryGroupedProductIndexer.yaml => InventoryGroupedProductIndexer.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryImportExport.yaml => InventoryImportExport.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryIndexer.yaml => InventoryIndexer.yml} (97%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryLowQuantityNotification.yaml => InventoryLowQuantityNotification.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryLowQuantityNotificationAdminUi.yaml => InventoryLowQuantityNotificationAdminUi.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryLowQuantityNotificationApi.yaml => InventoryLowQuantityNotificationApi.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryMultiDimensionalIndexerApi.yaml => InventoryMultiDimensionalIndexerApi.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryProductAlert.yaml => InventoryProductAlert.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryRequisitionList.yaml => InventoryRequisitionList.yml} (94%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryReservationCli.yaml => InventoryReservationCli.yml} (97%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryReservations.yaml => InventoryReservations.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryReservationsApi.yaml => InventoryReservationsApi.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventorySales.yaml => InventorySales.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventorySalesAdminUi.yaml => InventorySalesAdminUi.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventorySalesApi.yaml => InventorySalesApi.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventorySalesFrontendUi.yaml => InventorySalesFrontendUi.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventorySetupFixtureGenerator.yaml => InventorySetupFixtureGenerator.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryShipping.yaml => InventoryShipping.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventoryShippingAdminUi.yaml => InventoryShippingAdminUi.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventorySourceDeductionApi.yaml => InventorySourceDeductionApi.yml} (97%) rename src/_data/codebase/v2_3/mrg/msi/{InventorySourceSelection.yaml => InventorySourceSelection.yml} (98%) rename src/_data/codebase/v2_3/mrg/msi/{InventorySourceSelectionApi.yaml => InventorySourceSelectionApi.yml} (98%) diff --git a/src/_data/codebase/v2_3/mrg/b2b/B2b.yaml b/src/_data/codebase/v2_3/mrg/b2b/B2b.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/b2b/B2b.yaml rename to src/_data/codebase/v2_3/mrg/b2b/B2b.yml index fc48d1b784a..649dae64ef8 100644 --- a/src/_data/codebase/v2_3/mrg/b2b/B2b.yaml +++ b/src/_data/codebase/v2_3/mrg/b2b/B2b.yml @@ -1,7 +1,7 @@ --- title: Magento_B2b source_repo: magento2b2b -release: 1.1.5 +release: 1.1.6 github_path: app/code/Magento/B2b/README.md last_modified_at: '2017-02-15 17:02:23 +0300' content: "## Overview\n\nThe Magento_b2b module is the base module for B2B. It must diff --git a/src/_data/codebase/v2_3/mrg/b2b/BundleNegotiableQuote.yaml b/src/_data/codebase/v2_3/mrg/b2b/BundleNegotiableQuote.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/b2b/BundleNegotiableQuote.yaml rename to src/_data/codebase/v2_3/mrg/b2b/BundleNegotiableQuote.yml index ac9c1efbfe7..a5319c4f69e 100644 --- a/src/_data/codebase/v2_3/mrg/b2b/BundleNegotiableQuote.yaml +++ b/src/_data/codebase/v2_3/mrg/b2b/BundleNegotiableQuote.yml @@ -1,7 +1,7 @@ --- title: Magento_BundleNegotiableQuote source_repo: magento2b2b -release: 1.1.5 +release: 1.1.6 github_path: app/code/Magento/BundleNegotiableQuote/README.md last_modified_at: '2017-04-10 10:33:01 +0300' content: "## Overview\n\nThe Magento_BundleNegotiableQuote module enables bundle products diff --git a/src/_data/codebase/v2_3/mrg/b2b/BundleRequisitionList.yaml b/src/_data/codebase/v2_3/mrg/b2b/BundleRequisitionList.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/b2b/BundleRequisitionList.yaml rename to src/_data/codebase/v2_3/mrg/b2b/BundleRequisitionList.yml index 8899b12c4e8..e928f72b980 100644 --- a/src/_data/codebase/v2_3/mrg/b2b/BundleRequisitionList.yaml +++ b/src/_data/codebase/v2_3/mrg/b2b/BundleRequisitionList.yml @@ -1,7 +1,7 @@ --- title: Magento_BundleRequisitionList source_repo: magento2b2b -release: 1.1.5 +release: 1.1.6 github_path: app/code/Magento/BundleRequisitionList/README.md last_modified_at: '2017-04-10 10:33:01 +0300' content: "## Overview\n\nThe Magento_BundleRequisitionList module enables bundle products diff --git a/src/_data/codebase/v2_3/mrg/b2b/BundleSharedCatalog.yaml b/src/_data/codebase/v2_3/mrg/b2b/BundleSharedCatalog.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/b2b/BundleSharedCatalog.yaml rename to src/_data/codebase/v2_3/mrg/b2b/BundleSharedCatalog.yml index 4e54655da68..634f030fb51 100644 --- a/src/_data/codebase/v2_3/mrg/b2b/BundleSharedCatalog.yaml +++ b/src/_data/codebase/v2_3/mrg/b2b/BundleSharedCatalog.yml @@ -1,7 +1,7 @@ --- title: Magento_BundleSharedCatalog source_repo: magento2b2b -release: 1.1.5 +release: 1.1.6 github_path: app/code/Magento/BundleSharedCatalog/README.md last_modified_at: '2017-02-15 17:02:23 +0300' content: "## Overview\n\nThe Magento_BundleSharedCatalog module enables bundle products diff --git a/src/_data/codebase/v2_3/mrg/b2b/CheckoutAddressSearchNegotiableQuote.yaml b/src/_data/codebase/v2_3/mrg/b2b/CheckoutAddressSearchNegotiableQuote.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/b2b/CheckoutAddressSearchNegotiableQuote.yaml rename to src/_data/codebase/v2_3/mrg/b2b/CheckoutAddressSearchNegotiableQuote.yml index 15f23ff814f..50d0c9b3326 100644 --- a/src/_data/codebase/v2_3/mrg/b2b/CheckoutAddressSearchNegotiableQuote.yaml +++ b/src/_data/codebase/v2_3/mrg/b2b/CheckoutAddressSearchNegotiableQuote.yml @@ -1,7 +1,7 @@ --- title: Magento_CheckoutAddressSearchNegotiableQuote source_repo: magento2b2b -release: 1.1.5 +release: 1.1.6 github_path: app/code/Magento/CheckoutAddressSearchNegotiableQuote/README.md last_modified_at: '2019-04-10 17:47:51 -0500' content: | diff --git a/src/_data/codebase/v2_3/mrg/b2b/CheckoutAgreementsNegotiableQuote.yaml b/src/_data/codebase/v2_3/mrg/b2b/CheckoutAgreementsNegotiableQuote.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/b2b/CheckoutAgreementsNegotiableQuote.yaml rename to src/_data/codebase/v2_3/mrg/b2b/CheckoutAgreementsNegotiableQuote.yml index 57953d29e62..88e7f94fdf2 100644 --- a/src/_data/codebase/v2_3/mrg/b2b/CheckoutAgreementsNegotiableQuote.yaml +++ b/src/_data/codebase/v2_3/mrg/b2b/CheckoutAgreementsNegotiableQuote.yml @@ -1,7 +1,7 @@ --- title: Magento_CheckoutAgreementsNegotiableQuote source_repo: magento2b2b -release: 1.1.5 +release: 1.1.6 github_path: app/code/Magento/CheckoutAgreementsNegotiableQuote/README.md last_modified_at: '2019-08-16 15:20:08 -0500' content: | diff --git a/src/_data/codebase/v2_3/mrg/b2b/Company.yaml b/src/_data/codebase/v2_3/mrg/b2b/Company.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/b2b/Company.yaml rename to src/_data/codebase/v2_3/mrg/b2b/Company.yml index f9cf23d1696..5404c6c5d9b 100644 --- a/src/_data/codebase/v2_3/mrg/b2b/Company.yaml +++ b/src/_data/codebase/v2_3/mrg/b2b/Company.yml @@ -1,7 +1,7 @@ --- title: Magento_Company source_repo: magento2b2b -release: 1.1.5 +release: 1.1.6 github_path: app/code/Magento/Company/README.md last_modified_at: '2017-02-15 17:02:23 +0300' content: "## Overview\n\nThe Magento_Company module allows a merchant to create a diff --git a/src/_data/codebase/v2_3/mrg/b2b/CompanyCredit.yaml b/src/_data/codebase/v2_3/mrg/b2b/CompanyCredit.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/b2b/CompanyCredit.yaml rename to src/_data/codebase/v2_3/mrg/b2b/CompanyCredit.yml index bebf278fc96..7eba467e4e3 100644 --- a/src/_data/codebase/v2_3/mrg/b2b/CompanyCredit.yaml +++ b/src/_data/codebase/v2_3/mrg/b2b/CompanyCredit.yml @@ -1,7 +1,7 @@ --- title: Magento_CompanyCredit source_repo: magento2b2b -release: 1.1.5 +release: 1.1.6 github_path: app/code/Magento/CompanyCredit/README.md last_modified_at: '2017-02-15 17:02:23 +0300' content: "## Overview\n\nThe Magento_CompanyCredit module adds the \"Payment on Account\" diff --git a/src/_data/codebase/v2_3/mrg/b2b/CompanyPayment.yaml b/src/_data/codebase/v2_3/mrg/b2b/CompanyPayment.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/b2b/CompanyPayment.yaml rename to src/_data/codebase/v2_3/mrg/b2b/CompanyPayment.yml index 5f0f8ac556d..3f436f4936f 100644 --- a/src/_data/codebase/v2_3/mrg/b2b/CompanyPayment.yaml +++ b/src/_data/codebase/v2_3/mrg/b2b/CompanyPayment.yml @@ -1,7 +1,7 @@ --- title: Magento_CompanyPayment source_repo: magento2b2b -release: 1.1.5 +release: 1.1.6 github_path: app/code/Magento/CompanyPayment/README.md last_modified_at: '2017-02-15 17:02:23 +0300' content: "## Overview\n\nThe Magento_CompanyPayment module allows a merchant to configure diff --git a/src/_data/codebase/v2_3/mrg/b2b/ConfigurableNegotiableQuote.yaml b/src/_data/codebase/v2_3/mrg/b2b/ConfigurableNegotiableQuote.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/b2b/ConfigurableNegotiableQuote.yaml rename to src/_data/codebase/v2_3/mrg/b2b/ConfigurableNegotiableQuote.yml index fbca1683d3a..99c3f36e00a 100644 --- a/src/_data/codebase/v2_3/mrg/b2b/ConfigurableNegotiableQuote.yaml +++ b/src/_data/codebase/v2_3/mrg/b2b/ConfigurableNegotiableQuote.yml @@ -1,7 +1,7 @@ --- title: Magento_ConfigurableNegotiableQuote source_repo: magento2b2b -release: 1.1.5 +release: 1.1.6 github_path: app/code/Magento/ConfigurableNegotiableQuote/README.md last_modified_at: '2017-04-10 10:33:01 +0300' content: "## Overview\n\nThe Magento_ConfigurableNegotiableQuote module enables configurable diff --git a/src/_data/codebase/v2_3/mrg/b2b/ConfigurableRequisitionList.yaml b/src/_data/codebase/v2_3/mrg/b2b/ConfigurableRequisitionList.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/b2b/ConfigurableRequisitionList.yaml rename to src/_data/codebase/v2_3/mrg/b2b/ConfigurableRequisitionList.yml index dd35684a55e..5136016f552 100644 --- a/src/_data/codebase/v2_3/mrg/b2b/ConfigurableRequisitionList.yaml +++ b/src/_data/codebase/v2_3/mrg/b2b/ConfigurableRequisitionList.yml @@ -1,7 +1,7 @@ --- title: Magento_ConfigurableRequisitionList source_repo: magento2b2b -release: 1.1.5 +release: 1.1.6 github_path: app/code/Magento/ConfigurableRequisitionList/README.md last_modified_at: '2017-04-10 10:33:01 +0300' content: "## Overview\n\nThe Magento_ConfigurableRequisitionList module enables configurable diff --git a/src/_data/codebase/v2_3/mrg/b2b/ConfigurableSharedCatalog.yaml b/src/_data/codebase/v2_3/mrg/b2b/ConfigurableSharedCatalog.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/b2b/ConfigurableSharedCatalog.yaml rename to src/_data/codebase/v2_3/mrg/b2b/ConfigurableSharedCatalog.yml index aa08267e53a..fbe4fc9ff14 100644 --- a/src/_data/codebase/v2_3/mrg/b2b/ConfigurableSharedCatalog.yaml +++ b/src/_data/codebase/v2_3/mrg/b2b/ConfigurableSharedCatalog.yml @@ -1,7 +1,7 @@ --- title: Magento_ConfigurableSharedCatalog source_repo: magento2b2b -release: 1.1.5 +release: 1.1.6 github_path: app/code/Magento/ConfigurableSharedCatalog/README.md last_modified_at: '2017-02-15 17:02:23 +0300' content: "## Overview\n\nThe Magento_ConfigurableSharedCatalog module enables configurable diff --git a/src/_data/codebase/v2_3/mrg/b2b/GiftCardNegotiableQuote.yaml b/src/_data/codebase/v2_3/mrg/b2b/GiftCardNegotiableQuote.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/b2b/GiftCardNegotiableQuote.yaml rename to src/_data/codebase/v2_3/mrg/b2b/GiftCardNegotiableQuote.yml index b23f74e09a6..fd87c133859 100644 --- a/src/_data/codebase/v2_3/mrg/b2b/GiftCardNegotiableQuote.yaml +++ b/src/_data/codebase/v2_3/mrg/b2b/GiftCardNegotiableQuote.yml @@ -1,7 +1,7 @@ --- title: Magento_GiftCardNegotiableQuote source_repo: magento2b2b -release: 1.1.5 +release: 1.1.6 github_path: app/code/Magento/GiftCardNegotiableQuote/README.md last_modified_at: '2017-04-10 10:33:01 +0300' content: | diff --git a/src/_data/codebase/v2_3/mrg/b2b/GiftCardRequisitionList.yaml b/src/_data/codebase/v2_3/mrg/b2b/GiftCardRequisitionList.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/b2b/GiftCardRequisitionList.yaml rename to src/_data/codebase/v2_3/mrg/b2b/GiftCardRequisitionList.yml index efdba4c84ef..a870e378d56 100644 --- a/src/_data/codebase/v2_3/mrg/b2b/GiftCardRequisitionList.yaml +++ b/src/_data/codebase/v2_3/mrg/b2b/GiftCardRequisitionList.yml @@ -1,7 +1,7 @@ --- title: Magento_GiftCardRequisitionList source_repo: magento2b2b -release: 1.1.5 +release: 1.1.6 github_path: app/code/Magento/GiftCardRequisitionList/README.md last_modified_at: '2017-04-10 10:33:01 +0300' content: "## Overview\n\nThe Magento_GiftCardRequisitionList module enables gift cards diff --git a/src/_data/codebase/v2_3/mrg/b2b/GiftCardSharedCatalog.yaml b/src/_data/codebase/v2_3/mrg/b2b/GiftCardSharedCatalog.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/b2b/GiftCardSharedCatalog.yaml rename to src/_data/codebase/v2_3/mrg/b2b/GiftCardSharedCatalog.yml index d540c117d80..2a16ab803d6 100644 --- a/src/_data/codebase/v2_3/mrg/b2b/GiftCardSharedCatalog.yaml +++ b/src/_data/codebase/v2_3/mrg/b2b/GiftCardSharedCatalog.yml @@ -1,7 +1,7 @@ --- title: Magento_GiftCardSharedCatalog source_repo: magento2b2b -release: 1.1.5 +release: 1.1.6 github_path: app/code/Magento/GiftCardSharedCatalog/README.md last_modified_at: '2017-02-15 17:02:23 +0300' content: "## Overview\n\nThe Magento_GiftCardSharedCatalog module enables gift cards diff --git a/src/_data/codebase/v2_3/mrg/b2b/GroupedRequisitionList.yaml b/src/_data/codebase/v2_3/mrg/b2b/GroupedRequisitionList.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/b2b/GroupedRequisitionList.yaml rename to src/_data/codebase/v2_3/mrg/b2b/GroupedRequisitionList.yml index eda79b316ec..d39d82de343 100644 --- a/src/_data/codebase/v2_3/mrg/b2b/GroupedRequisitionList.yaml +++ b/src/_data/codebase/v2_3/mrg/b2b/GroupedRequisitionList.yml @@ -1,7 +1,7 @@ --- title: Magento_GroupedRequisitionList source_repo: magento2b2b -release: 1.1.5 +release: 1.1.6 github_path: app/code/Magento/GroupedRequisitionList/README.md last_modified_at: '2017-04-10 10:33:01 +0300' content: "## Overview\n\nThe Magento_GroupedRequisitionList module enables grouped diff --git a/src/_data/codebase/v2_3/mrg/b2b/GroupedSharedCatalog.yaml b/src/_data/codebase/v2_3/mrg/b2b/GroupedSharedCatalog.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/b2b/GroupedSharedCatalog.yaml rename to src/_data/codebase/v2_3/mrg/b2b/GroupedSharedCatalog.yml index 34cbd667b38..958e45b1990 100644 --- a/src/_data/codebase/v2_3/mrg/b2b/GroupedSharedCatalog.yaml +++ b/src/_data/codebase/v2_3/mrg/b2b/GroupedSharedCatalog.yml @@ -1,7 +1,7 @@ --- title: Magento_GroupedSharedCatalog source_repo: magento2b2b -release: 1.1.5 +release: 1.1.6 github_path: app/code/Magento/GroupedSharedCatalog/README.md last_modified_at: '2017-02-15 17:02:23 +0300' content: "## Overview\n\nThe Magento_GroupedSharedCatalog module enables grouped products diff --git a/src/_data/codebase/v2_3/mrg/b2b/NegotiableQuote.yaml b/src/_data/codebase/v2_3/mrg/b2b/NegotiableQuote.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/b2b/NegotiableQuote.yaml rename to src/_data/codebase/v2_3/mrg/b2b/NegotiableQuote.yml index e995fcd6fbc..d1747c6be3c 100644 --- a/src/_data/codebase/v2_3/mrg/b2b/NegotiableQuote.yaml +++ b/src/_data/codebase/v2_3/mrg/b2b/NegotiableQuote.yml @@ -1,7 +1,7 @@ --- title: Magento_NegotiableQuote source_repo: magento2b2b -release: 1.1.5 +release: 1.1.6 github_path: app/code/Magento/NegotiableQuote/README.md last_modified_at: '2017-02-15 17:02:23 +0300' content: "## Overview\n\nThe Magento_NegotiableQuote module allows a customer and diff --git a/src/_data/codebase/v2_3/mrg/b2b/NegotiableQuoteSharedCatalog.yaml b/src/_data/codebase/v2_3/mrg/b2b/NegotiableQuoteSharedCatalog.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/b2b/NegotiableQuoteSharedCatalog.yaml rename to src/_data/codebase/v2_3/mrg/b2b/NegotiableQuoteSharedCatalog.yml index 2c1e7fbf2ff..38543e5ba71 100644 --- a/src/_data/codebase/v2_3/mrg/b2b/NegotiableQuoteSharedCatalog.yaml +++ b/src/_data/codebase/v2_3/mrg/b2b/NegotiableQuoteSharedCatalog.yml @@ -1,7 +1,7 @@ --- title: Magento_NegotiableQuoteSharedCatalog source_repo: magento2b2b -release: 1.1.5 +release: 1.1.6 github_path: app/code/Magento/NegotiableQuoteSharedCatalog/README.md last_modified_at: '2017-02-17 11:38:50 +0300' content: "## Overview\n\nThe Magento_NegotiableQuoteSharedCatalog module enables the diff --git a/src/_data/codebase/v2_3/mrg/b2b/QuickOrder.yaml b/src/_data/codebase/v2_3/mrg/b2b/QuickOrder.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/b2b/QuickOrder.yaml rename to src/_data/codebase/v2_3/mrg/b2b/QuickOrder.yml index f09503003d3..4721ab80916 100644 --- a/src/_data/codebase/v2_3/mrg/b2b/QuickOrder.yaml +++ b/src/_data/codebase/v2_3/mrg/b2b/QuickOrder.yml @@ -1,7 +1,7 @@ --- title: Magento_QuickOrder source_repo: magento2b2b -release: 1.1.5 +release: 1.1.6 github_path: app/code/Magento/QuickOrder/README.md last_modified_at: '2017-02-15 17:02:23 +0300' content: "## Overview\n\nThe Magento_QuickOrder module allows customers to improve diff --git a/src/_data/codebase/v2_3/mrg/b2b/RequisitionList.yaml b/src/_data/codebase/v2_3/mrg/b2b/RequisitionList.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/b2b/RequisitionList.yaml rename to src/_data/codebase/v2_3/mrg/b2b/RequisitionList.yml index fe4d2fd279a..1f43b1dbd72 100644 --- a/src/_data/codebase/v2_3/mrg/b2b/RequisitionList.yaml +++ b/src/_data/codebase/v2_3/mrg/b2b/RequisitionList.yml @@ -1,7 +1,7 @@ --- title: Magento_RequisitionList source_repo: magento2b2b -release: 1.1.5 +release: 1.1.6 github_path: app/code/Magento/RequisitionList/README.md last_modified_at: '2017-02-15 17:02:23 +0300' content: "## Overview\n\nThe Magento_RequisitionList module allows a customer to create diff --git a/src/_data/codebase/v2_3/mrg/b2b/SharedCatalog.yaml b/src/_data/codebase/v2_3/mrg/b2b/SharedCatalog.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/b2b/SharedCatalog.yaml rename to src/_data/codebase/v2_3/mrg/b2b/SharedCatalog.yml index 6c70bc1dd29..92951b1980d 100644 --- a/src/_data/codebase/v2_3/mrg/b2b/SharedCatalog.yaml +++ b/src/_data/codebase/v2_3/mrg/b2b/SharedCatalog.yml @@ -1,7 +1,7 @@ --- title: Magento_SharedCatalog source_repo: magento2b2b -release: 1.1.5 +release: 1.1.6 github_path: app/code/Magento/SharedCatalog/README.md last_modified_at: '2019-09-24 19:57:14 -0500' content: "## Overview\n\nThe Magento_SharedCatalog modules defines the visibility diff --git a/src/_data/codebase/v2_3/mrg/ce/AdminAnalytics.yaml b/src/_data/codebase/v2_3/mrg/ce/AdminAnalytics.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/AdminAnalytics.yaml rename to src/_data/codebase/v2_3/mrg/ce/AdminAnalytics.yml index f7a4a1066b8..a47d0a10a36 100644 --- a/src/_data/codebase/v2_3/mrg/ce/AdminAnalytics.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/AdminAnalytics.yml @@ -1,7 +1,7 @@ --- title: Magento_AdminAnalytics source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/AdminAnalytics/README.md last_modified_at: '2019-08-08 11:00:49 -0500' content: The Magento\AdminAnalytics module gathers information about the features diff --git a/src/_data/codebase/v2_3/mrg/ce/AdminNotification.yaml b/src/_data/codebase/v2_3/mrg/ce/AdminNotification.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ce/AdminNotification.yaml rename to src/_data/codebase/v2_3/mrg/ce/AdminNotification.yml index 3b0a450fd98..97aa9be61ad 100644 --- a/src/_data/codebase/v2_3/mrg/ce/AdminNotification.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/AdminNotification.yml @@ -1,7 +1,7 @@ --- title: Magento_AdminNotification source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/AdminNotification/README.md last_modified_at: '2019-08-19 00:16:18 +0100' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/AdvancedPricingImportExport.yaml b/src/_data/codebase/v2_3/mrg/ce/AdvancedPricingImportExport.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/ce/AdvancedPricingImportExport.yaml rename to src/_data/codebase/v2_3/mrg/ce/AdvancedPricingImportExport.yml index 99060b9c2b5..67b48c2a761 100644 --- a/src/_data/codebase/v2_3/mrg/ce/AdvancedPricingImportExport.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/AdvancedPricingImportExport.yml @@ -1,7 +1,7 @@ --- title: Magento_AdvancedPricingImportExport source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/AdvancedPricingImportExport/README.md last_modified_at: '2019-08-18 23:54:55 +0100' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ce/AdvancedSearch.yaml b/src/_data/codebase/v2_3/mrg/ce/AdvancedSearch.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ce/AdvancedSearch.yaml rename to src/_data/codebase/v2_3/mrg/ce/AdvancedSearch.yml index d6f4fe8569b..c3ffa6cfad8 100644 --- a/src/_data/codebase/v2_3/mrg/ce/AdvancedSearch.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/AdvancedSearch.yml @@ -1,7 +1,7 @@ --- title: Magento_AdvancedSearch source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/AdvancedSearch/README.md last_modified_at: '2019-08-20 00:08:51 +0100' content: "The Magento_AdvancedSearch module introduces advanced search functionality diff --git a/src/_data/codebase/v2_3/mrg/ce/Amqp.yaml b/src/_data/codebase/v2_3/mrg/ce/Amqp.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/ce/Amqp.yaml rename to src/_data/codebase/v2_3/mrg/ce/Amqp.yml index cb329072be0..6d008eb0526 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Amqp.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Amqp.yml @@ -1,7 +1,7 @@ --- title: Magento_Amqp source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Amqp/README.md last_modified_at: '2019-08-19 00:22:19 +0100' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ce/AmqpStore.yaml b/src/_data/codebase/v2_3/mrg/ce/AmqpStore.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/ce/AmqpStore.yaml rename to src/_data/codebase/v2_3/mrg/ce/AmqpStore.yml index febfe14d5ce..b78c62e5486 100644 --- a/src/_data/codebase/v2_3/mrg/ce/AmqpStore.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/AmqpStore.yml @@ -1,7 +1,7 @@ --- title: Magento_AmqpStore source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/AmqpStore/README.md last_modified_at: '2019-08-27 01:59:34 +0100' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/Analytics.yaml b/src/_data/codebase/v2_3/mrg/ce/Analytics.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ce/Analytics.yaml rename to src/_data/codebase/v2_3/mrg/ce/Analytics.yml index 3daa101ba4a..bd243cae936 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Analytics.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Analytics.yml @@ -1,7 +1,7 @@ --- title: Magento_Analytics source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Analytics/README.md last_modified_at: '2019-09-15 22:49:37 +0100' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/AsynchronousOperations.yaml b/src/_data/codebase/v2_3/mrg/ce/AsynchronousOperations.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ce/AsynchronousOperations.yaml rename to src/_data/codebase/v2_3/mrg/ce/AsynchronousOperations.yml index 65e7eb09e58..121031b48e6 100644 --- a/src/_data/codebase/v2_3/mrg/ce/AsynchronousOperations.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/AsynchronousOperations.yml @@ -1,7 +1,7 @@ --- title: Magento_AsynchronousOperations source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/AsynchronousOperations/README.md last_modified_at: '2019-08-27 01:56:24 +0100' content: "This component is designed to provide a response for a client that launched diff --git a/src/_data/codebase/v2_3/mrg/ce/Authorization.yaml b/src/_data/codebase/v2_3/mrg/ce/Authorization.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/ce/Authorization.yaml rename to src/_data/codebase/v2_3/mrg/ce/Authorization.yml index f96dbd34f37..a278961f73c 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Authorization.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Authorization.yml @@ -1,7 +1,7 @@ --- title: Magento_Authorization source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Authorization/README.md last_modified_at: '2019-08-25 07:43:56 +0100' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/Authorizenet.yaml b/src/_data/codebase/v2_3/mrg/ce/Authorizenet.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ce/Authorizenet.yaml rename to src/_data/codebase/v2_3/mrg/ce/Authorizenet.yml index 0842f9210da..fe34a286e77 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Authorizenet.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Authorizenet.yml @@ -1,7 +1,7 @@ --- title: Magento_Authorizenet source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Authorizenet/README.md last_modified_at: '2019-08-28 14:50:53 +0100' content: "The Magento_Authorizenet module implements the integration with the Authorize.Net diff --git a/src/_data/codebase/v2_3/mrg/ce/AuthorizenetAcceptjs.yaml b/src/_data/codebase/v2_3/mrg/ce/AuthorizenetAcceptjs.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ce/AuthorizenetAcceptjs.yaml rename to src/_data/codebase/v2_3/mrg/ce/AuthorizenetAcceptjs.yml index 18cda5bc258..59677ccbb16 100644 --- a/src/_data/codebase/v2_3/mrg/ce/AuthorizenetAcceptjs.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/AuthorizenetAcceptjs.yml @@ -1,7 +1,7 @@ --- title: Magento_AuthorizenetAcceptjs source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/AuthorizenetAcceptjs/README.md last_modified_at: '2019-08-28 00:26:17 +0100' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/AuthorizenetCardinal.yaml b/src/_data/codebase/v2_3/mrg/ce/AuthorizenetCardinal.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ce/AuthorizenetCardinal.yaml rename to src/_data/codebase/v2_3/mrg/ce/AuthorizenetCardinal.yml index 439b14eae19..c5d3f09a721 100644 --- a/src/_data/codebase/v2_3/mrg/ce/AuthorizenetCardinal.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/AuthorizenetCardinal.yml @@ -1,7 +1,7 @@ --- title: Magento_AuthorizenetCardinal source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/AuthorizenetCardinal/README.md last_modified_at: '2019-08-28 14:16:34 +0100' content: "Use the Magento_AuthorizenetCardinal module to enable 3D Secure 2.0 support diff --git a/src/_data/codebase/v2_3/mrg/ce/AuthorizenetGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ce/AuthorizenetGraphQl.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/ce/AuthorizenetGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ce/AuthorizenetGraphQl.yml index 2ac8ecf41b7..0c6642df0f1 100644 --- a/src/_data/codebase/v2_3/mrg/ce/AuthorizenetGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/AuthorizenetGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_AuthorizenetGraphQl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/AuthorizenetGraphQl/README.md last_modified_at: '2019-08-28 00:38:47 +0100' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/Backend.yaml b/src/_data/codebase/v2_3/mrg/ce/Backend.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/ce/Backend.yaml rename to src/_data/codebase/v2_3/mrg/ce/Backend.yml index 5cb858f498d..ec5c3147bba 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Backend.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Backend.yml @@ -1,10 +1,11 @@ --- title: Magento_Backend source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Backend/README.md last_modified_at: '2019-09-15 23:59:05 +0100' content: | + The Magento_Backend module contains common infrastructure and assets for other modules to be defined and used in their administration user interface (UI). The Magento_Backend module does not contain anything specific to other modules. Among many things it handles the logic of authenticating and authorizing users. diff --git a/src/_data/codebase/v2_3/mrg/ce/Backup.yaml b/src/_data/codebase/v2_3/mrg/ce/Backup.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ce/Backup.yaml rename to src/_data/codebase/v2_3/mrg/ce/Backup.yml index 1abd9bef11e..4cd0cc43bc5 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Backup.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Backup.yml @@ -1,7 +1,7 @@ --- title: Magento_Backup source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Backup/README.md last_modified_at: '2019-09-16 12:24:25 -0300' content: "The Magento_Backup module allows administrators to perform backups and rollbacks. diff --git a/src/_data/codebase/v2_3/mrg/ce/Braintree.yaml b/src/_data/codebase/v2_3/mrg/ce/Braintree.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ce/Braintree.yaml rename to src/_data/codebase/v2_3/mrg/ce/Braintree.yml index 2ec095f18bf..4ce7620f63b 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Braintree.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Braintree.yml @@ -1,7 +1,7 @@ --- title: Magento_Braintree source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Braintree/README.md last_modified_at: '2019-09-23 14:26:40 -0500' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/BraintreeGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ce/BraintreeGraphQl.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/ce/BraintreeGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ce/BraintreeGraphQl.yml index c8217e614f2..76764c0eb4a 100644 --- a/src/_data/codebase/v2_3/mrg/ce/BraintreeGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/BraintreeGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_BraintreeGraphQl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/BraintreeGraphQl/README.md last_modified_at: '2019-09-30 15:26:35 +0100' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/Bundle.yaml b/src/_data/codebase/v2_3/mrg/ce/Bundle.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/Bundle.yaml rename to src/_data/codebase/v2_3/mrg/ce/Bundle.yml index be0184b8254..d66ce24ea52 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Bundle.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Bundle.yml @@ -1,7 +1,7 @@ --- title: Magento_Bundle source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Bundle/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/BundleGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ce/BundleGraphQl.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/BundleGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ce/BundleGraphQl.yml index a57b7cf1504..582ace49690 100644 --- a/src/_data/codebase/v2_3/mrg/ce/BundleGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/BundleGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_BundleGraphQl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/BundleGraphQl/README.md last_modified_at: '2018-01-24 11:57:46 -0600' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/BundleImportExport.yaml b/src/_data/codebase/v2_3/mrg/ce/BundleImportExport.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/BundleImportExport.yaml rename to src/_data/codebase/v2_3/mrg/ce/BundleImportExport.yml index 41f1b8d493e..664179941e4 100644 --- a/src/_data/codebase/v2_3/mrg/ce/BundleImportExport.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/BundleImportExport.yml @@ -1,7 +1,7 @@ --- title: Magento_BundleImportExport source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/BundleImportExport/README.md last_modified_at: '2015-05-28 02:24:13 +0300' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/CacheInvalidate.yaml b/src/_data/codebase/v2_3/mrg/ce/CacheInvalidate.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/CacheInvalidate.yaml rename to src/_data/codebase/v2_3/mrg/ce/CacheInvalidate.yml index 9cfff575ed3..e709c287f31 100644 --- a/src/_data/codebase/v2_3/mrg/ce/CacheInvalidate.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/CacheInvalidate.yml @@ -1,7 +1,7 @@ --- title: Magento_CacheInvalidate source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CacheInvalidate/README.md last_modified_at: '2015-04-13 17:31:45 -0500' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ce/Captcha.yaml b/src/_data/codebase/v2_3/mrg/ce/Captcha.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ce/Captcha.yaml rename to src/_data/codebase/v2_3/mrg/ce/Captcha.yml index b8dd09fed47..23fe33d506e 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Captcha.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Captcha.yml @@ -1,7 +1,7 @@ --- title: Magento_Captcha source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Captcha/README.md last_modified_at: '2014-07-11 11:30:21 -0700' content: The Captcha module allows applying Turing test in the process of user authentication diff --git a/src/_data/codebase/v2_3/mrg/ce/CardinalCommerce.yaml b/src/_data/codebase/v2_3/mrg/ce/CardinalCommerce.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ce/CardinalCommerce.yaml rename to src/_data/codebase/v2_3/mrg/ce/CardinalCommerce.yml index 0ea189010c1..3df49f143f1 100644 --- a/src/_data/codebase/v2_3/mrg/ce/CardinalCommerce.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/CardinalCommerce.yml @@ -1,7 +1,7 @@ --- title: Magento_CardinalCommerce source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CardinalCommerce/README.md last_modified_at: '2019-06-11 13:12:54 -0500' content: The CardinalCommerce module provides a possibility to enable 3-D Secure 2.0 diff --git a/src/_data/codebase/v2_3/mrg/ce/Catalog.yaml b/src/_data/codebase/v2_3/mrg/ce/Catalog.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/ce/Catalog.yaml rename to src/_data/codebase/v2_3/mrg/ce/Catalog.yml index cfd592e376a..5c6a0a91793 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Catalog.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Catalog.yml @@ -1,7 +1,7 @@ --- title: Magento_Catalog source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Catalog/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/CatalogAnalytics.yaml b/src/_data/codebase/v2_3/mrg/ce/CatalogAnalytics.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/CatalogAnalytics.yaml rename to src/_data/codebase/v2_3/mrg/ce/CatalogAnalytics.yml index 7d7ba5015c2..f8d15eced3f 100644 --- a/src/_data/codebase/v2_3/mrg/ce/CatalogAnalytics.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/CatalogAnalytics.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogAnalytics source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CatalogAnalytics/README.md last_modified_at: '2019-08-06 14:40:28 -0500' content: 'The Magento_CatalogAnalytics module configures data definitions for a data diff --git a/src/_data/codebase/v2_3/mrg/ce/CatalogCmsGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ce/CatalogCmsGraphQl.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/CatalogCmsGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ce/CatalogCmsGraphQl.yml index 4bad9d0894b..95b5d650f8a 100644 --- a/src/_data/codebase/v2_3/mrg/ce/CatalogCmsGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/CatalogCmsGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogCmsGraphQl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CatalogCmsGraphQl/README.md last_modified_at: '2019-10-11 12:20:01 -0500' content: "**CatalogCmsGraphQl** provides type and resolver information for GraphQL diff --git a/src/_data/codebase/v2_3/mrg/ce/CatalogCustomerGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ce/CatalogCustomerGraphQl.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/CatalogCustomerGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ce/CatalogCustomerGraphQl.yml index fdf85bf11f0..134a33e4879 100644 --- a/src/_data/codebase/v2_3/mrg/ce/CatalogCustomerGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/CatalogCustomerGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogCustomerGraphQl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CatalogCustomerGraphQl/README.md last_modified_at: '2019-09-19 13:05:37 -0500' content: "**CatalogCustomerGraphQl** provides type and resolver information for GraphQL diff --git a/src/_data/codebase/v2_3/mrg/ce/CatalogGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ce/CatalogGraphQl.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/CatalogGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ce/CatalogGraphQl.yml index 361299f5dad..9163f23ad28 100644 --- a/src/_data/codebase/v2_3/mrg/ce/CatalogGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/CatalogGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogGraphQl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CatalogGraphQl/README.md last_modified_at: '2018-01-16 13:17:37 -0600' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/CatalogInventory.yaml b/src/_data/codebase/v2_3/mrg/ce/CatalogInventory.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ce/CatalogInventory.yaml rename to src/_data/codebase/v2_3/mrg/ce/CatalogInventory.yml index 611c5e96162..e9506ea2fc9 100644 --- a/src/_data/codebase/v2_3/mrg/ce/CatalogInventory.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/CatalogInventory.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogInventory source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CatalogInventory/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: 'Magento_CatalogInventory module allows retrieve and update stock attributes, diff --git a/src/_data/codebase/v2_3/mrg/ce/CatalogInventoryGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ce/CatalogInventoryGraphQl.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/CatalogInventoryGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ce/CatalogInventoryGraphQl.yml index e73e0dc8f60..61c07917e31 100644 --- a/src/_data/codebase/v2_3/mrg/ce/CatalogInventoryGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/CatalogInventoryGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogInventoryGraphQl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CatalogInventoryGraphQl/README.md last_modified_at: '2018-07-18 16:40:53 +0200' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/CatalogRule.yaml b/src/_data/codebase/v2_3/mrg/ce/CatalogRule.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/CatalogRule.yaml rename to src/_data/codebase/v2_3/mrg/ce/CatalogRule.yml index f8bed429606..a5251221fba 100644 --- a/src/_data/codebase/v2_3/mrg/ce/CatalogRule.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/CatalogRule.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogRule source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CatalogRule/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: 'Magento_CatalogRule module is responsible for one of the types of price diff --git a/src/_data/codebase/v2_3/mrg/ce/CatalogRuleConfigurable.yaml b/src/_data/codebase/v2_3/mrg/ce/CatalogRuleConfigurable.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/CatalogRuleConfigurable.yaml rename to src/_data/codebase/v2_3/mrg/ce/CatalogRuleConfigurable.yml index 107ae5fb3a8..a3bd9f884a5 100644 --- a/src/_data/codebase/v2_3/mrg/ce/CatalogRuleConfigurable.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/CatalogRuleConfigurable.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogRuleConfigurable source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CatalogRuleConfigurable/README.md last_modified_at: '2015-09-07 17:18:34 +0300' content: 'Magento_CatalogRuleConfigurable module is an extension of Magento_CatalogRule diff --git a/src/_data/codebase/v2_3/mrg/ce/CatalogRuleGraphQl.yml b/src/_data/codebase/v2_3/mrg/ce/CatalogRuleGraphQl.yml new file mode 100644 index 00000000000..8bac63fe83d --- /dev/null +++ b/src/_data/codebase/v2_3/mrg/ce/CatalogRuleGraphQl.yml @@ -0,0 +1,10 @@ +--- +title: Magento_CatalogRuleGraphQl +source_repo: magento2ce +release: 2.3.6 +github_path: app/code/Magento/CatalogRuleGraphQl/README.md +last_modified_at: '2020-07-10 18:30:28 +0300' +content: 'The *Magento_CatalogRuleGraphQl* module applies catalog rules to products + for GraphQL requests. + +' diff --git a/src/_data/codebase/v2_3/mrg/ce/CatalogSearch.yaml b/src/_data/codebase/v2_3/mrg/ce/CatalogSearch.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/CatalogSearch.yaml rename to src/_data/codebase/v2_3/mrg/ce/CatalogSearch.yml index 8d6eb19d0af..5baa4e88bab 100644 --- a/src/_data/codebase/v2_3/mrg/ce/CatalogSearch.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/CatalogSearch.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogSearch source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CatalogSearch/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/CatalogUrlRewriteGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ce/CatalogUrlRewriteGraphQl.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/CatalogUrlRewriteGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ce/CatalogUrlRewriteGraphQl.yml index 31d0d70be9e..ad56c5685c1 100644 --- a/src/_data/codebase/v2_3/mrg/ce/CatalogUrlRewriteGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/CatalogUrlRewriteGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogUrlRewriteGraphQl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CatalogUrlRewriteGraphQl/README.md last_modified_at: '2018-01-16 16:07:17 -0600' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/CatalogWidget.yaml b/src/_data/codebase/v2_3/mrg/ce/CatalogWidget.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/CatalogWidget.yaml rename to src/_data/codebase/v2_3/mrg/ce/CatalogWidget.yml index e77473c8e00..048154bd35c 100644 --- a/src/_data/codebase/v2_3/mrg/ce/CatalogWidget.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/CatalogWidget.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogWidget source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CatalogWidget/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/Checkout.yaml b/src/_data/codebase/v2_3/mrg/ce/Checkout.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/Checkout.yaml rename to src/_data/codebase/v2_3/mrg/ce/Checkout.yml index 6cb803f2cb7..efd80e28585 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Checkout.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Checkout.yml @@ -1,7 +1,7 @@ --- title: Magento_Checkout source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Checkout/README.md last_modified_at: '2014-10-24 14:51:44 -0700' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ce/CheckoutAgreements.yaml b/src/_data/codebase/v2_3/mrg/ce/CheckoutAgreements.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/ce/CheckoutAgreements.yaml rename to src/_data/codebase/v2_3/mrg/ce/CheckoutAgreements.yml index 4715085f178..e1f0cb51700 100644 --- a/src/_data/codebase/v2_3/mrg/ce/CheckoutAgreements.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/CheckoutAgreements.yml @@ -1,7 +1,7 @@ --- title: Magento_CheckoutAgreements source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CheckoutAgreements/README.md last_modified_at: '2014-10-24 14:51:44 -0700' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ce/CheckoutAgreementsGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ce/CheckoutAgreementsGraphQl.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/CheckoutAgreementsGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ce/CheckoutAgreementsGraphQl.yml index a344bc3d22d..f7b3d18cc18 100644 --- a/src/_data/codebase/v2_3/mrg/ce/CheckoutAgreementsGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/CheckoutAgreementsGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_CheckoutAgreementsGraphQl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CheckoutAgreementsGraphQl/README.md last_modified_at: '2019-03-20 17:00:47 +0200' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/Cms.yaml b/src/_data/codebase/v2_3/mrg/ce/Cms.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/Cms.yaml rename to src/_data/codebase/v2_3/mrg/ce/Cms.yml index 2426dcb2401..c0aebdb8bee 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Cms.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Cms.yml @@ -1,7 +1,7 @@ --- title: Magento_Cms source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Cms/README.md last_modified_at: '2017-12-12 09:36:23 -0600' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ce/CmsGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ce/CmsGraphQl.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ce/CmsGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ce/CmsGraphQl.yml index 6b34ece55f9..de160d787e7 100644 --- a/src/_data/codebase/v2_3/mrg/ce/CmsGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/CmsGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_CmsGraphQl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CmsGraphQl/README.md last_modified_at: '2018-06-30 14:36:35 +0300' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/CmsUrlRewrite.yaml b/src/_data/codebase/v2_3/mrg/ce/CmsUrlRewrite.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/CmsUrlRewrite.yaml rename to src/_data/codebase/v2_3/mrg/ce/CmsUrlRewrite.yml index a38a687eee8..b8348cf4012 100644 --- a/src/_data/codebase/v2_3/mrg/ce/CmsUrlRewrite.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/CmsUrlRewrite.yml @@ -1,7 +1,7 @@ --- title: Magento_CmsUrlRewrite source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CmsUrlRewrite/README.md last_modified_at: '2017-03-07 16:04:38 -0600' content: "## Overview\n \nThe Magento_CmsUrlRewrite module adds support for URL rewrite diff --git a/src/_data/codebase/v2_3/mrg/ce/CmsUrlRewriteGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ce/CmsUrlRewriteGraphQl.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/CmsUrlRewriteGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ce/CmsUrlRewriteGraphQl.yml index bb266fefe5c..db048ca769d 100644 --- a/src/_data/codebase/v2_3/mrg/ce/CmsUrlRewriteGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/CmsUrlRewriteGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_CmsUrlRewriteGraphQl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CmsUrlRewriteGraphQl/README.md last_modified_at: '2018-01-17 16:25:54 -0600' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/Config.yaml b/src/_data/codebase/v2_3/mrg/ce/Config.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/ce/Config.yaml rename to src/_data/codebase/v2_3/mrg/ce/Config.yml index 9bc8bf306be..b9a8a1f1099 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Config.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Config.yml @@ -1,7 +1,7 @@ --- title: Magento_Config source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Config/README.md last_modified_at: '2019-09-03 18:23:54 +0300' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/ConfigurableProduct.yaml b/src/_data/codebase/v2_3/mrg/ce/ConfigurableProduct.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/ce/ConfigurableProduct.yaml rename to src/_data/codebase/v2_3/mrg/ce/ConfigurableProduct.yml index f7d6055f2c6..e478a05824d 100644 --- a/src/_data/codebase/v2_3/mrg/ce/ConfigurableProduct.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/ConfigurableProduct.yml @@ -1,7 +1,7 @@ --- title: Magento_ConfigurableProduct source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/ConfigurableProduct/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/ConfigurableProductGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ce/ConfigurableProductGraphQl.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/ConfigurableProductGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ce/ConfigurableProductGraphQl.yml index 6aae8460aa3..dfd9daaec0d 100644 --- a/src/_data/codebase/v2_3/mrg/ce/ConfigurableProductGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/ConfigurableProductGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_ConfigurableProductGraphQl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/ConfigurableProductGraphQl/README.md last_modified_at: '2018-01-16 13:17:37 -0600' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/ConfigurableProductSales.yaml b/src/_data/codebase/v2_3/mrg/ce/ConfigurableProductSales.yaml deleted file mode 100644 index 10b0a5078a9..00000000000 --- a/src/_data/codebase/v2_3/mrg/ce/ConfigurableProductSales.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -title: Magento_ConfigurableProductSales -source_repo: magento2ce -release: 2.3.5 -github_path: app/code/Magento/ConfigurableProductSales/README.md -last_modified_at: '2017-07-14 16:51:00 +0300' -content: 'Catalog. Returns true if the previously ordered item configuration is still - available. ' diff --git a/src/_data/codebase/v2_3/mrg/ce/ConfigurableProductSales.yml b/src/_data/codebase/v2_3/mrg/ce/ConfigurableProductSales.yml new file mode 100644 index 00000000000..389d21cbb1e --- /dev/null +++ b/src/_data/codebase/v2_3/mrg/ce/ConfigurableProductSales.yml @@ -0,0 +1,9 @@ +--- +title: Magento_ConfigurableProductSales +source_repo: magento2ce +release: 2.3.6 +github_path: app/code/Magento/ConfigurableProductSales/README.md +last_modified_at: '2017-07-14 16:51:00 +0300' +content: "The Magento_ConfigurableProductSales module checks that the selected options + of order item are still presented in\nCatalog. Returns true if the previously ordered + item configuration is still available. " diff --git a/src/_data/codebase/v2_3/mrg/ce/Contact.yaml b/src/_data/codebase/v2_3/mrg/ce/Contact.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/Contact.yaml rename to src/_data/codebase/v2_3/mrg/ce/Contact.yml index 8b0f9bb3fd8..07904e41841 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Contact.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Contact.yml @@ -1,7 +1,7 @@ --- title: Magento_Contact source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Contact/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: 'Magento_Contact module provides an implementation of "Contact Us" feature diff --git a/src/_data/codebase/v2_3/mrg/ce/Cookie.yaml b/src/_data/codebase/v2_3/mrg/ce/Cookie.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/Cookie.yaml rename to src/_data/codebase/v2_3/mrg/ce/Cookie.yml index 0eb23fea50b..ba797d1e9c6 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Cookie.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Cookie.yml @@ -1,7 +1,7 @@ --- title: Magento_Cookie source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Cookie/README.md last_modified_at: '2015-01-28 16:50:13 -0600' content: 'Magento_Cookie module allows enabling and configuring HTTP cookie related diff --git a/src/_data/codebase/v2_3/mrg/ce/Cron.yaml b/src/_data/codebase/v2_3/mrg/ce/Cron.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/Cron.yaml rename to src/_data/codebase/v2_3/mrg/ce/Cron.yml index e7b9466d290..797e657a3f2 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Cron.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Cron.yml @@ -1,7 +1,7 @@ --- title: Magento_Cron source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Cron/README.md last_modified_at: '2015-04-30 16:30:07 -0500' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ce/Csp.yaml b/src/_data/codebase/v2_3/mrg/ce/Csp.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/Csp.yaml rename to src/_data/codebase/v2_3/mrg/ce/Csp.yml index 905a5718433..924ae5321cf 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Csp.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Csp.yml @@ -1,7 +1,7 @@ --- title: Magento_Csp source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Csp/README.md last_modified_at: '2019-11-14 16:21:59 -0600' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/CurrencySymbol.yaml b/src/_data/codebase/v2_3/mrg/ce/CurrencySymbol.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/ce/CurrencySymbol.yaml rename to src/_data/codebase/v2_3/mrg/ce/CurrencySymbol.yml index e4c13f4b14f..b498b1c5c4c 100644 --- a/src/_data/codebase/v2_3/mrg/ce/CurrencySymbol.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/CurrencySymbol.yml @@ -1,7 +1,7 @@ --- title: Magento_CurrencySymbol source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CurrencySymbol/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: |+ diff --git a/src/_data/codebase/v2_3/mrg/ce/Customer.yaml b/src/_data/codebase/v2_3/mrg/ce/Customer.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/Customer.yaml rename to src/_data/codebase/v2_3/mrg/ce/Customer.yml index 3f5cff76ed0..9cc3fbb040f 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Customer.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Customer.yml @@ -1,7 +1,7 @@ --- title: Magento_Customer source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Customer/README.md last_modified_at: '2015-08-27 15:34:05 -0500' content: "The Magento_Customer module serves to handle the customer data (Customer, diff --git a/src/_data/codebase/v2_3/mrg/ce/CustomerAnalytics.yaml b/src/_data/codebase/v2_3/mrg/ce/CustomerAnalytics.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/CustomerAnalytics.yaml rename to src/_data/codebase/v2_3/mrg/ce/CustomerAnalytics.yml index 7817317d6cc..84384b28be7 100644 --- a/src/_data/codebase/v2_3/mrg/ce/CustomerAnalytics.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/CustomerAnalytics.yml @@ -1,7 +1,7 @@ --- title: Magento_CustomerAnalytics source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CustomerAnalytics/README.md last_modified_at: '2019-08-06 14:40:28 -0500' content: 'The Magento_CustomerAnalytics module configures data definitions for a data diff --git a/src/_data/codebase/v2_3/mrg/ce/CustomerDownloadableGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ce/CustomerDownloadableGraphQl.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/CustomerDownloadableGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ce/CustomerDownloadableGraphQl.yml index 7b72ab2f80b..621f8f518aa 100644 --- a/src/_data/codebase/v2_3/mrg/ce/CustomerDownloadableGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/CustomerDownloadableGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_CustomerDownloadableGraphQl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CustomerDownloadableGraphQl/README.md last_modified_at: '2019-06-25 22:45:10 +0200' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/CustomerGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ce/CustomerGraphQl.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/CustomerGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ce/CustomerGraphQl.yml index 27029bad013..8e599adc771 100644 --- a/src/_data/codebase/v2_3/mrg/ce/CustomerGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/CustomerGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_CustomerGraphQl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CustomerGraphQl/README.md last_modified_at: '2018-01-16 13:17:37 -0600' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/CustomerImportExport.yaml b/src/_data/codebase/v2_3/mrg/ce/CustomerImportExport.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/CustomerImportExport.yaml rename to src/_data/codebase/v2_3/mrg/ce/CustomerImportExport.yml index 9277239c6a7..ce49ff7d2bd 100644 --- a/src/_data/codebase/v2_3/mrg/ce/CustomerImportExport.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/CustomerImportExport.yml @@ -1,7 +1,7 @@ --- title: Magento_CustomerImportExport source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CustomerImportExport/README.md last_modified_at: '2014-10-31 09:04:08 -0700' content: 'The Magento_CustomerImportExport module handles the import and export of diff --git a/src/_data/codebase/v2_3/mrg/ce/Deploy.yaml b/src/_data/codebase/v2_3/mrg/ce/Deploy.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/ce/Deploy.yaml rename to src/_data/codebase/v2_3/mrg/ce/Deploy.yml index 82a13244119..d1f2e014fc0 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Deploy.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Deploy.yml @@ -1,7 +1,7 @@ --- title: Magento_Deploy source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Deploy/README.md last_modified_at: '2019-07-16 21:19:40 +0100' content: "## Purpose of module\n\nDeploy is a module that holds collection of services diff --git a/src/_data/codebase/v2_3/mrg/ce/Developer.yaml b/src/_data/codebase/v2_3/mrg/ce/Developer.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ce/Developer.yaml rename to src/_data/codebase/v2_3/mrg/ce/Developer.yml index 27b476958e7..da3112ad737 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Developer.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Developer.yml @@ -1,7 +1,7 @@ --- title: Magento_Developer source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Developer/README.md last_modified_at: '2015-01-15 14:33:14 -0600' content: 'The Magento_Developer module provides functionality to make it easier to diff --git a/src/_data/codebase/v2_3/mrg/ce/Dhl.yaml b/src/_data/codebase/v2_3/mrg/ce/Dhl.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ce/Dhl.yaml rename to src/_data/codebase/v2_3/mrg/ce/Dhl.yml index 4c6de662c0b..5c8af96cc7a 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Dhl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Dhl.yml @@ -1,7 +1,7 @@ --- title: Magento_Dhl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Dhl/README.md last_modified_at: '2014-10-31 09:04:08 -0700' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/Directory.yaml b/src/_data/codebase/v2_3/mrg/ce/Directory.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/Directory.yaml rename to src/_data/codebase/v2_3/mrg/ce/Directory.yml index 328148c02ab..47b1be1e66c 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Directory.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Directory.yml @@ -1,7 +1,7 @@ --- title: Magento_Directory source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Directory/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/DirectoryGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ce/DirectoryGraphQl.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/DirectoryGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ce/DirectoryGraphQl.yml index d6cada6aeb8..36dae4cd5e6 100644 --- a/src/_data/codebase/v2_3/mrg/ce/DirectoryGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/DirectoryGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_DirectoryGraphQl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/DirectoryGraphQl/README.md last_modified_at: '2019-01-31 09:12:38 -0500' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/Downloadable.yaml b/src/_data/codebase/v2_3/mrg/ce/Downloadable.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/Downloadable.yaml rename to src/_data/codebase/v2_3/mrg/ce/Downloadable.yml index 86de1148485..965f3045c32 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Downloadable.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Downloadable.yml @@ -1,7 +1,7 @@ --- title: Magento_Downloadable source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Downloadable/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/DownloadableGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ce/DownloadableGraphQl.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/DownloadableGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ce/DownloadableGraphQl.yml index 63d751e1c36..0f6cc6c551e 100644 --- a/src/_data/codebase/v2_3/mrg/ce/DownloadableGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/DownloadableGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_DownloadableGraphQl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/DownloadableGraphQl/README.md last_modified_at: '2018-01-24 15:58:51 -0600' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/DownloadableImportExport.yaml b/src/_data/codebase/v2_3/mrg/ce/DownloadableImportExport.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/DownloadableImportExport.yaml rename to src/_data/codebase/v2_3/mrg/ce/DownloadableImportExport.yml index 6f98ec1d3c0..a36f0c59fff 100644 --- a/src/_data/codebase/v2_3/mrg/ce/DownloadableImportExport.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/DownloadableImportExport.yml @@ -1,7 +1,7 @@ --- title: Magento_DownloadableImportExport source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/DownloadableImportExport/README.md last_modified_at: '2015-08-10 11:16:49 +0300' content: 'The Magento_DownloadableImportExport module handles the import and export diff --git a/src/_data/codebase/v2_3/mrg/ce/Eav.yaml b/src/_data/codebase/v2_3/mrg/ce/Eav.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/Eav.yaml rename to src/_data/codebase/v2_3/mrg/ce/Eav.yml index ee0713ea34b..24b24af3cbd 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Eav.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Eav.yml @@ -1,7 +1,7 @@ --- title: Magento_Eav source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Eav/README.md last_modified_at: '2014-10-24 14:51:44 -0700' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ce/EavGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ce/EavGraphQl.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ce/EavGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ce/EavGraphQl.yml index 2179ee43d47..031660e084d 100644 --- a/src/_data/codebase/v2_3/mrg/ce/EavGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/EavGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_EavGraphQl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/EavGraphQl/README.md last_modified_at: '2018-01-16 13:17:37 -0600' content: "**EavGraphQl** primarily provides the GraphQl module information to generate diff --git a/src/_data/codebase/v2_3/mrg/ce/Elasticsearch.yaml b/src/_data/codebase/v2_3/mrg/ce/Elasticsearch.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/Elasticsearch.yaml rename to src/_data/codebase/v2_3/mrg/ce/Elasticsearch.yml index 2323bbf2ae6..af2039915f9 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Elasticsearch.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Elasticsearch.yml @@ -1,7 +1,7 @@ --- title: Magento_Elasticsearch source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Elasticsearch/README.md last_modified_at: '2018-03-09 17:43:18 -0600' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ce/Elasticsearch6.yaml b/src/_data/codebase/v2_3/mrg/ce/Elasticsearch6.yml similarity index 82% rename from src/_data/codebase/v2_3/mrg/ce/Elasticsearch6.yaml rename to src/_data/codebase/v2_3/mrg/ce/Elasticsearch6.yml index 3a81f404184..96ecff71701 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Elasticsearch6.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Elasticsearch6.yml @@ -1,9 +1,9 @@ --- title: Magento_Elasticsearch6 source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Elasticsearch6/README.md -last_modified_at: '2019-03-01 10:53:19 -0600' +last_modified_at: '2019-02-27 13:06:48 +0100' content: | Magento\Elasticsearch module allows to use Elastic search engine (v6) for product searching capabilities. The module implements Magento\Search library interfaces. diff --git a/src/_data/codebase/v2_3/mrg/ce/Elasticsearch7.yaml b/src/_data/codebase/v2_3/mrg/ce/Elasticsearch7.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/Elasticsearch7.yaml rename to src/_data/codebase/v2_3/mrg/ce/Elasticsearch7.yml index 21e4c28e3bb..680e6aa90fd 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Elasticsearch7.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Elasticsearch7.yml @@ -1,7 +1,7 @@ --- title: Magento_Elasticsearch7 source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Elasticsearch7/README.md last_modified_at: '2020-01-31 16:12:43 -0600' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/Email.yaml b/src/_data/codebase/v2_3/mrg/ce/Email.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/Email.yaml rename to src/_data/codebase/v2_3/mrg/ce/Email.yml index 42b97075f06..90bb6149830 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Email.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Email.yml @@ -1,7 +1,7 @@ --- title: Magento_Email source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Email/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/EncryptionKey.yaml b/src/_data/codebase/v2_3/mrg/ce/EncryptionKey.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/EncryptionKey.yaml rename to src/_data/codebase/v2_3/mrg/ce/EncryptionKey.yml index 973683c7f5b..b7aa42b09c0 100644 --- a/src/_data/codebase/v2_3/mrg/ce/EncryptionKey.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/EncryptionKey.yml @@ -1,7 +1,7 @@ --- title: Magento_EncryptionKey source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/EncryptionKey/README.md last_modified_at: '2015-08-27 15:34:05 -0500' content: 'The Magento_EncryptionKey module provides an advanced encryption model to diff --git a/src/_data/codebase/v2_3/mrg/ce/Fedex.yaml b/src/_data/codebase/v2_3/mrg/ce/Fedex.yml similarity index 93% rename from src/_data/codebase/v2_3/mrg/ce/Fedex.yaml rename to src/_data/codebase/v2_3/mrg/ce/Fedex.yml index 01c1fef0783..a6968f4cd19 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Fedex.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Fedex.yml @@ -1,7 +1,7 @@ --- title: Magento_Fedex source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Fedex/README.md last_modified_at: '2014-10-31 09:04:08 -0700' content: 'The Magento_Fedex implements the integration with the FedEx shipping carrier. diff --git a/src/_data/codebase/v2_3/mrg/ce/GiftMessage.yaml b/src/_data/codebase/v2_3/mrg/ce/GiftMessage.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ce/GiftMessage.yaml rename to src/_data/codebase/v2_3/mrg/ce/GiftMessage.yml index 3314f80644b..c8926ee8b53 100644 --- a/src/_data/codebase/v2_3/mrg/ce/GiftMessage.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/GiftMessage.yml @@ -1,7 +1,7 @@ --- title: Magento_GiftMessage source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/GiftMessage/README.md last_modified_at: '2014-10-24 14:51:44 -0700' content: Magento\GiftMessage module allows to add a message to order or to each ordered diff --git a/src/_data/codebase/v2_3/mrg/ce/GoogleAdwords.yaml b/src/_data/codebase/v2_3/mrg/ce/GoogleAdwords.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ce/GoogleAdwords.yaml rename to src/_data/codebase/v2_3/mrg/ce/GoogleAdwords.yml index ebd89ea84de..98028faa258 100644 --- a/src/_data/codebase/v2_3/mrg/ce/GoogleAdwords.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/GoogleAdwords.yml @@ -1,7 +1,7 @@ --- title: Magento_GoogleAdwords source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/GoogleAdwords/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: 'GoogleAdwords is a module designed for integration of Google Adwords service. diff --git a/src/_data/codebase/v2_3/mrg/ce/GoogleAnalytics.yaml b/src/_data/codebase/v2_3/mrg/ce/GoogleAnalytics.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ce/GoogleAnalytics.yaml rename to src/_data/codebase/v2_3/mrg/ce/GoogleAnalytics.yml index 608154c3c4e..ce5a3675b6d 100644 --- a/src/_data/codebase/v2_3/mrg/ce/GoogleAnalytics.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/GoogleAnalytics.yml @@ -1,7 +1,7 @@ --- title: Magento_GoogleAnalytics source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/GoogleAnalytics/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: 'Magento_GoogleAnalytics is a module for integration with Google Analytics diff --git a/src/_data/codebase/v2_3/mrg/ce/GoogleOptimizer.yaml b/src/_data/codebase/v2_3/mrg/ce/GoogleOptimizer.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/ce/GoogleOptimizer.yaml rename to src/_data/codebase/v2_3/mrg/ce/GoogleOptimizer.yml index 3d78418de88..4e56c9f5087 100644 --- a/src/_data/codebase/v2_3/mrg/ce/GoogleOptimizer.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/GoogleOptimizer.yml @@ -1,7 +1,7 @@ --- title: Magento_GoogleOptimizer source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/GoogleOptimizer/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: "Magento_GoogleOptimizer module implements functionality of Google Experiment diff --git a/src/_data/codebase/v2_3/mrg/ce/GraphQl.yaml b/src/_data/codebase/v2_3/mrg/ce/GraphQl.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/GraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ce/GraphQl.yml index 07f89697eea..ec66a25381f 100644 --- a/src/_data/codebase/v2_3/mrg/ce/GraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/GraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_GraphQl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/GraphQl/README.md last_modified_at: '2017-10-25 11:14:11 -0500' content: "**GraphQl** provides the framework for the application to expose GraphQL diff --git a/src/_data/codebase/v2_3/mrg/ce/GraphQlCache.yaml b/src/_data/codebase/v2_3/mrg/ce/GraphQlCache.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/GraphQlCache.yaml rename to src/_data/codebase/v2_3/mrg/ce/GraphQlCache.yml index 4b5f7e74a1d..7a0d17dff16 100644 --- a/src/_data/codebase/v2_3/mrg/ce/GraphQlCache.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/GraphQlCache.yml @@ -1,7 +1,7 @@ --- title: Magento_GraphQlCache source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/GraphQlCache/README.md last_modified_at: '2019-04-08 11:49:04 -0500' content: "**GraphQL Cache** provides the ability to cache GraphQL queries.\nThis module diff --git a/src/_data/codebase/v2_3/mrg/ce/GroupedCatalogInventory.yaml b/src/_data/codebase/v2_3/mrg/ce/GroupedCatalogInventory.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/GroupedCatalogInventory.yaml rename to src/_data/codebase/v2_3/mrg/ce/GroupedCatalogInventory.yml index bd2a3415061..0470dd1b786 100644 --- a/src/_data/codebase/v2_3/mrg/ce/GroupedCatalogInventory.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/GroupedCatalogInventory.yml @@ -1,7 +1,7 @@ --- title: Magento_GroupedCatalogInventory source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/GroupedCatalogInventory/README.md last_modified_at: '2018-11-27 16:04:57 -0600' content: 'Magento_GroupedCatalogInventory contains behavior related to the inventory diff --git a/src/_data/codebase/v2_3/mrg/ce/GroupedProduct.yaml b/src/_data/codebase/v2_3/mrg/ce/GroupedProduct.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/ce/GroupedProduct.yaml rename to src/_data/codebase/v2_3/mrg/ce/GroupedProduct.yml index fbeb57f1dca..6d5a791fc69 100644 --- a/src/_data/codebase/v2_3/mrg/ce/GroupedProduct.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/GroupedProduct.yml @@ -1,7 +1,7 @@ --- title: Magento_GroupedProduct source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/GroupedProduct/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/GroupedProductGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ce/GroupedProductGraphQl.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/GroupedProductGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ce/GroupedProductGraphQl.yml index 3cdd0c35938..e8bfa44d5d8 100644 --- a/src/_data/codebase/v2_3/mrg/ce/GroupedProductGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/GroupedProductGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_GroupedProductGraphQl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/GroupedProductGraphQl/README.md last_modified_at: '2018-01-29 15:12:49 -0600' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/ImportExport.yaml b/src/_data/codebase/v2_3/mrg/ce/ImportExport.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/ImportExport.yaml rename to src/_data/codebase/v2_3/mrg/ce/ImportExport.yml index 4c2386d5b29..df45926f4e1 100644 --- a/src/_data/codebase/v2_3/mrg/ce/ImportExport.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/ImportExport.yml @@ -1,7 +1,7 @@ --- title: Magento_ImportExport source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/ImportExport/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/Indexer.yaml b/src/_data/codebase/v2_3/mrg/ce/Indexer.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/ce/Indexer.yaml rename to src/_data/codebase/v2_3/mrg/ce/Indexer.yml index dbfc8ba47e9..f6cce8277d2 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Indexer.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Indexer.yml @@ -1,7 +1,7 @@ --- title: Magento_Indexer source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Indexer/README.md last_modified_at: '2016-04-11 18:16:09 +0300' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ce/InstantPurchase.yaml b/src/_data/codebase/v2_3/mrg/ce/InstantPurchase.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ce/InstantPurchase.yaml rename to src/_data/codebase/v2_3/mrg/ce/InstantPurchase.yml index bb6fe9b2694..75e7d1e6759 100644 --- a/src/_data/codebase/v2_3/mrg/ce/InstantPurchase.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/InstantPurchase.yml @@ -1,7 +1,7 @@ --- title: Magento_InstantPurchase source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/InstantPurchase/README.md last_modified_at: '2019-08-06 14:40:28 -0500' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/Integration.yaml b/src/_data/codebase/v2_3/mrg/ce/Integration.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/ce/Integration.yaml rename to src/_data/codebase/v2_3/mrg/ce/Integration.yml index 65573eb5e92..748f412fde2 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Integration.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Integration.yml @@ -1,7 +1,7 @@ --- title: Magento_Integration source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Integration/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/LayeredNavigation.yaml b/src/_data/codebase/v2_3/mrg/ce/LayeredNavigation.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/LayeredNavigation.yaml rename to src/_data/codebase/v2_3/mrg/ce/LayeredNavigation.yml index 633b8990f2e..ae696a8c947 100644 --- a/src/_data/codebase/v2_3/mrg/ce/LayeredNavigation.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/LayeredNavigation.yml @@ -1,7 +1,7 @@ --- title: Magento_LayeredNavigation source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/LayeredNavigation/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/Marketplace.yaml b/src/_data/codebase/v2_3/mrg/ce/Marketplace.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ce/Marketplace.yaml rename to src/_data/codebase/v2_3/mrg/ce/Marketplace.yml index 1112d93c2f0..1e20bf2df93 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Marketplace.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Marketplace.yml @@ -1,7 +1,7 @@ --- title: Magento_Marketplace source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Marketplace/README.md last_modified_at: '2015-10-02 13:02:03 +0300' content: The Magento_Marketplace module allows to display partners of Magento in the diff --git a/src/_data/codebase/v2_3/mrg/ce/MediaGallery.yaml b/src/_data/codebase/v2_3/mrg/ce/MediaGallery.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/ce/MediaGallery.yaml rename to src/_data/codebase/v2_3/mrg/ce/MediaGallery.yml index ddcdd1e7e7b..d9c5ab7bee1 100644 --- a/src/_data/codebase/v2_3/mrg/ce/MediaGallery.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/MediaGallery.yml @@ -1,7 +1,7 @@ --- title: Magento_MediaGallery source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/MediaGallery/README.md last_modified_at: '2019-11-04 11:34:55 +0000' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/MediaGalleryApi.yaml b/src/_data/codebase/v2_3/mrg/ce/MediaGalleryApi.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/ce/MediaGalleryApi.yaml rename to src/_data/codebase/v2_3/mrg/ce/MediaGalleryApi.yml index a22472976f9..2d03f6cd7f2 100644 --- a/src/_data/codebase/v2_3/mrg/ce/MediaGalleryApi.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/MediaGalleryApi.yml @@ -1,7 +1,7 @@ --- title: Magento_MediaGalleryApi source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/MediaGalleryApi/README.md last_modified_at: '2019-11-04 11:34:55 +0000' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/MediaStorage.yaml b/src/_data/codebase/v2_3/mrg/ce/MediaStorage.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/MediaStorage.yaml rename to src/_data/codebase/v2_3/mrg/ce/MediaStorage.yml index b28265090a7..7bbf2c95b93 100644 --- a/src/_data/codebase/v2_3/mrg/ce/MediaStorage.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/MediaStorage.yml @@ -1,7 +1,7 @@ --- title: Magento_MediaStorage source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/MediaStorage/README.md last_modified_at: '2015-02-26 14:04:15 +0200' content: 'The Magento_MediaStorage module implements functionality related with upload diff --git a/src/_data/codebase/v2_3/mrg/ce/MessageQueue.yaml b/src/_data/codebase/v2_3/mrg/ce/MessageQueue.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ce/MessageQueue.yaml rename to src/_data/codebase/v2_3/mrg/ce/MessageQueue.yml index 4938cd33c06..09e36e77989 100644 --- a/src/_data/codebase/v2_3/mrg/ce/MessageQueue.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/MessageQueue.yml @@ -1,7 +1,7 @@ --- title: Magento_MessageQueue source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/MessageQueue/README.md last_modified_at: '2018-02-21 14:27:13 +0200' content: "**MessageQueue** provides support of Advanced Message Queuing Protocol\n" diff --git a/src/_data/codebase/v2_3/mrg/ce/MsrpConfigurableProduct.yaml b/src/_data/codebase/v2_3/mrg/ce/MsrpConfigurableProduct.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/MsrpConfigurableProduct.yaml rename to src/_data/codebase/v2_3/mrg/ce/MsrpConfigurableProduct.yml index ee775d01f4f..d5728ea2608 100644 --- a/src/_data/codebase/v2_3/mrg/ce/MsrpConfigurableProduct.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/MsrpConfigurableProduct.yml @@ -1,7 +1,7 @@ --- title: Magento_MsrpConfigurableProduct source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/MsrpConfigurableProduct/README.md last_modified_at: '2019-03-02 19:21:49 -0600' content: "**MsrpConfigurableProduct** provides type and resolver information for the diff --git a/src/_data/codebase/v2_3/mrg/ce/MsrpGroupedProduct.yaml b/src/_data/codebase/v2_3/mrg/ce/MsrpGroupedProduct.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/MsrpGroupedProduct.yaml rename to src/_data/codebase/v2_3/mrg/ce/MsrpGroupedProduct.yml index b6145dc8e82..e2ca0d10d25 100644 --- a/src/_data/codebase/v2_3/mrg/ce/MsrpGroupedProduct.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/MsrpGroupedProduct.yml @@ -1,7 +1,7 @@ --- title: Magento_MsrpGroupedProduct source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/MsrpGroupedProduct/README.md last_modified_at: '2019-03-02 19:21:49 -0600' content: "**MsrpGroupedProduct** provides type and resolver information for the Msrp diff --git a/src/_data/codebase/v2_3/mrg/ce/Multishipping.yaml b/src/_data/codebase/v2_3/mrg/ce/Multishipping.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/Multishipping.yaml rename to src/_data/codebase/v2_3/mrg/ce/Multishipping.yml index be534f9395b..bb61fa3fc7c 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Multishipping.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Multishipping.yml @@ -1,7 +1,7 @@ --- title: Magento_Multishipping source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Multishipping/README.md last_modified_at: '2014-10-24 14:51:44 -0700' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ce/MysqlMq.yaml b/src/_data/codebase/v2_3/mrg/ce/MysqlMq.yml similarity index 93% rename from src/_data/codebase/v2_3/mrg/ce/MysqlMq.yaml rename to src/_data/codebase/v2_3/mrg/ce/MysqlMq.yml index 948ee5a2e8d..bee0cbad2b7 100644 --- a/src/_data/codebase/v2_3/mrg/ce/MysqlMq.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/MysqlMq.yml @@ -1,7 +1,7 @@ --- title: Magento_MysqlMq source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/MysqlMq/README.md last_modified_at: '2018-02-21 14:27:42 +0200' content: "**MysqlMq** provides message queue implementation based on MySQL.\n" diff --git a/src/_data/codebase/v2_3/mrg/ce/NewRelicReporting.yaml b/src/_data/codebase/v2_3/mrg/ce/NewRelicReporting.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/NewRelicReporting.yaml rename to src/_data/codebase/v2_3/mrg/ce/NewRelicReporting.yml index 303337c8660..b2ad7a84f3c 100644 --- a/src/_data/codebase/v2_3/mrg/ce/NewRelicReporting.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/NewRelicReporting.yml @@ -1,7 +1,7 @@ --- title: Magento_NewRelicReporting source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/NewRelicReporting/README.md last_modified_at: '2015-10-01 16:15:45 +0300' content: "Module Magento\\NewRelicReporting implements integration New Relic APM and diff --git a/src/_data/codebase/v2_3/mrg/ce/Newsletter.yaml b/src/_data/codebase/v2_3/mrg/ce/Newsletter.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/Newsletter.yaml rename to src/_data/codebase/v2_3/mrg/ce/Newsletter.yml index 6e6cc17ae5f..078c575b255 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Newsletter.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Newsletter.yml @@ -1,7 +1,7 @@ --- title: Magento_Newsletter source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Newsletter/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: 'Magento_Newsletter module allows clients to subscribe for information about diff --git a/src/_data/codebase/v2_3/mrg/ce/OfflinePayments.yaml b/src/_data/codebase/v2_3/mrg/ce/OfflinePayments.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/OfflinePayments.yaml rename to src/_data/codebase/v2_3/mrg/ce/OfflinePayments.yml index 0fe30c3a8a3..409c7c8e978 100644 --- a/src/_data/codebase/v2_3/mrg/ce/OfflinePayments.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/OfflinePayments.yml @@ -1,7 +1,7 @@ --- title: Magento_OfflinePayments source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/OfflinePayments/README.md last_modified_at: '2014-10-31 09:04:08 -0700' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/OfflineShipping.yaml b/src/_data/codebase/v2_3/mrg/ce/OfflineShipping.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/OfflineShipping.yaml rename to src/_data/codebase/v2_3/mrg/ce/OfflineShipping.yml index 8230217d312..d7a93219992 100644 --- a/src/_data/codebase/v2_3/mrg/ce/OfflineShipping.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/OfflineShipping.yml @@ -1,7 +1,7 @@ --- title: Magento_OfflineShipping source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/OfflineShipping/README.md last_modified_at: '2014-10-31 09:04:08 -0700' content: |+ diff --git a/src/_data/codebase/v2_3/mrg/ce/PageCache.yaml b/src/_data/codebase/v2_3/mrg/ce/PageCache.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/ce/PageCache.yaml rename to src/_data/codebase/v2_3/mrg/ce/PageCache.yml index dabe6284ac6..5e3720d778a 100644 --- a/src/_data/codebase/v2_3/mrg/ce/PageCache.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/PageCache.yml @@ -1,7 +1,7 @@ --- title: Magento_PageCache source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/PageCache/README.md last_modified_at: '2014-10-24 14:51:44 -0700' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ce/Payment.yaml b/src/_data/codebase/v2_3/mrg/ce/Payment.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/ce/Payment.yaml rename to src/_data/codebase/v2_3/mrg/ce/Payment.yml index e5a749bba11..155a63389a5 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Payment.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Payment.yml @@ -1,7 +1,7 @@ --- title: Magento_Payment source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Payment/README.md last_modified_at: '2014-10-31 09:04:08 -0700' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/Paypal.yaml b/src/_data/codebase/v2_3/mrg/ce/Paypal.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/Paypal.yaml rename to src/_data/codebase/v2_3/mrg/ce/Paypal.yml index a4c9b6d7a04..a63962c9ea8 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Paypal.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Paypal.yml @@ -1,7 +1,7 @@ --- title: Magento_Paypal source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Paypal/README.md last_modified_at: '2019-03-31 18:42:40 +0300' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/PaypalCaptcha.yaml b/src/_data/codebase/v2_3/mrg/ce/PaypalCaptcha.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ce/PaypalCaptcha.yaml rename to src/_data/codebase/v2_3/mrg/ce/PaypalCaptcha.yml index a198e6ae6c0..fab36a98e6a 100644 --- a/src/_data/codebase/v2_3/mrg/ce/PaypalCaptcha.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/PaypalCaptcha.yml @@ -1,7 +1,7 @@ --- title: Magento_PaypalCaptcha source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/PaypalCaptcha/README.md last_modified_at: '2019-03-21 15:00:40 -0500' content: The PayPal Captcha module provides a possibility to enable Captcha validation diff --git a/src/_data/codebase/v2_3/mrg/ce/PaypalGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ce/PaypalGraphQl.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ce/PaypalGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ce/PaypalGraphQl.yml index bba010345a2..86dede3fbf2 100644 --- a/src/_data/codebase/v2_3/mrg/ce/PaypalGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/PaypalGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_PaypalGraphQl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/PaypalGraphQl/README.md last_modified_at: '2019-05-23 10:50:05 -0500' content: "**PaypalGraphQl** provides resolver information for using Paypal payment diff --git a/src/_data/codebase/v2_3/mrg/ce/Persistent.yaml b/src/_data/codebase/v2_3/mrg/ce/Persistent.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/ce/Persistent.yaml rename to src/_data/codebase/v2_3/mrg/ce/Persistent.yml index 4a657b6c0b1..d88cf2c4bd5 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Persistent.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Persistent.yml @@ -1,7 +1,7 @@ --- title: Magento_Persistent source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Persistent/README.md last_modified_at: '2014-10-24 14:51:44 -0700' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/ProductAlert.yaml b/src/_data/codebase/v2_3/mrg/ce/ProductAlert.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/ProductAlert.yaml rename to src/_data/codebase/v2_3/mrg/ce/ProductAlert.yml index 393f11adcb5..9401556aff6 100644 --- a/src/_data/codebase/v2_3/mrg/ce/ProductAlert.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/ProductAlert.yml @@ -1,7 +1,7 @@ --- title: Magento_ProductAlert source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/ProductAlert/README.md last_modified_at: '2014-10-31 09:04:08 -0700' content: 'The Magento_ProductAlert module enables product alerts, which allow customers diff --git a/src/_data/codebase/v2_3/mrg/ce/ProductVideo.yaml b/src/_data/codebase/v2_3/mrg/ce/ProductVideo.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/ProductVideo.yaml rename to src/_data/codebase/v2_3/mrg/ce/ProductVideo.yml index 0cb4582b840..db1a99db900 100644 --- a/src/_data/codebase/v2_3/mrg/ce/ProductVideo.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/ProductVideo.yml @@ -1,7 +1,7 @@ --- title: Magento_ProductVideo source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/ProductVideo/README.md last_modified_at: '2015-09-11 16:19:20 +0300' content: 'The Magento_ProductVideo module implements functionality related with linking diff --git a/src/_data/codebase/v2_3/mrg/ce/Quote.yaml b/src/_data/codebase/v2_3/mrg/ce/Quote.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/Quote.yaml rename to src/_data/codebase/v2_3/mrg/ce/Quote.yml index 971454dd96e..6dfdade1e99 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Quote.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Quote.yml @@ -1,7 +1,7 @@ --- title: Magento_Quote source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Quote/README.md last_modified_at: '2015-01-06 12:45:10 +0200' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/QuoteAnalytics.yaml b/src/_data/codebase/v2_3/mrg/ce/QuoteAnalytics.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/QuoteAnalytics.yaml rename to src/_data/codebase/v2_3/mrg/ce/QuoteAnalytics.yml index de4db5f9d03..cba22492ecd 100644 --- a/src/_data/codebase/v2_3/mrg/ce/QuoteAnalytics.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/QuoteAnalytics.yml @@ -1,7 +1,7 @@ --- title: Magento_QuoteAnalytics source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/QuoteAnalytics/README.md last_modified_at: '2019-08-06 14:40:28 -0500' content: 'The Magento_QuoteAnalytics module configures data definitions for a data diff --git a/src/_data/codebase/v2_3/mrg/ce/QuoteGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ce/QuoteGraphQl.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/QuoteGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ce/QuoteGraphQl.yml index 19f734a39d2..036efe5e0de 100644 --- a/src/_data/codebase/v2_3/mrg/ce/QuoteGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/QuoteGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_QuoteGraphQl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/QuoteGraphQl/README.md last_modified_at: '2018-07-31 14:11:47 +0200' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/RelatedProductGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ce/RelatedProductGraphQl.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/RelatedProductGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ce/RelatedProductGraphQl.yml index 340b806e810..c60bae4e3aa 100644 --- a/src/_data/codebase/v2_3/mrg/ce/RelatedProductGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/RelatedProductGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_RelatedProductGraphQl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/RelatedProductGraphQl/README.md last_modified_at: '2019-05-08 12:53:00 -0500' content: "**RelatedProductGraphQl** provides endpoints for getting Cross Sell / Related/ diff --git a/src/_data/codebase/v2_3/mrg/ce/ReleaseNotification.yaml b/src/_data/codebase/v2_3/mrg/ce/ReleaseNotification.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ce/ReleaseNotification.yaml rename to src/_data/codebase/v2_3/mrg/ce/ReleaseNotification.yml index ad6f1fe38b0..e235cc33f62 100644 --- a/src/_data/codebase/v2_3/mrg/ce/ReleaseNotification.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/ReleaseNotification.yml @@ -1,7 +1,7 @@ --- title: Magento_ReleaseNotification source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/ReleaseNotification/README.md last_modified_at: '2019-09-06 19:55:12 +0300' content: "The **Release Notification Module** serves to provide a notification delivery diff --git a/src/_data/codebase/v2_3/mrg/ce/Reports.yaml b/src/_data/codebase/v2_3/mrg/ce/Reports.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/ce/Reports.yaml rename to src/_data/codebase/v2_3/mrg/ce/Reports.yml index c6077660b8f..9f67ad336ed 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Reports.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Reports.yml @@ -1,7 +1,7 @@ --- title: Magento_Reports source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Reports/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/RequireJs.yaml b/src/_data/codebase/v2_3/mrg/ce/RequireJs.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/ce/RequireJs.yaml rename to src/_data/codebase/v2_3/mrg/ce/RequireJs.yml index 04e252c9015..0d796836f49 100644 --- a/src/_data/codebase/v2_3/mrg/ce/RequireJs.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/RequireJs.yml @@ -1,7 +1,7 @@ --- title: Magento_RequireJs source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/RequireJs/README.md last_modified_at: '2014-11-28 11:40:11 -0800' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/Review.yaml b/src/_data/codebase/v2_3/mrg/ce/Review.yml similarity index 93% rename from src/_data/codebase/v2_3/mrg/ce/Review.yaml rename to src/_data/codebase/v2_3/mrg/ce/Review.yml index 4baca3d2b78..74dc3400c26 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Review.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Review.yml @@ -1,7 +1,7 @@ --- title: Magento_Review source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Review/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: 'Magento_Review module functionality allows to write reviews for products. diff --git a/src/_data/codebase/v2_3/mrg/ce/ReviewAnalytics.yaml b/src/_data/codebase/v2_3/mrg/ce/ReviewAnalytics.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/ReviewAnalytics.yaml rename to src/_data/codebase/v2_3/mrg/ce/ReviewAnalytics.yml index acb0182efb6..22e5b1f36d8 100644 --- a/src/_data/codebase/v2_3/mrg/ce/ReviewAnalytics.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/ReviewAnalytics.yml @@ -1,7 +1,7 @@ --- title: Magento_ReviewAnalytics source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/ReviewAnalytics/README.md last_modified_at: '2019-08-06 14:40:28 -0500' content: 'The Magento_ReviewAnalytics module configures data definitions for a data diff --git a/src/_data/codebase/v2_3/mrg/ce/Robots.yaml b/src/_data/codebase/v2_3/mrg/ce/Robots.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/Robots.yaml rename to src/_data/codebase/v2_3/mrg/ce/Robots.yml index ee19e37a8ec..8721d98236b 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Robots.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Robots.yml @@ -1,7 +1,7 @@ --- title: Magento_Robots source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Robots/README.md last_modified_at: '2017-06-15 17:15:28 +0300' content: "The Robots module provides the following functionalities: \n* contains a diff --git a/src/_data/codebase/v2_3/mrg/ce/Rss.yaml b/src/_data/codebase/v2_3/mrg/ce/Rss.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ce/Rss.yaml rename to src/_data/codebase/v2_3/mrg/ce/Rss.yml index ca90fc89aab..6e03246ed9d 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Rss.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Rss.yml @@ -1,7 +1,7 @@ --- title: Magento_Rss source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Rss/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: 'Magento_Rss module is responsible for processing all RSS feeds of the application diff --git a/src/_data/codebase/v2_3/mrg/ce/Rule.yaml b/src/_data/codebase/v2_3/mrg/ce/Rule.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/Rule.yaml rename to src/_data/codebase/v2_3/mrg/ce/Rule.yml index ba80a578bc2..a75c39afcf9 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Rule.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Rule.yml @@ -1,7 +1,7 @@ --- title: Magento_Rule source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Rule/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: 'Magento_Rule module provides abstract implementation of rules and rule conditions diff --git a/src/_data/codebase/v2_3/mrg/ce/Sales.yaml b/src/_data/codebase/v2_3/mrg/ce/Sales.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/ce/Sales.yaml rename to src/_data/codebase/v2_3/mrg/ce/Sales.yml index c63b7476d43..4a58185844f 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Sales.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Sales.yml @@ -1,7 +1,7 @@ --- title: Magento_Sales source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Sales/README.md last_modified_at: '2014-10-24 14:51:44 -0700' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/SalesAnalytics.yaml b/src/_data/codebase/v2_3/mrg/ce/SalesAnalytics.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/SalesAnalytics.yaml rename to src/_data/codebase/v2_3/mrg/ce/SalesAnalytics.yml index f831d647988..f1e1016535c 100644 --- a/src/_data/codebase/v2_3/mrg/ce/SalesAnalytics.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/SalesAnalytics.yml @@ -1,7 +1,7 @@ --- title: Magento_SalesAnalytics source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/SalesAnalytics/README.md last_modified_at: '2019-08-06 14:40:28 -0500' content: 'The Magento_SalesAnalytics module configures data definitions for a data diff --git a/src/_data/codebase/v2_3/mrg/ce/SalesGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ce/SalesGraphQl.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/SalesGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ce/SalesGraphQl.yml index 95056142781..38f311d2f48 100644 --- a/src/_data/codebase/v2_3/mrg/ce/SalesGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/SalesGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_SalesGraphQl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/SalesGraphQl/README.md last_modified_at: '2018-10-15 19:46:32 +0300' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/SalesInventory.yaml b/src/_data/codebase/v2_3/mrg/ce/SalesInventory.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/SalesInventory.yaml rename to src/_data/codebase/v2_3/mrg/ce/SalesInventory.yml index 49b9c3346a2..d7e1a93e38e 100644 --- a/src/_data/codebase/v2_3/mrg/ce/SalesInventory.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/SalesInventory.yml @@ -1,7 +1,7 @@ --- title: Magento_SalesInventory source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/SalesInventory/README.md last_modified_at: '2016-09-21 16:39:44 +0300' content: 'Magento_SalesInventory module allows retrieve and update stock attributes diff --git a/src/_data/codebase/v2_3/mrg/ce/SalesRule.yaml b/src/_data/codebase/v2_3/mrg/ce/SalesRule.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ce/SalesRule.yaml rename to src/_data/codebase/v2_3/mrg/ce/SalesRule.yml index c50b531ca06..55992c0b1f6 100644 --- a/src/_data/codebase/v2_3/mrg/ce/SalesRule.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/SalesRule.yml @@ -1,7 +1,7 @@ --- title: Magento_SalesRule source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/SalesRule/README.md last_modified_at: '2014-10-24 14:51:44 -0700' content: "SalesRule module is responsible for managing and processing Promotion Shopping diff --git a/src/_data/codebase/v2_3/mrg/ce/SalesSequence.yaml b/src/_data/codebase/v2_3/mrg/ce/SalesSequence.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/ce/SalesSequence.yaml rename to src/_data/codebase/v2_3/mrg/ce/SalesSequence.yml index aacdcfd2ce1..6992e8d123b 100644 --- a/src/_data/codebase/v2_3/mrg/ce/SalesSequence.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/SalesSequence.yml @@ -1,7 +1,7 @@ --- title: Magento_SalesSequence source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/SalesSequence/README.md last_modified_at: '2015-03-20 16:50:43 +0200' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/SampleData.yaml b/src/_data/codebase/v2_3/mrg/ce/SampleData.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ce/SampleData.yaml rename to src/_data/codebase/v2_3/mrg/ce/SampleData.yml index c4fab2a5868..a11a8410c1a 100644 --- a/src/_data/codebase/v2_3/mrg/ce/SampleData.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/SampleData.yml @@ -1,7 +1,7 @@ --- title: Magento_SampleData source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/SampleData/README.md last_modified_at: '2019-08-06 14:40:28 -0500' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/Search.yaml b/src/_data/codebase/v2_3/mrg/ce/Search.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/Search.yaml rename to src/_data/codebase/v2_3/mrg/ce/Search.yml index 12550b6c317..4526b0931cb 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Search.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Search.yml @@ -1,7 +1,7 @@ --- title: Magento_Search source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Search/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: 'Magento_Search module introduces basic search functionality and provides diff --git a/src/_data/codebase/v2_3/mrg/ce/Security.yaml b/src/_data/codebase/v2_3/mrg/ce/Security.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/ce/Security.yaml rename to src/_data/codebase/v2_3/mrg/ce/Security.yml index 493ecd4c319..dae0f266ca5 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Security.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Security.yml @@ -1,7 +1,7 @@ --- title: Magento_Security source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Security/README.md last_modified_at: '2016-01-11 17:45:47 +0300' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/SendFriend.yaml b/src/_data/codebase/v2_3/mrg/ce/SendFriend.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/SendFriend.yaml rename to src/_data/codebase/v2_3/mrg/ce/SendFriend.yml index 42080aa398e..5060c88c36b 100644 --- a/src/_data/codebase/v2_3/mrg/ce/SendFriend.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/SendFriend.yml @@ -1,7 +1,7 @@ --- title: Magento_SendFriend source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/SendFriend/README.md last_modified_at: '2015-06-02 12:45:34 +0300' content: 'The Magento_SendFriend implements the functionality behind the "Email to diff --git a/src/_data/codebase/v2_3/mrg/ce/SendFriendGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ce/SendFriendGraphQl.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ce/SendFriendGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ce/SendFriendGraphQl.yml index a50e52fe8b8..dda37d7b549 100644 --- a/src/_data/codebase/v2_3/mrg/ce/SendFriendGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/SendFriendGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_SendFriendGraphQl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/SendFriendGraphQl/README.md last_modified_at: '2018-11-19 20:18:31 +0200' content: "**SendFriendGraphQl** provides support of GraphQL for SendFriend functionality.\n" diff --git a/src/_data/codebase/v2_3/mrg/ce/Shipping.yaml b/src/_data/codebase/v2_3/mrg/ce/Shipping.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/Shipping.yaml rename to src/_data/codebase/v2_3/mrg/ce/Shipping.yml index 7d391457ecd..8a9fd5d4358 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Shipping.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Shipping.yml @@ -1,7 +1,7 @@ --- title: Magento_Shipping source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Shipping/README.md last_modified_at: '2014-10-31 09:04:08 -0700' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/Signifyd.yaml b/src/_data/codebase/v2_3/mrg/ce/Signifyd.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ce/Signifyd.yaml rename to src/_data/codebase/v2_3/mrg/ce/Signifyd.yml index 88dad5d20ff..01ce43cca79 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Signifyd.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Signifyd.yml @@ -1,7 +1,7 @@ --- title: Magento_Signifyd source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Signifyd/README.md last_modified_at: '2019-08-06 14:40:28 -0500' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/Sitemap.yaml b/src/_data/codebase/v2_3/mrg/ce/Sitemap.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/Sitemap.yaml rename to src/_data/codebase/v2_3/mrg/ce/Sitemap.yml index 323e1c6327f..ae49a00ef90 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Sitemap.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Sitemap.yml @@ -1,7 +1,7 @@ --- title: Magento_Sitemap source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Sitemap/README.md last_modified_at: '2014-07-11 11:30:21 -0700' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ce/Store.yaml b/src/_data/codebase/v2_3/mrg/ce/Store.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/ce/Store.yaml rename to src/_data/codebase/v2_3/mrg/ce/Store.yml index a429f7e947d..feeb75a3c2d 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Store.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Store.yml @@ -1,7 +1,7 @@ --- title: Magento_Store source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Store/README.md last_modified_at: '2014-10-24 14:51:44 -0700' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ce/StoreGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ce/StoreGraphQl.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ce/StoreGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ce/StoreGraphQl.yml index e4100880ab2..e7cf2484a39 100644 --- a/src/_data/codebase/v2_3/mrg/ce/StoreGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/StoreGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_StoreGraphQl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/StoreGraphQl/README.md last_modified_at: '2018-04-09 17:36:37 -0500' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/Swagger.yaml b/src/_data/codebase/v2_3/mrg/ce/Swagger.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/Swagger.yaml rename to src/_data/codebase/v2_3/mrg/ce/Swagger.yml index 6e10712691e..8a603908175 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Swagger.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Swagger.yml @@ -1,7 +1,7 @@ --- title: Magento_Swagger source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Swagger/README.md last_modified_at: '2015-08-14 15:14:44 -0500' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/SwaggerWebapi.yaml b/src/_data/codebase/v2_3/mrg/ce/SwaggerWebapi.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ce/SwaggerWebapi.yaml rename to src/_data/codebase/v2_3/mrg/ce/SwaggerWebapi.yml index 367c8783914..2f328c91fc7 100644 --- a/src/_data/codebase/v2_3/mrg/ce/SwaggerWebapi.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/SwaggerWebapi.yml @@ -1,7 +1,7 @@ --- title: Magento_SwaggerWebapi source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/SwaggerWebapi/README.md last_modified_at: '2018-03-23 17:48:45 +1300' content: The Magento_SwaggerWebapi module provides the implementation of the REST diff --git a/src/_data/codebase/v2_3/mrg/ce/SwaggerWebapiAsync.yaml b/src/_data/codebase/v2_3/mrg/ce/SwaggerWebapiAsync.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/SwaggerWebapiAsync.yaml rename to src/_data/codebase/v2_3/mrg/ce/SwaggerWebapiAsync.yml index 9bece099a1f..26e5004206f 100644 --- a/src/_data/codebase/v2_3/mrg/ce/SwaggerWebapiAsync.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/SwaggerWebapiAsync.yml @@ -1,7 +1,7 @@ --- title: Magento_SwaggerWebapiAsync source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/SwaggerWebapiAsync/README.md last_modified_at: '2018-03-23 17:48:46 +1300' content: The Magento_SwaggerWebapiAsync module provides the implementation of the diff --git a/src/_data/codebase/v2_3/mrg/ce/Swatches.yaml b/src/_data/codebase/v2_3/mrg/ce/Swatches.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/Swatches.yaml rename to src/_data/codebase/v2_3/mrg/ce/Swatches.yml index de8c3fc4be3..b860e8b20a1 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Swatches.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Swatches.yml @@ -1,7 +1,7 @@ --- title: Magento_Swatches source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Swatches/README.md last_modified_at: '2015-07-28 12:18:39 +0300' content: Magento_Swatches module is replacing default product attributes text values diff --git a/src/_data/codebase/v2_3/mrg/ce/SwatchesGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ce/SwatchesGraphQl.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/SwatchesGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ce/SwatchesGraphQl.yml index 931050699e2..01127257296 100644 --- a/src/_data/codebase/v2_3/mrg/ce/SwatchesGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/SwatchesGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_SwatchesGraphQl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/SwatchesGraphQl/README.md last_modified_at: '2018-01-16 16:07:17 -0600' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/SwatchesLayeredNavigation.yaml b/src/_data/codebase/v2_3/mrg/ce/SwatchesLayeredNavigation.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/ce/SwatchesLayeredNavigation.yaml rename to src/_data/codebase/v2_3/mrg/ce/SwatchesLayeredNavigation.yml index 6520626c938..aff4142d440 100644 --- a/src/_data/codebase/v2_3/mrg/ce/SwatchesLayeredNavigation.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/SwatchesLayeredNavigation.yml @@ -1,7 +1,7 @@ --- title: Magento_SwatchesLayeredNavigation source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/SwatchesLayeredNavigation/README.md last_modified_at: '2016-03-10 13:38:33 +0200' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/Tax.yaml b/src/_data/codebase/v2_3/mrg/ce/Tax.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ce/Tax.yaml rename to src/_data/codebase/v2_3/mrg/ce/Tax.yml index 33fd1998044..9713efd4762 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Tax.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Tax.yml @@ -1,7 +1,7 @@ --- title: Magento_Tax source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Tax/README.md last_modified_at: '2014-10-24 14:51:44 -0700' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ce/TaxGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ce/TaxGraphQl.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/TaxGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ce/TaxGraphQl.yml index 82806f00e47..081264e27f0 100644 --- a/src/_data/codebase/v2_3/mrg/ce/TaxGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/TaxGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_TaxGraphQl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/TaxGraphQl/README.md last_modified_at: '2018-01-16 16:07:17 -0600' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/Theme.yaml b/src/_data/codebase/v2_3/mrg/ce/Theme.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ce/Theme.yaml rename to src/_data/codebase/v2_3/mrg/ce/Theme.yml index a5d6276cd64..7fd31baed8e 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Theme.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Theme.yml @@ -1,7 +1,7 @@ --- title: Magento_Theme source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Theme/README.md last_modified_at: '2014-07-11 11:30:21 -0700' content: The Theme module contains common infrastructure that provides an ability diff --git a/src/_data/codebase/v2_3/mrg/ce/ThemeGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ce/ThemeGraphQl.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ce/ThemeGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ce/ThemeGraphQl.yml index 3527cf1810c..95c53c11cb9 100644 --- a/src/_data/codebase/v2_3/mrg/ce/ThemeGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/ThemeGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_ThemeGraphQl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/ThemeGraphQl/README.md last_modified_at: '2018-12-06 10:59:37 -0500' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/Tinymce3.yaml b/src/_data/codebase/v2_3/mrg/ce/Tinymce3.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/Tinymce3.yaml rename to src/_data/codebase/v2_3/mrg/ce/Tinymce3.yml index d7619993166..79274497d0f 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Tinymce3.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Tinymce3.yml @@ -1,7 +1,7 @@ --- title: Magento_Tinymce3 source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Tinymce3/README.md last_modified_at: '2018-05-14 17:18:09 -0500' content: We have updated the TinyMCE module to the latest available version, 4.6.4. diff --git a/src/_data/codebase/v2_3/mrg/ce/Translation.yaml b/src/_data/codebase/v2_3/mrg/ce/Translation.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/Translation.yaml rename to src/_data/codebase/v2_3/mrg/ce/Translation.yml index 8df062d12dd..cc8c14c71d4 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Translation.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Translation.yml @@ -1,7 +1,7 @@ --- title: Magento_Translation source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Translation/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/Ui.yaml b/src/_data/codebase/v2_3/mrg/ce/Ui.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/ce/Ui.yaml rename to src/_data/codebase/v2_3/mrg/ce/Ui.yml index 40d87dcf233..565d89180df 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Ui.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Ui.yml @@ -1,7 +1,7 @@ --- title: Magento_Ui source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Ui/README.md last_modified_at: '2016-08-05 21:54:51 +1200' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/Ups.yaml b/src/_data/codebase/v2_3/mrg/ce/Ups.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ce/Ups.yaml rename to src/_data/codebase/v2_3/mrg/ce/Ups.yml index f958aa78293..be5f2f359a7 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Ups.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Ups.yml @@ -1,7 +1,7 @@ --- title: Magento_Ups source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Ups/README.md last_modified_at: '2014-10-31 09:04:08 -0700' content: 'The Magento_Ups module implements integration with the United Parcel Service diff --git a/src/_data/codebase/v2_3/mrg/ce/UrlRewrite.yaml b/src/_data/codebase/v2_3/mrg/ce/UrlRewrite.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ce/UrlRewrite.yaml rename to src/_data/codebase/v2_3/mrg/ce/UrlRewrite.yml index bd858d6c1b6..3748f8cc4b5 100644 --- a/src/_data/codebase/v2_3/mrg/ce/UrlRewrite.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/UrlRewrite.yml @@ -1,7 +1,7 @@ --- title: Magento_UrlRewrite source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/UrlRewrite/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: 'Magento_UrlRewrite module provides ability to customize website URLs by diff --git a/src/_data/codebase/v2_3/mrg/ce/UrlRewriteGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ce/UrlRewriteGraphQl.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/UrlRewriteGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ce/UrlRewriteGraphQl.yml index 1719f1b0bda..f5abfcd8486 100644 --- a/src/_data/codebase/v2_3/mrg/ce/UrlRewriteGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/UrlRewriteGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_UrlRewriteGraphQl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/UrlRewriteGraphQl/README.md last_modified_at: '2018-01-17 11:18:15 -0600' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/User.yaml b/src/_data/codebase/v2_3/mrg/ce/User.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/ce/User.yaml rename to src/_data/codebase/v2_3/mrg/ce/User.yml index 09aeac6ccd8..a4ca7bc19fa 100644 --- a/src/_data/codebase/v2_3/mrg/ce/User.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/User.yml @@ -1,7 +1,7 @@ --- title: Magento_User source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/User/README.md last_modified_at: '2015-08-27 15:34:05 -0500' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/Usps.yaml b/src/_data/codebase/v2_3/mrg/ce/Usps.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ce/Usps.yaml rename to src/_data/codebase/v2_3/mrg/ce/Usps.yml index 3b7ae736202..f655365f650 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Usps.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Usps.yml @@ -1,7 +1,7 @@ --- title: Magento_Usps source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Usps/README.md last_modified_at: '2014-10-31 09:04:08 -0700' content: 'The Magento_Usps module provides integration with the United States Postal diff --git a/src/_data/codebase/v2_3/mrg/ce/Variable.yaml b/src/_data/codebase/v2_3/mrg/ce/Variable.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/Variable.yaml rename to src/_data/codebase/v2_3/mrg/ce/Variable.yml index e3efa2ab2ec..b5adee51b3e 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Variable.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Variable.yml @@ -1,7 +1,7 @@ --- title: Magento_Variable source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Variable/README.md last_modified_at: '2015-02-10 10:11:24 -0600' content: 'Magento\Variable Allows to create custom variables and then use them in diff --git a/src/_data/codebase/v2_3/mrg/ce/Vault.yaml b/src/_data/codebase/v2_3/mrg/ce/Vault.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/Vault.yaml rename to src/_data/codebase/v2_3/mrg/ce/Vault.yml index c772b3c71a5..b258181a51f 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Vault.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Vault.yml @@ -1,7 +1,7 @@ --- title: Magento_Vault source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Vault/README.md last_modified_at: '2015-12-02 14:06:21 +0200' content: 'The Magento_Vault module implements the integration with the Vault payment diff --git a/src/_data/codebase/v2_3/mrg/ce/VaultGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ce/VaultGraphQl.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/VaultGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ce/VaultGraphQl.yml index 1717c613018..ed873007620 100644 --- a/src/_data/codebase/v2_3/mrg/ce/VaultGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/VaultGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_VaultGraphQl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/VaultGraphQl/README.md last_modified_at: '2019-01-22 15:13:27 -0500' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/Version.yaml b/src/_data/codebase/v2_3/mrg/ce/Version.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ce/Version.yaml rename to src/_data/codebase/v2_3/mrg/ce/Version.yml index c15fc17ab67..1923f312844 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Version.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Version.yml @@ -1,7 +1,7 @@ --- title: Magento_Version source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Version/README.md last_modified_at: '2015-01-29 16:15:56 -0600' content: 'Magento\Version Allows to get Magento version and edition by HTTP GET request diff --git a/src/_data/codebase/v2_3/mrg/ce/Webapi.yaml b/src/_data/codebase/v2_3/mrg/ce/Webapi.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/Webapi.yaml rename to src/_data/codebase/v2_3/mrg/ce/Webapi.yml index 05dfc59578a..1616d17d563 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Webapi.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Webapi.yml @@ -1,7 +1,7 @@ --- title: Magento_Webapi source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Webapi/README.md last_modified_at: '2014-10-24 14:51:44 -0700' content: "**Webapi** provides the framework for the application to expose REST and diff --git a/src/_data/codebase/v2_3/mrg/ce/WebapiAsync.yaml b/src/_data/codebase/v2_3/mrg/ce/WebapiAsync.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/WebapiAsync.yaml rename to src/_data/codebase/v2_3/mrg/ce/WebapiAsync.yml index bbeb0ad5710..93dbaff690e 100644 --- a/src/_data/codebase/v2_3/mrg/ce/WebapiAsync.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/WebapiAsync.yml @@ -1,7 +1,7 @@ --- title: Magento_WebapiAsync source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/WebapiAsync/README.md last_modified_at: '2018-03-20 12:57:53 +0200' content: "**WebapiAsync** Extends Webapi extension and provide functional to process diff --git a/src/_data/codebase/v2_3/mrg/ce/WebapiSecurity.yaml b/src/_data/codebase/v2_3/mrg/ce/WebapiSecurity.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/ce/WebapiSecurity.yaml rename to src/_data/codebase/v2_3/mrg/ce/WebapiSecurity.yml index 4927744874f..dc345c45fbe 100644 --- a/src/_data/codebase/v2_3/mrg/ce/WebapiSecurity.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/WebapiSecurity.yml @@ -1,7 +1,7 @@ --- title: Magento_WebapiSecurity source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/WebapiSecurity/README.md last_modified_at: '2016-03-22 15:38:49 -0500' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/Weee.yaml b/src/_data/codebase/v2_3/mrg/ce/Weee.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ce/Weee.yaml rename to src/_data/codebase/v2_3/mrg/ce/Weee.yml index 386ddd7fbec..fad410b5b89 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Weee.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Weee.yml @@ -1,7 +1,7 @@ --- title: Magento_Weee source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Weee/README.md last_modified_at: '2017-04-10 16:29:08 -0500' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/WeeeGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ce/WeeeGraphQl.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ce/WeeeGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ce/WeeeGraphQl.yml index 97557d5b74d..eaf80d3f73d 100644 --- a/src/_data/codebase/v2_3/mrg/ce/WeeeGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/WeeeGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_WeeeGraphQl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/WeeeGraphQl/README.md last_modified_at: '2018-01-17 17:11:48 -0600' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/Widget.yaml b/src/_data/codebase/v2_3/mrg/ce/Widget.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ce/Widget.yaml rename to src/_data/codebase/v2_3/mrg/ce/Widget.yml index 9cf2368eeaa..52fefafccce 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Widget.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Widget.yml @@ -1,7 +1,7 @@ --- title: Magento_Widget source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Widget/README.md last_modified_at: '2014-07-11 11:30:21 -0700' content: The Widget module allows Magento application to be extended with custom widget diff --git a/src/_data/codebase/v2_3/mrg/ce/Wishlist.yaml b/src/_data/codebase/v2_3/mrg/ce/Wishlist.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/Wishlist.yaml rename to src/_data/codebase/v2_3/mrg/ce/Wishlist.yml index e22753fce5c..11413cbd84b 100644 --- a/src/_data/codebase/v2_3/mrg/ce/Wishlist.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/Wishlist.yml @@ -1,7 +1,7 @@ --- title: Magento_Wishlist source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Wishlist/README.md last_modified_at: '2014-10-31 09:04:08 -0700' content: | diff --git a/src/_data/codebase/v2_3/mrg/ce/WishlistAnalytics.yaml b/src/_data/codebase/v2_3/mrg/ce/WishlistAnalytics.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ce/WishlistAnalytics.yaml rename to src/_data/codebase/v2_3/mrg/ce/WishlistAnalytics.yml index 202a9a04a00..9527bff060a 100644 --- a/src/_data/codebase/v2_3/mrg/ce/WishlistAnalytics.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/WishlistAnalytics.yml @@ -1,7 +1,7 @@ --- title: Magento_WishlistAnalytics source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/WishlistAnalytics/README.md last_modified_at: '2019-08-06 14:40:28 -0500' content: 'The Magento_WishlistAnalytics module configures data definitions for a data diff --git a/src/_data/codebase/v2_3/mrg/ce/WishlistGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ce/WishlistGraphQl.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ce/WishlistGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ce/WishlistGraphQl.yml index 2447786ffb0..06d7633548d 100644 --- a/src/_data/codebase/v2_3/mrg/ce/WishlistGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ce/WishlistGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_WishlistGraphQl source_repo: magento2ce -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/WishlistGraphQl/README.md last_modified_at: '2018-10-26 12:42:07 +0200' content: | diff --git a/src/_data/codebase/v2_3/mrg/ee/AdminGws.yaml b/src/_data/codebase/v2_3/mrg/ee/AdminGws.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ee/AdminGws.yaml rename to src/_data/codebase/v2_3/mrg/ee/AdminGws.yml index a496ab7e984..d2c5f7b5ecd 100644 --- a/src/_data/codebase/v2_3/mrg/ee/AdminGws.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/AdminGws.yml @@ -1,7 +1,7 @@ --- title: Magento_AdminGws source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/AdminGws/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: "**AdminGws** provides configuration management within the Global, Website, diff --git a/src/_data/codebase/v2_3/mrg/ee/AdminGwsConfigurableProduct.yml b/src/_data/codebase/v2_3/mrg/ee/AdminGwsConfigurableProduct.yml new file mode 100644 index 00000000000..ead03397283 --- /dev/null +++ b/src/_data/codebase/v2_3/mrg/ee/AdminGwsConfigurableProduct.yml @@ -0,0 +1,30 @@ +--- +title: Magento_AdminGwsConfigurableProduct +source_repo: magento2ee +release: 2.3.6 +github_path: app/code/Magento/AdminGwsConfigurableProduct/README.md +last_modified_at: '2020-06-02 14:53:14 +0300' +content: | +

Magento_AdminGwsConfigurableProduct module

+ + ## Overview + + The Magento_AdminGwsConfigurableProduct module is a part of the restricted admin user permissions functionality in Magento EE. It extends the Magento_AdminGws module functionality for configurable product. + + ## Implementation Details + + The Magento_AdminGwsConfigurableProduct module: + + * adds plugin on `\Magento\Magento_AdminGwsConfigurableProduct\Plugin\PermissionsDataChecker` to check permissions for current user. + + ## Dependencies + + You can find the list of modules the Magento_AdminGwsConfigurableProduct module depends on in the `require` section of the `composer.json` file located in the same directory as this `README.md` file. + + ## Extension Points + + The Magento_AdminGwsConfigurableProduct module does not provide any specific extension points. + + ## Additional information + + For more Magento 2 developer documentation, see [Magento 2 Developer Documentation](http://devdocs.magento.com). diff --git a/src/_data/codebase/v2_3/mrg/ee/AdminGwsStaging.yml b/src/_data/codebase/v2_3/mrg/ee/AdminGwsStaging.yml new file mode 100644 index 00000000000..bb4270b9a53 --- /dev/null +++ b/src/_data/codebase/v2_3/mrg/ee/AdminGwsStaging.yml @@ -0,0 +1,30 @@ +--- +title: Magento_AdminGwsStaging +source_repo: magento2ee +release: 2.3.6 +github_path: app/code/Magento/AdminGwsStaging/README.md +last_modified_at: '2020-03-19 10:46:04 -0500' +content: | +

Magento_AdminGwsStaging module

+ + ## Overview + + The Magento_AdminGwsStaging module is a part of the staging functionality in Magento EE. It extends the Magento_AdminGws module functionality to be used in staging mode. + + ## Implementation Details + + The Magento_AdminGwsStaging module: + + * adds plugin on `\Magento\AdminGwsStaging\Plugin\PreviewUrlBuilder` to add default store view the current user has access to. + + ## Dependencies + + You can find the list of modules the Magento_AdminGwsStaging module depends on in the `require` section of the `composer.json` file located in the same directory as this `README.md` file. + + ## Extension Points + + The Magento_AdminGwsStaging module does not provide any specific extension points. + + ## Additional information + + For more Magento 2 developer documentation, see [Magento 2 Developer Documentation](http://devdocs.magento.com). diff --git a/src/_data/codebase/v2_3/mrg/ee/AdvancedCatalog.yaml b/src/_data/codebase/v2_3/mrg/ee/AdvancedCatalog.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ee/AdvancedCatalog.yaml rename to src/_data/codebase/v2_3/mrg/ee/AdvancedCatalog.yml index f58f8086c6e..af825bba6b4 100644 --- a/src/_data/codebase/v2_3/mrg/ee/AdvancedCatalog.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/AdvancedCatalog.yml @@ -1,7 +1,7 @@ --- title: Magento_AdvancedCatalog source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/AdvancedCatalog/README.md last_modified_at: '2015-06-22 19:38:00 +0300' content: | diff --git a/src/_data/codebase/v2_3/mrg/ee/AdvancedCheckout.yaml b/src/_data/codebase/v2_3/mrg/ee/AdvancedCheckout.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ee/AdvancedCheckout.yaml rename to src/_data/codebase/v2_3/mrg/ee/AdvancedCheckout.yml index e5ce25acc1d..55adf81b60f 100644 --- a/src/_data/codebase/v2_3/mrg/ee/AdvancedCheckout.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/AdvancedCheckout.yml @@ -1,7 +1,7 @@ --- title: Magento_AdvancedCheckout source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/AdvancedCheckout/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ee/AdvancedRule.yaml b/src/_data/codebase/v2_3/mrg/ee/AdvancedRule.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ee/AdvancedRule.yaml rename to src/_data/codebase/v2_3/mrg/ee/AdvancedRule.yml index 6da2e2c8804..f620b3f8d60 100644 --- a/src/_data/codebase/v2_3/mrg/ee/AdvancedRule.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/AdvancedRule.yml @@ -1,7 +1,7 @@ --- title: Magento_AdvancedRule source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/AdvancedRule/README.md last_modified_at: '2015-11-20 12:14:51 -0600' content: "AdvancedRule module enhances the performance of rule processing.\n\n" diff --git a/src/_data/codebase/v2_3/mrg/ee/AdvancedSalesRule.yaml b/src/_data/codebase/v2_3/mrg/ee/AdvancedSalesRule.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ee/AdvancedSalesRule.yaml rename to src/_data/codebase/v2_3/mrg/ee/AdvancedSalesRule.yml index d05462c4166..3f6a99303bd 100644 --- a/src/_data/codebase/v2_3/mrg/ee/AdvancedSalesRule.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/AdvancedSalesRule.yml @@ -1,7 +1,7 @@ --- title: Magento_AdvancedSalesRule source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/AdvancedSalesRule/README.md last_modified_at: '2015-11-20 12:14:51 -0600' content: "AdvancedSalesRule module enhances the performance of sale rule processing.\n\n" diff --git a/src/_data/codebase/v2_3/mrg/ee/Banner.yaml b/src/_data/codebase/v2_3/mrg/ee/Banner.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ee/Banner.yaml rename to src/_data/codebase/v2_3/mrg/ee/Banner.yml index f870cb6e9f6..58831ae941d 100644 --- a/src/_data/codebase/v2_3/mrg/ee/Banner.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/Banner.yml @@ -1,7 +1,7 @@ --- title: Magento_Banner source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Banner/README.md last_modified_at: '2018-01-12 13:34:20 +0200' content: "The Banner module allows creating and managing dynamic blocks and widgets diff --git a/src/_data/codebase/v2_3/mrg/ee/BannerCustomerSegment.yaml b/src/_data/codebase/v2_3/mrg/ee/BannerCustomerSegment.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ee/BannerCustomerSegment.yaml rename to src/_data/codebase/v2_3/mrg/ee/BannerCustomerSegment.yml index 1c5192af7b6..b487f0f0dad 100644 --- a/src/_data/codebase/v2_3/mrg/ee/BannerCustomerSegment.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/BannerCustomerSegment.yml @@ -1,7 +1,7 @@ --- title: Magento_BannerCustomerSegment source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/BannerCustomerSegment/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: The Banner Customer Segment module allows creating and managing banners in diff --git a/src/_data/codebase/v2_3/mrg/ee/BundleImportExportStaging.yaml b/src/_data/codebase/v2_3/mrg/ee/BundleImportExportStaging.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/ee/BundleImportExportStaging.yaml rename to src/_data/codebase/v2_3/mrg/ee/BundleImportExportStaging.yml index 0bbe9d9cfc7..ababe6b8d90 100644 --- a/src/_data/codebase/v2_3/mrg/ee/BundleImportExportStaging.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/BundleImportExportStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_BundleImportExportStaging source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/BundleImportExportStaging/README.md last_modified_at: '2017-05-26 18:23:26 +0300' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ee/BundleStaging.yaml b/src/_data/codebase/v2_3/mrg/ee/BundleStaging.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ee/BundleStaging.yaml rename to src/_data/codebase/v2_3/mrg/ee/BundleStaging.yml index c9ac44d61c0..f41ff0bc94d 100644 --- a/src/_data/codebase/v2_3/mrg/ee/BundleStaging.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/BundleStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_BundleStaging source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/BundleStaging/README.md last_modified_at: '2016-04-12 17:33:21 +0300' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ee/CatalogEvent.yaml b/src/_data/codebase/v2_3/mrg/ee/CatalogEvent.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ee/CatalogEvent.yaml rename to src/_data/codebase/v2_3/mrg/ee/CatalogEvent.yml index a9da9d901fb..4a84cfe0909 100644 --- a/src/_data/codebase/v2_3/mrg/ee/CatalogEvent.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/CatalogEvent.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogEvent source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CatalogEvent/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: | diff --git a/src/_data/codebase/v2_3/mrg/ee/CatalogImportExportStaging.yaml b/src/_data/codebase/v2_3/mrg/ee/CatalogImportExportStaging.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ee/CatalogImportExportStaging.yaml rename to src/_data/codebase/v2_3/mrg/ee/CatalogImportExportStaging.yml index 0db4a047658..855b4ead9d5 100644 --- a/src/_data/codebase/v2_3/mrg/ee/CatalogImportExportStaging.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/CatalogImportExportStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogImportExportStaging source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CatalogImportExportStaging/README.md last_modified_at: '2016-04-07 09:45:21 -0500' content: | diff --git a/src/_data/codebase/v2_3/mrg/ee/CatalogInventoryStaging.yaml b/src/_data/codebase/v2_3/mrg/ee/CatalogInventoryStaging.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ee/CatalogInventoryStaging.yaml rename to src/_data/codebase/v2_3/mrg/ee/CatalogInventoryStaging.yml index 5d2f1242322..00b18711a75 100644 --- a/src/_data/codebase/v2_3/mrg/ee/CatalogInventoryStaging.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/CatalogInventoryStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogInventoryStaging source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CatalogInventoryStaging/README.md last_modified_at: '2016-07-04 18:13:15 +0300' content: "## Magento_CatalogInventoryStaging module\n\n## Overview\n\nThe Magento_CatalogInventoryStaging diff --git a/src/_data/codebase/v2_3/mrg/ee/CatalogPermissions.yaml b/src/_data/codebase/v2_3/mrg/ee/CatalogPermissions.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ee/CatalogPermissions.yaml rename to src/_data/codebase/v2_3/mrg/ee/CatalogPermissions.yml index 58d0cadba30..40ddb6a6830 100644 --- a/src/_data/codebase/v2_3/mrg/ee/CatalogPermissions.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/CatalogPermissions.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogPermissions source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CatalogPermissions/README.md last_modified_at: '2015-05-14 15:09:36 +0300' content: | diff --git a/src/_data/codebase/v2_3/mrg/ee/CatalogRuleStaging.yaml b/src/_data/codebase/v2_3/mrg/ee/CatalogRuleStaging.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ee/CatalogRuleStaging.yaml rename to src/_data/codebase/v2_3/mrg/ee/CatalogRuleStaging.yml index c451f60290f..8c94413ee20 100644 --- a/src/_data/codebase/v2_3/mrg/ee/CatalogRuleStaging.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/CatalogRuleStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogRuleStaging source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CatalogRuleStaging/README.md last_modified_at: '2016-08-03 10:46:30 +0300' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ee/CatalogStaging.yaml b/src/_data/codebase/v2_3/mrg/ee/CatalogStaging.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ee/CatalogStaging.yaml rename to src/_data/codebase/v2_3/mrg/ee/CatalogStaging.yml index df3fe7612cd..dffc6f1195c 100644 --- a/src/_data/codebase/v2_3/mrg/ee/CatalogStaging.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/CatalogStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogStaging source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CatalogStaging/README.md last_modified_at: '2016-07-13 17:35:04 -0500' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ee/CatalogStagingGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ee/CatalogStagingGraphQl.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ee/CatalogStagingGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ee/CatalogStagingGraphQl.yml index a851b918895..727666b6619 100644 --- a/src/_data/codebase/v2_3/mrg/ee/CatalogStagingGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/CatalogStagingGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogStagingGraphQl source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CatalogStagingGraphQl/README.md last_modified_at: '2019-11-22 09:44:16 -0600' content: | diff --git a/src/_data/codebase/v2_3/mrg/ee/CatalogUrlRewriteStaging.yaml b/src/_data/codebase/v2_3/mrg/ee/CatalogUrlRewriteStaging.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/ee/CatalogUrlRewriteStaging.yaml rename to src/_data/codebase/v2_3/mrg/ee/CatalogUrlRewriteStaging.yml index 2adb091c8ed..5d86528cb9a 100644 --- a/src/_data/codebase/v2_3/mrg/ee/CatalogUrlRewriteStaging.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/CatalogUrlRewriteStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogUrlRewriteStaging source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CatalogUrlRewriteStaging/README.md last_modified_at: '2016-07-04 18:13:15 +0300' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ee/CheckoutAddressSearch.yaml b/src/_data/codebase/v2_3/mrg/ee/CheckoutAddressSearch.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/ee/CheckoutAddressSearch.yaml rename to src/_data/codebase/v2_3/mrg/ee/CheckoutAddressSearch.yml index 8fbad9f3d4f..b928ca52fd8 100644 --- a/src/_data/codebase/v2_3/mrg/ee/CheckoutAddressSearch.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/CheckoutAddressSearch.yml @@ -1,7 +1,7 @@ --- title: Magento_CheckoutAddressSearch source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CheckoutAddressSearch/README.md last_modified_at: '2019-04-10 17:47:51 -0500' content: | diff --git a/src/_data/codebase/v2_3/mrg/ee/CheckoutAddressSearchGiftRegistry.yaml b/src/_data/codebase/v2_3/mrg/ee/CheckoutAddressSearchGiftRegistry.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/ee/CheckoutAddressSearchGiftRegistry.yaml rename to src/_data/codebase/v2_3/mrg/ee/CheckoutAddressSearchGiftRegistry.yml index b56ec3ff08c..a911336f8d5 100644 --- a/src/_data/codebase/v2_3/mrg/ee/CheckoutAddressSearchGiftRegistry.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/CheckoutAddressSearchGiftRegistry.yml @@ -1,7 +1,7 @@ --- title: Magento_CheckoutAddressSearchGiftRegistry source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CheckoutAddressSearchGiftRegistry/README.md last_modified_at: '2019-04-05 18:54:17 -0500' content: | diff --git a/src/_data/codebase/v2_3/mrg/ee/CheckoutStaging.yaml b/src/_data/codebase/v2_3/mrg/ee/CheckoutStaging.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ee/CheckoutStaging.yaml rename to src/_data/codebase/v2_3/mrg/ee/CheckoutStaging.yml index a77a90f582d..82e839f285d 100644 --- a/src/_data/codebase/v2_3/mrg/ee/CheckoutStaging.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/CheckoutStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_CheckoutStaging source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CheckoutStaging/README.md last_modified_at: '2016-07-04 12:55:14 +0000' content: | diff --git a/src/_data/codebase/v2_3/mrg/ee/CmsStaging.yaml b/src/_data/codebase/v2_3/mrg/ee/CmsStaging.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ee/CmsStaging.yaml rename to src/_data/codebase/v2_3/mrg/ee/CmsStaging.yml index 74b5cad6cbf..644c3d720c4 100644 --- a/src/_data/codebase/v2_3/mrg/ee/CmsStaging.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/CmsStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_CmsStaging source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CmsStaging/README.md last_modified_at: '2016-07-13 17:35:04 -0500' content: "## Magento_CmsStaging module\n\n## Overview\n\nThe Magento_CmsStaging module diff --git a/src/_data/codebase/v2_3/mrg/ee/ConfigurableProductStaging.yaml b/src/_data/codebase/v2_3/mrg/ee/ConfigurableProductStaging.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ee/ConfigurableProductStaging.yaml rename to src/_data/codebase/v2_3/mrg/ee/ConfigurableProductStaging.yml index bed50d9e1b5..36666f49012 100644 --- a/src/_data/codebase/v2_3/mrg/ee/ConfigurableProductStaging.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/ConfigurableProductStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_ConfigurableProductStaging source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/ConfigurableProductStaging/README.md last_modified_at: '2017-02-06 15:24:41 +0200' content: | diff --git a/src/_data/codebase/v2_3/mrg/ee/CustomAttributeManagement.yaml b/src/_data/codebase/v2_3/mrg/ee/CustomAttributeManagement.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/ee/CustomAttributeManagement.yaml rename to src/_data/codebase/v2_3/mrg/ee/CustomAttributeManagement.yml index 7160a9180fa..134385f6716 100644 --- a/src/_data/codebase/v2_3/mrg/ee/CustomAttributeManagement.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/CustomAttributeManagement.yml @@ -1,7 +1,7 @@ --- title: Magento_CustomAttributeManagement source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CustomAttributeManagement/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: | diff --git a/src/_data/codebase/v2_3/mrg/ee/CustomerBalance.yaml b/src/_data/codebase/v2_3/mrg/ee/CustomerBalance.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ee/CustomerBalance.yaml rename to src/_data/codebase/v2_3/mrg/ee/CustomerBalance.yml index 25e79308cf1..57e8029161c 100644 --- a/src/_data/codebase/v2_3/mrg/ee/CustomerBalance.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/CustomerBalance.yml @@ -1,7 +1,7 @@ --- title: Magento_CustomerBalance source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CustomerBalance/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: | diff --git a/src/_data/codebase/v2_3/mrg/ee/CustomerBalanceGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ee/CustomerBalanceGraphQl.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ee/CustomerBalanceGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ee/CustomerBalanceGraphQl.yml index b51875101a2..16247269b92 100644 --- a/src/_data/codebase/v2_3/mrg/ee/CustomerBalanceGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/CustomerBalanceGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_CustomerBalanceGraphQl source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CustomerBalanceGraphQl/README.md last_modified_at: '2019-07-16 10:30:00 -0500' content: | diff --git a/src/_data/codebase/v2_3/mrg/ee/CustomerCustomAttributes.yaml b/src/_data/codebase/v2_3/mrg/ee/CustomerCustomAttributes.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ee/CustomerCustomAttributes.yaml rename to src/_data/codebase/v2_3/mrg/ee/CustomerCustomAttributes.yml index e198c0508cc..47541480c77 100644 --- a/src/_data/codebase/v2_3/mrg/ee/CustomerCustomAttributes.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/CustomerCustomAttributes.yml @@ -1,7 +1,7 @@ --- title: Magento_CustomerCustomAttributes source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CustomerCustomAttributes/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: | diff --git a/src/_data/codebase/v2_3/mrg/ee/CustomerFinance.yaml b/src/_data/codebase/v2_3/mrg/ee/CustomerFinance.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/ee/CustomerFinance.yaml rename to src/_data/codebase/v2_3/mrg/ee/CustomerFinance.yml index 9623b42348c..a1b744d0e1b 100644 --- a/src/_data/codebase/v2_3/mrg/ee/CustomerFinance.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/CustomerFinance.yml @@ -1,7 +1,7 @@ --- title: Magento_CustomerFinance source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CustomerFinance/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: | diff --git a/src/_data/codebase/v2_3/mrg/ee/CustomerSegment.yaml b/src/_data/codebase/v2_3/mrg/ee/CustomerSegment.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/ee/CustomerSegment.yaml rename to src/_data/codebase/v2_3/mrg/ee/CustomerSegment.yml index a60515a2ead..b03419f99a9 100644 --- a/src/_data/codebase/v2_3/mrg/ee/CustomerSegment.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/CustomerSegment.yml @@ -1,7 +1,7 @@ --- title: Magento_CustomerSegment source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/CustomerSegment/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: | diff --git a/src/_data/codebase/v2_3/mrg/ee/Cybersource.yaml b/src/_data/codebase/v2_3/mrg/ee/Cybersource.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ee/Cybersource.yaml rename to src/_data/codebase/v2_3/mrg/ee/Cybersource.yml index 9f4cbec2b71..0233d40fe08 100644 --- a/src/_data/codebase/v2_3/mrg/ee/Cybersource.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/Cybersource.yml @@ -1,7 +1,7 @@ --- title: Magento_Cybersource source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Cybersource/README.md last_modified_at: '2015-06-19 14:49:00 +0300' content: 'The Magento_Cybersource module implements the integration with the Cybersource diff --git a/src/_data/codebase/v2_3/mrg/ee/DownloadableStaging.yaml b/src/_data/codebase/v2_3/mrg/ee/DownloadableStaging.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ee/DownloadableStaging.yaml rename to src/_data/codebase/v2_3/mrg/ee/DownloadableStaging.yml index 61426c2754b..317949f972e 100644 --- a/src/_data/codebase/v2_3/mrg/ee/DownloadableStaging.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/DownloadableStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_DownloadableStaging source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/DownloadableStaging/README.md last_modified_at: '2016-07-13 17:35:04 -0500' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ee/ElasticsearchCatalogPermissions.yaml b/src/_data/codebase/v2_3/mrg/ee/ElasticsearchCatalogPermissions.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ee/ElasticsearchCatalogPermissions.yaml rename to src/_data/codebase/v2_3/mrg/ee/ElasticsearchCatalogPermissions.yml index 289a63a51ce..2f426fde536 100644 --- a/src/_data/codebase/v2_3/mrg/ee/ElasticsearchCatalogPermissions.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/ElasticsearchCatalogPermissions.yml @@ -1,7 +1,7 @@ --- title: Magento_ElasticsearchCatalogPermissions source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/ElasticsearchCatalogPermissions/README.md last_modified_at: '2018-12-28 16:36:26 +0200' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ee/Enterprise.yaml b/src/_data/codebase/v2_3/mrg/ee/Enterprise.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ee/Enterprise.yaml rename to src/_data/codebase/v2_3/mrg/ee/Enterprise.yml index cfb3d52d093..9e01986a72b 100644 --- a/src/_data/codebase/v2_3/mrg/ee/Enterprise.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/Enterprise.yml @@ -1,7 +1,7 @@ --- title: Magento_Enterprise source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Enterprise/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: The Enterprise module switches the store to Enterprise edition by adding diff --git a/src/_data/codebase/v2_3/mrg/ee/Eway.yaml b/src/_data/codebase/v2_3/mrg/ee/Eway.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ee/Eway.yaml rename to src/_data/codebase/v2_3/mrg/ee/Eway.yml index 5e4bbde850c..233d3ad64b7 100644 --- a/src/_data/codebase/v2_3/mrg/ee/Eway.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/Eway.yml @@ -1,7 +1,7 @@ --- title: Magento_Eway source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Eway/README.md last_modified_at: '2015-07-29 19:08:38 +0300' content: 'The Magento_Eway module implements the integration with the Eway payment diff --git a/src/_data/codebase/v2_3/mrg/ee/GiftCard.yaml b/src/_data/codebase/v2_3/mrg/ee/GiftCard.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/ee/GiftCard.yaml rename to src/_data/codebase/v2_3/mrg/ee/GiftCard.yml index b7b58bbddc8..82ce2530963 100644 --- a/src/_data/codebase/v2_3/mrg/ee/GiftCard.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/GiftCard.yml @@ -1,7 +1,7 @@ --- title: Magento_GiftCard source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/GiftCard/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: "Magento_GiftCard module introduces new product type in the Magento application diff --git a/src/_data/codebase/v2_3/mrg/ee/GiftCardAccount.yaml b/src/_data/codebase/v2_3/mrg/ee/GiftCardAccount.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ee/GiftCardAccount.yaml rename to src/_data/codebase/v2_3/mrg/ee/GiftCardAccount.yml index 8b089d3e0d3..12206a3a16a 100644 --- a/src/_data/codebase/v2_3/mrg/ee/GiftCardAccount.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/GiftCardAccount.yml @@ -1,7 +1,7 @@ --- title: Magento_GiftCardAccount source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/GiftCardAccount/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: 'The Magento_GiftCardAccount module is responsible for gift card balances, diff --git a/src/_data/codebase/v2_3/mrg/ee/GiftCardAccountGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ee/GiftCardAccountGraphQl.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ee/GiftCardAccountGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ee/GiftCardAccountGraphQl.yml index 6a80df3b434..f911429491e 100644 --- a/src/_data/codebase/v2_3/mrg/ee/GiftCardAccountGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/GiftCardAccountGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_GiftCardAccountGraphQl source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/GiftCardAccountGraphQl/README.md last_modified_at: '2019-05-30 10:55:23 -0500' content: | diff --git a/src/_data/codebase/v2_3/mrg/ee/GiftCardGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ee/GiftCardGraphQl.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ee/GiftCardGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ee/GiftCardGraphQl.yml index b28dea80a3e..ad6e706634e 100644 --- a/src/_data/codebase/v2_3/mrg/ee/GiftCardGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/GiftCardGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_GiftCardGraphQl source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/GiftCardGraphQl/README.md last_modified_at: '2018-01-30 15:41:07 -0600' content: | diff --git a/src/_data/codebase/v2_3/mrg/ee/GiftCardImportExport.yaml b/src/_data/codebase/v2_3/mrg/ee/GiftCardImportExport.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ee/GiftCardImportExport.yaml rename to src/_data/codebase/v2_3/mrg/ee/GiftCardImportExport.yml index 6ec608e03c0..972696b461f 100644 --- a/src/_data/codebase/v2_3/mrg/ee/GiftCardImportExport.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/GiftCardImportExport.yml @@ -1,7 +1,7 @@ --- title: Magento_GiftCardImportExport source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/GiftCardImportExport/README.md last_modified_at: '2015-08-18 15:10:06 +0300' content: | diff --git a/src/_data/codebase/v2_3/mrg/ee/GiftCardStaging.yaml b/src/_data/codebase/v2_3/mrg/ee/GiftCardStaging.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ee/GiftCardStaging.yaml rename to src/_data/codebase/v2_3/mrg/ee/GiftCardStaging.yml index d8354f68cd0..338c38c80f1 100644 --- a/src/_data/codebase/v2_3/mrg/ee/GiftCardStaging.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/GiftCardStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_GiftCardStaging source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/GiftCardStaging/README.md last_modified_at: '2016-07-13 17:35:04 -0500' content: | diff --git a/src/_data/codebase/v2_3/mrg/ee/GiftMessageStaging.yaml b/src/_data/codebase/v2_3/mrg/ee/GiftMessageStaging.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/ee/GiftMessageStaging.yaml rename to src/_data/codebase/v2_3/mrg/ee/GiftMessageStaging.yml index 847c35bd080..ecaca44e117 100644 --- a/src/_data/codebase/v2_3/mrg/ee/GiftMessageStaging.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/GiftMessageStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_GiftMessageStaging source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/GiftMessageStaging/README.md last_modified_at: '2016-07-04 18:13:15 +0300' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ee/GiftRegistry.yaml b/src/_data/codebase/v2_3/mrg/ee/GiftRegistry.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/ee/GiftRegistry.yaml rename to src/_data/codebase/v2_3/mrg/ee/GiftRegistry.yml index d299bca0e85..ca45a880f2a 100644 --- a/src/_data/codebase/v2_3/mrg/ee/GiftRegistry.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/GiftRegistry.yml @@ -1,7 +1,7 @@ --- title: Magento_GiftRegistry source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/GiftRegistry/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ee/GiftWrapping.yaml b/src/_data/codebase/v2_3/mrg/ee/GiftWrapping.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ee/GiftWrapping.yaml rename to src/_data/codebase/v2_3/mrg/ee/GiftWrapping.yml index 979e6e7ff95..07485ab0bdf 100644 --- a/src/_data/codebase/v2_3/mrg/ee/GiftWrapping.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/GiftWrapping.yml @@ -1,7 +1,7 @@ --- title: Magento_GiftWrapping source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/GiftWrapping/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ee/GiftWrappingStaging.yaml b/src/_data/codebase/v2_3/mrg/ee/GiftWrappingStaging.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/ee/GiftWrappingStaging.yaml rename to src/_data/codebase/v2_3/mrg/ee/GiftWrappingStaging.yml index b92b41baab3..88ea47dc8a7 100644 --- a/src/_data/codebase/v2_3/mrg/ee/GiftWrappingStaging.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/GiftWrappingStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_GiftWrappingStaging source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/GiftWrappingStaging/README.md last_modified_at: '2016-07-04 18:13:15 +0300' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ee/GoogleOptimizerStaging.yaml b/src/_data/codebase/v2_3/mrg/ee/GoogleOptimizerStaging.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/ee/GoogleOptimizerStaging.yaml rename to src/_data/codebase/v2_3/mrg/ee/GoogleOptimizerStaging.yml index e2c96ad94d6..7deb0f652e0 100644 --- a/src/_data/codebase/v2_3/mrg/ee/GoogleOptimizerStaging.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/GoogleOptimizerStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_GoogleOptimizerStaging source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/GoogleOptimizerStaging/README.md last_modified_at: '2016-07-04 18:13:15 +0300' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ee/GoogleTagManager.yaml b/src/_data/codebase/v2_3/mrg/ee/GoogleTagManager.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ee/GoogleTagManager.yaml rename to src/_data/codebase/v2_3/mrg/ee/GoogleTagManager.yml index f579f14cbb7..59f5436a168 100644 --- a/src/_data/codebase/v2_3/mrg/ee/GoogleTagManager.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/GoogleTagManager.yml @@ -1,7 +1,7 @@ --- title: Magento_GoogleTagManager source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/GoogleTagManager/README.md last_modified_at: '2015-06-22 19:55:26 +0300' content: 'Magento_GoogleTagManager is a module for integration with Google Tag Manager diff --git a/src/_data/codebase/v2_3/mrg/ee/GroupedProductStaging.yaml b/src/_data/codebase/v2_3/mrg/ee/GroupedProductStaging.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/ee/GroupedProductStaging.yaml rename to src/_data/codebase/v2_3/mrg/ee/GroupedProductStaging.yml index d867e04dc53..18d2f0e4ad7 100644 --- a/src/_data/codebase/v2_3/mrg/ee/GroupedProductStaging.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/GroupedProductStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_GroupedProductStaging source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/GroupedProductStaging/README.md last_modified_at: '2016-07-04 18:13:15 +0300' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ee/Invitation.yaml b/src/_data/codebase/v2_3/mrg/ee/Invitation.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ee/Invitation.yaml rename to src/_data/codebase/v2_3/mrg/ee/Invitation.yml index e210a18a4ad..ef7da193d18 100644 --- a/src/_data/codebase/v2_3/mrg/ee/Invitation.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/Invitation.yml @@ -1,7 +1,7 @@ --- title: Magento_Invitation source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Invitation/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: 'The Magento_Invitation module enables invitation sending, referral tracking diff --git a/src/_data/codebase/v2_3/mrg/ee/LayeredNavigationStaging.yaml b/src/_data/codebase/v2_3/mrg/ee/LayeredNavigationStaging.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ee/LayeredNavigationStaging.yaml rename to src/_data/codebase/v2_3/mrg/ee/LayeredNavigationStaging.yml index 4657bd43b3b..47914a05b56 100644 --- a/src/_data/codebase/v2_3/mrg/ee/LayeredNavigationStaging.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/LayeredNavigationStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_LayeredNavigationStaging source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/LayeredNavigationStaging/README.md last_modified_at: '2016-07-04 12:55:14 +0000' content: | diff --git a/src/_data/codebase/v2_3/mrg/ee/Logging.yaml b/src/_data/codebase/v2_3/mrg/ee/Logging.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ee/Logging.yaml rename to src/_data/codebase/v2_3/mrg/ee/Logging.yml index ede33cb5abc..a4b727e1be5 100644 --- a/src/_data/codebase/v2_3/mrg/ee/Logging.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/Logging.yml @@ -1,7 +1,7 @@ --- title: Magento_Logging source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Logging/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ee/MsrpStaging.yaml b/src/_data/codebase/v2_3/mrg/ee/MsrpStaging.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/ee/MsrpStaging.yaml rename to src/_data/codebase/v2_3/mrg/ee/MsrpStaging.yml index b34369edd66..ed4e0b2a2f9 100644 --- a/src/_data/codebase/v2_3/mrg/ee/MsrpStaging.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/MsrpStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_MsrpStaging source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/MsrpStaging/README.md last_modified_at: '2016-07-06 16:58:52 +0300' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ee/MultipleWishlist.yaml b/src/_data/codebase/v2_3/mrg/ee/MultipleWishlist.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ee/MultipleWishlist.yaml rename to src/_data/codebase/v2_3/mrg/ee/MultipleWishlist.yml index 3401544a74d..2737840249e 100644 --- a/src/_data/codebase/v2_3/mrg/ee/MultipleWishlist.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/MultipleWishlist.yml @@ -1,7 +1,7 @@ --- title: Magento_MultipleWishlist source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/MultipleWishlist/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: | diff --git a/src/_data/codebase/v2_3/mrg/ee/PaymentStaging.yaml b/src/_data/codebase/v2_3/mrg/ee/PaymentStaging.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ee/PaymentStaging.yaml rename to src/_data/codebase/v2_3/mrg/ee/PaymentStaging.yml index ae6e202d6f9..fa43ed1091a 100644 --- a/src/_data/codebase/v2_3/mrg/ee/PaymentStaging.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/PaymentStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_PaymentStaging source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/PaymentStaging/README.md last_modified_at: '2016-07-04 12:55:14 +0000' content: | diff --git a/src/_data/codebase/v2_3/mrg/ee/PersistentHistory.yaml b/src/_data/codebase/v2_3/mrg/ee/PersistentHistory.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ee/PersistentHistory.yaml rename to src/_data/codebase/v2_3/mrg/ee/PersistentHistory.yml index e9c3a6d3de2..230ca1c2941 100644 --- a/src/_data/codebase/v2_3/mrg/ee/PersistentHistory.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/PersistentHistory.yml @@ -1,7 +1,7 @@ --- title: Magento_PersistentHistory source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/PersistentHistory/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ee/PricePermissions.yaml b/src/_data/codebase/v2_3/mrg/ee/PricePermissions.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ee/PricePermissions.yaml rename to src/_data/codebase/v2_3/mrg/ee/PricePermissions.yml index 6e16b859842..6bbc89a2ff8 100644 --- a/src/_data/codebase/v2_3/mrg/ee/PricePermissions.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/PricePermissions.yml @@ -1,7 +1,7 @@ --- title: Magento_PricePermissions source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/PricePermissions/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: 'Magento_PricePermissions module allows to restrict such admin rights as diff --git a/src/_data/codebase/v2_3/mrg/ee/ProductVideoStaging.yaml b/src/_data/codebase/v2_3/mrg/ee/ProductVideoStaging.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ee/ProductVideoStaging.yaml rename to src/_data/codebase/v2_3/mrg/ee/ProductVideoStaging.yml index 0aecf8f54cd..f156351317f 100644 --- a/src/_data/codebase/v2_3/mrg/ee/ProductVideoStaging.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/ProductVideoStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_ProductVideoStaging source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/ProductVideoStaging/README.md last_modified_at: '2016-07-04 18:13:15 +0300' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ee/PromotionPermissions.yaml b/src/_data/codebase/v2_3/mrg/ee/PromotionPermissions.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ee/PromotionPermissions.yaml rename to src/_data/codebase/v2_3/mrg/ee/PromotionPermissions.yml index 0cf4ce88b9e..4d4d2db054d 100644 --- a/src/_data/codebase/v2_3/mrg/ee/PromotionPermissions.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/PromotionPermissions.yml @@ -1,7 +1,7 @@ --- title: Magento_PromotionPermissions source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/PromotionPermissions/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ee/Reminder.yaml b/src/_data/codebase/v2_3/mrg/ee/Reminder.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ee/Reminder.yaml rename to src/_data/codebase/v2_3/mrg/ee/Reminder.yml index 4936a8e16da..2bfc26983e9 100644 --- a/src/_data/codebase/v2_3/mrg/ee/Reminder.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/Reminder.yml @@ -1,7 +1,7 @@ --- title: Magento_Reminder source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Reminder/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: 'Magento_Reminder module provides functionality for sending reminder emails diff --git a/src/_data/codebase/v2_3/mrg/ee/ResourceConnections.yaml b/src/_data/codebase/v2_3/mrg/ee/ResourceConnections.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ee/ResourceConnections.yaml rename to src/_data/codebase/v2_3/mrg/ee/ResourceConnections.yml index 156906996e8..843cb2c9188 100644 --- a/src/_data/codebase/v2_3/mrg/ee/ResourceConnections.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/ResourceConnections.yml @@ -1,7 +1,7 @@ --- title: Magento_ResourceConnections source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/ResourceConnections/README.md last_modified_at: '2015-08-25 12:44:48 +0300' content: "Magento\\ResourceConnections module adds a mechanism to segregate database diff --git a/src/_data/codebase/v2_3/mrg/ee/ReviewStaging.yaml b/src/_data/codebase/v2_3/mrg/ee/ReviewStaging.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ee/ReviewStaging.yaml rename to src/_data/codebase/v2_3/mrg/ee/ReviewStaging.yml index 258cecf2fcc..1eab323bc7a 100644 --- a/src/_data/codebase/v2_3/mrg/ee/ReviewStaging.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/ReviewStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_ReviewStaging source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/ReviewStaging/README.md last_modified_at: '2016-07-04 18:13:15 +0300' content: "## Magento_ReviewStaging module\n\n## Overview\n\nThe Magento_ReviewStaging diff --git a/src/_data/codebase/v2_3/mrg/ee/Reward.yaml b/src/_data/codebase/v2_3/mrg/ee/Reward.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/ee/Reward.yaml rename to src/_data/codebase/v2_3/mrg/ee/Reward.yml index 475df63fb52..6af0926d931 100644 --- a/src/_data/codebase/v2_3/mrg/ee/Reward.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/Reward.yml @@ -1,7 +1,7 @@ --- title: Magento_Reward source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Reward/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ee/RewardGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ee/RewardGraphQl.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ee/RewardGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ee/RewardGraphQl.yml index 0c9240433ea..f2882cf293b 100644 --- a/src/_data/codebase/v2_3/mrg/ee/RewardGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/RewardGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_RewardGraphQl source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/RewardGraphQl/README.md last_modified_at: '2018-01-16 16:07:42 -0600' content: | diff --git a/src/_data/codebase/v2_3/mrg/ee/RewardStaging.yaml b/src/_data/codebase/v2_3/mrg/ee/RewardStaging.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/ee/RewardStaging.yaml rename to src/_data/codebase/v2_3/mrg/ee/RewardStaging.yml index dd6b3ea3f8f..afecea5b019 100644 --- a/src/_data/codebase/v2_3/mrg/ee/RewardStaging.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/RewardStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_RewardStaging source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/RewardStaging/README.md last_modified_at: '2017-06-02 13:06:13 +0300' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ee/Rma.yaml b/src/_data/codebase/v2_3/mrg/ee/Rma.yml similarity index 93% rename from src/_data/codebase/v2_3/mrg/ee/Rma.yaml rename to src/_data/codebase/v2_3/mrg/ee/Rma.yml index 31d42a4f8ee..ce04a2aad4f 100644 --- a/src/_data/codebase/v2_3/mrg/ee/Rma.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/Rma.yml @@ -1,7 +1,7 @@ --- title: Magento_Rma source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Rma/README.md last_modified_at: '2016-04-08 15:30:29 +0300' content: Rma module is responsible for processing Return Merchandise Approvals. diff --git a/src/_data/codebase/v2_3/mrg/ee/RmaGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ee/RmaGraphQl.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ee/RmaGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ee/RmaGraphQl.yml index 370d070e51a..c6401f191e5 100644 --- a/src/_data/codebase/v2_3/mrg/ee/RmaGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/RmaGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_RmaGraphQl source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/RmaGraphQl/README.md last_modified_at: '2018-01-16 16:07:42 -0600' content: | diff --git a/src/_data/codebase/v2_3/mrg/ee/RmaStaging.yaml b/src/_data/codebase/v2_3/mrg/ee/RmaStaging.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/ee/RmaStaging.yaml rename to src/_data/codebase/v2_3/mrg/ee/RmaStaging.yml index 37b72a62f98..462fc768c98 100644 --- a/src/_data/codebase/v2_3/mrg/ee/RmaStaging.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/RmaStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_RmaStaging source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/RmaStaging/README.md last_modified_at: '2016-07-06 16:58:52 +0300' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ee/SalesArchive.yaml b/src/_data/codebase/v2_3/mrg/ee/SalesArchive.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ee/SalesArchive.yaml rename to src/_data/codebase/v2_3/mrg/ee/SalesArchive.yml index ff99f295325..855c525458d 100644 --- a/src/_data/codebase/v2_3/mrg/ee/SalesArchive.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/SalesArchive.yml @@ -1,7 +1,7 @@ --- title: Magento_SalesArchive source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/SalesArchive/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ee/SalesRuleStaging.yaml b/src/_data/codebase/v2_3/mrg/ee/SalesRuleStaging.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ee/SalesRuleStaging.yaml rename to src/_data/codebase/v2_3/mrg/ee/SalesRuleStaging.yml index 1b7d8df66ef..acfee0fafc0 100644 --- a/src/_data/codebase/v2_3/mrg/ee/SalesRuleStaging.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/SalesRuleStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_SalesRuleStaging source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/SalesRuleStaging/README.md last_modified_at: '2016-07-13 17:35:04 -0500' content: "

Magento_SalesRuleStaging module

\n\n## Overview\n\nThe Magento_SalesRuleStaging diff --git a/src/_data/codebase/v2_3/mrg/ee/ScalableCheckout.yaml b/src/_data/codebase/v2_3/mrg/ee/ScalableCheckout.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/ee/ScalableCheckout.yaml rename to src/_data/codebase/v2_3/mrg/ee/ScalableCheckout.yml index 2de00353136..da001a49be3 100644 --- a/src/_data/codebase/v2_3/mrg/ee/ScalableCheckout.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/ScalableCheckout.yml @@ -1,7 +1,7 @@ --- title: Magento_ScalableCheckout source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/ScalableCheckout/README.md last_modified_at: '2015-02-04 13:08:45 +0200' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ee/ScalableInventory.yaml b/src/_data/codebase/v2_3/mrg/ee/ScalableInventory.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/ee/ScalableInventory.yaml rename to src/_data/codebase/v2_3/mrg/ee/ScalableInventory.yml index 76004529305..2922178971d 100644 --- a/src/_data/codebase/v2_3/mrg/ee/ScalableInventory.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/ScalableInventory.yml @@ -1,7 +1,7 @@ --- title: Magento_ScalableInventory source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/ScalableInventory/README.md last_modified_at: '2015-09-01 17:12:45 +0300' content: | diff --git a/src/_data/codebase/v2_3/mrg/ee/ScalableOms.yaml b/src/_data/codebase/v2_3/mrg/ee/ScalableOms.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/ee/ScalableOms.yaml rename to src/_data/codebase/v2_3/mrg/ee/ScalableOms.yml index 8727749955c..509c8640bc0 100644 --- a/src/_data/codebase/v2_3/mrg/ee/ScalableOms.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/ScalableOms.yml @@ -1,7 +1,7 @@ --- title: Magento_ScalableOms source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/ScalableOms/README.md last_modified_at: '2015-05-15 13:27:50 +0300' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ee/ScheduledImportExport.yaml b/src/_data/codebase/v2_3/mrg/ee/ScheduledImportExport.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/ee/ScheduledImportExport.yaml rename to src/_data/codebase/v2_3/mrg/ee/ScheduledImportExport.yml index aee4a803bc9..544ba68bb1d 100644 --- a/src/_data/codebase/v2_3/mrg/ee/ScheduledImportExport.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/ScheduledImportExport.yml @@ -1,7 +1,7 @@ --- title: Magento_ScheduledImportExport source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/ScheduledImportExport/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: | diff --git a/src/_data/codebase/v2_3/mrg/ee/SearchStaging.yaml b/src/_data/codebase/v2_3/mrg/ee/SearchStaging.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ee/SearchStaging.yaml rename to src/_data/codebase/v2_3/mrg/ee/SearchStaging.yml index b29a657cc10..e6f7653f54f 100644 --- a/src/_data/codebase/v2_3/mrg/ee/SearchStaging.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/SearchStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_SearchStaging source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/SearchStaging/README.md last_modified_at: '2016-07-04 12:55:14 +0000' content: | diff --git a/src/_data/codebase/v2_3/mrg/ee/Staging.yaml b/src/_data/codebase/v2_3/mrg/ee/Staging.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/ee/Staging.yaml rename to src/_data/codebase/v2_3/mrg/ee/Staging.yml index 9f711affc0b..a20a9c87d7c 100644 --- a/src/_data/codebase/v2_3/mrg/ee/Staging.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/Staging.yml @@ -1,7 +1,7 @@ --- title: Magento_Staging source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Staging/README.md last_modified_at: '2016-10-19 18:10:05 +0300' content: | diff --git a/src/_data/codebase/v2_3/mrg/ee/StagingGraphQl.yaml b/src/_data/codebase/v2_3/mrg/ee/StagingGraphQl.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ee/StagingGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/ee/StagingGraphQl.yml index 79b76d13c42..2e1b52f03fc 100644 --- a/src/_data/codebase/v2_3/mrg/ee/StagingGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/StagingGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_StagingGraphQl source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/StagingGraphQl/README.md last_modified_at: '2019-11-20 16:45:00 -0600' content: | diff --git a/src/_data/codebase/v2_3/mrg/ee/Support.yaml b/src/_data/codebase/v2_3/mrg/ee/Support.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ee/Support.yaml rename to src/_data/codebase/v2_3/mrg/ee/Support.yml index 7b3aba68998..5da181852b9 100644 --- a/src/_data/codebase/v2_3/mrg/ee/Support.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/Support.yml @@ -1,7 +1,7 @@ --- title: Magento_Support source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Support/README.md last_modified_at: '2015-07-31 14:51:10 +0300' content: 'Magento_Support module is used for generation of system reports, which provide diff --git a/src/_data/codebase/v2_3/mrg/ee/TargetRule.yaml b/src/_data/codebase/v2_3/mrg/ee/TargetRule.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/ee/TargetRule.yaml rename to src/_data/codebase/v2_3/mrg/ee/TargetRule.yml index 8f1b9c23f6d..29dbaaa3f6e 100644 --- a/src/_data/codebase/v2_3/mrg/ee/TargetRule.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/TargetRule.yml @@ -1,7 +1,7 @@ --- title: Magento_TargetRule source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/TargetRule/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: 'Magento_TargetRule module allows to configure the rules for showing related diff --git a/src/_data/codebase/v2_3/mrg/ee/Tinymce3Banner.yaml b/src/_data/codebase/v2_3/mrg/ee/Tinymce3Banner.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/ee/Tinymce3Banner.yaml rename to src/_data/codebase/v2_3/mrg/ee/Tinymce3Banner.yml index b156150add7..172f373d941 100644 --- a/src/_data/codebase/v2_3/mrg/ee/Tinymce3Banner.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/Tinymce3Banner.yml @@ -1,7 +1,7 @@ --- title: Magento_Tinymce3Banner source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Tinymce3Banner/README.md last_modified_at: '2018-05-14 12:30:39 -0500' content: Tinymce3Banner module allows to update banner widget images on Wysiwyg. We diff --git a/src/_data/codebase/v2_3/mrg/ee/VersionsCms.yaml b/src/_data/codebase/v2_3/mrg/ee/VersionsCms.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ee/VersionsCms.yaml rename to src/_data/codebase/v2_3/mrg/ee/VersionsCms.yml index 4cb7c29c748..7c64d552bed 100644 --- a/src/_data/codebase/v2_3/mrg/ee/VersionsCms.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/VersionsCms.yml @@ -1,7 +1,7 @@ --- title: Magento_VersionsCms source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/VersionsCms/README.md last_modified_at: '2017-04-14 11:20:03 -0500' content: | diff --git a/src/_data/codebase/v2_3/mrg/ee/VersionsCmsUrlRewrite.yaml b/src/_data/codebase/v2_3/mrg/ee/VersionsCmsUrlRewrite.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/ee/VersionsCmsUrlRewrite.yaml rename to src/_data/codebase/v2_3/mrg/ee/VersionsCmsUrlRewrite.yml index 87c58c79fa3..43b0674695b 100644 --- a/src/_data/codebase/v2_3/mrg/ee/VersionsCmsUrlRewrite.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/VersionsCmsUrlRewrite.yml @@ -1,7 +1,7 @@ --- title: Magento_VersionsCmsUrlRewrite source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/VersionsCmsUrlRewrite/README.md last_modified_at: '2020-01-20 12:07:09 +0200' content: "The Versions CMS Url Rewrite Module ties up the Store Switcher program with diff --git a/src/_data/codebase/v2_3/mrg/ee/VisualMerchandiser.yaml b/src/_data/codebase/v2_3/mrg/ee/VisualMerchandiser.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/ee/VisualMerchandiser.yaml rename to src/_data/codebase/v2_3/mrg/ee/VisualMerchandiser.yml index b94fdc0ad3d..05fbd935e2b 100644 --- a/src/_data/codebase/v2_3/mrg/ee/VisualMerchandiser.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/VisualMerchandiser.yml @@ -1,7 +1,7 @@ --- title: Magento_VisualMerchandiser source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/VisualMerchandiser/README.md last_modified_at: '2015-06-03 11:17:57 +0000' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ee/WebsiteRestriction.yaml b/src/_data/codebase/v2_3/mrg/ee/WebsiteRestriction.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/ee/WebsiteRestriction.yaml rename to src/_data/codebase/v2_3/mrg/ee/WebsiteRestriction.yml index 4c532f9595d..c5ce2e95caf 100644 --- a/src/_data/codebase/v2_3/mrg/ee/WebsiteRestriction.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/WebsiteRestriction.yml @@ -1,7 +1,7 @@ --- title: Magento_WebsiteRestriction source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/WebsiteRestriction/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: | diff --git a/src/_data/codebase/v2_3/mrg/ee/WeeeStaging.yaml b/src/_data/codebase/v2_3/mrg/ee/WeeeStaging.yml similarity index 99% rename from src/_data/codebase/v2_3/mrg/ee/WeeeStaging.yaml rename to src/_data/codebase/v2_3/mrg/ee/WeeeStaging.yml index a346c0985e6..7d9e605018c 100644 --- a/src/_data/codebase/v2_3/mrg/ee/WeeeStaging.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/WeeeStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_WeeeStaging source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/WeeeStaging/README.md last_modified_at: '2016-07-06 16:58:52 +0300' content: |- diff --git a/src/_data/codebase/v2_3/mrg/ee/Worldpay.yaml b/src/_data/codebase/v2_3/mrg/ee/Worldpay.yml similarity index 95% rename from src/_data/codebase/v2_3/mrg/ee/Worldpay.yaml rename to src/_data/codebase/v2_3/mrg/ee/Worldpay.yml index 2efc86207ed..f50b3bbf215 100644 --- a/src/_data/codebase/v2_3/mrg/ee/Worldpay.yaml +++ b/src/_data/codebase/v2_3/mrg/ee/Worldpay.yml @@ -1,7 +1,7 @@ --- title: Magento_Worldpay source_repo: magento2ee -release: 2.3.5 +release: 2.3.6 github_path: app/code/Magento/Worldpay/README.md last_modified_at: '2015-07-07 12:08:21 +0300' content: 'The Magento_Worldpay module implements the integration with the Worldpay diff --git a/src/_data/codebase/v2_3/mrg/msi/Inventory.yaml b/src/_data/codebase/v2_3/mrg/msi/Inventory.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/Inventory.yaml rename to src/_data/codebase/v2_3/mrg/msi/Inventory.yml index 545a442d8b2..472d4cce925 100644 --- a/src/_data/codebase/v2_3/mrg/msi/Inventory.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/Inventory.yml @@ -1,7 +1,7 @@ --- title: Magento_Inventory source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: Inventory/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `Inventory` module is part of the new inventory infrastructure,\nwhich diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryAdminUi.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryAdminUi.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventoryAdminUi.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryAdminUi.yml index e8b1d156246..5d71a2a342a 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryAdminUi.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryAdminUi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryAdminUi source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryAdminUi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: | diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryAdvancedCheckout.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryAdvancedCheckout.yml similarity index 96% rename from src/_data/codebase/v2_3/mrg/msi/InventoryAdvancedCheckout.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryAdvancedCheckout.yml index afa0670c744..88b89322e09 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryAdvancedCheckout.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryAdvancedCheckout.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryAdvancedCheckout source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryAdvancedCheckout/README.md last_modified_at: '2019-08-02 00:04:37 -0500' content: |- diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryApi.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryApi.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventoryApi.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryApi.yml index 24dd3c25f06..2326dfadcb6 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryApi.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryApi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryApi source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryApi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventoryApi` module provides Inventory Management service contracts. diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryBundleProduct.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryBundleProduct.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventoryBundleProduct.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryBundleProduct.yml index 53a2ff7c0de..693ebdf1b33 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryBundleProduct.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryBundleProduct.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryBundleProduct source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryBundleProduct/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: | diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryBundleProductAdminUi.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryBundleProductAdminUi.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventoryBundleProductAdminUi.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryBundleProductAdminUi.yml index 08d328f8405..19f8dea6bdd 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryBundleProductAdminUi.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryBundleProductAdminUi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryBundleProductAdminUi source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryBundleProductAdminUi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventoryBundleProductAdminUi`extends the Magento Admin UI to add MSI diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryCache.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryCache.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/msi/InventoryCache.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryCache.yml index 385b7c42fec..2b45d5d6e8e 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryCache.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryCache.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryCache source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryCache/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: | diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryCatalog.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryCatalog.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventoryCatalog.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryCatalog.yml index e2d18928ba9..23bfc0700c3 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryCatalog.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryCatalog.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryCatalog source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryCatalog/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventoryCatalog` module integrates inventory management business logic diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryCatalogAdminUi.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryCatalogAdminUi.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventoryCatalogAdminUi.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryCatalogAdminUi.yml index b44a7bd7a05..4f818b1eb91 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryCatalogAdminUi.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryCatalogAdminUi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryCatalogAdminUi source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryCatalogAdminUi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: | diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryCatalogApi.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryCatalogApi.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventoryCatalogApi.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryCatalogApi.yml index 33df9f8fe93..48944105c20 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryCatalogApi.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryCatalogApi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryCatalogApi source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryCatalogApi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventoryCatalogApi` module provides service contracts for default diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryCatalogSearch.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryCatalogSearch.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventoryCatalogSearch.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryCatalogSearch.yml index 263adee96da..d21c5c094c8 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryCatalogSearch.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryCatalogSearch.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryCatalogSearch source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryCatalogSearch/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: | diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryConfigurableProduct.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryConfigurableProduct.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventoryConfigurableProduct.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryConfigurableProduct.yml index 9c8210942e4..30b46b5ba37 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryConfigurableProduct.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryConfigurableProduct.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryConfigurableProduct source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryConfigurableProduct/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: | diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryConfigurableProductAdminUi.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryConfigurableProductAdminUi.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventoryConfigurableProductAdminUi.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryConfigurableProductAdminUi.yml index c61e2f0a141..1d1c22228df 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryConfigurableProductAdminUi.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryConfigurableProductAdminUi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryConfigurableProductAdminUi source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryConfigurableProductAdminUi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventoryConfigurableProductAdminUi`extends the Magento Admin UI to diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryConfigurableProductIndexer.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryConfigurableProductIndexer.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventoryConfigurableProductIndexer.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryConfigurableProductIndexer.yml index 4fce7c04bef..4bcf6e37388 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryConfigurableProductIndexer.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryConfigurableProductIndexer.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryConfigurableProductIndexer source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryConfigurableProductIndexer/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: | diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryConfiguration.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryConfiguration.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventoryConfiguration.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryConfiguration.yml index 1741e092883..f4e1c04c401 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryConfiguration.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryConfiguration.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryConfiguration source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryConfiguration/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventoryConfiguration` module implements logic for inventory management diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryConfigurationApi.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryConfigurationApi.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventoryConfigurationApi.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryConfigurationApi.yml index 4d41d55920f..de2714a9b6c 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryConfigurationApi.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryConfigurationApi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryConfigurationApi source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryConfigurationApi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: | diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryDistanceBasedSourceSelection.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryDistanceBasedSourceSelection.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventoryDistanceBasedSourceSelection.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryDistanceBasedSourceSelection.yml index 1b47d388dce..d19e16c94bf 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryDistanceBasedSourceSelection.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryDistanceBasedSourceSelection.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryDistanceBasedSourceSelection source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryDistanceBasedSourceSelection/README.md last_modified_at: '2018-12-28 10:54:19 +0100' content: "The `InventoryDistanceBasedSourceSelection` module implements logic for diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryDistanceBasedSourceSelectionAdminUi.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryDistanceBasedSourceSelectionAdminUi.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventoryDistanceBasedSourceSelectionAdminUi.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryDistanceBasedSourceSelectionAdminUi.yml index 556b49136ed..2d5326f1258 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryDistanceBasedSourceSelectionAdminUi.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryDistanceBasedSourceSelectionAdminUi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryDistanceBasedSourceSelectionAdminUi source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryDistanceBasedSourceSelectionAdminUi/README.md last_modified_at: '2018-12-28 10:54:19 +0100' content: | diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryDistanceBasedSourceSelectionApi.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryDistanceBasedSourceSelectionApi.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventoryDistanceBasedSourceSelectionApi.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryDistanceBasedSourceSelectionApi.yml index 701fee5c5a8..531cdca62b9 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryDistanceBasedSourceSelectionApi.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryDistanceBasedSourceSelectionApi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryDistanceBasedSourceSelectionApi source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryDistanceBasedSourceSelectionApi/README.md last_modified_at: '2018-12-28 10:54:19 +0100' content: "The `InventoryDistanceBasedSourceSelectionApi` module provides service contracts diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryElasticsearch.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryElasticsearch.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/msi/InventoryElasticsearch.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryElasticsearch.yml index 786bdcdd224..e0a106dff6f 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryElasticsearch.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryElasticsearch.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryElasticsearch source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryElasticsearch/README.md last_modified_at: '2018-12-21 16:08:11 +0200' content: | diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryExportStock.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryExportStock.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventoryExportStock.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryExportStock.yml index 3bb99e0a19b..55435b789b0 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryExportStock.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryExportStock.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryExportStock source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryExportStock/README.md last_modified_at: '2019-04-23 22:46:43 +0300' content: | diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryExportStockApi.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryExportStockApi.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventoryExportStockApi.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryExportStockApi.yml index b0b5d854dad..1704d127539 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryExportStockApi.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryExportStockApi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryExportStockApi source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryExportStockApi/README.md last_modified_at: '2019-04-23 22:46:43 +0300' content: | diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryGraphQl.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryGraphQl.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventoryGraphQl.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryGraphQl.yml index 0b4ecc97a1c..123f26aa590 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryGraphQl.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryGraphQl source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryGraphQl/README.md last_modified_at: '2019-03-30 16:15:21 +0100' content: | diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryGroupedProduct.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryGroupedProduct.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventoryGroupedProduct.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryGroupedProduct.yml index 95519ee03c6..0ca49d83e4f 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryGroupedProduct.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryGroupedProduct.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryGroupedProduct source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryGroupedProduct/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventoryGroupedProduct` module integrates inventory management business diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryGroupedProductAdminUi.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryGroupedProductAdminUi.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventoryGroupedProductAdminUi.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryGroupedProductAdminUi.yml index b4831f1dcfd..caab5e5e444 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryGroupedProductAdminUi.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryGroupedProductAdminUi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryGroupedProductAdminUi source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryGroupedProductAdminUi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: | diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryGroupedProductIndexer.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryGroupedProductIndexer.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventoryGroupedProductIndexer.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryGroupedProductIndexer.yml index 311793e8350..40e700073d6 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryGroupedProductIndexer.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryGroupedProductIndexer.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryGroupedProductIndexer source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryGroupedProductIndexer/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: | diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryImportExport.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryImportExport.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventoryImportExport.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryImportExport.yml index ce822ca6391..891191adb7b 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryImportExport.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryImportExport.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryImportExport source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryImportExport/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventoryImportExport` module provides compatibility between Magento's diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryIndexer.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryIndexer.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/msi/InventoryIndexer.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryIndexer.yml index 166aea46fd2..2189d50ebfd 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryIndexer.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryIndexer.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryIndexer source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryIndexer/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: | diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryLowQuantityNotification.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryLowQuantityNotification.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventoryLowQuantityNotification.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryLowQuantityNotification.yml index 0f2906c0d8c..217db31d1a0 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryLowQuantityNotification.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryLowQuantityNotification.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryLowQuantityNotification source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryLowQuantityNotification/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventoryLowQuantityNotification` module integrates Inventory Management diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryLowQuantityNotificationAdminUi.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryLowQuantityNotificationAdminUi.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventoryLowQuantityNotificationAdminUi.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryLowQuantityNotificationAdminUi.yml index 541e224781d..ba2e9106cf9 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryLowQuantityNotificationAdminUi.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryLowQuantityNotificationAdminUi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryLowQuantityNotificationAdminUi source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryLowQuantityNotificationAdminUi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: | diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryLowQuantityNotificationApi.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryLowQuantityNotificationApi.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventoryLowQuantityNotificationApi.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryLowQuantityNotificationApi.yml index e8efbc3a735..5afe096eb31 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryLowQuantityNotificationApi.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryLowQuantityNotificationApi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryLowQuantityNotificationApi source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryLowQuantityNotificationApi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventoryLowQuantityNotificationApi` module provides service contracts diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryMultiDimensionalIndexerApi.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryMultiDimensionalIndexerApi.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventoryMultiDimensionalIndexerApi.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryMultiDimensionalIndexerApi.yml index d1d5409ac3b..4d4238b43ae 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryMultiDimensionalIndexerApi.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryMultiDimensionalIndexerApi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryMultiDimensionalIndexerApi source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryMultiDimensionalIndexerApi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventoryMultiDimensionalIndexerApi` module provides functionality diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryProductAlert.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryProductAlert.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventoryProductAlert.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryProductAlert.yml index f3c20d1fe1f..d856954624d 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryProductAlert.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryProductAlert.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryProductAlert source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryProductAlert/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: |+ diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryRequisitionList.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryRequisitionList.yml similarity index 94% rename from src/_data/codebase/v2_3/mrg/msi/InventoryRequisitionList.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryRequisitionList.yml index 5b4b7e707eb..cb96ae63466 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryRequisitionList.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryRequisitionList.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryRequisitionList source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryRequisitionList/README.md last_modified_at: '2019-08-02 00:04:37 -0500' content: The Magento_InventoryRequisitionList allows the customer to use the new inventory diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryReservationCli.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryReservationCli.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/msi/InventoryReservationCli.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryReservationCli.yml index 85bb102c85f..42d4e2397f5 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryReservationCli.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryReservationCli.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryReservationCli source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryReservationCli/README.md last_modified_at: '2019-04-10 12:11:17 +0200' content: | diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryReservations.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryReservations.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventoryReservations.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryReservations.yml index b7e06bc2b30..9204152206c 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryReservations.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryReservations.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryReservations source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryReservations/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventoryReservations` module provides logic for handling product reservations.\n\nThis diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryReservationsApi.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryReservationsApi.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventoryReservationsApi.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryReservationsApi.yml index e4a66927d0e..75549894482 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryReservationsApi.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryReservationsApi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryReservationsApi source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryReservationsApi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: | diff --git a/src/_data/codebase/v2_3/mrg/msi/InventorySales.yaml b/src/_data/codebase/v2_3/mrg/msi/InventorySales.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventorySales.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventorySales.yml index 699c2b76b40..69b474a04f6 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventorySales.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventorySales.yml @@ -1,7 +1,7 @@ --- title: Magento_InventorySales source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventorySales/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventorySales` module integrates Inventory Management business logic diff --git a/src/_data/codebase/v2_3/mrg/msi/InventorySalesAdminUi.yaml b/src/_data/codebase/v2_3/mrg/msi/InventorySalesAdminUi.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventorySalesAdminUi.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventorySalesAdminUi.yml index 939e96dabb1..f91e3dc2acc 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventorySalesAdminUi.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventorySalesAdminUi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventorySalesAdminUi source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventorySalesAdminUi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventorySalesAdminUi` module extends Magento's Admin UI with Inventory diff --git a/src/_data/codebase/v2_3/mrg/msi/InventorySalesApi.yaml b/src/_data/codebase/v2_3/mrg/msi/InventorySalesApi.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventorySalesApi.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventorySalesApi.yml index 0304a8a71ca..09a5fd4fc37 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventorySalesApi.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventorySalesApi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventorySalesApi source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventorySalesApi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventorySalesApi` module provides service contracts for inventory diff --git a/src/_data/codebase/v2_3/mrg/msi/InventorySalesFrontendUi.yaml b/src/_data/codebase/v2_3/mrg/msi/InventorySalesFrontendUi.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventorySalesFrontendUi.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventorySalesFrontendUi.yml index 34b6c0e7748..cff4c247b45 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventorySalesFrontendUi.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventorySalesFrontendUi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventorySalesFrontendUi source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventorySalesFrontendUi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventorySalesFrontendUi` module extends Magento's frontend UI with diff --git a/src/_data/codebase/v2_3/mrg/msi/InventorySetupFixtureGenerator.yaml b/src/_data/codebase/v2_3/mrg/msi/InventorySetupFixtureGenerator.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventorySetupFixtureGenerator.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventorySetupFixtureGenerator.yml index d2a7c64f8e8..7756d9b8377 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventorySetupFixtureGenerator.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventorySetupFixtureGenerator.yml @@ -1,7 +1,7 @@ --- title: Magento_InventorySetupFixtureGenerator source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventorySetupFixtureGenerator/README.md last_modified_at: '2018-12-24 14:41:45 +0200' content: "The `InventorySetupFixtureGenerator` module customizes the process of Inventory diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryShipping.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryShipping.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventoryShipping.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryShipping.yml index 15f1c8f0f09..e3826df2fa0 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryShipping.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryShipping.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryShipping source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryShipping/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventoryShipping` module integrates MSI business logic into Magento's diff --git a/src/_data/codebase/v2_3/mrg/msi/InventoryShippingAdminUi.yaml b/src/_data/codebase/v2_3/mrg/msi/InventoryShippingAdminUi.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventoryShippingAdminUi.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventoryShippingAdminUi.yml index 0bbafd21dff..55522a9434f 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventoryShippingAdminUi.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventoryShippingAdminUi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryShippingAdminUi source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventoryShippingAdminUi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: | diff --git a/src/_data/codebase/v2_3/mrg/msi/InventorySourceDeductionApi.yaml b/src/_data/codebase/v2_3/mrg/msi/InventorySourceDeductionApi.yml similarity index 97% rename from src/_data/codebase/v2_3/mrg/msi/InventorySourceDeductionApi.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventorySourceDeductionApi.yml index da00c597e4b..737d1ed0d6f 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventorySourceDeductionApi.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventorySourceDeductionApi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventorySourceDeductionApi source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventorySourceDeductionApi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventorySourceDeductionApi` module provides service contracts for diff --git a/src/_data/codebase/v2_3/mrg/msi/InventorySourceSelection.yaml b/src/_data/codebase/v2_3/mrg/msi/InventorySourceSelection.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventorySourceSelection.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventorySourceSelection.yml index 03a09a9cfc4..9f32c3017ae 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventorySourceSelection.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventorySourceSelection.yml @@ -1,7 +1,7 @@ --- title: Magento_InventorySourceSelection source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventorySourceSelection/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventorySourceSelection` module provides source selection logic for diff --git a/src/_data/codebase/v2_3/mrg/msi/InventorySourceSelectionApi.yaml b/src/_data/codebase/v2_3/mrg/msi/InventorySourceSelectionApi.yml similarity index 98% rename from src/_data/codebase/v2_3/mrg/msi/InventorySourceSelectionApi.yaml rename to src/_data/codebase/v2_3/mrg/msi/InventorySourceSelectionApi.yml index 8d20c1d5c33..76bf95c8f02 100644 --- a/src/_data/codebase/v2_3/mrg/msi/InventorySourceSelectionApi.yaml +++ b/src/_data/codebase/v2_3/mrg/msi/InventorySourceSelectionApi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventorySourceSelectionApi source_repo: inventory -release: 1.1.5 +release: 1.1.6 github_path: InventorySourceSelectionApi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: | diff --git a/src/_data/toc/module-reference-guide-2_3.yml b/src/_data/toc/module-reference-guide-2_3.yml index 66719923dce..eb8362e8046 100644 --- a/src/_data/toc/module-reference-guide-2_3.yml +++ b/src/_data/toc/module-reference-guide-2_3.yml @@ -3,7 +3,7 @@ pages: - label: Introduction url: /mrg/intro.html - - label: Open Source (v2.3.5) + - label: Open Source (v2.3.6) include_versions: ["2.3"] children: @@ -103,6 +103,9 @@ pages: - label: CatalogRuleConfigurable url: /mrg/ce/CatalogRuleConfigurable.html + - label: CatalogRuleGraphQl + url: /mrg/ce/CatalogRuleGraphQl.html + - label: CatalogSearch url: /mrg/ce/CatalogSearch.html @@ -506,13 +509,19 @@ pages: url: /mrg/ce/WishlistGraphQl.html - - label: Commerce (v2.3.5) + - label: Commerce (v2.3.6) include_versions: ["2.3"] children: - label: AdminGws url: /mrg/ee/AdminGws.html + - label: AdminGwsConfigurableProduct + url: /mrg/ee/AdminGwsConfigurableProduct.html + + - label: AdminGwsStaging + url: /mrg/ee/AdminGwsStaging.html + - label: AdvancedCatalog url: /mrg/ee/AdvancedCatalog.html @@ -760,7 +769,7 @@ pages: url: /mrg/ee/Worldpay.html - - label: B2B (v1.1.5) + - label: B2B (v1.1.6) include_versions: ["2.3"] children: @@ -831,7 +840,7 @@ pages: url: /mrg/b2b/SharedCatalog.html - - label: Inventory Management (v1.1.5) + - label: Inventory Management (v1.1.6) include_versions: ["2.3"] children: From 7a78e5ab2432418155b27580c59de2d4fb177b7a Mon Sep 17 00:00:00 2001 From: Dmitry Shevtsov <12731225+dshevtsov@users.noreply.github.com> Date: Thu, 15 Oct 2020 11:45:53 -0500 Subject: [PATCH 012/143] Updated Module Reference Guide data after 2.4.1 release (#8058) --- src/_data/codebase/v2_4/mrg/b2b/B2b.yml | 2 +- .../v2_4/mrg/b2b/BundleNegotiableQuote.yml | 2 +- .../v2_4/mrg/b2b/BundleRequisitionList.yml | 2 +- .../v2_4/mrg/b2b/BundleSharedCatalog.yml | 2 +- .../CheckoutAddressSearchNegotiableQuote.yml | 2 +- .../b2b/CheckoutAgreementsNegotiableQuote.yml | 2 +- src/_data/codebase/v2_4/mrg/b2b/Company.yml | 2 +- .../codebase/v2_4/mrg/b2b/CompanyCredit.yml | 2 +- .../codebase/v2_4/mrg/b2b/CompanyPayment.yml | 2 +- .../codebase/v2_4/mrg/b2b/CompanyShipping.yml | 28 ++++++ .../mrg/b2b/ConfigurableNegotiableQuote.yml | 2 +- .../mrg/b2b/ConfigurableRequisitionList.yml | 2 +- .../mrg/b2b/ConfigurableSharedCatalog.yml | 2 +- .../v2_4/mrg/b2b/GiftCardNegotiableQuote.yml | 2 +- .../v2_4/mrg/b2b/GiftCardRequisitionList.yml | 2 +- .../v2_4/mrg/b2b/GiftCardSharedCatalog.yml | 2 +- .../v2_4/mrg/b2b/GroupedRequisitionList.yml | 2 +- .../v2_4/mrg/b2b/GroupedSharedCatalog.yml | 2 +- .../codebase/v2_4/mrg/b2b/NegotiableQuote.yml | 2 +- .../mrg/b2b/NegotiableQuoteSharedCatalog.yml | 2 +- .../v2_4/mrg/b2b/NegotiableQuoteWeee.yml | 2 +- .../v2_4/mrg/b2b/OrderHistorySearch.yml | 2 +- .../codebase/v2_4/mrg/b2b/PurchaseOrder.yml | 2 +- .../v2_4/mrg/b2b/PurchaseOrderRule.yml | 2 +- .../codebase/v2_4/mrg/b2b/QuickOrder.yml | 2 +- .../codebase/v2_4/mrg/b2b/RequisitionList.yml | 2 +- .../codebase/v2_4/mrg/b2b/SharedCatalog.yml | 2 +- .../codebase/v2_4/mrg/ce/AdminAnalytics.yml | 2 +- .../v2_4/mrg/ce/AdminNotification.yml | 2 +- .../mrg/ce/AdvancedPricingImportExport.yml | 2 +- .../codebase/v2_4/mrg/ce/AdvancedSearch.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Amqp.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/AmqpStore.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Analytics.yml | 2 +- .../v2_4/mrg/ce/AsynchronousOperations.yml | 2 +- .../codebase/v2_4/mrg/ce/Authorization.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Backend.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Backup.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Bundle.yml | 2 +- .../codebase/v2_4/mrg/ce/BundleGraphQl.yml | 2 +- .../v2_4/mrg/ce/BundleImportExport.yml | 2 +- .../codebase/v2_4/mrg/ce/CacheInvalidate.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Captcha.yml | 2 +- .../codebase/v2_4/mrg/ce/CardinalCommerce.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Catalog.yml | 2 +- .../codebase/v2_4/mrg/ce/CatalogAnalytics.yml | 4 +- .../v2_4/mrg/ce/CatalogCmsGraphQl.yml | 2 +- .../v2_4/mrg/ce/CatalogCustomerGraphQl.yml | 2 +- .../codebase/v2_4/mrg/ce/CatalogGraphQl.yml | 2 +- .../codebase/v2_4/mrg/ce/CatalogInventory.yml | 4 +- .../v2_4/mrg/ce/CatalogInventoryGraphQl.yml | 2 +- .../codebase/v2_4/mrg/ce/CatalogRule.yml | 4 +- .../v2_4/mrg/ce/CatalogRuleConfigurable.yml | 4 +- .../v2_4/mrg/ce/CatalogRuleGraphQl.yml | 2 +- .../codebase/v2_4/mrg/ce/CatalogSearch.yml | 2 +- .../v2_4/mrg/ce/CatalogUrlRewriteGraphQl.yml | 2 +- .../codebase/v2_4/mrg/ce/CatalogWidget.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Checkout.yml | 2 +- .../v2_4/mrg/ce/CheckoutAgreements.yml | 2 +- .../v2_4/mrg/ce/CheckoutAgreementsGraphQl.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Cms.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/CmsGraphQl.yml | 2 +- .../codebase/v2_4/mrg/ce/CmsUrlRewrite.yml | 2 +- .../v2_4/mrg/ce/CmsUrlRewriteGraphQl.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Config.yml | 2 +- .../v2_4/mrg/ce/ConfigurableProduct.yml | 2 +- .../mrg/ce/ConfigurableProductGraphQl.yml | 2 +- .../v2_4/mrg/ce/ConfigurableProductSales.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Contact.yml | 4 +- src/_data/codebase/v2_4/mrg/ce/Cookie.yml | 4 +- src/_data/codebase/v2_4/mrg/ce/Cron.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Csp.yml | 2 +- .../codebase/v2_4/mrg/ce/CurrencySymbol.yml | 3 +- src/_data/codebase/v2_4/mrg/ce/Customer.yml | 2 +- .../v2_4/mrg/ce/CustomerAnalytics.yml | 4 +- .../mrg/ce/CustomerDownloadableGraphQl.yml | 2 +- .../codebase/v2_4/mrg/ce/CustomerGraphQl.yml | 2 +- .../v2_4/mrg/ce/CustomerImportExport.yml | 4 +- src/_data/codebase/v2_4/mrg/ce/Deploy.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Developer.yml | 4 +- src/_data/codebase/v2_4/mrg/ce/Dhl.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Directory.yml | 2 +- .../codebase/v2_4/mrg/ce/DirectoryGraphQl.yml | 2 +- .../codebase/v2_4/mrg/ce/Downloadable.yml | 2 +- .../v2_4/mrg/ce/DownloadableGraphQl.yml | 2 +- .../v2_4/mrg/ce/DownloadableImportExport.yml | 4 +- src/_data/codebase/v2_4/mrg/ce/Eav.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/EavGraphQl.yml | 2 +- .../codebase/v2_4/mrg/ce/Elasticsearch.yml | 2 +- .../codebase/v2_4/mrg/ce/Elasticsearch6.yml | 2 +- .../codebase/v2_4/mrg/ce/Elasticsearch7.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Email.yml | 2 +- .../codebase/v2_4/mrg/ce/EncryptionKey.yml | 4 +- src/_data/codebase/v2_4/mrg/ce/Fedex.yml | 4 +- .../codebase/v2_4/mrg/ce/GiftMessage.yml | 2 +- .../v2_4/mrg/ce/GiftMessageGraphQl.yml | 8 ++ .../codebase/v2_4/mrg/ce/GoogleAdwords.yml | 4 +- .../codebase/v2_4/mrg/ce/GoogleAnalytics.yml | 4 +- .../codebase/v2_4/mrg/ce/GoogleOptimizer.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/GraphQl.yml | 2 +- .../codebase/v2_4/mrg/ce/GraphQlCache.yml | 2 +- .../v2_4/mrg/ce/GroupedCatalogInventory.yml | 4 +- .../codebase/v2_4/mrg/ce/GroupedProduct.yml | 2 +- .../v2_4/mrg/ce/GroupedProductGraphQl.yml | 2 +- .../codebase/v2_4/mrg/ce/ImportExport.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Indexer.yml | 2 +- .../codebase/v2_4/mrg/ce/InstantPurchase.yml | 2 +- .../codebase/v2_4/mrg/ce/Integration.yml | 2 +- .../v2_4/mrg/ce/LayeredNavigation.yml | 2 +- .../codebase/v2_4/mrg/ce/LoginAsCustomer.yml | 4 +- .../v2_4/mrg/ce/LoginAsCustomerAdminUi.yml | 4 +- .../v2_4/mrg/ce/LoginAsCustomerApi.yml | 4 +- .../v2_4/mrg/ce/LoginAsCustomerAssistance.yml | 10 ++ .../v2_4/mrg/ce/LoginAsCustomerFrontendUi.yml | 4 +- .../v2_4/mrg/ce/LoginAsCustomerLog.yml | 4 +- .../v2_4/mrg/ce/LoginAsCustomerPageCache.yml | 4 +- .../v2_4/mrg/ce/LoginAsCustomerQuote.yml | 4 +- .../v2_4/mrg/ce/LoginAsCustomerSales.yml | 4 +- .../codebase/v2_4/mrg/ce/Marketplace.yml | 2 +- .../codebase/v2_4/mrg/ce/MediaContent.yml | 2 +- .../codebase/v2_4/mrg/ce/MediaContentApi.yml | 2 +- .../v2_4/mrg/ce/MediaContentCatalog.yml | 2 +- .../codebase/v2_4/mrg/ce/MediaContentCms.yml | 2 +- .../mrg/ce/MediaContentSynchronization.yml | 19 ++++ .../mrg/ce/MediaContentSynchronizationApi.yml | 18 ++++ .../ce/MediaContentSynchronizationCatalog.yml | 18 ++++ .../mrg/ce/MediaContentSynchronizationCms.yml | 18 ++++ .../codebase/v2_4/mrg/ce/MediaGallery.yml | 2 +- .../codebase/v2_4/mrg/ce/MediaGalleryApi.yml | 2 +- .../v2_4/mrg/ce/MediaGalleryCatalog.yml | 2 +- .../mrg/ce/MediaGalleryCatalogIntegration.yml | 9 ++ .../v2_4/mrg/ce/MediaGalleryCatalogUi.yml | 18 ++++ .../v2_4/mrg/ce/MediaGalleryCmsUi.yml | 18 ++++ .../v2_4/mrg/ce/MediaGalleryIntegration.yml | 10 ++ .../v2_4/mrg/ce/MediaGalleryMetadata.yml | 11 +++ .../v2_4/mrg/ce/MediaGalleryMetadataApi.yml | 10 ++ .../mrg/ce/MediaGallerySynchronization.yml | 19 ++++ .../mrg/ce/MediaGallerySynchronizationApi.yml | 18 ++++ .../MediaGallerySynchronizationMetadata.yml | 10 ++ .../codebase/v2_4/mrg/ce/MediaGalleryUi.yml | 18 ++++ .../v2_4/mrg/ce/MediaGalleryUiApi.yml | 18 ++++ .../codebase/v2_4/mrg/ce/MediaStorage.yml | 4 +- .../codebase/v2_4/mrg/ce/MessageQueue.yml | 2 +- .../v2_4/mrg/ce/MsrpConfigurableProduct.yml | 2 +- .../v2_4/mrg/ce/MsrpGroupedProduct.yml | 2 +- .../codebase/v2_4/mrg/ce/Multishipping.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/MysqlMq.yml | 2 +- .../v2_4/mrg/ce/NewRelicReporting.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Newsletter.yml | 4 +- .../v2_4/mrg/ce/NewsletterGraphQl.yml | 10 ++ .../codebase/v2_4/mrg/ce/OfflinePayments.yml | 2 +- .../codebase/v2_4/mrg/ce/OfflineShipping.yml | 3 +- src/_data/codebase/v2_4/mrg/ce/PageCache.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Payment.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Paypal.yml | 2 +- .../codebase/v2_4/mrg/ce/PaypalCaptcha.yml | 2 +- .../codebase/v2_4/mrg/ce/PaypalGraphQl.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Persistent.yml | 2 +- .../codebase/v2_4/mrg/ce/ProductAlert.yml | 4 +- .../codebase/v2_4/mrg/ce/ProductVideo.yml | 4 +- src/_data/codebase/v2_4/mrg/ce/Quote.yml | 2 +- .../codebase/v2_4/mrg/ce/QuoteAnalytics.yml | 4 +- .../v2_4/mrg/ce/QuoteBundleOptions.yml | 8 ++ .../v2_4/mrg/ce/QuoteConfigurableOptions.yml | 8 ++ .../v2_4/mrg/ce/QuoteDownloadableLinks.yml | 8 ++ .../codebase/v2_4/mrg/ce/QuoteGraphQl.yml | 2 +- .../v2_4/mrg/ce/RelatedProductGraphQl.yml | 2 +- .../v2_4/mrg/ce/ReleaseNotification.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Reports.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/RequireJs.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Review.yml | 4 +- .../codebase/v2_4/mrg/ce/ReviewAnalytics.yml | 4 +- .../codebase/v2_4/mrg/ce/ReviewGraphQl.yml | 8 ++ src/_data/codebase/v2_4/mrg/ce/Robots.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Rss.yml | 4 +- src/_data/codebase/v2_4/mrg/ce/Rule.yml | 4 +- src/_data/codebase/v2_4/mrg/ce/Sales.yml | 2 +- .../codebase/v2_4/mrg/ce/SalesAnalytics.yml | 4 +- .../codebase/v2_4/mrg/ce/SalesGraphQl.yml | 2 +- .../codebase/v2_4/mrg/ce/SalesInventory.yml | 4 +- src/_data/codebase/v2_4/mrg/ce/SalesRule.yml | 2 +- .../codebase/v2_4/mrg/ce/SalesSequence.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/SampleData.yml | 4 +- src/_data/codebase/v2_4/mrg/ce/Search.yml | 4 +- src/_data/codebase/v2_4/mrg/ce/Security.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/SendFriend.yml | 4 +- .../v2_4/mrg/ce/SendFriendGraphQl.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Shipping.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Sitemap.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Store.yml | 2 +- .../codebase/v2_4/mrg/ce/StoreGraphQl.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Swagger.yml | 2 +- .../codebase/v2_4/mrg/ce/SwaggerWebapi.yml | 2 +- .../v2_4/mrg/ce/SwaggerWebapiAsync.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Swatches.yml | 2 +- .../codebase/v2_4/mrg/ce/SwatchesGraphQl.yml | 2 +- .../v2_4/mrg/ce/SwatchesLayeredNavigation.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Tax.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/TaxGraphQl.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Theme.yml | 2 +- .../codebase/v2_4/mrg/ce/ThemeGraphQl.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Tinymce3.yml | 2 +- .../codebase/v2_4/mrg/ce/Translation.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Ui.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Ups.yml | 4 +- src/_data/codebase/v2_4/mrg/ce/UrlRewrite.yml | 4 +- .../v2_4/mrg/ce/UrlRewriteGraphQl.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/User.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Usps.yml | 4 +- src/_data/codebase/v2_4/mrg/ce/Variable.yml | 4 +- src/_data/codebase/v2_4/mrg/ce/Vault.yml | 4 +- .../codebase/v2_4/mrg/ce/VaultGraphQl.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Version.yml | 4 +- src/_data/codebase/v2_4/mrg/ce/Webapi.yml | 2 +- .../codebase/v2_4/mrg/ce/WebapiAsync.yml | 2 +- .../codebase/v2_4/mrg/ce/WebapiSecurity.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Weee.yml | 2 +- .../codebase/v2_4/mrg/ce/WeeeGraphQl.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Widget.yml | 2 +- src/_data/codebase/v2_4/mrg/ce/Wishlist.yml | 2 +- .../v2_4/mrg/ce/WishlistAnalytics.yml | 4 +- .../codebase/v2_4/mrg/ce/WishlistGraphQl.yml | 2 +- src/_data/codebase/v2_4/mrg/ee/AdminGws.yml | 2 +- .../mrg/ee/AdminGwsConfigurableProduct.yml | 30 ++++++ .../codebase/v2_4/mrg/ee/AdminGwsStaging.yml | 2 +- .../codebase/v2_4/mrg/ee/AdvancedCatalog.yml | 2 +- .../codebase/v2_4/mrg/ee/AdvancedCheckout.yml | 2 +- .../codebase/v2_4/mrg/ee/AdvancedRule.yml | 2 +- .../v2_4/mrg/ee/AdvancedSalesRule.yml | 2 +- src/_data/codebase/v2_4/mrg/ee/Banner.yml | 2 +- .../v2_4/mrg/ee/BannerCustomerSegment.yml | 2 +- .../v2_4/mrg/ee/BundleImportExportStaging.yml | 2 +- .../codebase/v2_4/mrg/ee/BundleStaging.yml | 2 +- .../codebase/v2_4/mrg/ee/CatalogEvent.yml | 2 +- .../mrg/ee/CatalogImportExportStaging.yml | 2 +- .../v2_4/mrg/ee/CatalogInventoryStaging.yml | 2 +- .../v2_4/mrg/ee/CatalogPermissions.yml | 2 +- .../v2_4/mrg/ee/CatalogPermissionsGraphQl.yml | 10 ++ .../v2_4/mrg/ee/CatalogRuleStaging.yml | 2 +- .../codebase/v2_4/mrg/ee/CatalogStaging.yml | 2 +- .../v2_4/mrg/ee/CatalogStagingGraphQl.yml | 2 +- .../v2_4/mrg/ee/CatalogUrlRewriteStaging.yml | 2 +- .../v2_4/mrg/ee/CheckoutAddressSearch.yml | 2 +- .../ee/CheckoutAddressSearchGiftRegistry.yml | 2 +- .../codebase/v2_4/mrg/ee/CheckoutStaging.yml | 2 +- src/_data/codebase/v2_4/mrg/ee/CmsStaging.yml | 2 +- .../mrg/ee/ConfigurableProductStaging.yml | 2 +- .../v2_4/mrg/ee/CustomAttributeManagement.yml | 2 +- .../codebase/v2_4/mrg/ee/CustomerBalance.yml | 2 +- .../v2_4/mrg/ee/CustomerBalanceGraphQl.yml | 2 +- .../v2_4/mrg/ee/CustomerCustomAttributes.yml | 2 +- .../codebase/v2_4/mrg/ee/CustomerFinance.yml | 2 +- .../codebase/v2_4/mrg/ee/CustomerSegment.yml | 2 +- .../v2_4/mrg/ee/DownloadableStaging.yml | 2 +- .../ee/ElasticsearchCatalogPermissions.yml | 2 +- src/_data/codebase/v2_4/mrg/ee/Enterprise.yml | 2 +- src/_data/codebase/v2_4/mrg/ee/GiftCard.yml | 2 +- .../codebase/v2_4/mrg/ee/GiftCardAccount.yml | 4 +- .../v2_4/mrg/ee/GiftCardAccountGraphQl.yml | 2 +- .../codebase/v2_4/mrg/ee/GiftCardGraphQl.yml | 2 +- .../v2_4/mrg/ee/GiftCardImportExport.yml | 2 +- .../codebase/v2_4/mrg/ee/GiftCardStaging.yml | 2 +- .../v2_4/mrg/ee/GiftMessageStaging.yml | 2 +- .../codebase/v2_4/mrg/ee/GiftRegistry.yml | 2 +- .../codebase/v2_4/mrg/ee/GiftWrapping.yml | 2 +- .../v2_4/mrg/ee/GiftWrappingGraphQl.yml | 9 ++ .../v2_4/mrg/ee/GiftWrappingStaging.yml | 2 +- .../v2_4/mrg/ee/GoogleOptimizerStaging.yml | 2 +- .../codebase/v2_4/mrg/ee/GoogleTagManager.yml | 4 +- .../v2_4/mrg/ee/GroupedProductStaging.yml | 2 +- src/_data/codebase/v2_4/mrg/ee/Invitation.yml | 4 +- .../v2_4/mrg/ee/LayeredNavigationStaging.yml | 2 +- src/_data/codebase/v2_4/mrg/ee/Logging.yml | 2 +- .../v2_4/mrg/ee/LoginAsCustomerLogging.yml | 2 +- .../ee/LoginAsCustomerWebsiteRestriction.yml | 2 +- .../mrg/ee/MediaContentCatalogStaging.yml | 2 +- .../codebase/v2_4/mrg/ee/MsrpStaging.yml | 2 +- .../codebase/v2_4/mrg/ee/MultipleWishlist.yml | 2 +- .../codebase/v2_4/mrg/ee/PaymentStaging.yml | 2 +- .../v2_4/mrg/ee/PersistentHistory.yml | 2 +- .../codebase/v2_4/mrg/ee/PricePermissions.yml | 4 +- .../v2_4/mrg/ee/ProductVideoStaging.yml | 2 +- .../v2_4/mrg/ee/PromotionPermissions.yml | 2 +- .../v2_4/mrg/ee/QuoteGiftCardOptions.yml | 8 ++ src/_data/codebase/v2_4/mrg/ee/Reminder.yml | 4 +- .../v2_4/mrg/ee/ResourceConnections.yml | 2 +- .../codebase/v2_4/mrg/ee/ReviewStaging.yml | 2 +- src/_data/codebase/v2_4/mrg/ee/Reward.yml | 2 +- .../codebase/v2_4/mrg/ee/RewardGraphQl.yml | 2 +- .../codebase/v2_4/mrg/ee/RewardStaging.yml | 2 +- src/_data/codebase/v2_4/mrg/ee/Rma.yml | 2 +- src/_data/codebase/v2_4/mrg/ee/RmaGraphQl.yml | 2 +- src/_data/codebase/v2_4/mrg/ee/RmaStaging.yml | 2 +- .../codebase/v2_4/mrg/ee/SalesArchive.yml | 2 +- .../codebase/v2_4/mrg/ee/SalesRuleStaging.yml | 2 +- .../codebase/v2_4/mrg/ee/ScalableCheckout.yml | 2 +- .../v2_4/mrg/ee/ScalableInventory.yml | 2 +- .../codebase/v2_4/mrg/ee/ScalableOms.yml | 2 +- .../v2_4/mrg/ee/ScheduledImportExport.yml | 2 +- .../codebase/v2_4/mrg/ee/SearchStaging.yml | 2 +- src/_data/codebase/v2_4/mrg/ee/Staging.yml | 2 +- .../codebase/v2_4/mrg/ee/StagingGraphQl.yml | 2 +- src/_data/codebase/v2_4/mrg/ee/Support.yml | 4 +- src/_data/codebase/v2_4/mrg/ee/Swat.yml | 9 ++ src/_data/codebase/v2_4/mrg/ee/TargetRule.yml | 4 +- .../v2_4/mrg/ee/TargetRuleGraphQl.yml | 8 ++ .../codebase/v2_4/mrg/ee/Tinymce3Banner.yml | 2 +- .../codebase/v2_4/mrg/ee/VersionsCms.yml | 2 +- .../v2_4/mrg/ee/VersionsCmsUrlRewrite.yml | 2 +- .../v2_4/mrg/ee/VisualMerchandiser.yml | 2 +- .../v2_4/mrg/ee/WebsiteRestriction.yml | 2 +- .../codebase/v2_4/mrg/ee/WeeeStaging.yml | 2 +- src/_data/codebase/v2_4/mrg/msi/Inventory.yml | 2 +- .../v2_4/mrg/msi/InventoryAdminUi.yml | 2 +- .../mrg/msi/InventoryAdvancedCheckout.yml | 2 +- .../codebase/v2_4/mrg/msi/InventoryApi.yml | 2 +- .../mrg/msi/InventoryBundleImportExport.yml | 2 +- .../v2_4/mrg/msi/InventoryBundleProduct.yml | 2 +- .../mrg/msi/InventoryBundleProductAdminUi.yml | 2 +- .../mrg/msi/InventoryBundleProductIndexer.yml | 2 +- .../codebase/v2_4/mrg/msi/InventoryCache.yml | 2 +- .../v2_4/mrg/msi/InventoryCatalog.yml | 2 +- .../v2_4/mrg/msi/InventoryCatalogAdminUi.yml | 2 +- .../v2_4/mrg/msi/InventoryCatalogApi.yml | 2 +- .../v2_4/mrg/msi/InventoryCatalogSearch.yml | 2 +- .../mrg/msi/InventoryConfigurableProduct.yml | 2 +- .../InventoryConfigurableProductAdminUi.yml | 2 +- .../InventoryConfigurableProductIndexer.yml | 2 +- .../v2_4/mrg/msi/InventoryConfiguration.yml | 2 +- .../mrg/msi/InventoryConfigurationApi.yml | 2 +- .../InventoryDistanceBasedSourceSelection.yml | 2 +- ...oryDistanceBasedSourceSelectionAdminUi.yml | 2 +- ...ventoryDistanceBasedSourceSelectionApi.yml | 2 +- .../v2_4/mrg/msi/InventoryElasticsearch.yml | 2 +- .../v2_4/mrg/msi/InventoryExportStock.yml | 2 +- .../v2_4/mrg/msi/InventoryExportStockApi.yml | 2 +- .../v2_4/mrg/msi/InventoryGraphQl.yml | 2 +- .../v2_4/mrg/msi/InventoryGroupedProduct.yml | 2 +- .../msi/InventoryGroupedProductAdminUi.yml | 2 +- .../msi/InventoryGroupedProductIndexer.yml | 2 +- .../v2_4/mrg/msi/InventoryImportExport.yml | 2 +- .../v2_4/mrg/msi/InventoryInStorePickup.yml | 2 +- .../mrg/msi/InventoryInStorePickupAdminUi.yml | 2 +- .../mrg/msi/InventoryInStorePickupApi.yml | 2 +- .../msi/InventoryInStorePickupFrontend.yml | 2 +- .../mrg/msi/InventoryInStorePickupGraphQl.yml | 2 +- .../InventoryInStorePickupMultishipping.yml | 2 +- .../mrg/msi/InventoryInStorePickupQuote.yml | 2 +- .../InventoryInStorePickupQuoteGraphQl.yml | 2 +- .../mrg/msi/InventoryInStorePickupSales.yml | 2 +- .../InventoryInStorePickupSalesAdminUi.yml | 2 +- .../msi/InventoryInStorePickupSalesApi.yml | 3 +- .../msi/InventoryInStorePickupShipping.yml | 2 +- .../InventoryInStorePickupShippingAdminUi.yml | 2 +- .../msi/InventoryInStorePickupShippingApi.yml | 2 +- .../InventoryInStorePickupWebapiExtension.yml | 2 +- .../v2_4/mrg/msi/InventoryIndexer.yml | 2 +- .../msi/InventoryLowQuantityNotification.yml | 2 +- ...nventoryLowQuantityNotificationAdminUi.yml | 2 +- .../InventoryLowQuantityNotificationApi.yml | 2 +- .../InventoryMultiDimensionalIndexerApi.yml | 2 +- .../v2_4/mrg/msi/InventoryProductAlert.yml | 3 +- .../v2_4/mrg/msi/InventoryRequisitionList.yml | 2 +- .../v2_4/mrg/msi/InventoryReservationCli.yml | 2 +- .../v2_4/mrg/msi/InventoryReservations.yml | 2 +- .../v2_4/mrg/msi/InventoryReservationsApi.yml | 2 +- .../codebase/v2_4/mrg/msi/InventorySales.yml | 2 +- .../v2_4/mrg/msi/InventorySalesAdminUi.yml | 2 +- .../v2_4/mrg/msi/InventorySalesApi.yml | 2 +- .../v2_4/mrg/msi/InventorySalesFrontendUi.yml | 2 +- .../msi/InventorySetupFixtureGenerator.yml | 2 +- .../v2_4/mrg/msi/InventoryShipping.yml | 2 +- .../v2_4/mrg/msi/InventoryShippingAdminUi.yml | 2 +- .../mrg/msi/InventorySourceDeductionApi.yml | 2 +- .../v2_4/mrg/msi/InventorySourceSelection.yml | 2 +- .../mrg/msi/InventorySourceSelectionApi.yml | 2 +- .../mrg/msi/InventoryVisualMerchandiser.yml | 10 ++ src/_data/toc/module-reference-guide-2_4.yml | 98 ++++++++++++++++++- 378 files changed, 896 insertions(+), 406 deletions(-) create mode 100644 src/_data/codebase/v2_4/mrg/b2b/CompanyShipping.yml create mode 100644 src/_data/codebase/v2_4/mrg/ce/GiftMessageGraphQl.yml create mode 100644 src/_data/codebase/v2_4/mrg/ce/LoginAsCustomerAssistance.yml create mode 100644 src/_data/codebase/v2_4/mrg/ce/MediaContentSynchronization.yml create mode 100644 src/_data/codebase/v2_4/mrg/ce/MediaContentSynchronizationApi.yml create mode 100644 src/_data/codebase/v2_4/mrg/ce/MediaContentSynchronizationCatalog.yml create mode 100644 src/_data/codebase/v2_4/mrg/ce/MediaContentSynchronizationCms.yml create mode 100644 src/_data/codebase/v2_4/mrg/ce/MediaGalleryCatalogIntegration.yml create mode 100644 src/_data/codebase/v2_4/mrg/ce/MediaGalleryCatalogUi.yml create mode 100644 src/_data/codebase/v2_4/mrg/ce/MediaGalleryCmsUi.yml create mode 100644 src/_data/codebase/v2_4/mrg/ce/MediaGalleryIntegration.yml create mode 100644 src/_data/codebase/v2_4/mrg/ce/MediaGalleryMetadata.yml create mode 100644 src/_data/codebase/v2_4/mrg/ce/MediaGalleryMetadataApi.yml create mode 100644 src/_data/codebase/v2_4/mrg/ce/MediaGallerySynchronization.yml create mode 100644 src/_data/codebase/v2_4/mrg/ce/MediaGallerySynchronizationApi.yml create mode 100644 src/_data/codebase/v2_4/mrg/ce/MediaGallerySynchronizationMetadata.yml create mode 100644 src/_data/codebase/v2_4/mrg/ce/MediaGalleryUi.yml create mode 100644 src/_data/codebase/v2_4/mrg/ce/MediaGalleryUiApi.yml create mode 100644 src/_data/codebase/v2_4/mrg/ce/NewsletterGraphQl.yml create mode 100644 src/_data/codebase/v2_4/mrg/ce/QuoteBundleOptions.yml create mode 100644 src/_data/codebase/v2_4/mrg/ce/QuoteConfigurableOptions.yml create mode 100644 src/_data/codebase/v2_4/mrg/ce/QuoteDownloadableLinks.yml create mode 100644 src/_data/codebase/v2_4/mrg/ce/ReviewGraphQl.yml create mode 100644 src/_data/codebase/v2_4/mrg/ee/AdminGwsConfigurableProduct.yml create mode 100644 src/_data/codebase/v2_4/mrg/ee/CatalogPermissionsGraphQl.yml create mode 100644 src/_data/codebase/v2_4/mrg/ee/GiftWrappingGraphQl.yml create mode 100644 src/_data/codebase/v2_4/mrg/ee/QuoteGiftCardOptions.yml create mode 100644 src/_data/codebase/v2_4/mrg/ee/Swat.yml create mode 100644 src/_data/codebase/v2_4/mrg/ee/TargetRuleGraphQl.yml create mode 100644 src/_data/codebase/v2_4/mrg/msi/InventoryVisualMerchandiser.yml diff --git a/src/_data/codebase/v2_4/mrg/b2b/B2b.yml b/src/_data/codebase/v2_4/mrg/b2b/B2b.yml index 2e96cf02fdd..fa4f923d816 100644 --- a/src/_data/codebase/v2_4/mrg/b2b/B2b.yml +++ b/src/_data/codebase/v2_4/mrg/b2b/B2b.yml @@ -1,7 +1,7 @@ --- title: Magento_B2b source_repo: magento2b2b -release: 1.2.0 +release: 1.3.0 github_path: app/code/Magento/B2b/README.md last_modified_at: '2017-02-15 17:02:23 +0300' content: "## Overview\n\nThe Magento_b2b module is the base module for B2B. It must diff --git a/src/_data/codebase/v2_4/mrg/b2b/BundleNegotiableQuote.yml b/src/_data/codebase/v2_4/mrg/b2b/BundleNegotiableQuote.yml index 2a4c324646d..001df885587 100644 --- a/src/_data/codebase/v2_4/mrg/b2b/BundleNegotiableQuote.yml +++ b/src/_data/codebase/v2_4/mrg/b2b/BundleNegotiableQuote.yml @@ -1,7 +1,7 @@ --- title: Magento_BundleNegotiableQuote source_repo: magento2b2b -release: 1.2.0 +release: 1.3.0 github_path: app/code/Magento/BundleNegotiableQuote/README.md last_modified_at: '2017-04-10 10:33:01 +0300' content: "## Overview\n\nThe Magento_BundleNegotiableQuote module enables bundle products diff --git a/src/_data/codebase/v2_4/mrg/b2b/BundleRequisitionList.yml b/src/_data/codebase/v2_4/mrg/b2b/BundleRequisitionList.yml index 119aaf1df72..de949d8d829 100644 --- a/src/_data/codebase/v2_4/mrg/b2b/BundleRequisitionList.yml +++ b/src/_data/codebase/v2_4/mrg/b2b/BundleRequisitionList.yml @@ -1,7 +1,7 @@ --- title: Magento_BundleRequisitionList source_repo: magento2b2b -release: 1.2.0 +release: 1.3.0 github_path: app/code/Magento/BundleRequisitionList/README.md last_modified_at: '2017-04-10 10:33:01 +0300' content: "## Overview\n\nThe Magento_BundleRequisitionList module enables bundle products diff --git a/src/_data/codebase/v2_4/mrg/b2b/BundleSharedCatalog.yml b/src/_data/codebase/v2_4/mrg/b2b/BundleSharedCatalog.yml index db860197a90..4ec1d2277f8 100644 --- a/src/_data/codebase/v2_4/mrg/b2b/BundleSharedCatalog.yml +++ b/src/_data/codebase/v2_4/mrg/b2b/BundleSharedCatalog.yml @@ -1,7 +1,7 @@ --- title: Magento_BundleSharedCatalog source_repo: magento2b2b -release: 1.2.0 +release: 1.3.0 github_path: app/code/Magento/BundleSharedCatalog/README.md last_modified_at: '2017-02-15 17:02:23 +0300' content: "## Overview\n\nThe Magento_BundleSharedCatalog module enables bundle products diff --git a/src/_data/codebase/v2_4/mrg/b2b/CheckoutAddressSearchNegotiableQuote.yml b/src/_data/codebase/v2_4/mrg/b2b/CheckoutAddressSearchNegotiableQuote.yml index bde0343844e..13a9004f21b 100644 --- a/src/_data/codebase/v2_4/mrg/b2b/CheckoutAddressSearchNegotiableQuote.yml +++ b/src/_data/codebase/v2_4/mrg/b2b/CheckoutAddressSearchNegotiableQuote.yml @@ -1,7 +1,7 @@ --- title: Magento_CheckoutAddressSearchNegotiableQuote source_repo: magento2b2b -release: 1.2.0 +release: 1.3.0 github_path: app/code/Magento/CheckoutAddressSearchNegotiableQuote/README.md last_modified_at: '2019-04-10 17:47:51 -0500' content: | diff --git a/src/_data/codebase/v2_4/mrg/b2b/CheckoutAgreementsNegotiableQuote.yml b/src/_data/codebase/v2_4/mrg/b2b/CheckoutAgreementsNegotiableQuote.yml index b149fdb5f1f..8c98158d127 100644 --- a/src/_data/codebase/v2_4/mrg/b2b/CheckoutAgreementsNegotiableQuote.yml +++ b/src/_data/codebase/v2_4/mrg/b2b/CheckoutAgreementsNegotiableQuote.yml @@ -1,7 +1,7 @@ --- title: Magento_CheckoutAgreementsNegotiableQuote source_repo: magento2b2b -release: 1.2.0 +release: 1.3.0 github_path: app/code/Magento/CheckoutAgreementsNegotiableQuote/README.md last_modified_at: '2019-08-16 15:20:08 -0500' content: | diff --git a/src/_data/codebase/v2_4/mrg/b2b/Company.yml b/src/_data/codebase/v2_4/mrg/b2b/Company.yml index 8a780e7161e..b641d6ff8ee 100644 --- a/src/_data/codebase/v2_4/mrg/b2b/Company.yml +++ b/src/_data/codebase/v2_4/mrg/b2b/Company.yml @@ -1,7 +1,7 @@ --- title: Magento_Company source_repo: magento2b2b -release: 1.2.0 +release: 1.3.0 github_path: app/code/Magento/Company/README.md last_modified_at: '2017-02-15 17:02:23 +0300' content: "## Overview\n\nThe Magento_Company module allows a merchant to create a diff --git a/src/_data/codebase/v2_4/mrg/b2b/CompanyCredit.yml b/src/_data/codebase/v2_4/mrg/b2b/CompanyCredit.yml index 838df366fed..8ec8ab2501e 100644 --- a/src/_data/codebase/v2_4/mrg/b2b/CompanyCredit.yml +++ b/src/_data/codebase/v2_4/mrg/b2b/CompanyCredit.yml @@ -1,7 +1,7 @@ --- title: Magento_CompanyCredit source_repo: magento2b2b -release: 1.2.0 +release: 1.3.0 github_path: app/code/Magento/CompanyCredit/README.md last_modified_at: '2020-05-08 16:01:36 -0500' content: "## Overview\n\nThe Magento_CompanyCredit module adds the \"Payment on Account\" diff --git a/src/_data/codebase/v2_4/mrg/b2b/CompanyPayment.yml b/src/_data/codebase/v2_4/mrg/b2b/CompanyPayment.yml index 16e1087ca2b..f00788a7969 100644 --- a/src/_data/codebase/v2_4/mrg/b2b/CompanyPayment.yml +++ b/src/_data/codebase/v2_4/mrg/b2b/CompanyPayment.yml @@ -1,7 +1,7 @@ --- title: Magento_CompanyPayment source_repo: magento2b2b -release: 1.2.0 +release: 1.3.0 github_path: app/code/Magento/CompanyPayment/README.md last_modified_at: '2017-02-15 17:02:23 +0300' content: "## Overview\n\nThe Magento_CompanyPayment module allows a merchant to configure diff --git a/src/_data/codebase/v2_4/mrg/b2b/CompanyShipping.yml b/src/_data/codebase/v2_4/mrg/b2b/CompanyShipping.yml new file mode 100644 index 00000000000..a564894aebe --- /dev/null +++ b/src/_data/codebase/v2_4/mrg/b2b/CompanyShipping.yml @@ -0,0 +1,28 @@ +--- +title: Magento_CompanyShipping +source_repo: magento2b2b +release: 1.3.0 +github_path: app/code/Magento/CompanyShipping/README.md +last_modified_at: '2020-07-21 17:02:08 +0800' +content: "## Overview\n\nThe Magento_CompanyShipping module allows a merchant to configure + which shipping methods are available for B2B companies.\n\nIn Admin, the CompanyShipping + module adds an additional panel (on the Company profile page and on the B2B Features + page) where a merchant configures shipping methods for companies. Shipping methods + can be configured on the company level. \n \n## Installation details\n \nThe module + has a dependency on the Magento_Company module, which must be installed and enabled + first. This module does not create any backward incompatible changes. It can be + deactivated and uninstalled at any time.\n \n## Structure\n \n[Learn about a typical + file structure for a Magento 2 module](http://devdocs.magento.com/guides/v2.4/extension-dev-guide/build/module-file-structure.html).\n + \n## Extensibility\n \nExtension developers can interact with the Magento_CompanyShipping + module. For more information about the Magento extension mechanism, see [Magento + plug-ins](http://devdocs.magento.com/guides/v2.4/extension-dev-guide/plugins.html).\n + \n[The Magento dependency injection mechanism](http://devdocs.magento.com/guides/v2.4/extension-dev-guide/depend-inj.html) + enables you to override the functionality of the Magento_CompanyShipping module.\n\n### + Layouts\n \nYou can extend and override layouts in the `Magento\\CompanyShipping\\view\\frontend\\layout` + directory.\n\nFor more information about layouts, see the [Layout documentation](http://devdocs.magento.com/guides/v2.4/frontend-dev-guide/layouts/layout-overview.html).\n + \n### UI components\n\nThe following directory contains extensible UI components: + \n\n\n\n* `Magento\\CompanyShipping\\view\\frontend\\ui_component` + - company form\n\nFor more information, see [UI Form Component](http://devdocs.magento.com/guides/v2.4/ui_comp_guide/components/ui-form.html).\n\n## + Additional information\n \nYou can track [backward incompatible changes made in + a Magento B2b mainline after the Magento 2.2 release](http://devdocs.magento.com/guides/v2.4/release-notes/changes/b2b_changes.html).\n" diff --git a/src/_data/codebase/v2_4/mrg/b2b/ConfigurableNegotiableQuote.yml b/src/_data/codebase/v2_4/mrg/b2b/ConfigurableNegotiableQuote.yml index 67ea605d20b..b86dcec4a87 100644 --- a/src/_data/codebase/v2_4/mrg/b2b/ConfigurableNegotiableQuote.yml +++ b/src/_data/codebase/v2_4/mrg/b2b/ConfigurableNegotiableQuote.yml @@ -1,7 +1,7 @@ --- title: Magento_ConfigurableNegotiableQuote source_repo: magento2b2b -release: 1.2.0 +release: 1.3.0 github_path: app/code/Magento/ConfigurableNegotiableQuote/README.md last_modified_at: '2017-04-10 10:33:01 +0300' content: "## Overview\n\nThe Magento_ConfigurableNegotiableQuote module enables configurable diff --git a/src/_data/codebase/v2_4/mrg/b2b/ConfigurableRequisitionList.yml b/src/_data/codebase/v2_4/mrg/b2b/ConfigurableRequisitionList.yml index 79b3f293f78..d2c1f5e2688 100644 --- a/src/_data/codebase/v2_4/mrg/b2b/ConfigurableRequisitionList.yml +++ b/src/_data/codebase/v2_4/mrg/b2b/ConfigurableRequisitionList.yml @@ -1,7 +1,7 @@ --- title: Magento_ConfigurableRequisitionList source_repo: magento2b2b -release: 1.2.0 +release: 1.3.0 github_path: app/code/Magento/ConfigurableRequisitionList/README.md last_modified_at: '2017-04-10 10:33:01 +0300' content: "## Overview\n\nThe Magento_ConfigurableRequisitionList module enables configurable diff --git a/src/_data/codebase/v2_4/mrg/b2b/ConfigurableSharedCatalog.yml b/src/_data/codebase/v2_4/mrg/b2b/ConfigurableSharedCatalog.yml index 7752beaa4d8..a868e63061b 100644 --- a/src/_data/codebase/v2_4/mrg/b2b/ConfigurableSharedCatalog.yml +++ b/src/_data/codebase/v2_4/mrg/b2b/ConfigurableSharedCatalog.yml @@ -1,7 +1,7 @@ --- title: Magento_ConfigurableSharedCatalog source_repo: magento2b2b -release: 1.2.0 +release: 1.3.0 github_path: app/code/Magento/ConfigurableSharedCatalog/README.md last_modified_at: '2017-02-15 17:02:23 +0300' content: "## Overview\n\nThe Magento_ConfigurableSharedCatalog module enables configurable diff --git a/src/_data/codebase/v2_4/mrg/b2b/GiftCardNegotiableQuote.yml b/src/_data/codebase/v2_4/mrg/b2b/GiftCardNegotiableQuote.yml index 87ed0abdaa0..f71ddf807e6 100644 --- a/src/_data/codebase/v2_4/mrg/b2b/GiftCardNegotiableQuote.yml +++ b/src/_data/codebase/v2_4/mrg/b2b/GiftCardNegotiableQuote.yml @@ -1,7 +1,7 @@ --- title: Magento_GiftCardNegotiableQuote source_repo: magento2b2b -release: 1.2.0 +release: 1.3.0 github_path: app/code/Magento/GiftCardNegotiableQuote/README.md last_modified_at: '2017-04-10 10:33:01 +0300' content: | diff --git a/src/_data/codebase/v2_4/mrg/b2b/GiftCardRequisitionList.yml b/src/_data/codebase/v2_4/mrg/b2b/GiftCardRequisitionList.yml index 948de424054..198184ac5ce 100644 --- a/src/_data/codebase/v2_4/mrg/b2b/GiftCardRequisitionList.yml +++ b/src/_data/codebase/v2_4/mrg/b2b/GiftCardRequisitionList.yml @@ -1,7 +1,7 @@ --- title: Magento_GiftCardRequisitionList source_repo: magento2b2b -release: 1.2.0 +release: 1.3.0 github_path: app/code/Magento/GiftCardRequisitionList/README.md last_modified_at: '2017-04-10 10:33:01 +0300' content: "## Overview\n\nThe Magento_GiftCardRequisitionList module enables gift cards diff --git a/src/_data/codebase/v2_4/mrg/b2b/GiftCardSharedCatalog.yml b/src/_data/codebase/v2_4/mrg/b2b/GiftCardSharedCatalog.yml index 6c647331415..b69d427dcd8 100644 --- a/src/_data/codebase/v2_4/mrg/b2b/GiftCardSharedCatalog.yml +++ b/src/_data/codebase/v2_4/mrg/b2b/GiftCardSharedCatalog.yml @@ -1,7 +1,7 @@ --- title: Magento_GiftCardSharedCatalog source_repo: magento2b2b -release: 1.2.0 +release: 1.3.0 github_path: app/code/Magento/GiftCardSharedCatalog/README.md last_modified_at: '2017-02-15 17:02:23 +0300' content: "## Overview\n\nThe Magento_GiftCardSharedCatalog module enables gift cards diff --git a/src/_data/codebase/v2_4/mrg/b2b/GroupedRequisitionList.yml b/src/_data/codebase/v2_4/mrg/b2b/GroupedRequisitionList.yml index ccdf8b56078..0c2e7de0c93 100644 --- a/src/_data/codebase/v2_4/mrg/b2b/GroupedRequisitionList.yml +++ b/src/_data/codebase/v2_4/mrg/b2b/GroupedRequisitionList.yml @@ -1,7 +1,7 @@ --- title: Magento_GroupedRequisitionList source_repo: magento2b2b -release: 1.2.0 +release: 1.3.0 github_path: app/code/Magento/GroupedRequisitionList/README.md last_modified_at: '2017-04-10 10:33:01 +0300' content: "## Overview\n\nThe Magento_GroupedRequisitionList module enables grouped diff --git a/src/_data/codebase/v2_4/mrg/b2b/GroupedSharedCatalog.yml b/src/_data/codebase/v2_4/mrg/b2b/GroupedSharedCatalog.yml index 1fa751d979e..48337497964 100644 --- a/src/_data/codebase/v2_4/mrg/b2b/GroupedSharedCatalog.yml +++ b/src/_data/codebase/v2_4/mrg/b2b/GroupedSharedCatalog.yml @@ -1,7 +1,7 @@ --- title: Magento_GroupedSharedCatalog source_repo: magento2b2b -release: 1.2.0 +release: 1.3.0 github_path: app/code/Magento/GroupedSharedCatalog/README.md last_modified_at: '2017-02-15 17:02:23 +0300' content: "## Overview\n\nThe Magento_GroupedSharedCatalog module enables grouped products diff --git a/src/_data/codebase/v2_4/mrg/b2b/NegotiableQuote.yml b/src/_data/codebase/v2_4/mrg/b2b/NegotiableQuote.yml index 356f00e1495..5b42177674d 100644 --- a/src/_data/codebase/v2_4/mrg/b2b/NegotiableQuote.yml +++ b/src/_data/codebase/v2_4/mrg/b2b/NegotiableQuote.yml @@ -1,7 +1,7 @@ --- title: Magento_NegotiableQuote source_repo: magento2b2b -release: 1.2.0 +release: 1.3.0 github_path: app/code/Magento/NegotiableQuote/README.md last_modified_at: '2017-02-15 17:02:23 +0300' content: "## Overview\n\nThe Magento_NegotiableQuote module allows a customer and diff --git a/src/_data/codebase/v2_4/mrg/b2b/NegotiableQuoteSharedCatalog.yml b/src/_data/codebase/v2_4/mrg/b2b/NegotiableQuoteSharedCatalog.yml index 6bf7e53f398..27547e48cb3 100644 --- a/src/_data/codebase/v2_4/mrg/b2b/NegotiableQuoteSharedCatalog.yml +++ b/src/_data/codebase/v2_4/mrg/b2b/NegotiableQuoteSharedCatalog.yml @@ -1,7 +1,7 @@ --- title: Magento_NegotiableQuoteSharedCatalog source_repo: magento2b2b -release: 1.2.0 +release: 1.3.0 github_path: app/code/Magento/NegotiableQuoteSharedCatalog/README.md last_modified_at: '2017-02-17 11:38:50 +0300' content: "## Overview\n\nThe Magento_NegotiableQuoteSharedCatalog module enables the diff --git a/src/_data/codebase/v2_4/mrg/b2b/NegotiableQuoteWeee.yml b/src/_data/codebase/v2_4/mrg/b2b/NegotiableQuoteWeee.yml index dfc62d6130f..cdd0ce7f014 100644 --- a/src/_data/codebase/v2_4/mrg/b2b/NegotiableQuoteWeee.yml +++ b/src/_data/codebase/v2_4/mrg/b2b/NegotiableQuoteWeee.yml @@ -1,7 +1,7 @@ --- title: Magento_NegotiableQuoteWeee source_repo: magento2b2b -release: 1.2.0 +release: 1.3.0 github_path: app/code/Magento/NegotiableQuoteWeee/README.md last_modified_at: '2020-02-13 12:57:22 +0200' content: | diff --git a/src/_data/codebase/v2_4/mrg/b2b/OrderHistorySearch.yml b/src/_data/codebase/v2_4/mrg/b2b/OrderHistorySearch.yml index fc8762a089f..5f4d108c309 100644 --- a/src/_data/codebase/v2_4/mrg/b2b/OrderHistorySearch.yml +++ b/src/_data/codebase/v2_4/mrg/b2b/OrderHistorySearch.yml @@ -1,7 +1,7 @@ --- title: Magento_OrderHistorySearch source_repo: magento2b2b -release: 1.2.0 +release: 1.3.0 github_path: app/code/Magento/OrderHistorySearch/README.md last_modified_at: '2019-05-31 11:16:34 +0200' content: "## Overview\n\nThe Magento_OrderHistorySearch module serves to handle advanced diff --git a/src/_data/codebase/v2_4/mrg/b2b/PurchaseOrder.yml b/src/_data/codebase/v2_4/mrg/b2b/PurchaseOrder.yml index e7189a562c9..248eb04a475 100644 --- a/src/_data/codebase/v2_4/mrg/b2b/PurchaseOrder.yml +++ b/src/_data/codebase/v2_4/mrg/b2b/PurchaseOrder.yml @@ -1,7 +1,7 @@ --- title: Magento_PurchaseOrder source_repo: magento2b2b -release: 1.2.0 +release: 1.3.0 github_path: app/code/Magento/PurchaseOrder/README.md last_modified_at: '2020-05-13 11:51:49 -0500' content: "\n​\n## Overview\n​\nThe PurchaseOrder module contains functionality for diff --git a/src/_data/codebase/v2_4/mrg/b2b/PurchaseOrderRule.yml b/src/_data/codebase/v2_4/mrg/b2b/PurchaseOrderRule.yml index 225b82d3001..e5a916ffbcb 100644 --- a/src/_data/codebase/v2_4/mrg/b2b/PurchaseOrderRule.yml +++ b/src/_data/codebase/v2_4/mrg/b2b/PurchaseOrderRule.yml @@ -1,7 +1,7 @@ --- title: Magento_PurchaseOrderRule source_repo: magento2b2b -release: 1.2.0 +release: 1.3.0 github_path: app/code/Magento/PurchaseOrderRule/README.md last_modified_at: '2020-05-13 14:36:51 -0500' content: "​\n## Overview\n​\nThe PurchaseOrderRule module contains functionality for diff --git a/src/_data/codebase/v2_4/mrg/b2b/QuickOrder.yml b/src/_data/codebase/v2_4/mrg/b2b/QuickOrder.yml index c7ebaf3ae49..f51b2b13907 100644 --- a/src/_data/codebase/v2_4/mrg/b2b/QuickOrder.yml +++ b/src/_data/codebase/v2_4/mrg/b2b/QuickOrder.yml @@ -1,7 +1,7 @@ --- title: Magento_QuickOrder source_repo: magento2b2b -release: 1.2.0 +release: 1.3.0 github_path: app/code/Magento/QuickOrder/README.md last_modified_at: '2017-02-15 17:02:23 +0300' content: "## Overview\n\nThe Magento_QuickOrder module allows customers to improve diff --git a/src/_data/codebase/v2_4/mrg/b2b/RequisitionList.yml b/src/_data/codebase/v2_4/mrg/b2b/RequisitionList.yml index 857d61a72fa..1e849c021fe 100644 --- a/src/_data/codebase/v2_4/mrg/b2b/RequisitionList.yml +++ b/src/_data/codebase/v2_4/mrg/b2b/RequisitionList.yml @@ -1,7 +1,7 @@ --- title: Magento_RequisitionList source_repo: magento2b2b -release: 1.2.0 +release: 1.3.0 github_path: app/code/Magento/RequisitionList/README.md last_modified_at: '2017-02-15 17:02:23 +0300' content: "## Overview\n\nThe Magento_RequisitionList module allows a customer to create diff --git a/src/_data/codebase/v2_4/mrg/b2b/SharedCatalog.yml b/src/_data/codebase/v2_4/mrg/b2b/SharedCatalog.yml index 8c812012fe2..1df02f468f6 100644 --- a/src/_data/codebase/v2_4/mrg/b2b/SharedCatalog.yml +++ b/src/_data/codebase/v2_4/mrg/b2b/SharedCatalog.yml @@ -1,7 +1,7 @@ --- title: Magento_SharedCatalog source_repo: magento2b2b -release: 1.2.0 +release: 1.3.0 github_path: app/code/Magento/SharedCatalog/README.md last_modified_at: '2019-09-24 19:57:14 -0500' content: "## Overview\n\nThe Magento_SharedCatalog modules defines the visibility diff --git a/src/_data/codebase/v2_4/mrg/ce/AdminAnalytics.yml b/src/_data/codebase/v2_4/mrg/ce/AdminAnalytics.yml index 6760c350559..602e7f06567 100644 --- a/src/_data/codebase/v2_4/mrg/ce/AdminAnalytics.yml +++ b/src/_data/codebase/v2_4/mrg/ce/AdminAnalytics.yml @@ -1,7 +1,7 @@ --- title: Magento_AdminAnalytics source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/AdminAnalytics/README.md last_modified_at: '2019-08-08 11:00:49 -0500' content: The Magento\AdminAnalytics module gathers information about the features diff --git a/src/_data/codebase/v2_4/mrg/ce/AdminNotification.yml b/src/_data/codebase/v2_4/mrg/ce/AdminNotification.yml index 73bd0851813..789a0b38893 100644 --- a/src/_data/codebase/v2_4/mrg/ce/AdminNotification.yml +++ b/src/_data/codebase/v2_4/mrg/ce/AdminNotification.yml @@ -1,7 +1,7 @@ --- title: Magento_AdminNotification source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/AdminNotification/README.md last_modified_at: '2019-08-19 00:16:18 +0100' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/AdvancedPricingImportExport.yml b/src/_data/codebase/v2_4/mrg/ce/AdvancedPricingImportExport.yml index 4d8fbd3e4bd..eedab8a9148 100644 --- a/src/_data/codebase/v2_4/mrg/ce/AdvancedPricingImportExport.yml +++ b/src/_data/codebase/v2_4/mrg/ce/AdvancedPricingImportExport.yml @@ -1,7 +1,7 @@ --- title: Magento_AdvancedPricingImportExport source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/AdvancedPricingImportExport/README.md last_modified_at: '2019-08-18 23:54:55 +0100' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ce/AdvancedSearch.yml b/src/_data/codebase/v2_4/mrg/ce/AdvancedSearch.yml index 0b7ad9d3440..1c391ce5f4a 100644 --- a/src/_data/codebase/v2_4/mrg/ce/AdvancedSearch.yml +++ b/src/_data/codebase/v2_4/mrg/ce/AdvancedSearch.yml @@ -1,7 +1,7 @@ --- title: Magento_AdvancedSearch source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/AdvancedSearch/README.md last_modified_at: '2019-08-20 00:08:51 +0100' content: "The Magento_AdvancedSearch module introduces advanced search functionality diff --git a/src/_data/codebase/v2_4/mrg/ce/Amqp.yml b/src/_data/codebase/v2_4/mrg/ce/Amqp.yml index bfaebdd5778..11bff858003 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Amqp.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Amqp.yml @@ -1,7 +1,7 @@ --- title: Magento_Amqp source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Amqp/README.md last_modified_at: '2019-08-19 00:22:19 +0100' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ce/AmqpStore.yml b/src/_data/codebase/v2_4/mrg/ce/AmqpStore.yml index d037b2b955d..999965ba4c6 100644 --- a/src/_data/codebase/v2_4/mrg/ce/AmqpStore.yml +++ b/src/_data/codebase/v2_4/mrg/ce/AmqpStore.yml @@ -1,7 +1,7 @@ --- title: Magento_AmqpStore source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/AmqpStore/README.md last_modified_at: '2019-08-27 01:59:34 +0100' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/Analytics.yml b/src/_data/codebase/v2_4/mrg/ce/Analytics.yml index 14b7a0a8a24..98f84f3c21e 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Analytics.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Analytics.yml @@ -1,7 +1,7 @@ --- title: Magento_Analytics source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Analytics/README.md last_modified_at: '2019-09-15 22:49:37 +0100' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/AsynchronousOperations.yml b/src/_data/codebase/v2_4/mrg/ce/AsynchronousOperations.yml index b151e2e2311..ad3df7133fb 100644 --- a/src/_data/codebase/v2_4/mrg/ce/AsynchronousOperations.yml +++ b/src/_data/codebase/v2_4/mrg/ce/AsynchronousOperations.yml @@ -1,7 +1,7 @@ --- title: Magento_AsynchronousOperations source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/AsynchronousOperations/README.md last_modified_at: '2019-08-27 01:56:24 +0100' content: "This component is designed to provide a response for a client that launched diff --git a/src/_data/codebase/v2_4/mrg/ce/Authorization.yml b/src/_data/codebase/v2_4/mrg/ce/Authorization.yml index 62ff0135212..f495ce6a77e 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Authorization.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Authorization.yml @@ -1,7 +1,7 @@ --- title: Magento_Authorization source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Authorization/README.md last_modified_at: '2019-08-25 07:43:56 +0100' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/Backend.yml b/src/_data/codebase/v2_4/mrg/ce/Backend.yml index edf5d3c76e6..4ab781d6716 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Backend.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Backend.yml @@ -1,7 +1,7 @@ --- title: Magento_Backend source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Backend/README.md last_modified_at: '2020-03-26 15:07:34 +0200' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/Backup.yml b/src/_data/codebase/v2_4/mrg/ce/Backup.yml index 2a323179f95..904b80d8806 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Backup.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Backup.yml @@ -1,7 +1,7 @@ --- title: Magento_Backup source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Backup/README.md last_modified_at: '2019-09-16 12:24:25 -0300' content: "The Magento_Backup module allows administrators to perform backups and rollbacks. diff --git a/src/_data/codebase/v2_4/mrg/ce/Bundle.yml b/src/_data/codebase/v2_4/mrg/ce/Bundle.yml index e30becbfd05..d038c7f8fb6 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Bundle.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Bundle.yml @@ -1,7 +1,7 @@ --- title: Magento_Bundle source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Bundle/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/BundleGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/BundleGraphQl.yml index a93d210347e..b5703953eea 100644 --- a/src/_data/codebase/v2_4/mrg/ce/BundleGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ce/BundleGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_BundleGraphQl source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/BundleGraphQl/README.md last_modified_at: '2018-01-24 11:57:46 -0600' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/BundleImportExport.yml b/src/_data/codebase/v2_4/mrg/ce/BundleImportExport.yml index 32e0ac923ae..5c91d24f569 100644 --- a/src/_data/codebase/v2_4/mrg/ce/BundleImportExport.yml +++ b/src/_data/codebase/v2_4/mrg/ce/BundleImportExport.yml @@ -1,7 +1,7 @@ --- title: Magento_BundleImportExport source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/BundleImportExport/README.md last_modified_at: '2015-05-28 02:24:13 +0300' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/CacheInvalidate.yml b/src/_data/codebase/v2_4/mrg/ce/CacheInvalidate.yml index 8f70a24910e..0729f9d7ddd 100644 --- a/src/_data/codebase/v2_4/mrg/ce/CacheInvalidate.yml +++ b/src/_data/codebase/v2_4/mrg/ce/CacheInvalidate.yml @@ -1,7 +1,7 @@ --- title: Magento_CacheInvalidate source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CacheInvalidate/README.md last_modified_at: '2015-04-13 17:31:45 -0500' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ce/Captcha.yml b/src/_data/codebase/v2_4/mrg/ce/Captcha.yml index dac23f77750..1ffd2bbbfe6 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Captcha.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Captcha.yml @@ -1,7 +1,7 @@ --- title: Magento_Captcha source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Captcha/README.md last_modified_at: '2014-07-11 11:30:21 -0700' content: The Captcha module allows applying Turing test in the process of user authentication diff --git a/src/_data/codebase/v2_4/mrg/ce/CardinalCommerce.yml b/src/_data/codebase/v2_4/mrg/ce/CardinalCommerce.yml index 4427c3bb592..36f6090f3f5 100644 --- a/src/_data/codebase/v2_4/mrg/ce/CardinalCommerce.yml +++ b/src/_data/codebase/v2_4/mrg/ce/CardinalCommerce.yml @@ -1,7 +1,7 @@ --- title: Magento_CardinalCommerce source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CardinalCommerce/README.md last_modified_at: '2019-06-11 13:12:54 -0500' content: The CardinalCommerce module provides a possibility to enable 3-D Secure 2.0 diff --git a/src/_data/codebase/v2_4/mrg/ce/Catalog.yml b/src/_data/codebase/v2_4/mrg/ce/Catalog.yml index 51acd02fd45..1251adad64c 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Catalog.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Catalog.yml @@ -1,7 +1,7 @@ --- title: Magento_Catalog source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Catalog/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/CatalogAnalytics.yml b/src/_data/codebase/v2_4/mrg/ce/CatalogAnalytics.yml index 8d89e3744a0..1113288b82e 100644 --- a/src/_data/codebase/v2_4/mrg/ce/CatalogAnalytics.yml +++ b/src/_data/codebase/v2_4/mrg/ce/CatalogAnalytics.yml @@ -1,10 +1,10 @@ --- title: Magento_CatalogAnalytics source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CatalogAnalytics/README.md last_modified_at: '2019-08-06 14:40:28 -0500' content: 'The Magento_CatalogAnalytics module configures data definitions for a data collection related to the Catalog module entities to be used in [Advanced Reporting](https://devdocs.magento.com/guides/v2.3/advanced-reporting/modules.html). - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/CatalogCmsGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/CatalogCmsGraphQl.yml index 16bb3c50c55..953ae6ccaea 100644 --- a/src/_data/codebase/v2_4/mrg/ce/CatalogCmsGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ce/CatalogCmsGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogCmsGraphQl source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CatalogCmsGraphQl/README.md last_modified_at: '2019-10-11 12:20:01 -0500' content: "**CatalogCmsGraphQl** provides type and resolver information for GraphQL diff --git a/src/_data/codebase/v2_4/mrg/ce/CatalogCustomerGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/CatalogCustomerGraphQl.yml index 28dcb88abd7..25e49f9e804 100644 --- a/src/_data/codebase/v2_4/mrg/ce/CatalogCustomerGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ce/CatalogCustomerGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogCustomerGraphQl source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CatalogCustomerGraphQl/README.md last_modified_at: '2019-09-19 13:05:37 -0500' content: "**CatalogCustomerGraphQl** provides type and resolver information for GraphQL diff --git a/src/_data/codebase/v2_4/mrg/ce/CatalogGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/CatalogGraphQl.yml index 81d27e65364..b25c2d159df 100644 --- a/src/_data/codebase/v2_4/mrg/ce/CatalogGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ce/CatalogGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogGraphQl source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CatalogGraphQl/README.md last_modified_at: '2018-01-16 13:17:37 -0600' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/CatalogInventory.yml b/src/_data/codebase/v2_4/mrg/ce/CatalogInventory.yml index bd133a5cbf9..39b19bd22c2 100644 --- a/src/_data/codebase/v2_4/mrg/ce/CatalogInventory.yml +++ b/src/_data/codebase/v2_4/mrg/ce/CatalogInventory.yml @@ -1,10 +1,10 @@ --- title: Magento_CatalogInventory source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CatalogInventory/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: 'Magento_CatalogInventory module allows retrieve and update stock attributes, such as status and quantity. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/CatalogInventoryGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/CatalogInventoryGraphQl.yml index 354f5c3ba43..2a463442b05 100644 --- a/src/_data/codebase/v2_4/mrg/ce/CatalogInventoryGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ce/CatalogInventoryGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogInventoryGraphQl source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CatalogInventoryGraphQl/README.md last_modified_at: '2018-07-18 16:40:53 +0200' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/CatalogRule.yml b/src/_data/codebase/v2_4/mrg/ce/CatalogRule.yml index 7dd54853701..839107a261b 100644 --- a/src/_data/codebase/v2_4/mrg/ce/CatalogRule.yml +++ b/src/_data/codebase/v2_4/mrg/ce/CatalogRule.yml @@ -1,11 +1,11 @@ --- title: Magento_CatalogRule source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CatalogRule/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: 'Magento_CatalogRule module is responsible for one of the types of price rules in Magento. Catalog Rules are applied to products before they are added to the cart. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/CatalogRuleConfigurable.yml b/src/_data/codebase/v2_4/mrg/ce/CatalogRuleConfigurable.yml index 109f5dc6a4f..7c559c82a7e 100644 --- a/src/_data/codebase/v2_4/mrg/ce/CatalogRuleConfigurable.yml +++ b/src/_data/codebase/v2_4/mrg/ce/CatalogRuleConfigurable.yml @@ -1,11 +1,11 @@ --- title: Magento_CatalogRuleConfigurable source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CatalogRuleConfigurable/README.md last_modified_at: '2015-09-07 17:18:34 +0300' content: 'Magento_CatalogRuleConfigurable module is an extension of Magento_CatalogRule and Magento_ConfigurableProduct modules that handle catalog rule indexer for configurable product - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/CatalogRuleGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/CatalogRuleGraphQl.yml index 79ff7212008..5a6715bfa9d 100644 --- a/src/_data/codebase/v2_4/mrg/ce/CatalogRuleGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ce/CatalogRuleGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogRuleGraphQl source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CatalogRuleGraphQl/README.md last_modified_at: '2020-03-16 09:03:11 -0500' content: The *Magento_CatalogRuleGraphQl* module applies catalog rules to products diff --git a/src/_data/codebase/v2_4/mrg/ce/CatalogSearch.yml b/src/_data/codebase/v2_4/mrg/ce/CatalogSearch.yml index 508d0425fd1..f4b68d57986 100644 --- a/src/_data/codebase/v2_4/mrg/ce/CatalogSearch.yml +++ b/src/_data/codebase/v2_4/mrg/ce/CatalogSearch.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogSearch source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CatalogSearch/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/CatalogUrlRewriteGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/CatalogUrlRewriteGraphQl.yml index 58c75fa0da4..1194ed9f1b9 100644 --- a/src/_data/codebase/v2_4/mrg/ce/CatalogUrlRewriteGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ce/CatalogUrlRewriteGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogUrlRewriteGraphQl source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CatalogUrlRewriteGraphQl/README.md last_modified_at: '2018-01-16 16:07:17 -0600' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/CatalogWidget.yml b/src/_data/codebase/v2_4/mrg/ce/CatalogWidget.yml index b89036f81f9..2260ae4c78e 100644 --- a/src/_data/codebase/v2_4/mrg/ce/CatalogWidget.yml +++ b/src/_data/codebase/v2_4/mrg/ce/CatalogWidget.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogWidget source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CatalogWidget/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/Checkout.yml b/src/_data/codebase/v2_4/mrg/ce/Checkout.yml index 93720f249af..7659116a232 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Checkout.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Checkout.yml @@ -1,7 +1,7 @@ --- title: Magento_Checkout source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Checkout/README.md last_modified_at: '2014-10-24 14:51:44 -0700' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ce/CheckoutAgreements.yml b/src/_data/codebase/v2_4/mrg/ce/CheckoutAgreements.yml index 37ba0934a2e..35f961fe5ef 100644 --- a/src/_data/codebase/v2_4/mrg/ce/CheckoutAgreements.yml +++ b/src/_data/codebase/v2_4/mrg/ce/CheckoutAgreements.yml @@ -1,7 +1,7 @@ --- title: Magento_CheckoutAgreements source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CheckoutAgreements/README.md last_modified_at: '2014-10-24 14:51:44 -0700' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ce/CheckoutAgreementsGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/CheckoutAgreementsGraphQl.yml index eb4fe674b18..078223b2076 100644 --- a/src/_data/codebase/v2_4/mrg/ce/CheckoutAgreementsGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ce/CheckoutAgreementsGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_CheckoutAgreementsGraphQl source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CheckoutAgreementsGraphQl/README.md last_modified_at: '2019-03-20 17:00:47 +0200' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/Cms.yml b/src/_data/codebase/v2_4/mrg/ce/Cms.yml index 16f746aa1f0..f31c7f801e6 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Cms.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Cms.yml @@ -1,7 +1,7 @@ --- title: Magento_Cms source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Cms/README.md last_modified_at: '2017-12-12 09:36:23 -0600' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ce/CmsGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/CmsGraphQl.yml index 7df00a7ece6..954ea4f2d5f 100644 --- a/src/_data/codebase/v2_4/mrg/ce/CmsGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ce/CmsGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_CmsGraphQl source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CmsGraphQl/README.md last_modified_at: '2018-06-30 14:36:35 +0300' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/CmsUrlRewrite.yml b/src/_data/codebase/v2_4/mrg/ce/CmsUrlRewrite.yml index aec21be7ab2..7db5b79b57a 100644 --- a/src/_data/codebase/v2_4/mrg/ce/CmsUrlRewrite.yml +++ b/src/_data/codebase/v2_4/mrg/ce/CmsUrlRewrite.yml @@ -1,7 +1,7 @@ --- title: Magento_CmsUrlRewrite source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CmsUrlRewrite/README.md last_modified_at: '2017-03-07 16:04:38 -0600' content: "## Overview\n \nThe Magento_CmsUrlRewrite module adds support for URL rewrite diff --git a/src/_data/codebase/v2_4/mrg/ce/CmsUrlRewriteGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/CmsUrlRewriteGraphQl.yml index ce0978d200c..dc1eddcc41a 100644 --- a/src/_data/codebase/v2_4/mrg/ce/CmsUrlRewriteGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ce/CmsUrlRewriteGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_CmsUrlRewriteGraphQl source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CmsUrlRewriteGraphQl/README.md last_modified_at: '2018-01-17 16:25:54 -0600' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/Config.yml b/src/_data/codebase/v2_4/mrg/ce/Config.yml index d015a008645..a8f55e9fdd3 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Config.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Config.yml @@ -1,7 +1,7 @@ --- title: Magento_Config source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Config/README.md last_modified_at: '2019-09-03 18:23:54 +0300' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/ConfigurableProduct.yml b/src/_data/codebase/v2_4/mrg/ce/ConfigurableProduct.yml index 02a789fe0c8..f40a92f25bc 100644 --- a/src/_data/codebase/v2_4/mrg/ce/ConfigurableProduct.yml +++ b/src/_data/codebase/v2_4/mrg/ce/ConfigurableProduct.yml @@ -1,7 +1,7 @@ --- title: Magento_ConfigurableProduct source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/ConfigurableProduct/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/ConfigurableProductGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/ConfigurableProductGraphQl.yml index aa59847651e..e37676404e1 100644 --- a/src/_data/codebase/v2_4/mrg/ce/ConfigurableProductGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ce/ConfigurableProductGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_ConfigurableProductGraphQl source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/ConfigurableProductGraphQl/README.md last_modified_at: '2018-01-16 13:17:37 -0600' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/ConfigurableProductSales.yml b/src/_data/codebase/v2_4/mrg/ce/ConfigurableProductSales.yml index 51dd1c84e40..35677126c1b 100644 --- a/src/_data/codebase/v2_4/mrg/ce/ConfigurableProductSales.yml +++ b/src/_data/codebase/v2_4/mrg/ce/ConfigurableProductSales.yml @@ -1,7 +1,7 @@ --- title: Magento_ConfigurableProductSales source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/ConfigurableProductSales/README.md last_modified_at: '2017-07-14 16:51:00 +0300' content: "The Magento_ConfigurableProductSales module checks that the selected options diff --git a/src/_data/codebase/v2_4/mrg/ce/Contact.yml b/src/_data/codebase/v2_4/mrg/ce/Contact.yml index b1edd08dd93..bbd69d56583 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Contact.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Contact.yml @@ -1,11 +1,11 @@ --- title: Magento_Contact source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Contact/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: 'Magento_Contact module provides an implementation of "Contact Us" feature based on sending email message, allows to configure email recipients, email template, etc... - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/Cookie.yml b/src/_data/codebase/v2_4/mrg/ce/Cookie.yml index 6aafdc16f7d..08e003ef5aa 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Cookie.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Cookie.yml @@ -1,10 +1,10 @@ --- title: Magento_Cookie source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Cookie/README.md last_modified_at: '2015-01-28 16:50:13 -0600' content: 'Magento_Cookie module allows enabling and configuring HTTP cookie related settings for the store. These settings are available in the store administration. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/Cron.yml b/src/_data/codebase/v2_4/mrg/ce/Cron.yml index 1609d84f3c3..54f11bf05c1 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Cron.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Cron.yml @@ -1,7 +1,7 @@ --- title: Magento_Cron source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Cron/README.md last_modified_at: '2015-04-30 16:30:07 -0500' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ce/Csp.yml b/src/_data/codebase/v2_4/mrg/ce/Csp.yml index 2466904c510..d2eb98349c5 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Csp.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Csp.yml @@ -1,7 +1,7 @@ --- title: Magento_Csp source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Csp/README.md last_modified_at: '2019-11-14 16:21:59 -0600' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/CurrencySymbol.yml b/src/_data/codebase/v2_4/mrg/ce/CurrencySymbol.yml index 77a2ef2b7d7..b7c02e6109c 100644 --- a/src/_data/codebase/v2_4/mrg/ce/CurrencySymbol.yml +++ b/src/_data/codebase/v2_4/mrg/ce/CurrencySymbol.yml @@ -1,7 +1,7 @@ --- title: Magento_CurrencySymbol source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CurrencySymbol/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: |+ @@ -18,4 +18,3 @@ content: |+ ***CurrencySymbol\Controller\Adminhtml\System\Currencysymbol\Reset.php*** resets all custom currency symbols. ***CurrencySymbol\Controller\Adminhtml\System\Currencysymbol\Save.php*** creates custom currency symbols. -... diff --git a/src/_data/codebase/v2_4/mrg/ce/Customer.yml b/src/_data/codebase/v2_4/mrg/ce/Customer.yml index f981e854ab7..1e3b7f48fd8 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Customer.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Customer.yml @@ -1,7 +1,7 @@ --- title: Magento_Customer source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Customer/README.md last_modified_at: '2015-08-27 15:34:05 -0500' content: "The Magento_Customer module serves to handle the customer data (Customer, diff --git a/src/_data/codebase/v2_4/mrg/ce/CustomerAnalytics.yml b/src/_data/codebase/v2_4/mrg/ce/CustomerAnalytics.yml index dd12b2bc9f6..14161c64130 100644 --- a/src/_data/codebase/v2_4/mrg/ce/CustomerAnalytics.yml +++ b/src/_data/codebase/v2_4/mrg/ce/CustomerAnalytics.yml @@ -1,10 +1,10 @@ --- title: Magento_CustomerAnalytics source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CustomerAnalytics/README.md last_modified_at: '2019-08-06 14:40:28 -0500' content: 'The Magento_CustomerAnalytics module configures data definitions for a data collection related to the Customer module entities to be used in [Advanced Reporting](https://devdocs.magento.com/guides/v2.3/advanced-reporting/modules.html). - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/CustomerDownloadableGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/CustomerDownloadableGraphQl.yml index 20e15527654..34e3d3010b7 100644 --- a/src/_data/codebase/v2_4/mrg/ce/CustomerDownloadableGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ce/CustomerDownloadableGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_CustomerDownloadableGraphQl source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CustomerDownloadableGraphQl/README.md last_modified_at: '2019-06-25 22:45:10 +0200' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/CustomerGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/CustomerGraphQl.yml index 12d4e0f3c8e..e87ea507b45 100644 --- a/src/_data/codebase/v2_4/mrg/ce/CustomerGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ce/CustomerGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_CustomerGraphQl source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CustomerGraphQl/README.md last_modified_at: '2018-01-16 13:17:37 -0600' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/CustomerImportExport.yml b/src/_data/codebase/v2_4/mrg/ce/CustomerImportExport.yml index 0c833f3cb3b..8ad8b32db3c 100644 --- a/src/_data/codebase/v2_4/mrg/ce/CustomerImportExport.yml +++ b/src/_data/codebase/v2_4/mrg/ce/CustomerImportExport.yml @@ -1,10 +1,10 @@ --- title: Magento_CustomerImportExport source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CustomerImportExport/README.md last_modified_at: '2014-10-31 09:04:08 -0700' content: 'The Magento_CustomerImportExport module handles the import and export of the customers data and related addresses. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/Deploy.yml b/src/_data/codebase/v2_4/mrg/ce/Deploy.yml index cc721be1fb0..aefe462fadd 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Deploy.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Deploy.yml @@ -1,7 +1,7 @@ --- title: Magento_Deploy source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Deploy/README.md last_modified_at: '2019-07-16 21:19:40 +0100' content: "## Purpose of module\n\nDeploy is a module that holds collection of services diff --git a/src/_data/codebase/v2_4/mrg/ce/Developer.yml b/src/_data/codebase/v2_4/mrg/ce/Developer.yml index 2368102e731..2cb0e1ea53f 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Developer.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Developer.yml @@ -1,10 +1,10 @@ --- title: Magento_Developer source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Developer/README.md last_modified_at: '2015-01-15 14:33:14 -0600' content: 'The Magento_Developer module provides functionality to make it easier to develop in Magento 2. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/Dhl.yml b/src/_data/codebase/v2_4/mrg/ce/Dhl.yml index 99078099a6f..51c23facf4d 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Dhl.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Dhl.yml @@ -1,7 +1,7 @@ --- title: Magento_Dhl source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Dhl/README.md last_modified_at: '2014-10-31 09:04:08 -0700' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/Directory.yml b/src/_data/codebase/v2_4/mrg/ce/Directory.yml index aac0e9eb00a..feb947dec93 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Directory.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Directory.yml @@ -1,7 +1,7 @@ --- title: Magento_Directory source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Directory/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/DirectoryGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/DirectoryGraphQl.yml index 45b10730ae0..1a6c6aed537 100644 --- a/src/_data/codebase/v2_4/mrg/ce/DirectoryGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ce/DirectoryGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_DirectoryGraphQl source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/DirectoryGraphQl/README.md last_modified_at: '2019-01-31 09:12:38 -0500' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/Downloadable.yml b/src/_data/codebase/v2_4/mrg/ce/Downloadable.yml index 28f8eff9cb4..c349a2b70af 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Downloadable.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Downloadable.yml @@ -1,7 +1,7 @@ --- title: Magento_Downloadable source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Downloadable/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/DownloadableGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/DownloadableGraphQl.yml index 16fd8dc54a5..dbca9d86191 100644 --- a/src/_data/codebase/v2_4/mrg/ce/DownloadableGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ce/DownloadableGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_DownloadableGraphQl source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/DownloadableGraphQl/README.md last_modified_at: '2018-01-24 15:58:51 -0600' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/DownloadableImportExport.yml b/src/_data/codebase/v2_4/mrg/ce/DownloadableImportExport.yml index 4911f7539da..02a535fbfce 100644 --- a/src/_data/codebase/v2_4/mrg/ce/DownloadableImportExport.yml +++ b/src/_data/codebase/v2_4/mrg/ce/DownloadableImportExport.yml @@ -1,10 +1,10 @@ --- title: Magento_DownloadableImportExport source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/DownloadableImportExport/README.md last_modified_at: '2015-08-10 11:16:49 +0300' content: 'The Magento_DownloadableImportExport module handles the import and export of the downloadable products. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/Eav.yml b/src/_data/codebase/v2_4/mrg/ce/Eav.yml index 4af9acbb21a..7e9cc104e80 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Eav.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Eav.yml @@ -1,7 +1,7 @@ --- title: Magento_Eav source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Eav/README.md last_modified_at: '2014-10-24 14:51:44 -0700' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ce/EavGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/EavGraphQl.yml index 67992dce2b0..a3c4d97fb57 100644 --- a/src/_data/codebase/v2_4/mrg/ce/EavGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ce/EavGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_EavGraphQl source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/EavGraphQl/README.md last_modified_at: '2018-01-16 13:17:37 -0600' content: "**EavGraphQl** primarily provides the GraphQl module information to generate diff --git a/src/_data/codebase/v2_4/mrg/ce/Elasticsearch.yml b/src/_data/codebase/v2_4/mrg/ce/Elasticsearch.yml index 3a59908ce4b..7e97f454fb3 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Elasticsearch.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Elasticsearch.yml @@ -1,7 +1,7 @@ --- title: Magento_Elasticsearch source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Elasticsearch/README.md last_modified_at: '2018-03-09 17:43:18 -0600' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ce/Elasticsearch6.yml b/src/_data/codebase/v2_4/mrg/ce/Elasticsearch6.yml index 4d275ee4c2a..a7574527418 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Elasticsearch6.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Elasticsearch6.yml @@ -1,7 +1,7 @@ --- title: Magento_Elasticsearch6 source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Elasticsearch6/README.md last_modified_at: '2019-02-27 13:06:48 +0100' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/Elasticsearch7.yml b/src/_data/codebase/v2_4/mrg/ce/Elasticsearch7.yml index 93aaf8ae7c3..7a3bacd74c3 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Elasticsearch7.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Elasticsearch7.yml @@ -1,7 +1,7 @@ --- title: Magento_Elasticsearch7 source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Elasticsearch7/README.md last_modified_at: '2020-03-06 11:22:29 -0600' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/Email.yml b/src/_data/codebase/v2_4/mrg/ce/Email.yml index 273cf859299..689ac2a9e07 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Email.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Email.yml @@ -1,7 +1,7 @@ --- title: Magento_Email source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Email/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/EncryptionKey.yml b/src/_data/codebase/v2_4/mrg/ce/EncryptionKey.yml index b1825af9099..b2a53bac2a9 100644 --- a/src/_data/codebase/v2_4/mrg/ce/EncryptionKey.yml +++ b/src/_data/codebase/v2_4/mrg/ce/EncryptionKey.yml @@ -1,10 +1,10 @@ --- title: Magento_EncryptionKey source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/EncryptionKey/README.md last_modified_at: '2015-08-27 15:34:05 -0500' content: 'The Magento_EncryptionKey module provides an advanced encryption model to protect passwords and other sensitive data. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/Fedex.yml b/src/_data/codebase/v2_4/mrg/ce/Fedex.yml index 7895a112490..572e08fd23d 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Fedex.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Fedex.yml @@ -1,9 +1,9 @@ --- title: Magento_Fedex source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Fedex/README.md last_modified_at: '2014-10-31 09:04:08 -0700' content: 'The Magento_Fedex implements the integration with the FedEx shipping carrier. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/GiftMessage.yml b/src/_data/codebase/v2_4/mrg/ce/GiftMessage.yml index ef39acda98e..29b5d64a500 100644 --- a/src/_data/codebase/v2_4/mrg/ce/GiftMessage.yml +++ b/src/_data/codebase/v2_4/mrg/ce/GiftMessage.yml @@ -1,7 +1,7 @@ --- title: Magento_GiftMessage source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/GiftMessage/README.md last_modified_at: '2014-10-24 14:51:44 -0700' content: Magento\GiftMessage module allows to add a message to order or to each ordered diff --git a/src/_data/codebase/v2_4/mrg/ce/GiftMessageGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/GiftMessageGraphQl.yml new file mode 100644 index 00000000000..60f35e59250 --- /dev/null +++ b/src/_data/codebase/v2_4/mrg/ce/GiftMessageGraphQl.yml @@ -0,0 +1,8 @@ +--- +title: Magento_GiftMessageGraphQl +source_repo: magento2ce +release: 2.4.1 +github_path: app/code/Magento/GiftMessageGraphQl/README.md +last_modified_at: '2020-06-08 17:14:15 +0300' +content: "**GiftMessageGraphQl** provides information about gift messages for carts, + cart items, orders and order items.\n" diff --git a/src/_data/codebase/v2_4/mrg/ce/GoogleAdwords.yml b/src/_data/codebase/v2_4/mrg/ce/GoogleAdwords.yml index 8c9ef6db90c..12daf3ff424 100644 --- a/src/_data/codebase/v2_4/mrg/ce/GoogleAdwords.yml +++ b/src/_data/codebase/v2_4/mrg/ce/GoogleAdwords.yml @@ -1,9 +1,9 @@ --- title: Magento_GoogleAdwords source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/GoogleAdwords/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: 'GoogleAdwords is a module designed for integration of Google Adwords service. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/GoogleAnalytics.yml b/src/_data/codebase/v2_4/mrg/ce/GoogleAnalytics.yml index b725da84f51..69e6d1be4f5 100644 --- a/src/_data/codebase/v2_4/mrg/ce/GoogleAnalytics.yml +++ b/src/_data/codebase/v2_4/mrg/ce/GoogleAnalytics.yml @@ -1,10 +1,10 @@ --- title: Magento_GoogleAnalytics source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/GoogleAnalytics/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: 'Magento_GoogleAnalytics is a module for integration with Google Analytics service. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/GoogleOptimizer.yml b/src/_data/codebase/v2_4/mrg/ce/GoogleOptimizer.yml index 3d88e1ecc57..d1536de7401 100644 --- a/src/_data/codebase/v2_4/mrg/ce/GoogleOptimizer.yml +++ b/src/_data/codebase/v2_4/mrg/ce/GoogleOptimizer.yml @@ -1,7 +1,7 @@ --- title: Magento_GoogleOptimizer source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/GoogleOptimizer/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: "Magento_GoogleOptimizer module implements functionality of Google Experiment diff --git a/src/_data/codebase/v2_4/mrg/ce/GraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/GraphQl.yml index 712d7a0c00b..16067038e54 100644 --- a/src/_data/codebase/v2_4/mrg/ce/GraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ce/GraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_GraphQl source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/GraphQl/README.md last_modified_at: '2017-10-25 11:14:11 -0500' content: "**GraphQl** provides the framework for the application to expose GraphQL diff --git a/src/_data/codebase/v2_4/mrg/ce/GraphQlCache.yml b/src/_data/codebase/v2_4/mrg/ce/GraphQlCache.yml index 7c21e39107b..b2618363c62 100644 --- a/src/_data/codebase/v2_4/mrg/ce/GraphQlCache.yml +++ b/src/_data/codebase/v2_4/mrg/ce/GraphQlCache.yml @@ -1,7 +1,7 @@ --- title: Magento_GraphQlCache source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/GraphQlCache/README.md last_modified_at: '2019-04-08 11:49:04 -0500' content: "**GraphQL Cache** provides the ability to cache GraphQL queries.\nThis module diff --git a/src/_data/codebase/v2_4/mrg/ce/GroupedCatalogInventory.yml b/src/_data/codebase/v2_4/mrg/ce/GroupedCatalogInventory.yml index 20d5c315d56..9defc53dcc0 100644 --- a/src/_data/codebase/v2_4/mrg/ce/GroupedCatalogInventory.yml +++ b/src/_data/codebase/v2_4/mrg/ce/GroupedCatalogInventory.yml @@ -1,10 +1,10 @@ --- title: Magento_GroupedCatalogInventory source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/GroupedCatalogInventory/README.md last_modified_at: '2018-11-27 16:04:57 -0600' content: 'Magento_GroupedCatalogInventory contains behavior related to the inventory status of items within grouped products. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/GroupedProduct.yml b/src/_data/codebase/v2_4/mrg/ce/GroupedProduct.yml index a133332a966..e7a35c9a255 100644 --- a/src/_data/codebase/v2_4/mrg/ce/GroupedProduct.yml +++ b/src/_data/codebase/v2_4/mrg/ce/GroupedProduct.yml @@ -1,7 +1,7 @@ --- title: Magento_GroupedProduct source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/GroupedProduct/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/GroupedProductGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/GroupedProductGraphQl.yml index b3ebf8f55c8..24b59cfad01 100644 --- a/src/_data/codebase/v2_4/mrg/ce/GroupedProductGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ce/GroupedProductGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_GroupedProductGraphQl source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/GroupedProductGraphQl/README.md last_modified_at: '2018-01-29 15:12:49 -0600' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/ImportExport.yml b/src/_data/codebase/v2_4/mrg/ce/ImportExport.yml index f53d86e51a1..d0acc63d06b 100644 --- a/src/_data/codebase/v2_4/mrg/ce/ImportExport.yml +++ b/src/_data/codebase/v2_4/mrg/ce/ImportExport.yml @@ -1,7 +1,7 @@ --- title: Magento_ImportExport source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/ImportExport/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/Indexer.yml b/src/_data/codebase/v2_4/mrg/ce/Indexer.yml index 2580affc639..654aec795c1 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Indexer.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Indexer.yml @@ -1,7 +1,7 @@ --- title: Magento_Indexer source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Indexer/README.md last_modified_at: '2016-04-11 18:16:09 +0300' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ce/InstantPurchase.yml b/src/_data/codebase/v2_4/mrg/ce/InstantPurchase.yml index 0c22947e6cc..2a25b2e4e2c 100644 --- a/src/_data/codebase/v2_4/mrg/ce/InstantPurchase.yml +++ b/src/_data/codebase/v2_4/mrg/ce/InstantPurchase.yml @@ -1,7 +1,7 @@ --- title: Magento_InstantPurchase source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/InstantPurchase/README.md last_modified_at: '2019-08-06 14:40:28 -0500' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/Integration.yml b/src/_data/codebase/v2_4/mrg/ce/Integration.yml index 0d2d5ee6eea..6de27aff5a3 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Integration.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Integration.yml @@ -1,7 +1,7 @@ --- title: Magento_Integration source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Integration/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/LayeredNavigation.yml b/src/_data/codebase/v2_4/mrg/ce/LayeredNavigation.yml index cc96fcc2e16..6e596f81099 100644 --- a/src/_data/codebase/v2_4/mrg/ce/LayeredNavigation.yml +++ b/src/_data/codebase/v2_4/mrg/ce/LayeredNavigation.yml @@ -1,7 +1,7 @@ --- title: Magento_LayeredNavigation source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/LayeredNavigation/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomer.yml b/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomer.yml index 3a664601a90..d9f809a96a4 100644 --- a/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomer.yml +++ b/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomer.yml @@ -1,10 +1,10 @@ --- title: Magento_LoginAsCustomer source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/LoginAsCustomer/README.md last_modified_at: '2020-04-15 04:18:57 -0500' content: 'The Magento_LoginAsCustomer module is responsible for ability to login into customer account using the admin panel. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomerAdminUi.yml b/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomerAdminUi.yml index d00a69cfc8e..1375dac8d8c 100644 --- a/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomerAdminUi.yml +++ b/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomerAdminUi.yml @@ -1,9 +1,9 @@ --- title: Magento_LoginAsCustomerAdminUi source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/LoginAsCustomerAdminUi/README.md last_modified_at: '2020-05-21 22:39:24 -0500' content: 'The Magento_LoginAsCustomerAdminUi module provides UI for Admin Panel - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomerApi.yml b/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomerApi.yml index 9b2293b8788..93f8da0ae27 100644 --- a/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomerApi.yml +++ b/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomerApi.yml @@ -1,10 +1,10 @@ --- title: Magento_LoginAsCustomerApi source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/LoginAsCustomerApi/README.md last_modified_at: '2020-04-27 20:39:08 -0500' content: 'The Magento_LoginAsCustomerApi module provides API for ability to login into customer account for an admin user. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomerAssistance.yml b/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomerAssistance.yml new file mode 100644 index 00000000000..c8332fab96c --- /dev/null +++ b/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomerAssistance.yml @@ -0,0 +1,10 @@ +--- +title: Magento_LoginAsCustomerAssistance +source_repo: magento2ce +release: 2.4.1 +github_path: app/code/Magento/LoginAsCustomerAssistance/README.md +last_modified_at: '2020-08-05 17:47:02 +0300' +content: 'The Magento_LoginAsCustomerAssistance module provides possibility to enable/disable + LoginAsCustomer functionality per Customer. + +' diff --git a/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomerFrontendUi.yml b/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomerFrontendUi.yml index 21a62a528f5..3d70e9808e0 100644 --- a/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomerFrontendUi.yml +++ b/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomerFrontendUi.yml @@ -1,9 +1,9 @@ --- title: Magento_LoginAsCustomerFrontendUi source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/LoginAsCustomerFrontendUi/README.md last_modified_at: '2020-05-21 22:39:24 -0500' content: 'The Magento_LoginAsCustomerFrontendUi module provides UI for Storefront - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomerLog.yml b/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomerLog.yml index da3890d18ee..e53ed6c3adc 100644 --- a/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomerLog.yml +++ b/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomerLog.yml @@ -1,10 +1,10 @@ --- title: Magento_LoginAsCustomerLog source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/LoginAsCustomerLog/README.md last_modified_at: '2020-05-04 17:44:22 +0300' content: 'The Magento_LoginAsCustomerLog module provides log for Login as Customer functionality - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomerPageCache.yml b/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomerPageCache.yml index 6a3ce3092e1..9a07d89c73e 100644 --- a/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomerPageCache.yml +++ b/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomerPageCache.yml @@ -1,10 +1,10 @@ --- title: Magento_LoginAsCustomerPageCache source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/LoginAsCustomerPageCache/README.md last_modified_at: '2020-04-27 21:52:37 -0500' content: 'The Magento_LoginAsCustomerPageCache module provides adaptation to PageCache functionality - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomerQuote.yml b/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomerQuote.yml index 9326e0c91b5..00435d9356c 100644 --- a/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomerQuote.yml +++ b/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomerQuote.yml @@ -1,10 +1,10 @@ --- title: Magento_LoginAsCustomerQuote source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/LoginAsCustomerQuote/README.md last_modified_at: '2020-05-21 22:39:24 -0500' content: 'The Magento_LoginAsCustomerQuote module is responsible for communication between Magento_LoginAsCustomer and shopping cart state. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomerSales.yml b/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomerSales.yml index 0be578fa45f..193ef1e440f 100644 --- a/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomerSales.yml +++ b/src/_data/codebase/v2_4/mrg/ce/LoginAsCustomerSales.yml @@ -1,10 +1,10 @@ --- title: Magento_LoginAsCustomerSales source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/LoginAsCustomerSales/README.md last_modified_at: '2020-05-21 22:39:24 -0500' content: 'The Magento_LoginAsCustomerSales module is responsible for communication between Magento_LoginAsCustomer and order placement. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/Marketplace.yml b/src/_data/codebase/v2_4/mrg/ce/Marketplace.yml index 646a24e7040..adbb6234c2c 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Marketplace.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Marketplace.yml @@ -1,7 +1,7 @@ --- title: Magento_Marketplace source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Marketplace/README.md last_modified_at: '2015-10-02 13:02:03 +0300' content: The Magento_Marketplace module allows to display partners of Magento in the diff --git a/src/_data/codebase/v2_4/mrg/ce/MediaContent.yml b/src/_data/codebase/v2_4/mrg/ce/MediaContent.yml index 88cd73771a3..9feb1595e72 100644 --- a/src/_data/codebase/v2_4/mrg/ce/MediaContent.yml +++ b/src/_data/codebase/v2_4/mrg/ce/MediaContent.yml @@ -1,7 +1,7 @@ --- title: Magento_MediaContent source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/MediaContent/README.md last_modified_at: '2020-04-01 17:18:20 +0100' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/MediaContentApi.yml b/src/_data/codebase/v2_4/mrg/ce/MediaContentApi.yml index d8955e0838b..7fd678f1509 100644 --- a/src/_data/codebase/v2_4/mrg/ce/MediaContentApi.yml +++ b/src/_data/codebase/v2_4/mrg/ce/MediaContentApi.yml @@ -1,7 +1,7 @@ --- title: Magento_MediaContentApi source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/MediaContentApi/README.md last_modified_at: '2020-04-01 17:18:20 +0100' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/MediaContentCatalog.yml b/src/_data/codebase/v2_4/mrg/ce/MediaContentCatalog.yml index 50003793260..71fcfd70f45 100644 --- a/src/_data/codebase/v2_4/mrg/ce/MediaContentCatalog.yml +++ b/src/_data/codebase/v2_4/mrg/ce/MediaContentCatalog.yml @@ -1,7 +1,7 @@ --- title: Magento_MediaContentCatalog source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/MediaContentCatalog/README.md last_modified_at: '2020-04-01 21:43:19 +0100' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/MediaContentCms.yml b/src/_data/codebase/v2_4/mrg/ce/MediaContentCms.yml index 3bf23bb663f..f8326b215a9 100644 --- a/src/_data/codebase/v2_4/mrg/ce/MediaContentCms.yml +++ b/src/_data/codebase/v2_4/mrg/ce/MediaContentCms.yml @@ -1,7 +1,7 @@ --- title: Magento_MediaContentCms source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/MediaContentCms/README.md last_modified_at: '2020-04-01 21:43:19 +0100' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/MediaContentSynchronization.yml b/src/_data/codebase/v2_4/mrg/ce/MediaContentSynchronization.yml new file mode 100644 index 00000000000..635a36543a7 --- /dev/null +++ b/src/_data/codebase/v2_4/mrg/ce/MediaContentSynchronization.yml @@ -0,0 +1,19 @@ +--- +title: Magento_MediaContentSynchronization +source_repo: magento2ce +release: 2.4.1 +github_path: app/code/Magento/MediaContentSynchronization/README.md +last_modified_at: '2020-08-03 11:01:09 +0100' +content: | + The Magento_MediaContentSynchronization module represents implementation of synchronization between data and objects contains + media asset information. + + ## Extensibility + + Extension developers can interact with the Magento_MediaContentSynchronization module. For more information about the Magento extension mechanism, see [Magento plug-ins](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/plugins.html). + + [The Magento dependency injection mechanism](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/depend-inj.html) enables you to override the functionality of the Magento_MediaContentSynchronization module. + + ## Additional information + + For information about significant changes in patch releases, see [2.3.x Release information](https://devdocs.magento.com/guides/v2.3/release-notes/bk-release-notes.html). diff --git a/src/_data/codebase/v2_4/mrg/ce/MediaContentSynchronizationApi.yml b/src/_data/codebase/v2_4/mrg/ce/MediaContentSynchronizationApi.yml new file mode 100644 index 00000000000..5543c7cd313 --- /dev/null +++ b/src/_data/codebase/v2_4/mrg/ce/MediaContentSynchronizationApi.yml @@ -0,0 +1,18 @@ +--- +title: Magento_MediaContentSynchronizationApi +source_repo: magento2ce +release: 2.4.1 +github_path: app/code/Magento/MediaContentSynchronizationApi/README.md +last_modified_at: '2020-08-03 11:01:09 +0100' +content: | + The Magento_MediaContentSynchronizationApi module is responsible for the media gallery data synchronization implementation API. + + ## Extensibility + + Extension developers can interact with the Magento_MediaContentSynchronizationApi module. For more information about the Magento extension mechanism, see [Magento plug-ins](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/plugins.html). + + [The Magento dependency injection mechanism](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/depend-inj.html) enables you to override the functionality of the Magento_MediaContentSynchronizationApi module. + + ## Additional information + + For information about significant changes in patch releases, see [2.3.x Release information](https://devdocs.magento.com/guides/v2.3/release-notes/bk-release-notes.html). diff --git a/src/_data/codebase/v2_4/mrg/ce/MediaContentSynchronizationCatalog.yml b/src/_data/codebase/v2_4/mrg/ce/MediaContentSynchronizationCatalog.yml new file mode 100644 index 00000000000..e169665f407 --- /dev/null +++ b/src/_data/codebase/v2_4/mrg/ce/MediaContentSynchronizationCatalog.yml @@ -0,0 +1,18 @@ +--- +title: Magento_MediaContentSynchronizationCatalog +source_repo: magento2ce +release: 2.4.1 +github_path: app/code/Magento/MediaContentSynchronizationCatalog/README.md +last_modified_at: '2020-08-03 11:01:09 +0100' +content: | + The Magento_MediaContentCatalog provides the implementation of MediaContentSyncronization functionality for Magento_Catalog module + + ## Extensibility + + Extension developers can interact with the Magento_MediaContent module. For more information about the Magento extension mechanism, see [Magento plug-ins](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/plugins.html). + + [The Magento dependency injection mechanism](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/depend-inj.html) enables you to override the functionality of the Magento_MediaContent module. + + ## Additional information + + For information about significant changes in patch releases, see [2.3.x Release information](https://devdocs.magento.com/guides/v2.3/release-notes/bk-release-notes.html). diff --git a/src/_data/codebase/v2_4/mrg/ce/MediaContentSynchronizationCms.yml b/src/_data/codebase/v2_4/mrg/ce/MediaContentSynchronizationCms.yml new file mode 100644 index 00000000000..c2df64c1bff --- /dev/null +++ b/src/_data/codebase/v2_4/mrg/ce/MediaContentSynchronizationCms.yml @@ -0,0 +1,18 @@ +--- +title: Magento_MediaContentSynchronizationCms +source_repo: magento2ce +release: 2.4.1 +github_path: app/code/Magento/MediaContentSynchronizationCms/README.md +last_modified_at: '2020-08-03 11:01:09 +0100' +content: | + The Magento_MediaContentCms provides the implementation of MediaContentSyncronization functionality for Magento_Cms module + + ## Extensibility + + Extension developers can interact with the Magento_MediaContent module. For more information about the Magento extension mechanism, see [Magento plug-ins](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/plugins.html). + + [The Magento dependency injection mechanism](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/depend-inj.html) enables you to override the functionality of the Magento_MediaContent module. + + ## Additional information + + For information about significant changes in patch releases, see [2.3.x Release information](https://devdocs.magento.com/guides/v2.3/release-notes/bk-release-notes.html). diff --git a/src/_data/codebase/v2_4/mrg/ce/MediaGallery.yml b/src/_data/codebase/v2_4/mrg/ce/MediaGallery.yml index 0c095b125b3..2da0d25f8c2 100644 --- a/src/_data/codebase/v2_4/mrg/ce/MediaGallery.yml +++ b/src/_data/codebase/v2_4/mrg/ce/MediaGallery.yml @@ -1,7 +1,7 @@ --- title: Magento_MediaGallery source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/MediaGallery/README.md last_modified_at: '2019-11-04 11:34:55 +0000' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/MediaGalleryApi.yml b/src/_data/codebase/v2_4/mrg/ce/MediaGalleryApi.yml index edc228dab16..0b46052707b 100644 --- a/src/_data/codebase/v2_4/mrg/ce/MediaGalleryApi.yml +++ b/src/_data/codebase/v2_4/mrg/ce/MediaGalleryApi.yml @@ -1,7 +1,7 @@ --- title: Magento_MediaGalleryApi source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/MediaGalleryApi/README.md last_modified_at: '2019-11-04 11:34:55 +0000' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/MediaGalleryCatalog.yml b/src/_data/codebase/v2_4/mrg/ce/MediaGalleryCatalog.yml index d40f58ab494..f99a85fe980 100644 --- a/src/_data/codebase/v2_4/mrg/ce/MediaGalleryCatalog.yml +++ b/src/_data/codebase/v2_4/mrg/ce/MediaGalleryCatalog.yml @@ -1,7 +1,7 @@ --- title: Magento_MediaGalleryCatalog source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/MediaGalleryCatalog/README.md last_modified_at: '2020-04-09 11:17:22 +0100' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/MediaGalleryCatalogIntegration.yml b/src/_data/codebase/v2_4/mrg/ce/MediaGalleryCatalogIntegration.yml new file mode 100644 index 00000000000..6d1a88cab7e --- /dev/null +++ b/src/_data/codebase/v2_4/mrg/ce/MediaGalleryCatalogIntegration.yml @@ -0,0 +1,9 @@ +--- +title: Magento_MediaGalleryCatalogIntegration +source_repo: magento2ce +release: 2.4.1 +github_path: app/code/Magento/MediaGalleryCatalogIntegration/README.md +last_modified_at: '2020-08-03 11:01:09 +0100' +content: 'The purpose of this module is for extending catalog image uploader functionality. + +' diff --git a/src/_data/codebase/v2_4/mrg/ce/MediaGalleryCatalogUi.yml b/src/_data/codebase/v2_4/mrg/ce/MediaGalleryCatalogUi.yml new file mode 100644 index 00000000000..65440bc6ab1 --- /dev/null +++ b/src/_data/codebase/v2_4/mrg/ce/MediaGalleryCatalogUi.yml @@ -0,0 +1,18 @@ +--- +title: Magento_MediaGalleryCatalogUi +source_repo: magento2ce +release: 2.4.1 +github_path: app/code/Magento/MediaGalleryCatalogUi/README.md +last_modified_at: '2020-08-03 11:01:09 +0100' +content: | + The Magento_MediaGalleryCatalogUi module that implement category grid for media gallery. + + ## Extensibility + + Extension developers can interact with the Magento_MediaGalleryRenditions module. For more information about the Magento extension mechanism, see [Magento plug-ins](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/plugins.html). + + [The Magento dependency injection mechanism](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/depend-inj.html) enables you to override the functionality of the Magento_MediaGalleryRenditions module. + + ## Additional information + + For information about significant changes in patch releases, see [2.3.x Release information](https://devdocs.magento.com/guides/v2.3/release-notes/bk-release-notes.html). diff --git a/src/_data/codebase/v2_4/mrg/ce/MediaGalleryCmsUi.yml b/src/_data/codebase/v2_4/mrg/ce/MediaGalleryCmsUi.yml new file mode 100644 index 00000000000..aeece89674a --- /dev/null +++ b/src/_data/codebase/v2_4/mrg/ce/MediaGalleryCmsUi.yml @@ -0,0 +1,18 @@ +--- +title: Magento_MediaGalleryCmsUi +source_repo: magento2ce +release: 2.4.1 +github_path: app/code/Magento/MediaGalleryCmsUi/README.md +last_modified_at: '2020-08-03 11:01:09 +0100' +content: | + The Magento_MediaGalleryCmsUi module provides Magento_Cms related UI elements to the media gallery user interface + + ## Extensibility + + Extension developers can interact with the Magento_MediaGalleryRenditions module. For more information about the Magento extension mechanism, see [Magento plug-ins](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/plugins.html). + + [The Magento dependency injection mechanism](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/depend-inj.html) enables you to override the functionality of the Magento_MediaGalleryRenditions module. + + ## Additional information + + For information about significant changes in patch releases, see [2.3.x Release information](https://devdocs.magento.com/guides/v2.3/release-notes/bk-release-notes.html). diff --git a/src/_data/codebase/v2_4/mrg/ce/MediaGalleryIntegration.yml b/src/_data/codebase/v2_4/mrg/ce/MediaGalleryIntegration.yml new file mode 100644 index 00000000000..093a736f4cf --- /dev/null +++ b/src/_data/codebase/v2_4/mrg/ce/MediaGalleryIntegration.yml @@ -0,0 +1,10 @@ +--- +title: Magento_MediaGalleryIntegration +source_repo: magento2ce +release: 2.4.1 +github_path: app/code/Magento/MediaGalleryIntegration/README.md +last_modified_at: '2020-08-03 11:01:09 +0100' +content: 'The purpose of this module is to keep the integration of enhanced media + gallery to Magento separated from implementation. + +' diff --git a/src/_data/codebase/v2_4/mrg/ce/MediaGalleryMetadata.yml b/src/_data/codebase/v2_4/mrg/ce/MediaGalleryMetadata.yml new file mode 100644 index 00000000000..e227cdb6443 --- /dev/null +++ b/src/_data/codebase/v2_4/mrg/ce/MediaGalleryMetadata.yml @@ -0,0 +1,11 @@ +--- +title: Magento_MediaGalleryMetadata +source_repo: magento2ce +release: 2.4.1 +github_path: app/code/Magento/MediaGalleryMetadata/README.md +last_modified_at: '2020-08-03 11:01:09 +0100' +content: 'The purpose of this module is to provide an ability to extract the metadata + from file and populating Media Asset entity fields when an image is uploaded to + Magento and also provide an ability to update the metadata stored in an image file. + +' diff --git a/src/_data/codebase/v2_4/mrg/ce/MediaGalleryMetadataApi.yml b/src/_data/codebase/v2_4/mrg/ce/MediaGalleryMetadataApi.yml new file mode 100644 index 00000000000..78e5a9a247e --- /dev/null +++ b/src/_data/codebase/v2_4/mrg/ce/MediaGalleryMetadataApi.yml @@ -0,0 +1,10 @@ +--- +title: Magento_MediaGalleryMetadataApi +source_repo: magento2ce +release: 2.4.1 +github_path: app/code/Magento/MediaGalleryMetadataApi/README.md +last_modified_at: '2020-08-03 11:01:09 +0100' +content: 'The Magento_MediaGalleryMetadataApi module is responsible for the media + gallery metadata implementation API. + +' diff --git a/src/_data/codebase/v2_4/mrg/ce/MediaGallerySynchronization.yml b/src/_data/codebase/v2_4/mrg/ce/MediaGallerySynchronization.yml new file mode 100644 index 00000000000..ad518b16efb --- /dev/null +++ b/src/_data/codebase/v2_4/mrg/ce/MediaGallerySynchronization.yml @@ -0,0 +1,19 @@ +--- +title: Magento_MediaGallerySynchronization +source_repo: magento2ce +release: 2.4.1 +github_path: app/code/Magento/MediaGallerySynchronization/README.md +last_modified_at: '2020-08-03 11:29:40 +0100' +content: | + The Magento_MediaGallerySynchronization module represents implementation of synchronization between data and objects contains + media asset information. + + ## Extensibility + + Extension developers can interact with the Magento_MediaGallerySynchronization module. For more information about the Magento extension mechanism, see [Magento plug-ins](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/plugins.html). + + [The Magento dependency injection mechanism](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/depend-inj.html) enables you to override the functionality of the Magento_MediaGallerySynchronization module. + + ## Additional information + + For information about significant changes in patch releases, see [2.3.x Release information](https://devdocs.magento.com/guides/v2.3/release-notes/bk-release-notes.html). diff --git a/src/_data/codebase/v2_4/mrg/ce/MediaGallerySynchronizationApi.yml b/src/_data/codebase/v2_4/mrg/ce/MediaGallerySynchronizationApi.yml new file mode 100644 index 00000000000..143b77eb04c --- /dev/null +++ b/src/_data/codebase/v2_4/mrg/ce/MediaGallerySynchronizationApi.yml @@ -0,0 +1,18 @@ +--- +title: Magento_MediaGallerySynchronizationApi +source_repo: magento2ce +release: 2.4.1 +github_path: app/code/Magento/MediaGallerySynchronizationApi/README.md +last_modified_at: '2020-08-03 11:29:40 +0100' +content: | + The Magento_MediaGallerySynchronizationApi module is responsible for the media gallery data synchronization implementation API. + + ## Extensibility + + Extension developers can interact with the Magento_MediaGallerySynchronizationApi module. For more information about the Magento extension mechanism, see [Magento plug-ins](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/plugins.html). + + [The Magento dependency injection mechanism](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/depend-inj.html) enables you to override the functionality of the Magento_MediaGallerySynchronizationApi module. + + ## Additional information + + For information about significant changes in patch releases, see [2.3.x Release information](https://devdocs.magento.com/guides/v2.3/release-notes/bk-release-notes.html). diff --git a/src/_data/codebase/v2_4/mrg/ce/MediaGallerySynchronizationMetadata.yml b/src/_data/codebase/v2_4/mrg/ce/MediaGallerySynchronizationMetadata.yml new file mode 100644 index 00000000000..d9794632089 --- /dev/null +++ b/src/_data/codebase/v2_4/mrg/ce/MediaGallerySynchronizationMetadata.yml @@ -0,0 +1,10 @@ +--- +title: Magento_MediaGallerySynchronizationMetadata +source_repo: magento2ce +release: 2.4.1 +github_path: app/code/Magento/MediaGallerySynchronizationMetadata/README.md +last_modified_at: '2020-08-29 16:38:18 +0100' +content: 'The purpose of this module is to include assets metadata to media gallery + synchronization process + +' diff --git a/src/_data/codebase/v2_4/mrg/ce/MediaGalleryUi.yml b/src/_data/codebase/v2_4/mrg/ce/MediaGalleryUi.yml new file mode 100644 index 00000000000..8d161b740bd --- /dev/null +++ b/src/_data/codebase/v2_4/mrg/ce/MediaGalleryUi.yml @@ -0,0 +1,18 @@ +--- +title: Magento_MediaGalleryUi +source_repo: magento2ce +release: 2.4.1 +github_path: app/code/Magento/MediaGalleryUi/README.md +last_modified_at: '2020-08-03 11:01:09 +0100' +content: | + The Magento_MediaGalleryUi module is responsible for the media gallery user interface (UI) implementation. + + ## Extensibility + + Extension developers can interact with the Magento_MediaGalleryUi module. For more information about the Magento extension mechanism, see [Magento plug-ins](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/plugins.html). + + [The Magento dependency injection mechanism](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/depend-inj.html) enables you to override the functionality of the Magento_MediaGalleryUi module. + + ## Additional information + + For information about significant changes in patch releases, see [2.3.x Release information](https://devdocs.magento.com/guides/v2.3/release-notes/bk-release-notes.html). diff --git a/src/_data/codebase/v2_4/mrg/ce/MediaGalleryUiApi.yml b/src/_data/codebase/v2_4/mrg/ce/MediaGalleryUiApi.yml new file mode 100644 index 00000000000..f53d28b6097 --- /dev/null +++ b/src/_data/codebase/v2_4/mrg/ce/MediaGalleryUiApi.yml @@ -0,0 +1,18 @@ +--- +title: Magento_MediaGalleryUiApi +source_repo: magento2ce +release: 2.4.1 +github_path: app/code/Magento/MediaGalleryUiApi/README.md +last_modified_at: '2020-08-03 11:01:09 +0100' +content: | + The Magento_MediaGalleryUiApi module is responsible for the media gallery user interface (UI) implementation API. + + ## Extensibility + + Extension developers can interact with the Magento_MediaGalleryUiApi module. For more information about the Magento extension mechanism, see [Magento plug-ins](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/plugins.html). + + [The Magento dependency injection mechanism](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/depend-inj.html) enables you to override the functionality of the Magento_MediaGalleryUiApi module. + + ## Additional information + + For information about significant changes in patch releases, see [2.3.x Release information](https://devdocs.magento.com/guides/v2.3/release-notes/bk-release-notes.html). diff --git a/src/_data/codebase/v2_4/mrg/ce/MediaStorage.yml b/src/_data/codebase/v2_4/mrg/ce/MediaStorage.yml index 44305f6474f..d3d1bd7dabd 100644 --- a/src/_data/codebase/v2_4/mrg/ce/MediaStorage.yml +++ b/src/_data/codebase/v2_4/mrg/ce/MediaStorage.yml @@ -1,10 +1,10 @@ --- title: Magento_MediaStorage source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/MediaStorage/README.md last_modified_at: '2015-02-26 14:04:15 +0200' content: 'The Magento_MediaStorage module implements functionality related with upload media files and synchronize it by database. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/MessageQueue.yml b/src/_data/codebase/v2_4/mrg/ce/MessageQueue.yml index 32d61cb9479..fc4f8381397 100644 --- a/src/_data/codebase/v2_4/mrg/ce/MessageQueue.yml +++ b/src/_data/codebase/v2_4/mrg/ce/MessageQueue.yml @@ -1,7 +1,7 @@ --- title: Magento_MessageQueue source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/MessageQueue/README.md last_modified_at: '2018-02-21 14:27:13 +0200' content: "**MessageQueue** provides support of Advanced Message Queuing Protocol\n" diff --git a/src/_data/codebase/v2_4/mrg/ce/MsrpConfigurableProduct.yml b/src/_data/codebase/v2_4/mrg/ce/MsrpConfigurableProduct.yml index bed5fdb54b8..6f418fb3f6d 100644 --- a/src/_data/codebase/v2_4/mrg/ce/MsrpConfigurableProduct.yml +++ b/src/_data/codebase/v2_4/mrg/ce/MsrpConfigurableProduct.yml @@ -1,7 +1,7 @@ --- title: Magento_MsrpConfigurableProduct source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/MsrpConfigurableProduct/README.md last_modified_at: '2019-03-02 19:21:49 -0600' content: "**MsrpConfigurableProduct** provides type and resolver information for the diff --git a/src/_data/codebase/v2_4/mrg/ce/MsrpGroupedProduct.yml b/src/_data/codebase/v2_4/mrg/ce/MsrpGroupedProduct.yml index a9b0235e44b..f0ca319d8a1 100644 --- a/src/_data/codebase/v2_4/mrg/ce/MsrpGroupedProduct.yml +++ b/src/_data/codebase/v2_4/mrg/ce/MsrpGroupedProduct.yml @@ -1,7 +1,7 @@ --- title: Magento_MsrpGroupedProduct source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/MsrpGroupedProduct/README.md last_modified_at: '2019-03-02 19:21:49 -0600' content: "**MsrpGroupedProduct** provides type and resolver information for the Msrp diff --git a/src/_data/codebase/v2_4/mrg/ce/Multishipping.yml b/src/_data/codebase/v2_4/mrg/ce/Multishipping.yml index 8d556727651..22af84c1f5c 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Multishipping.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Multishipping.yml @@ -1,7 +1,7 @@ --- title: Magento_Multishipping source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Multishipping/README.md last_modified_at: '2014-10-24 14:51:44 -0700' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ce/MysqlMq.yml b/src/_data/codebase/v2_4/mrg/ce/MysqlMq.yml index 0035d82ce0b..a2484736d67 100644 --- a/src/_data/codebase/v2_4/mrg/ce/MysqlMq.yml +++ b/src/_data/codebase/v2_4/mrg/ce/MysqlMq.yml @@ -1,7 +1,7 @@ --- title: Magento_MysqlMq source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/MysqlMq/README.md last_modified_at: '2018-02-21 14:27:42 +0200' content: "**MysqlMq** provides message queue implementation based on MySQL.\n" diff --git a/src/_data/codebase/v2_4/mrg/ce/NewRelicReporting.yml b/src/_data/codebase/v2_4/mrg/ce/NewRelicReporting.yml index e6d15ebce76..912982c9fb7 100644 --- a/src/_data/codebase/v2_4/mrg/ce/NewRelicReporting.yml +++ b/src/_data/codebase/v2_4/mrg/ce/NewRelicReporting.yml @@ -1,7 +1,7 @@ --- title: Magento_NewRelicReporting source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/NewRelicReporting/README.md last_modified_at: '2015-10-01 16:15:45 +0300' content: "Module Magento\\NewRelicReporting implements integration New Relic APM and diff --git a/src/_data/codebase/v2_4/mrg/ce/Newsletter.yml b/src/_data/codebase/v2_4/mrg/ce/Newsletter.yml index 8f9a24db4b0..4b61e7f795c 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Newsletter.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Newsletter.yml @@ -1,11 +1,11 @@ --- title: Magento_Newsletter source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Newsletter/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: 'Magento_Newsletter module allows clients to subscribe for information about new promotions and discounts and allows store administrators to send newsletters to clients subscribed for them. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/NewsletterGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/NewsletterGraphQl.yml new file mode 100644 index 00000000000..d3621e6111f --- /dev/null +++ b/src/_data/codebase/v2_4/mrg/ce/NewsletterGraphQl.yml @@ -0,0 +1,10 @@ +--- +title: Magento_NewsletterGraphQl +source_repo: magento2ce +release: 2.4.1 +github_path: app/code/Magento/NewsletterGraphQl/README.md +last_modified_at: '2020-05-07 00:32:47 +0300' +content: 'The Magento_NewsletterGraphQl module allows a shopper to subscribe to a + newsletter using GraphQL. + +' diff --git a/src/_data/codebase/v2_4/mrg/ce/OfflinePayments.yml b/src/_data/codebase/v2_4/mrg/ce/OfflinePayments.yml index 495a5c1433d..815291d9ecb 100644 --- a/src/_data/codebase/v2_4/mrg/ce/OfflinePayments.yml +++ b/src/_data/codebase/v2_4/mrg/ce/OfflinePayments.yml @@ -1,7 +1,7 @@ --- title: Magento_OfflinePayments source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/OfflinePayments/README.md last_modified_at: '2014-10-31 09:04:08 -0700' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/OfflineShipping.yml b/src/_data/codebase/v2_4/mrg/ce/OfflineShipping.yml index 6cf5685e1d7..f5ef6406d7c 100644 --- a/src/_data/codebase/v2_4/mrg/ce/OfflineShipping.yml +++ b/src/_data/codebase/v2_4/mrg/ce/OfflineShipping.yml @@ -1,7 +1,7 @@ --- title: Magento_OfflineShipping source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/OfflineShipping/README.md last_modified_at: '2014-10-31 09:04:08 -0700' content: |+ @@ -11,4 +11,3 @@ content: |+ *Table Rates *Store Pickup -... diff --git a/src/_data/codebase/v2_4/mrg/ce/PageCache.yml b/src/_data/codebase/v2_4/mrg/ce/PageCache.yml index 8a5ce33585f..787acee24ac 100644 --- a/src/_data/codebase/v2_4/mrg/ce/PageCache.yml +++ b/src/_data/codebase/v2_4/mrg/ce/PageCache.yml @@ -1,7 +1,7 @@ --- title: Magento_PageCache source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/PageCache/README.md last_modified_at: '2014-10-24 14:51:44 -0700' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ce/Payment.yml b/src/_data/codebase/v2_4/mrg/ce/Payment.yml index d59f390a0d3..5fe80b7e0b1 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Payment.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Payment.yml @@ -1,7 +1,7 @@ --- title: Magento_Payment source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Payment/README.md last_modified_at: '2014-10-31 09:04:08 -0700' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/Paypal.yml b/src/_data/codebase/v2_4/mrg/ce/Paypal.yml index 1ecc6e2eabe..be88bdbaa4c 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Paypal.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Paypal.yml @@ -1,7 +1,7 @@ --- title: Magento_Paypal source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Paypal/README.md last_modified_at: '2019-03-31 18:42:40 +0300' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/PaypalCaptcha.yml b/src/_data/codebase/v2_4/mrg/ce/PaypalCaptcha.yml index 7b85678d47d..03862931f57 100644 --- a/src/_data/codebase/v2_4/mrg/ce/PaypalCaptcha.yml +++ b/src/_data/codebase/v2_4/mrg/ce/PaypalCaptcha.yml @@ -1,7 +1,7 @@ --- title: Magento_PaypalCaptcha source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/PaypalCaptcha/README.md last_modified_at: '2019-03-21 15:00:40 -0500' content: The PayPal Captcha module provides a possibility to enable Captcha validation diff --git a/src/_data/codebase/v2_4/mrg/ce/PaypalGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/PaypalGraphQl.yml index 04f3bc53e0d..24ebc6c59db 100644 --- a/src/_data/codebase/v2_4/mrg/ce/PaypalGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ce/PaypalGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_PaypalGraphQl source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/PaypalGraphQl/README.md last_modified_at: '2019-05-23 10:50:05 -0500' content: "**PaypalGraphQl** provides resolver information for using Paypal payment diff --git a/src/_data/codebase/v2_4/mrg/ce/Persistent.yml b/src/_data/codebase/v2_4/mrg/ce/Persistent.yml index 8ef78e387d9..6e7e217eecc 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Persistent.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Persistent.yml @@ -1,7 +1,7 @@ --- title: Magento_Persistent source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Persistent/README.md last_modified_at: '2014-10-24 14:51:44 -0700' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/ProductAlert.yml b/src/_data/codebase/v2_4/mrg/ce/ProductAlert.yml index 74f0dfe6c54..d31866a270a 100644 --- a/src/_data/codebase/v2_4/mrg/ce/ProductAlert.yml +++ b/src/_data/codebase/v2_4/mrg/ce/ProductAlert.yml @@ -1,10 +1,10 @@ --- title: Magento_ProductAlert source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/ProductAlert/README.md last_modified_at: '2014-10-31 09:04:08 -0700' content: 'The Magento_ProductAlert module enables product alerts, which allow customers to sign up for emails about product price or stock status change. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/ProductVideo.yml b/src/_data/codebase/v2_4/mrg/ce/ProductVideo.yml index d4e96477884..d5eb48dc189 100644 --- a/src/_data/codebase/v2_4/mrg/ce/ProductVideo.yml +++ b/src/_data/codebase/v2_4/mrg/ce/ProductVideo.yml @@ -1,10 +1,10 @@ --- title: Magento_ProductVideo source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/ProductVideo/README.md last_modified_at: '2015-09-11 16:19:20 +0300' content: 'The Magento_ProductVideo module implements functionality related with linking video files from external resources to product. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/Quote.yml b/src/_data/codebase/v2_4/mrg/ce/Quote.yml index f26fe3ee26d..9082bd31bbc 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Quote.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Quote.yml @@ -1,7 +1,7 @@ --- title: Magento_Quote source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Quote/README.md last_modified_at: '2015-01-06 12:45:10 +0200' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/QuoteAnalytics.yml b/src/_data/codebase/v2_4/mrg/ce/QuoteAnalytics.yml index 1cbba99ce83..f78ec0a2533 100644 --- a/src/_data/codebase/v2_4/mrg/ce/QuoteAnalytics.yml +++ b/src/_data/codebase/v2_4/mrg/ce/QuoteAnalytics.yml @@ -1,10 +1,10 @@ --- title: Magento_QuoteAnalytics source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/QuoteAnalytics/README.md last_modified_at: '2019-08-06 14:40:28 -0500' content: 'The Magento_QuoteAnalytics module configures data definitions for a data collection related to the Quote module entities to be used in [Advanced Reporting](https://devdocs.magento.com/guides/v2.3/advanced-reporting/modules.html). - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/QuoteBundleOptions.yml b/src/_data/codebase/v2_4/mrg/ce/QuoteBundleOptions.yml new file mode 100644 index 00000000000..21a50408316 --- /dev/null +++ b/src/_data/codebase/v2_4/mrg/ce/QuoteBundleOptions.yml @@ -0,0 +1,8 @@ +--- +title: Magento_QuoteBundleOptions +source_repo: magento2ce +release: 2.4.1 +github_path: app/code/Magento/QuoteBundleOptions/README.md +last_modified_at: '2020-05-07 17:17:41 +0200' +content: "**QuoteBundleOptions** provides data provider for creating buy request for + bundle products.\n" diff --git a/src/_data/codebase/v2_4/mrg/ce/QuoteConfigurableOptions.yml b/src/_data/codebase/v2_4/mrg/ce/QuoteConfigurableOptions.yml new file mode 100644 index 00000000000..4f685f261a6 --- /dev/null +++ b/src/_data/codebase/v2_4/mrg/ce/QuoteConfigurableOptions.yml @@ -0,0 +1,8 @@ +--- +title: Magento_QuoteConfigurableOptions +source_repo: magento2ce +release: 2.4.1 +github_path: app/code/Magento/QuoteConfigurableOptions/README.md +last_modified_at: '2020-05-07 17:17:41 +0200' +content: "**QuoteConfigurableOptions** provides data provider for creating buy request + for configurable products.\n" diff --git a/src/_data/codebase/v2_4/mrg/ce/QuoteDownloadableLinks.yml b/src/_data/codebase/v2_4/mrg/ce/QuoteDownloadableLinks.yml new file mode 100644 index 00000000000..5fffac81b7b --- /dev/null +++ b/src/_data/codebase/v2_4/mrg/ce/QuoteDownloadableLinks.yml @@ -0,0 +1,8 @@ +--- +title: Magento_QuoteDownloadableLinks +source_repo: magento2ce +release: 2.4.1 +github_path: app/code/Magento/QuoteDownloadableLinks/README.md +last_modified_at: '2020-05-07 17:17:41 +0200' +content: "**QuoteDownloadableLinks** provides data provider for creating buy request + for links of downloadable products.\n" diff --git a/src/_data/codebase/v2_4/mrg/ce/QuoteGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/QuoteGraphQl.yml index 5943da6c5df..842ce49e368 100644 --- a/src/_data/codebase/v2_4/mrg/ce/QuoteGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ce/QuoteGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_QuoteGraphQl source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/QuoteGraphQl/README.md last_modified_at: '2018-07-31 14:11:47 +0200' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/RelatedProductGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/RelatedProductGraphQl.yml index f367be3b602..c488f23c7b7 100644 --- a/src/_data/codebase/v2_4/mrg/ce/RelatedProductGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ce/RelatedProductGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_RelatedProductGraphQl source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/RelatedProductGraphQl/README.md last_modified_at: '2019-05-08 12:53:00 -0500' content: "**RelatedProductGraphQl** provides endpoints for getting Cross Sell / Related/ diff --git a/src/_data/codebase/v2_4/mrg/ce/ReleaseNotification.yml b/src/_data/codebase/v2_4/mrg/ce/ReleaseNotification.yml index 7b02367694a..670f992b747 100644 --- a/src/_data/codebase/v2_4/mrg/ce/ReleaseNotification.yml +++ b/src/_data/codebase/v2_4/mrg/ce/ReleaseNotification.yml @@ -1,7 +1,7 @@ --- title: Magento_ReleaseNotification source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/ReleaseNotification/README.md last_modified_at: '2019-09-06 19:55:12 +0300' content: "The **Release Notification Module** serves to provide a notification delivery diff --git a/src/_data/codebase/v2_4/mrg/ce/Reports.yml b/src/_data/codebase/v2_4/mrg/ce/Reports.yml index 70c0159d8e0..e2ed2354087 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Reports.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Reports.yml @@ -1,7 +1,7 @@ --- title: Magento_Reports source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Reports/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/RequireJs.yml b/src/_data/codebase/v2_4/mrg/ce/RequireJs.yml index 04d804932f4..f53cfdd473c 100644 --- a/src/_data/codebase/v2_4/mrg/ce/RequireJs.yml +++ b/src/_data/codebase/v2_4/mrg/ce/RequireJs.yml @@ -1,7 +1,7 @@ --- title: Magento_RequireJs source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/RequireJs/README.md last_modified_at: '2014-11-28 11:40:11 -0800' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/Review.yml b/src/_data/codebase/v2_4/mrg/ce/Review.yml index ee66558b526..b01614a8a04 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Review.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Review.yml @@ -1,9 +1,9 @@ --- title: Magento_Review source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Review/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: 'Magento_Review module functionality allows to write reviews for products. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/ReviewAnalytics.yml b/src/_data/codebase/v2_4/mrg/ce/ReviewAnalytics.yml index 9353971792e..460d324082c 100644 --- a/src/_data/codebase/v2_4/mrg/ce/ReviewAnalytics.yml +++ b/src/_data/codebase/v2_4/mrg/ce/ReviewAnalytics.yml @@ -1,10 +1,10 @@ --- title: Magento_ReviewAnalytics source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/ReviewAnalytics/README.md last_modified_at: '2019-08-06 14:40:28 -0500' content: 'The Magento_ReviewAnalytics module configures data definitions for a data collection related to the Review module entities to be used in [Advanced Reporting](https://devdocs.magento.com/guides/v2.3/advanced-reporting/modules.html). - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/ReviewGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/ReviewGraphQl.yml new file mode 100644 index 00000000000..610ae7887da --- /dev/null +++ b/src/_data/codebase/v2_4/mrg/ce/ReviewGraphQl.yml @@ -0,0 +1,8 @@ +--- +title: Magento_ReviewGraphQl +source_repo: magento2ce +release: 2.4.1 +github_path: app/code/Magento/ReviewGraphQl/README.md +last_modified_at: '2020-05-06 14:36:44 +0300' +content: "**ReviewGraphQl** provides endpoints for getting and creating the Product + reviews by guest and logged in customers.\n" diff --git a/src/_data/codebase/v2_4/mrg/ce/Robots.yml b/src/_data/codebase/v2_4/mrg/ce/Robots.yml index fa743f18bab..2d44f820af6 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Robots.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Robots.yml @@ -1,7 +1,7 @@ --- title: Magento_Robots source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Robots/README.md last_modified_at: '2017-06-15 17:15:28 +0300' content: "The Robots module provides the following functionalities: \n* contains a diff --git a/src/_data/codebase/v2_4/mrg/ce/Rss.yml b/src/_data/codebase/v2_4/mrg/ce/Rss.yml index 4cc5df8a8c8..d8f42961015 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Rss.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Rss.yml @@ -1,10 +1,10 @@ --- title: Magento_Rss source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Rss/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: 'Magento_Rss module is responsible for processing all RSS feeds of the application and allows to turn on/off RSS centrally. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/Rule.yml b/src/_data/codebase/v2_4/mrg/ce/Rule.yml index 97ccde5672c..33649932bac 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Rule.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Rule.yml @@ -1,11 +1,11 @@ --- title: Magento_Rule source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Rule/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: 'Magento_Rule module provides abstract implementation of rules and rule conditions that are extended by other modules, in particular by: Magento_SalesRule, Magento_CatalogRule, etc... - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/Sales.yml b/src/_data/codebase/v2_4/mrg/ce/Sales.yml index a8066d28a59..c3e82f6b9ec 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Sales.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Sales.yml @@ -1,7 +1,7 @@ --- title: Magento_Sales source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Sales/README.md last_modified_at: '2014-10-24 14:51:44 -0700' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/SalesAnalytics.yml b/src/_data/codebase/v2_4/mrg/ce/SalesAnalytics.yml index deb226f07b1..7713603a425 100644 --- a/src/_data/codebase/v2_4/mrg/ce/SalesAnalytics.yml +++ b/src/_data/codebase/v2_4/mrg/ce/SalesAnalytics.yml @@ -1,10 +1,10 @@ --- title: Magento_SalesAnalytics source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/SalesAnalytics/README.md last_modified_at: '2019-08-06 14:40:28 -0500' content: 'The Magento_SalesAnalytics module configures data definitions for a data collection related to the Sales module entities to be used in [Advanced Reporting](https://devdocs.magento.com/guides/v2.3/advanced-reporting/modules.html). - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/SalesGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/SalesGraphQl.yml index e1edc1f1c42..5e887b4645d 100644 --- a/src/_data/codebase/v2_4/mrg/ce/SalesGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ce/SalesGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_SalesGraphQl source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/SalesGraphQl/README.md last_modified_at: '2018-10-15 19:46:32 +0300' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/SalesInventory.yml b/src/_data/codebase/v2_4/mrg/ce/SalesInventory.yml index e427976e76e..36fd6362846 100644 --- a/src/_data/codebase/v2_4/mrg/ce/SalesInventory.yml +++ b/src/_data/codebase/v2_4/mrg/ce/SalesInventory.yml @@ -1,10 +1,10 @@ --- title: Magento_SalesInventory source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/SalesInventory/README.md last_modified_at: '2016-09-21 16:39:44 +0300' content: 'Magento_SalesInventory module allows retrieve and update stock attributes related to Magento_Sales, such as status and quantity. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/SalesRule.yml b/src/_data/codebase/v2_4/mrg/ce/SalesRule.yml index 4ef2cab1bee..d0f9bc6f9df 100644 --- a/src/_data/codebase/v2_4/mrg/ce/SalesRule.yml +++ b/src/_data/codebase/v2_4/mrg/ce/SalesRule.yml @@ -1,7 +1,7 @@ --- title: Magento_SalesRule source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/SalesRule/README.md last_modified_at: '2014-10-24 14:51:44 -0700' content: "SalesRule module is responsible for managing and processing Promotion Shopping diff --git a/src/_data/codebase/v2_4/mrg/ce/SalesSequence.yml b/src/_data/codebase/v2_4/mrg/ce/SalesSequence.yml index 14670cbb1f3..ea1d9d1de61 100644 --- a/src/_data/codebase/v2_4/mrg/ce/SalesSequence.yml +++ b/src/_data/codebase/v2_4/mrg/ce/SalesSequence.yml @@ -1,7 +1,7 @@ --- title: Magento_SalesSequence source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/SalesSequence/README.md last_modified_at: '2015-03-20 16:50:43 +0200' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/SampleData.yml b/src/_data/codebase/v2_4/mrg/ce/SampleData.yml index 829fb6a001e..33baa9fecf8 100644 --- a/src/_data/codebase/v2_4/mrg/ce/SampleData.yml +++ b/src/_data/codebase/v2_4/mrg/ce/SampleData.yml @@ -1,9 +1,9 @@ --- title: Magento_SampleData source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/SampleData/README.md -last_modified_at: '2020-06-15 12:15:30 -0500' +last_modified_at: '2020-06-16 18:27:26 +0100' content: | Magento sample data includes a sample store, complete with more than 250 products (about 200 of them are configurable products), categories, promotional price rules, CMS pages, banners, and so on. Sample data uses the Luma theme on the storefront. diff --git a/src/_data/codebase/v2_4/mrg/ce/Search.yml b/src/_data/codebase/v2_4/mrg/ce/Search.yml index e4f266afc5f..21c1b1ae3e4 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Search.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Search.yml @@ -1,10 +1,10 @@ --- title: Magento_Search source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Search/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: 'Magento_Search module introduces basic search functionality and provides interfaces that allow to implement search for specific module. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/Security.yml b/src/_data/codebase/v2_4/mrg/ce/Security.yml index 4fab44d003c..1b2e70de15a 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Security.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Security.yml @@ -1,7 +1,7 @@ --- title: Magento_Security source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Security/README.md last_modified_at: '2016-01-11 17:45:47 +0300' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/SendFriend.yml b/src/_data/codebase/v2_4/mrg/ce/SendFriend.yml index b91f9e54a5f..01fdbd68aa7 100644 --- a/src/_data/codebase/v2_4/mrg/ce/SendFriend.yml +++ b/src/_data/codebase/v2_4/mrg/ce/SendFriend.yml @@ -1,11 +1,11 @@ --- title: Magento_SendFriend source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/SendFriend/README.md last_modified_at: '2015-06-02 12:45:34 +0300' content: 'The Magento_SendFriend implements the functionality behind the "Email to a Friend" link on a product page, which allows to share favorite products with others by clicking the link. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/SendFriendGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/SendFriendGraphQl.yml index 19e32a36e2e..7e37aa2ba4a 100644 --- a/src/_data/codebase/v2_4/mrg/ce/SendFriendGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ce/SendFriendGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_SendFriendGraphQl source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/SendFriendGraphQl/README.md last_modified_at: '2018-11-19 20:18:31 +0200' content: "**SendFriendGraphQl** provides support of GraphQL for SendFriend functionality.\n" diff --git a/src/_data/codebase/v2_4/mrg/ce/Shipping.yml b/src/_data/codebase/v2_4/mrg/ce/Shipping.yml index 9cf2cbe9e74..874d27362b1 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Shipping.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Shipping.yml @@ -1,7 +1,7 @@ --- title: Magento_Shipping source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Shipping/README.md last_modified_at: '2014-10-31 09:04:08 -0700' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/Sitemap.yml b/src/_data/codebase/v2_4/mrg/ce/Sitemap.yml index 5d4aa65b451..258ae1986c9 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Sitemap.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Sitemap.yml @@ -1,7 +1,7 @@ --- title: Magento_Sitemap source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Sitemap/README.md last_modified_at: '2014-07-11 11:30:21 -0700' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ce/Store.yml b/src/_data/codebase/v2_4/mrg/ce/Store.yml index 9140234cc3f..775e8bfd221 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Store.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Store.yml @@ -1,7 +1,7 @@ --- title: Magento_Store source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Store/README.md last_modified_at: '2014-10-24 14:51:44 -0700' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ce/StoreGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/StoreGraphQl.yml index df66bbc7e8a..deb30e447ee 100644 --- a/src/_data/codebase/v2_4/mrg/ce/StoreGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ce/StoreGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_StoreGraphQl source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/StoreGraphQl/README.md last_modified_at: '2018-04-09 17:36:37 -0500' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/Swagger.yml b/src/_data/codebase/v2_4/mrg/ce/Swagger.yml index c67db29b606..2bc10d61c41 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Swagger.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Swagger.yml @@ -1,7 +1,7 @@ --- title: Magento_Swagger source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Swagger/README.md last_modified_at: '2015-08-14 15:14:44 -0500' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/SwaggerWebapi.yml b/src/_data/codebase/v2_4/mrg/ce/SwaggerWebapi.yml index feec0144c18..41a9e5dbfde 100644 --- a/src/_data/codebase/v2_4/mrg/ce/SwaggerWebapi.yml +++ b/src/_data/codebase/v2_4/mrg/ce/SwaggerWebapi.yml @@ -1,7 +1,7 @@ --- title: Magento_SwaggerWebapi source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/SwaggerWebapi/README.md last_modified_at: '2018-03-23 17:48:45 +1300' content: The Magento_SwaggerWebapi module provides the implementation of the REST diff --git a/src/_data/codebase/v2_4/mrg/ce/SwaggerWebapiAsync.yml b/src/_data/codebase/v2_4/mrg/ce/SwaggerWebapiAsync.yml index 1a87897feef..5cecfc2653d 100644 --- a/src/_data/codebase/v2_4/mrg/ce/SwaggerWebapiAsync.yml +++ b/src/_data/codebase/v2_4/mrg/ce/SwaggerWebapiAsync.yml @@ -1,7 +1,7 @@ --- title: Magento_SwaggerWebapiAsync source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/SwaggerWebapiAsync/README.md last_modified_at: '2018-03-23 17:48:46 +1300' content: The Magento_SwaggerWebapiAsync module provides the implementation of the diff --git a/src/_data/codebase/v2_4/mrg/ce/Swatches.yml b/src/_data/codebase/v2_4/mrg/ce/Swatches.yml index e784a9f42eb..545674763f5 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Swatches.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Swatches.yml @@ -1,7 +1,7 @@ --- title: Magento_Swatches source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Swatches/README.md last_modified_at: '2015-07-28 12:18:39 +0300' content: Magento_Swatches module is replacing default product attributes text values diff --git a/src/_data/codebase/v2_4/mrg/ce/SwatchesGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/SwatchesGraphQl.yml index f887c1c00ef..b03fa7d3131 100644 --- a/src/_data/codebase/v2_4/mrg/ce/SwatchesGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ce/SwatchesGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_SwatchesGraphQl source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/SwatchesGraphQl/README.md last_modified_at: '2018-01-16 16:07:17 -0600' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/SwatchesLayeredNavigation.yml b/src/_data/codebase/v2_4/mrg/ce/SwatchesLayeredNavigation.yml index 2cd76dbd9ec..0496842555f 100644 --- a/src/_data/codebase/v2_4/mrg/ce/SwatchesLayeredNavigation.yml +++ b/src/_data/codebase/v2_4/mrg/ce/SwatchesLayeredNavigation.yml @@ -1,7 +1,7 @@ --- title: Magento_SwatchesLayeredNavigation source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/SwatchesLayeredNavigation/README.md last_modified_at: '2016-03-10 13:38:33 +0200' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/Tax.yml b/src/_data/codebase/v2_4/mrg/ce/Tax.yml index 5be3e0a9f23..6ee6a3e5531 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Tax.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Tax.yml @@ -1,7 +1,7 @@ --- title: Magento_Tax source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Tax/README.md last_modified_at: '2014-10-24 14:51:44 -0700' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ce/TaxGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/TaxGraphQl.yml index afdaf271312..0bac1c1b4aa 100644 --- a/src/_data/codebase/v2_4/mrg/ce/TaxGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ce/TaxGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_TaxGraphQl source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/TaxGraphQl/README.md last_modified_at: '2018-01-16 16:07:17 -0600' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/Theme.yml b/src/_data/codebase/v2_4/mrg/ce/Theme.yml index d89ca8fd71c..9bcbac7c76f 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Theme.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Theme.yml @@ -1,7 +1,7 @@ --- title: Magento_Theme source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Theme/README.md last_modified_at: '2014-07-11 11:30:21 -0700' content: The Theme module contains common infrastructure that provides an ability diff --git a/src/_data/codebase/v2_4/mrg/ce/ThemeGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/ThemeGraphQl.yml index 4e547389611..dc6649adb42 100644 --- a/src/_data/codebase/v2_4/mrg/ce/ThemeGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ce/ThemeGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_ThemeGraphQl source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/ThemeGraphQl/README.md last_modified_at: '2018-12-06 10:59:37 -0500' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/Tinymce3.yml b/src/_data/codebase/v2_4/mrg/ce/Tinymce3.yml index 85caebbd4f8..415b301aade 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Tinymce3.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Tinymce3.yml @@ -1,7 +1,7 @@ --- title: Magento_Tinymce3 source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Tinymce3/README.md last_modified_at: '2018-05-14 17:18:09 -0500' content: We have updated the TinyMCE module to the latest available version, 4.6.4. diff --git a/src/_data/codebase/v2_4/mrg/ce/Translation.yml b/src/_data/codebase/v2_4/mrg/ce/Translation.yml index 5b50cc49621..a5087a933cc 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Translation.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Translation.yml @@ -1,7 +1,7 @@ --- title: Magento_Translation source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Translation/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/Ui.yml b/src/_data/codebase/v2_4/mrg/ce/Ui.yml index 708ed01999b..7ab42022b30 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Ui.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Ui.yml @@ -1,7 +1,7 @@ --- title: Magento_Ui source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Ui/README.md last_modified_at: '2016-08-05 21:54:51 +1200' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/Ups.yml b/src/_data/codebase/v2_4/mrg/ce/Ups.yml index 146cace41ad..e4589ef6a63 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Ups.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Ups.yml @@ -1,10 +1,10 @@ --- title: Magento_Ups source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Ups/README.md last_modified_at: '2014-10-31 09:04:08 -0700' content: 'The Magento_Ups module implements integration with the United Parcel Service shipping carrier. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/UrlRewrite.yml b/src/_data/codebase/v2_4/mrg/ce/UrlRewrite.yml index 15d50bd0013..d3cad244ed4 100644 --- a/src/_data/codebase/v2_4/mrg/ce/UrlRewrite.yml +++ b/src/_data/codebase/v2_4/mrg/ce/UrlRewrite.yml @@ -1,10 +1,10 @@ --- title: Magento_UrlRewrite source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/UrlRewrite/README.md last_modified_at: '2014-12-12 12:14:06 -0800' content: 'Magento_UrlRewrite module provides ability to customize website URLs by creating custom URL rewrite rules. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/UrlRewriteGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/UrlRewriteGraphQl.yml index 3c67c520666..80703ffa01b 100644 --- a/src/_data/codebase/v2_4/mrg/ce/UrlRewriteGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ce/UrlRewriteGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_UrlRewriteGraphQl source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/UrlRewriteGraphQl/README.md last_modified_at: '2018-01-17 11:18:15 -0600' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/User.yml b/src/_data/codebase/v2_4/mrg/ce/User.yml index c5868fbfcca..cbeec175dd2 100644 --- a/src/_data/codebase/v2_4/mrg/ce/User.yml +++ b/src/_data/codebase/v2_4/mrg/ce/User.yml @@ -1,7 +1,7 @@ --- title: Magento_User source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/User/README.md last_modified_at: '2015-08-27 15:34:05 -0500' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/Usps.yml b/src/_data/codebase/v2_4/mrg/ce/Usps.yml index 27aca5a5183..dde75e07d1a 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Usps.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Usps.yml @@ -1,10 +1,10 @@ --- title: Magento_Usps source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Usps/README.md last_modified_at: '2014-10-31 09:04:08 -0700' content: 'The Magento_Usps module provides integration with the United States Postal Service shipping carrier. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/Variable.yml b/src/_data/codebase/v2_4/mrg/ce/Variable.yml index be2e01f8fc0..c14802de22f 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Variable.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Variable.yml @@ -1,10 +1,10 @@ --- title: Magento_Variable source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Variable/README.md last_modified_at: '2015-02-10 10:11:24 -0600' content: 'Magento\Variable Allows to create custom variables and then use them in email templates or in WYSIWYG editor for editing description of system entities. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/Vault.yml b/src/_data/codebase/v2_4/mrg/ce/Vault.yml index b498a95fe2a..6c5b928ee4d 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Vault.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Vault.yml @@ -1,10 +1,10 @@ --- title: Magento_Vault source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Vault/README.md last_modified_at: '2015-12-02 14:06:21 +0200' content: 'The Magento_Vault module implements the integration with the Vault payment gateway and makes the latter available as a payment method in Magento. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/VaultGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/VaultGraphQl.yml index 88f348c397f..0b936fd059a 100644 --- a/src/_data/codebase/v2_4/mrg/ce/VaultGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ce/VaultGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_VaultGraphQl source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/VaultGraphQl/README.md last_modified_at: '2019-01-22 15:13:27 -0500' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/Version.yml b/src/_data/codebase/v2_4/mrg/ce/Version.yml index 784300c58ce..2466f2eabeb 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Version.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Version.yml @@ -1,9 +1,9 @@ --- title: Magento_Version source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Version/README.md last_modified_at: '2015-01-29 16:15:56 -0600' content: 'Magento\Version Allows to get Magento version and edition by HTTP GET request - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/Webapi.yml b/src/_data/codebase/v2_4/mrg/ce/Webapi.yml index 520ea4475fa..0c9dde15c3f 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Webapi.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Webapi.yml @@ -1,7 +1,7 @@ --- title: Magento_Webapi source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Webapi/README.md last_modified_at: '2014-10-24 14:51:44 -0700' content: "**Webapi** provides the framework for the application to expose REST and diff --git a/src/_data/codebase/v2_4/mrg/ce/WebapiAsync.yml b/src/_data/codebase/v2_4/mrg/ce/WebapiAsync.yml index 5ed04e9c4fe..d04b382deea 100644 --- a/src/_data/codebase/v2_4/mrg/ce/WebapiAsync.yml +++ b/src/_data/codebase/v2_4/mrg/ce/WebapiAsync.yml @@ -1,7 +1,7 @@ --- title: Magento_WebapiAsync source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/WebapiAsync/README.md last_modified_at: '2018-03-20 12:57:53 +0200' content: "**WebapiAsync** Extends Webapi extension and provide functional to process diff --git a/src/_data/codebase/v2_4/mrg/ce/WebapiSecurity.yml b/src/_data/codebase/v2_4/mrg/ce/WebapiSecurity.yml index 1c5a46b5423..3290bec503b 100644 --- a/src/_data/codebase/v2_4/mrg/ce/WebapiSecurity.yml +++ b/src/_data/codebase/v2_4/mrg/ce/WebapiSecurity.yml @@ -1,7 +1,7 @@ --- title: Magento_WebapiSecurity source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/WebapiSecurity/README.md last_modified_at: '2016-03-22 15:38:49 -0500' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/Weee.yml b/src/_data/codebase/v2_4/mrg/ce/Weee.yml index aeda4a6dcb8..c473f4178e7 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Weee.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Weee.yml @@ -1,7 +1,7 @@ --- title: Magento_Weee source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Weee/README.md last_modified_at: '2019-12-11 15:16:04 +0000' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/WeeeGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/WeeeGraphQl.yml index e26bc4b1b5f..33f3d0b50e8 100644 --- a/src/_data/codebase/v2_4/mrg/ce/WeeeGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ce/WeeeGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_WeeeGraphQl source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/WeeeGraphQl/README.md last_modified_at: '2018-01-17 17:11:48 -0600' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/Widget.yml b/src/_data/codebase/v2_4/mrg/ce/Widget.yml index 62ee138f193..fdf36115a2f 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Widget.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Widget.yml @@ -1,7 +1,7 @@ --- title: Magento_Widget source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Widget/README.md last_modified_at: '2014-07-11 11:30:21 -0700' content: The Widget module allows Magento application to be extended with custom widget diff --git a/src/_data/codebase/v2_4/mrg/ce/Wishlist.yml b/src/_data/codebase/v2_4/mrg/ce/Wishlist.yml index a4933c633c2..a73f563909b 100644 --- a/src/_data/codebase/v2_4/mrg/ce/Wishlist.yml +++ b/src/_data/codebase/v2_4/mrg/ce/Wishlist.yml @@ -1,7 +1,7 @@ --- title: Magento_Wishlist source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Wishlist/README.md last_modified_at: '2014-10-31 09:04:08 -0700' content: | diff --git a/src/_data/codebase/v2_4/mrg/ce/WishlistAnalytics.yml b/src/_data/codebase/v2_4/mrg/ce/WishlistAnalytics.yml index f3a86f959bd..400b14efee2 100644 --- a/src/_data/codebase/v2_4/mrg/ce/WishlistAnalytics.yml +++ b/src/_data/codebase/v2_4/mrg/ce/WishlistAnalytics.yml @@ -1,10 +1,10 @@ --- title: Magento_WishlistAnalytics source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/WishlistAnalytics/README.md last_modified_at: '2019-08-06 14:40:28 -0500' content: 'The Magento_WishlistAnalytics module configures data definitions for a data collection related to the Wishlist module entities to be used in [Advanced Reporting](https://devdocs.magento.com/guides/v2.3/advanced-reporting/modules.html). - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ce/WishlistGraphQl.yml b/src/_data/codebase/v2_4/mrg/ce/WishlistGraphQl.yml index 2d8605a9619..552f354fa69 100644 --- a/src/_data/codebase/v2_4/mrg/ce/WishlistGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ce/WishlistGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_WishlistGraphQl source_repo: magento2ce -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/WishlistGraphQl/README.md last_modified_at: '2018-10-26 12:42:07 +0200' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/AdminGws.yml b/src/_data/codebase/v2_4/mrg/ee/AdminGws.yml index a38b67e1bb2..6a71cec9fbe 100644 --- a/src/_data/codebase/v2_4/mrg/ee/AdminGws.yml +++ b/src/_data/codebase/v2_4/mrg/ee/AdminGws.yml @@ -1,7 +1,7 @@ --- title: Magento_AdminGws source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/AdminGws/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: "**AdminGws** provides configuration management within the Global, Website, diff --git a/src/_data/codebase/v2_4/mrg/ee/AdminGwsConfigurableProduct.yml b/src/_data/codebase/v2_4/mrg/ee/AdminGwsConfigurableProduct.yml new file mode 100644 index 00000000000..ce78d87a1f1 --- /dev/null +++ b/src/_data/codebase/v2_4/mrg/ee/AdminGwsConfigurableProduct.yml @@ -0,0 +1,30 @@ +--- +title: Magento_AdminGwsConfigurableProduct +source_repo: magento2ee +release: 2.4.1 +github_path: app/code/Magento/AdminGwsConfigurableProduct/README.md +last_modified_at: '2020-06-03 18:39:45 +0300' +content: | +

Magento_AdminGwsConfigurableProduct module

+ + ## Overview + + The Magento_AdminGwsConfigurableProduct module is a part of the restricted admin user permissions functionality in Magento EE. It extends the Magento_AdminGws module functionality for configurable product. + + ## Implementation Details + + The Magento_AdminGwsConfigurableProduct module: + + * adds plugin on `\Magento\Magento_AdminGwsConfigurableProduct\Plugin\PermissionsDataChecker` to check permissions for current user. + + ## Dependencies + + You can find the list of modules the Magento_AdminGwsConfigurableProduct module depends on in the `require` section of the `composer.json` file located in the same directory as this `README.md` file. + + ## Extension Points + + The Magento_AdminGwsConfigurableProduct module does not provide any specific extension points. + + ## Additional information + + For more Magento 2 developer documentation, see [Magento 2 Developer Documentation](http://devdocs.magento.com). diff --git a/src/_data/codebase/v2_4/mrg/ee/AdminGwsStaging.yml b/src/_data/codebase/v2_4/mrg/ee/AdminGwsStaging.yml index 59972861d63..a24eb9b1a70 100644 --- a/src/_data/codebase/v2_4/mrg/ee/AdminGwsStaging.yml +++ b/src/_data/codebase/v2_4/mrg/ee/AdminGwsStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_AdminGwsStaging source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/AdminGwsStaging/README.md last_modified_at: '2020-03-23 14:32:03 +0200' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/AdvancedCatalog.yml b/src/_data/codebase/v2_4/mrg/ee/AdvancedCatalog.yml index fa99ea59ee4..04e8fcc6104 100644 --- a/src/_data/codebase/v2_4/mrg/ee/AdvancedCatalog.yml +++ b/src/_data/codebase/v2_4/mrg/ee/AdvancedCatalog.yml @@ -1,7 +1,7 @@ --- title: Magento_AdvancedCatalog source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/AdvancedCatalog/README.md last_modified_at: '2015-06-22 19:38:00 +0300' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/AdvancedCheckout.yml b/src/_data/codebase/v2_4/mrg/ee/AdvancedCheckout.yml index 46dbae8e5f4..4cd399a3296 100644 --- a/src/_data/codebase/v2_4/mrg/ee/AdvancedCheckout.yml +++ b/src/_data/codebase/v2_4/mrg/ee/AdvancedCheckout.yml @@ -1,7 +1,7 @@ --- title: Magento_AdvancedCheckout source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/AdvancedCheckout/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ee/AdvancedRule.yml b/src/_data/codebase/v2_4/mrg/ee/AdvancedRule.yml index 3ed73bf85d3..bf1a8466688 100644 --- a/src/_data/codebase/v2_4/mrg/ee/AdvancedRule.yml +++ b/src/_data/codebase/v2_4/mrg/ee/AdvancedRule.yml @@ -1,7 +1,7 @@ --- title: Magento_AdvancedRule source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/AdvancedRule/README.md last_modified_at: '2015-11-20 12:14:51 -0600' content: "AdvancedRule module enhances the performance of rule processing.\n\n" diff --git a/src/_data/codebase/v2_4/mrg/ee/AdvancedSalesRule.yml b/src/_data/codebase/v2_4/mrg/ee/AdvancedSalesRule.yml index 0101b278637..c8e6c443fa9 100644 --- a/src/_data/codebase/v2_4/mrg/ee/AdvancedSalesRule.yml +++ b/src/_data/codebase/v2_4/mrg/ee/AdvancedSalesRule.yml @@ -1,7 +1,7 @@ --- title: Magento_AdvancedSalesRule source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/AdvancedSalesRule/README.md last_modified_at: '2015-11-20 12:14:51 -0600' content: "AdvancedSalesRule module enhances the performance of sale rule processing.\n\n" diff --git a/src/_data/codebase/v2_4/mrg/ee/Banner.yml b/src/_data/codebase/v2_4/mrg/ee/Banner.yml index dd1e2d78545..7fdb0c834dd 100644 --- a/src/_data/codebase/v2_4/mrg/ee/Banner.yml +++ b/src/_data/codebase/v2_4/mrg/ee/Banner.yml @@ -1,7 +1,7 @@ --- title: Magento_Banner source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Banner/README.md last_modified_at: '2018-01-12 13:34:20 +0200' content: "The Banner module allows creating and managing dynamic blocks and widgets diff --git a/src/_data/codebase/v2_4/mrg/ee/BannerCustomerSegment.yml b/src/_data/codebase/v2_4/mrg/ee/BannerCustomerSegment.yml index 96e3892a115..94be0b581c8 100644 --- a/src/_data/codebase/v2_4/mrg/ee/BannerCustomerSegment.yml +++ b/src/_data/codebase/v2_4/mrg/ee/BannerCustomerSegment.yml @@ -1,7 +1,7 @@ --- title: Magento_BannerCustomerSegment source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/BannerCustomerSegment/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: The Banner Customer Segment module allows creating and managing banners in diff --git a/src/_data/codebase/v2_4/mrg/ee/BundleImportExportStaging.yml b/src/_data/codebase/v2_4/mrg/ee/BundleImportExportStaging.yml index db05cfcdc4c..e6a3cadf596 100644 --- a/src/_data/codebase/v2_4/mrg/ee/BundleImportExportStaging.yml +++ b/src/_data/codebase/v2_4/mrg/ee/BundleImportExportStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_BundleImportExportStaging source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/BundleImportExportStaging/README.md last_modified_at: '2017-05-26 18:23:26 +0300' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ee/BundleStaging.yml b/src/_data/codebase/v2_4/mrg/ee/BundleStaging.yml index 81cb1cc1ee2..5505de26e6c 100644 --- a/src/_data/codebase/v2_4/mrg/ee/BundleStaging.yml +++ b/src/_data/codebase/v2_4/mrg/ee/BundleStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_BundleStaging source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/BundleStaging/README.md last_modified_at: '2016-04-12 17:33:21 +0300' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ee/CatalogEvent.yml b/src/_data/codebase/v2_4/mrg/ee/CatalogEvent.yml index e3e466cb4c0..0646401f67d 100644 --- a/src/_data/codebase/v2_4/mrg/ee/CatalogEvent.yml +++ b/src/_data/codebase/v2_4/mrg/ee/CatalogEvent.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogEvent source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CatalogEvent/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/CatalogImportExportStaging.yml b/src/_data/codebase/v2_4/mrg/ee/CatalogImportExportStaging.yml index 46a4c9e915a..d1a7bf630ac 100644 --- a/src/_data/codebase/v2_4/mrg/ee/CatalogImportExportStaging.yml +++ b/src/_data/codebase/v2_4/mrg/ee/CatalogImportExportStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogImportExportStaging source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CatalogImportExportStaging/README.md last_modified_at: '2016-04-07 09:45:21 -0500' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/CatalogInventoryStaging.yml b/src/_data/codebase/v2_4/mrg/ee/CatalogInventoryStaging.yml index b03eb964175..8c54a09556b 100644 --- a/src/_data/codebase/v2_4/mrg/ee/CatalogInventoryStaging.yml +++ b/src/_data/codebase/v2_4/mrg/ee/CatalogInventoryStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogInventoryStaging source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CatalogInventoryStaging/README.md last_modified_at: '2016-07-04 18:13:15 +0300' content: "## Magento_CatalogInventoryStaging module\n\n## Overview\n\nThe Magento_CatalogInventoryStaging diff --git a/src/_data/codebase/v2_4/mrg/ee/CatalogPermissions.yml b/src/_data/codebase/v2_4/mrg/ee/CatalogPermissions.yml index e1f9a386b3d..257d7837e09 100644 --- a/src/_data/codebase/v2_4/mrg/ee/CatalogPermissions.yml +++ b/src/_data/codebase/v2_4/mrg/ee/CatalogPermissions.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogPermissions source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CatalogPermissions/README.md last_modified_at: '2015-05-14 15:09:36 +0300' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/CatalogPermissionsGraphQl.yml b/src/_data/codebase/v2_4/mrg/ee/CatalogPermissionsGraphQl.yml new file mode 100644 index 00000000000..f9518a0066a --- /dev/null +++ b/src/_data/codebase/v2_4/mrg/ee/CatalogPermissionsGraphQl.yml @@ -0,0 +1,10 @@ +--- +title: Magento_CatalogPermissionsGraphQl +source_repo: magento2ee +release: 2.4.1 +github_path: app/code/Magento/CatalogPermissionsGraphQl/README.md +last_modified_at: '2020-06-21 10:09:05 +0200' +content: 'Magento_CatalogPermissionsGraphQL feature allows to apply Magento_CatalogPermissions + features to product queries in GraphQl area + +' diff --git a/src/_data/codebase/v2_4/mrg/ee/CatalogRuleStaging.yml b/src/_data/codebase/v2_4/mrg/ee/CatalogRuleStaging.yml index ed6387b4014..51681e4f4f4 100644 --- a/src/_data/codebase/v2_4/mrg/ee/CatalogRuleStaging.yml +++ b/src/_data/codebase/v2_4/mrg/ee/CatalogRuleStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogRuleStaging source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CatalogRuleStaging/README.md last_modified_at: '2016-08-03 10:46:30 +0300' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ee/CatalogStaging.yml b/src/_data/codebase/v2_4/mrg/ee/CatalogStaging.yml index e0d41e16d3a..c6cacf894ba 100644 --- a/src/_data/codebase/v2_4/mrg/ee/CatalogStaging.yml +++ b/src/_data/codebase/v2_4/mrg/ee/CatalogStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogStaging source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CatalogStaging/README.md last_modified_at: '2016-07-13 17:35:04 -0500' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ee/CatalogStagingGraphQl.yml b/src/_data/codebase/v2_4/mrg/ee/CatalogStagingGraphQl.yml index 4eaab2edf4b..eb09c996d63 100644 --- a/src/_data/codebase/v2_4/mrg/ee/CatalogStagingGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ee/CatalogStagingGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogStagingGraphQl source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CatalogStagingGraphQl/README.md last_modified_at: '2020-01-14 14:07:38 -0600' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/CatalogUrlRewriteStaging.yml b/src/_data/codebase/v2_4/mrg/ee/CatalogUrlRewriteStaging.yml index 8077b2c4097..aeeac7e95ee 100644 --- a/src/_data/codebase/v2_4/mrg/ee/CatalogUrlRewriteStaging.yml +++ b/src/_data/codebase/v2_4/mrg/ee/CatalogUrlRewriteStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_CatalogUrlRewriteStaging source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CatalogUrlRewriteStaging/README.md last_modified_at: '2016-07-04 18:13:15 +0300' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ee/CheckoutAddressSearch.yml b/src/_data/codebase/v2_4/mrg/ee/CheckoutAddressSearch.yml index 9460ff61d12..a66405c4e51 100644 --- a/src/_data/codebase/v2_4/mrg/ee/CheckoutAddressSearch.yml +++ b/src/_data/codebase/v2_4/mrg/ee/CheckoutAddressSearch.yml @@ -1,7 +1,7 @@ --- title: Magento_CheckoutAddressSearch source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CheckoutAddressSearch/README.md last_modified_at: '2019-04-10 17:47:51 -0500' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/CheckoutAddressSearchGiftRegistry.yml b/src/_data/codebase/v2_4/mrg/ee/CheckoutAddressSearchGiftRegistry.yml index d4156237ccd..b86f91f94af 100644 --- a/src/_data/codebase/v2_4/mrg/ee/CheckoutAddressSearchGiftRegistry.yml +++ b/src/_data/codebase/v2_4/mrg/ee/CheckoutAddressSearchGiftRegistry.yml @@ -1,7 +1,7 @@ --- title: Magento_CheckoutAddressSearchGiftRegistry source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CheckoutAddressSearchGiftRegistry/README.md last_modified_at: '2019-04-05 18:54:17 -0500' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/CheckoutStaging.yml b/src/_data/codebase/v2_4/mrg/ee/CheckoutStaging.yml index ce3353b5487..16b2ba48320 100644 --- a/src/_data/codebase/v2_4/mrg/ee/CheckoutStaging.yml +++ b/src/_data/codebase/v2_4/mrg/ee/CheckoutStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_CheckoutStaging source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CheckoutStaging/README.md last_modified_at: '2016-07-04 12:55:14 +0000' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/CmsStaging.yml b/src/_data/codebase/v2_4/mrg/ee/CmsStaging.yml index c9facfc95db..450ff078aa3 100644 --- a/src/_data/codebase/v2_4/mrg/ee/CmsStaging.yml +++ b/src/_data/codebase/v2_4/mrg/ee/CmsStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_CmsStaging source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CmsStaging/README.md last_modified_at: '2016-07-13 17:35:04 -0500' content: "## Magento_CmsStaging module\n\n## Overview\n\nThe Magento_CmsStaging module diff --git a/src/_data/codebase/v2_4/mrg/ee/ConfigurableProductStaging.yml b/src/_data/codebase/v2_4/mrg/ee/ConfigurableProductStaging.yml index 78acf529c3d..03ffb8b04d5 100644 --- a/src/_data/codebase/v2_4/mrg/ee/ConfigurableProductStaging.yml +++ b/src/_data/codebase/v2_4/mrg/ee/ConfigurableProductStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_ConfigurableProductStaging source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/ConfigurableProductStaging/README.md last_modified_at: '2017-02-06 15:24:41 +0200' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/CustomAttributeManagement.yml b/src/_data/codebase/v2_4/mrg/ee/CustomAttributeManagement.yml index 901314eec7b..4b8c789b573 100644 --- a/src/_data/codebase/v2_4/mrg/ee/CustomAttributeManagement.yml +++ b/src/_data/codebase/v2_4/mrg/ee/CustomAttributeManagement.yml @@ -1,7 +1,7 @@ --- title: Magento_CustomAttributeManagement source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CustomAttributeManagement/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/CustomerBalance.yml b/src/_data/codebase/v2_4/mrg/ee/CustomerBalance.yml index 9e7cb8c759b..79e20c1651c 100644 --- a/src/_data/codebase/v2_4/mrg/ee/CustomerBalance.yml +++ b/src/_data/codebase/v2_4/mrg/ee/CustomerBalance.yml @@ -1,7 +1,7 @@ --- title: Magento_CustomerBalance source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CustomerBalance/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/CustomerBalanceGraphQl.yml b/src/_data/codebase/v2_4/mrg/ee/CustomerBalanceGraphQl.yml index ef65e18936c..e76220f52e3 100644 --- a/src/_data/codebase/v2_4/mrg/ee/CustomerBalanceGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ee/CustomerBalanceGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_CustomerBalanceGraphQl source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CustomerBalanceGraphQl/README.md last_modified_at: '2019-07-16 10:30:00 -0500' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/CustomerCustomAttributes.yml b/src/_data/codebase/v2_4/mrg/ee/CustomerCustomAttributes.yml index 4734f3911c9..2072520a176 100644 --- a/src/_data/codebase/v2_4/mrg/ee/CustomerCustomAttributes.yml +++ b/src/_data/codebase/v2_4/mrg/ee/CustomerCustomAttributes.yml @@ -1,7 +1,7 @@ --- title: Magento_CustomerCustomAttributes source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CustomerCustomAttributes/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/CustomerFinance.yml b/src/_data/codebase/v2_4/mrg/ee/CustomerFinance.yml index edd8edbedd2..9771935d0cc 100644 --- a/src/_data/codebase/v2_4/mrg/ee/CustomerFinance.yml +++ b/src/_data/codebase/v2_4/mrg/ee/CustomerFinance.yml @@ -1,7 +1,7 @@ --- title: Magento_CustomerFinance source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CustomerFinance/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/CustomerSegment.yml b/src/_data/codebase/v2_4/mrg/ee/CustomerSegment.yml index cb377b77bd6..a9d3409f67f 100644 --- a/src/_data/codebase/v2_4/mrg/ee/CustomerSegment.yml +++ b/src/_data/codebase/v2_4/mrg/ee/CustomerSegment.yml @@ -1,7 +1,7 @@ --- title: Magento_CustomerSegment source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/CustomerSegment/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/DownloadableStaging.yml b/src/_data/codebase/v2_4/mrg/ee/DownloadableStaging.yml index ea1a5c12dde..6660d9c2801 100644 --- a/src/_data/codebase/v2_4/mrg/ee/DownloadableStaging.yml +++ b/src/_data/codebase/v2_4/mrg/ee/DownloadableStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_DownloadableStaging source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/DownloadableStaging/README.md last_modified_at: '2016-07-13 17:35:04 -0500' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ee/ElasticsearchCatalogPermissions.yml b/src/_data/codebase/v2_4/mrg/ee/ElasticsearchCatalogPermissions.yml index d8896b32b9e..1ad89a4eca9 100644 --- a/src/_data/codebase/v2_4/mrg/ee/ElasticsearchCatalogPermissions.yml +++ b/src/_data/codebase/v2_4/mrg/ee/ElasticsearchCatalogPermissions.yml @@ -1,7 +1,7 @@ --- title: Magento_ElasticsearchCatalogPermissions source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/ElasticsearchCatalogPermissions/README.md last_modified_at: '2018-12-28 16:36:26 +0200' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ee/Enterprise.yml b/src/_data/codebase/v2_4/mrg/ee/Enterprise.yml index b0a3d30d62b..337290f5300 100644 --- a/src/_data/codebase/v2_4/mrg/ee/Enterprise.yml +++ b/src/_data/codebase/v2_4/mrg/ee/Enterprise.yml @@ -1,7 +1,7 @@ --- title: Magento_Enterprise source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Enterprise/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: The Enterprise module switches the store to Enterprise edition by adding diff --git a/src/_data/codebase/v2_4/mrg/ee/GiftCard.yml b/src/_data/codebase/v2_4/mrg/ee/GiftCard.yml index ee222e08d1b..6ae53d8e4b6 100644 --- a/src/_data/codebase/v2_4/mrg/ee/GiftCard.yml +++ b/src/_data/codebase/v2_4/mrg/ee/GiftCard.yml @@ -1,7 +1,7 @@ --- title: Magento_GiftCard source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/GiftCard/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: "Magento_GiftCard module introduces new product type in the Magento application diff --git a/src/_data/codebase/v2_4/mrg/ee/GiftCardAccount.yml b/src/_data/codebase/v2_4/mrg/ee/GiftCardAccount.yml index 75071819fbd..f36ff0d847b 100644 --- a/src/_data/codebase/v2_4/mrg/ee/GiftCardAccount.yml +++ b/src/_data/codebase/v2_4/mrg/ee/GiftCardAccount.yml @@ -1,11 +1,11 @@ --- title: Magento_GiftCardAccount source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/GiftCardAccount/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: 'The Magento_GiftCardAccount module is responsible for gift card balances, for both gift cards created by a store administrator and gift cards sold as gift card products. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ee/GiftCardAccountGraphQl.yml b/src/_data/codebase/v2_4/mrg/ee/GiftCardAccountGraphQl.yml index ee8ae82feb7..57728744ab9 100644 --- a/src/_data/codebase/v2_4/mrg/ee/GiftCardAccountGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ee/GiftCardAccountGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_GiftCardAccountGraphQl source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/GiftCardAccountGraphQl/README.md last_modified_at: '2019-05-30 10:55:23 -0500' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/GiftCardGraphQl.yml b/src/_data/codebase/v2_4/mrg/ee/GiftCardGraphQl.yml index 8790e414970..28120884515 100644 --- a/src/_data/codebase/v2_4/mrg/ee/GiftCardGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ee/GiftCardGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_GiftCardGraphQl source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/GiftCardGraphQl/README.md last_modified_at: '2018-01-30 15:41:07 -0600' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/GiftCardImportExport.yml b/src/_data/codebase/v2_4/mrg/ee/GiftCardImportExport.yml index 68d95ecbe93..ed1b951bbd2 100644 --- a/src/_data/codebase/v2_4/mrg/ee/GiftCardImportExport.yml +++ b/src/_data/codebase/v2_4/mrg/ee/GiftCardImportExport.yml @@ -1,7 +1,7 @@ --- title: Magento_GiftCardImportExport source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/GiftCardImportExport/README.md last_modified_at: '2015-08-18 15:10:06 +0300' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/GiftCardStaging.yml b/src/_data/codebase/v2_4/mrg/ee/GiftCardStaging.yml index 94225215f99..611699acff9 100644 --- a/src/_data/codebase/v2_4/mrg/ee/GiftCardStaging.yml +++ b/src/_data/codebase/v2_4/mrg/ee/GiftCardStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_GiftCardStaging source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/GiftCardStaging/README.md last_modified_at: '2016-07-13 17:35:04 -0500' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/GiftMessageStaging.yml b/src/_data/codebase/v2_4/mrg/ee/GiftMessageStaging.yml index a423fd1b1e2..4a104509b8a 100644 --- a/src/_data/codebase/v2_4/mrg/ee/GiftMessageStaging.yml +++ b/src/_data/codebase/v2_4/mrg/ee/GiftMessageStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_GiftMessageStaging source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/GiftMessageStaging/README.md last_modified_at: '2016-07-04 18:13:15 +0300' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ee/GiftRegistry.yml b/src/_data/codebase/v2_4/mrg/ee/GiftRegistry.yml index b112623e93d..87fd2f1a94c 100644 --- a/src/_data/codebase/v2_4/mrg/ee/GiftRegistry.yml +++ b/src/_data/codebase/v2_4/mrg/ee/GiftRegistry.yml @@ -1,7 +1,7 @@ --- title: Magento_GiftRegistry source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/GiftRegistry/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ee/GiftWrapping.yml b/src/_data/codebase/v2_4/mrg/ee/GiftWrapping.yml index 698fe647b99..2493213093b 100644 --- a/src/_data/codebase/v2_4/mrg/ee/GiftWrapping.yml +++ b/src/_data/codebase/v2_4/mrg/ee/GiftWrapping.yml @@ -1,7 +1,7 @@ --- title: Magento_GiftWrapping source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/GiftWrapping/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ee/GiftWrappingGraphQl.yml b/src/_data/codebase/v2_4/mrg/ee/GiftWrappingGraphQl.yml new file mode 100644 index 00000000000..77d20101692 --- /dev/null +++ b/src/_data/codebase/v2_4/mrg/ee/GiftWrappingGraphQl.yml @@ -0,0 +1,9 @@ +--- +title: Magento_GiftWrappingGraphQl +source_repo: magento2ee +release: 2.4.1 +github_path: app/code/Magento/GiftWrappingGraphQl/README.md +last_modified_at: '2020-05-12 17:54:53 +0300' +content: | + **Magento_GiftWrappingGraphQl** provides type and resolver information for the GraphQl module + to generate GiftWrapping information for order and cart. diff --git a/src/_data/codebase/v2_4/mrg/ee/GiftWrappingStaging.yml b/src/_data/codebase/v2_4/mrg/ee/GiftWrappingStaging.yml index a888d9cf32f..fdf34adef1f 100644 --- a/src/_data/codebase/v2_4/mrg/ee/GiftWrappingStaging.yml +++ b/src/_data/codebase/v2_4/mrg/ee/GiftWrappingStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_GiftWrappingStaging source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/GiftWrappingStaging/README.md last_modified_at: '2016-07-04 18:13:15 +0300' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ee/GoogleOptimizerStaging.yml b/src/_data/codebase/v2_4/mrg/ee/GoogleOptimizerStaging.yml index ac01a982291..2aae84ccc2c 100644 --- a/src/_data/codebase/v2_4/mrg/ee/GoogleOptimizerStaging.yml +++ b/src/_data/codebase/v2_4/mrg/ee/GoogleOptimizerStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_GoogleOptimizerStaging source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/GoogleOptimizerStaging/README.md last_modified_at: '2016-07-04 18:13:15 +0300' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ee/GoogleTagManager.yml b/src/_data/codebase/v2_4/mrg/ee/GoogleTagManager.yml index 138ab91c1b7..0ff70676744 100644 --- a/src/_data/codebase/v2_4/mrg/ee/GoogleTagManager.yml +++ b/src/_data/codebase/v2_4/mrg/ee/GoogleTagManager.yml @@ -1,10 +1,10 @@ --- title: Magento_GoogleTagManager source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/GoogleTagManager/README.md last_modified_at: '2015-06-22 19:55:26 +0300' content: 'Magento_GoogleTagManager is a module for integration with Google Tag Manager service. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ee/GroupedProductStaging.yml b/src/_data/codebase/v2_4/mrg/ee/GroupedProductStaging.yml index 8bceafbc009..7c609ae2e8e 100644 --- a/src/_data/codebase/v2_4/mrg/ee/GroupedProductStaging.yml +++ b/src/_data/codebase/v2_4/mrg/ee/GroupedProductStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_GroupedProductStaging source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/GroupedProductStaging/README.md last_modified_at: '2016-07-04 18:13:15 +0300' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ee/Invitation.yml b/src/_data/codebase/v2_4/mrg/ee/Invitation.yml index 17a4156594d..7cbeb4bb898 100644 --- a/src/_data/codebase/v2_4/mrg/ee/Invitation.yml +++ b/src/_data/codebase/v2_4/mrg/ee/Invitation.yml @@ -1,10 +1,10 @@ --- title: Magento_Invitation source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Invitation/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: 'The Magento_Invitation module enables invitation sending, referral tracking and generating invitation reports. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ee/LayeredNavigationStaging.yml b/src/_data/codebase/v2_4/mrg/ee/LayeredNavigationStaging.yml index 5c9d9549131..543403f049d 100644 --- a/src/_data/codebase/v2_4/mrg/ee/LayeredNavigationStaging.yml +++ b/src/_data/codebase/v2_4/mrg/ee/LayeredNavigationStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_LayeredNavigationStaging source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/LayeredNavigationStaging/README.md last_modified_at: '2016-07-04 12:55:14 +0000' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/Logging.yml b/src/_data/codebase/v2_4/mrg/ee/Logging.yml index a8e881b4890..45bf094b6f2 100644 --- a/src/_data/codebase/v2_4/mrg/ee/Logging.yml +++ b/src/_data/codebase/v2_4/mrg/ee/Logging.yml @@ -1,7 +1,7 @@ --- title: Magento_Logging source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Logging/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ee/LoginAsCustomerLogging.yml b/src/_data/codebase/v2_4/mrg/ee/LoginAsCustomerLogging.yml index 0e9360882be..51569e5e653 100644 --- a/src/_data/codebase/v2_4/mrg/ee/LoginAsCustomerLogging.yml +++ b/src/_data/codebase/v2_4/mrg/ee/LoginAsCustomerLogging.yml @@ -1,7 +1,7 @@ --- title: Magento_LoginAsCustomerLogging source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/LoginAsCustomerLogging/README.md last_modified_at: '2020-04-29 17:16:43 +0300' content: '' diff --git a/src/_data/codebase/v2_4/mrg/ee/LoginAsCustomerWebsiteRestriction.yml b/src/_data/codebase/v2_4/mrg/ee/LoginAsCustomerWebsiteRestriction.yml index 5800f7ff9a9..61596754073 100644 --- a/src/_data/codebase/v2_4/mrg/ee/LoginAsCustomerWebsiteRestriction.yml +++ b/src/_data/codebase/v2_4/mrg/ee/LoginAsCustomerWebsiteRestriction.yml @@ -1,7 +1,7 @@ --- title: Magento_LoginAsCustomerWebsiteRestriction source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/LoginAsCustomerWebsiteRestriction/README.md last_modified_at: '2020-04-30 16:13:52 +0300' content: '' diff --git a/src/_data/codebase/v2_4/mrg/ee/MediaContentCatalogStaging.yml b/src/_data/codebase/v2_4/mrg/ee/MediaContentCatalogStaging.yml index 7dee92b4858..e8b6e3f4b3f 100644 --- a/src/_data/codebase/v2_4/mrg/ee/MediaContentCatalogStaging.yml +++ b/src/_data/codebase/v2_4/mrg/ee/MediaContentCatalogStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_MediaContentCatalogStaging source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/MediaContentCatalogStaging/README.md last_modified_at: '2020-04-29 00:24:11 -0500' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/MsrpStaging.yml b/src/_data/codebase/v2_4/mrg/ee/MsrpStaging.yml index b64c4da079b..2f9dd44dcf3 100644 --- a/src/_data/codebase/v2_4/mrg/ee/MsrpStaging.yml +++ b/src/_data/codebase/v2_4/mrg/ee/MsrpStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_MsrpStaging source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/MsrpStaging/README.md last_modified_at: '2016-07-06 16:58:52 +0300' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ee/MultipleWishlist.yml b/src/_data/codebase/v2_4/mrg/ee/MultipleWishlist.yml index 404d17d23df..6e2c7128494 100644 --- a/src/_data/codebase/v2_4/mrg/ee/MultipleWishlist.yml +++ b/src/_data/codebase/v2_4/mrg/ee/MultipleWishlist.yml @@ -1,7 +1,7 @@ --- title: Magento_MultipleWishlist source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/MultipleWishlist/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/PaymentStaging.yml b/src/_data/codebase/v2_4/mrg/ee/PaymentStaging.yml index 010ff63abbb..e0e72ef72d9 100644 --- a/src/_data/codebase/v2_4/mrg/ee/PaymentStaging.yml +++ b/src/_data/codebase/v2_4/mrg/ee/PaymentStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_PaymentStaging source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/PaymentStaging/README.md last_modified_at: '2016-07-04 12:55:14 +0000' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/PersistentHistory.yml b/src/_data/codebase/v2_4/mrg/ee/PersistentHistory.yml index 8c84e9185d7..875ce024090 100644 --- a/src/_data/codebase/v2_4/mrg/ee/PersistentHistory.yml +++ b/src/_data/codebase/v2_4/mrg/ee/PersistentHistory.yml @@ -1,7 +1,7 @@ --- title: Magento_PersistentHistory source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/PersistentHistory/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ee/PricePermissions.yml b/src/_data/codebase/v2_4/mrg/ee/PricePermissions.yml index 955082c1d35..f2ff2d0f35d 100644 --- a/src/_data/codebase/v2_4/mrg/ee/PricePermissions.yml +++ b/src/_data/codebase/v2_4/mrg/ee/PricePermissions.yml @@ -1,10 +1,10 @@ --- title: Magento_PricePermissions source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/PricePermissions/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: 'Magento_PricePermissions module allows to restrict such admin rights as changing or reading product price, changing product status. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ee/ProductVideoStaging.yml b/src/_data/codebase/v2_4/mrg/ee/ProductVideoStaging.yml index f4ca8878da3..1645fbd497c 100644 --- a/src/_data/codebase/v2_4/mrg/ee/ProductVideoStaging.yml +++ b/src/_data/codebase/v2_4/mrg/ee/ProductVideoStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_ProductVideoStaging source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/ProductVideoStaging/README.md last_modified_at: '2016-07-04 18:13:15 +0300' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ee/PromotionPermissions.yml b/src/_data/codebase/v2_4/mrg/ee/PromotionPermissions.yml index 07fe8839d92..d9817c035a1 100644 --- a/src/_data/codebase/v2_4/mrg/ee/PromotionPermissions.yml +++ b/src/_data/codebase/v2_4/mrg/ee/PromotionPermissions.yml @@ -1,7 +1,7 @@ --- title: Magento_PromotionPermissions source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/PromotionPermissions/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ee/QuoteGiftCardOptions.yml b/src/_data/codebase/v2_4/mrg/ee/QuoteGiftCardOptions.yml new file mode 100644 index 00000000000..fb1b4af4969 --- /dev/null +++ b/src/_data/codebase/v2_4/mrg/ee/QuoteGiftCardOptions.yml @@ -0,0 +1,8 @@ +--- +title: Magento_QuoteGiftCardOptions +source_repo: magento2ee +release: 2.4.1 +github_path: app/code/Magento/QuoteGiftCardOptions/README.md +last_modified_at: '2020-08-10 17:53:55 +0300' +content: "**QuoteGiftCardOptions** defines the data provider that creates buy requests + for gift card products.\n" diff --git a/src/_data/codebase/v2_4/mrg/ee/Reminder.yml b/src/_data/codebase/v2_4/mrg/ee/Reminder.yml index bf2f9573eae..af4b1f2d237 100644 --- a/src/_data/codebase/v2_4/mrg/ee/Reminder.yml +++ b/src/_data/codebase/v2_4/mrg/ee/Reminder.yml @@ -1,10 +1,10 @@ --- title: Magento_Reminder source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Reminder/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: 'Magento_Reminder module provides functionality for sending reminder emails to customers according to pre-configured rules. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ee/ResourceConnections.yml b/src/_data/codebase/v2_4/mrg/ee/ResourceConnections.yml index 2465cf66e33..9c3e0eec578 100644 --- a/src/_data/codebase/v2_4/mrg/ee/ResourceConnections.yml +++ b/src/_data/codebase/v2_4/mrg/ee/ResourceConnections.yml @@ -1,7 +1,7 @@ --- title: Magento_ResourceConnections source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/ResourceConnections/README.md last_modified_at: '2015-08-25 12:44:48 +0300' content: "Magento\\ResourceConnections module adds a mechanism to segregate database diff --git a/src/_data/codebase/v2_4/mrg/ee/ReviewStaging.yml b/src/_data/codebase/v2_4/mrg/ee/ReviewStaging.yml index 87b7af59231..d71ead6bc0c 100644 --- a/src/_data/codebase/v2_4/mrg/ee/ReviewStaging.yml +++ b/src/_data/codebase/v2_4/mrg/ee/ReviewStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_ReviewStaging source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/ReviewStaging/README.md last_modified_at: '2016-07-04 18:13:15 +0300' content: "## Magento_ReviewStaging module\n\n## Overview\n\nThe Magento_ReviewStaging diff --git a/src/_data/codebase/v2_4/mrg/ee/Reward.yml b/src/_data/codebase/v2_4/mrg/ee/Reward.yml index dab4ead859b..3edaabc2ebb 100644 --- a/src/_data/codebase/v2_4/mrg/ee/Reward.yml +++ b/src/_data/codebase/v2_4/mrg/ee/Reward.yml @@ -1,7 +1,7 @@ --- title: Magento_Reward source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Reward/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ee/RewardGraphQl.yml b/src/_data/codebase/v2_4/mrg/ee/RewardGraphQl.yml index 6550bccaa7a..411123246ed 100644 --- a/src/_data/codebase/v2_4/mrg/ee/RewardGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ee/RewardGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_RewardGraphQl source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/RewardGraphQl/README.md last_modified_at: '2018-01-16 16:07:42 -0600' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/RewardStaging.yml b/src/_data/codebase/v2_4/mrg/ee/RewardStaging.yml index 08f148873f3..f72bf893963 100644 --- a/src/_data/codebase/v2_4/mrg/ee/RewardStaging.yml +++ b/src/_data/codebase/v2_4/mrg/ee/RewardStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_RewardStaging source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/RewardStaging/README.md last_modified_at: '2017-06-02 13:06:13 +0300' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ee/Rma.yml b/src/_data/codebase/v2_4/mrg/ee/Rma.yml index 8805c6aa48f..26c5563aa3a 100644 --- a/src/_data/codebase/v2_4/mrg/ee/Rma.yml +++ b/src/_data/codebase/v2_4/mrg/ee/Rma.yml @@ -1,7 +1,7 @@ --- title: Magento_Rma source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Rma/README.md last_modified_at: '2016-04-08 15:30:29 +0300' content: Rma module is responsible for processing Return Merchandise Approvals. diff --git a/src/_data/codebase/v2_4/mrg/ee/RmaGraphQl.yml b/src/_data/codebase/v2_4/mrg/ee/RmaGraphQl.yml index 5960debaab0..488f09d4125 100644 --- a/src/_data/codebase/v2_4/mrg/ee/RmaGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ee/RmaGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_RmaGraphQl source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/RmaGraphQl/README.md last_modified_at: '2018-01-16 16:07:42 -0600' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/RmaStaging.yml b/src/_data/codebase/v2_4/mrg/ee/RmaStaging.yml index 228adeaabf7..617818b52cc 100644 --- a/src/_data/codebase/v2_4/mrg/ee/RmaStaging.yml +++ b/src/_data/codebase/v2_4/mrg/ee/RmaStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_RmaStaging source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/RmaStaging/README.md last_modified_at: '2016-07-06 16:58:52 +0300' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ee/SalesArchive.yml b/src/_data/codebase/v2_4/mrg/ee/SalesArchive.yml index 0a39b16fb12..0adf496a2f2 100644 --- a/src/_data/codebase/v2_4/mrg/ee/SalesArchive.yml +++ b/src/_data/codebase/v2_4/mrg/ee/SalesArchive.yml @@ -1,7 +1,7 @@ --- title: Magento_SalesArchive source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/SalesArchive/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ee/SalesRuleStaging.yml b/src/_data/codebase/v2_4/mrg/ee/SalesRuleStaging.yml index b48743b3d47..f64d9ca5062 100644 --- a/src/_data/codebase/v2_4/mrg/ee/SalesRuleStaging.yml +++ b/src/_data/codebase/v2_4/mrg/ee/SalesRuleStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_SalesRuleStaging source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/SalesRuleStaging/README.md last_modified_at: '2016-07-13 17:35:04 -0500' content: "

Magento_SalesRuleStaging module

\n\n## Overview\n\nThe Magento_SalesRuleStaging diff --git a/src/_data/codebase/v2_4/mrg/ee/ScalableCheckout.yml b/src/_data/codebase/v2_4/mrg/ee/ScalableCheckout.yml index 66d8161a1a0..377ada5049f 100644 --- a/src/_data/codebase/v2_4/mrg/ee/ScalableCheckout.yml +++ b/src/_data/codebase/v2_4/mrg/ee/ScalableCheckout.yml @@ -1,7 +1,7 @@ --- title: Magento_ScalableCheckout source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/ScalableCheckout/README.md last_modified_at: '2015-02-04 13:08:45 +0200' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ee/ScalableInventory.yml b/src/_data/codebase/v2_4/mrg/ee/ScalableInventory.yml index 7d72996bec6..a05e379b1c1 100644 --- a/src/_data/codebase/v2_4/mrg/ee/ScalableInventory.yml +++ b/src/_data/codebase/v2_4/mrg/ee/ScalableInventory.yml @@ -1,7 +1,7 @@ --- title: Magento_ScalableInventory source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/ScalableInventory/README.md last_modified_at: '2015-09-01 17:12:45 +0300' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/ScalableOms.yml b/src/_data/codebase/v2_4/mrg/ee/ScalableOms.yml index b128fa334f8..f13f6770941 100644 --- a/src/_data/codebase/v2_4/mrg/ee/ScalableOms.yml +++ b/src/_data/codebase/v2_4/mrg/ee/ScalableOms.yml @@ -1,7 +1,7 @@ --- title: Magento_ScalableOms source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/ScalableOms/README.md last_modified_at: '2015-05-15 13:27:50 +0300' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ee/ScheduledImportExport.yml b/src/_data/codebase/v2_4/mrg/ee/ScheduledImportExport.yml index a397aacdcad..b9fc8e3cf8c 100644 --- a/src/_data/codebase/v2_4/mrg/ee/ScheduledImportExport.yml +++ b/src/_data/codebase/v2_4/mrg/ee/ScheduledImportExport.yml @@ -1,7 +1,7 @@ --- title: Magento_ScheduledImportExport source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/ScheduledImportExport/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/SearchStaging.yml b/src/_data/codebase/v2_4/mrg/ee/SearchStaging.yml index ee6301bc57a..034ab0d2c1f 100644 --- a/src/_data/codebase/v2_4/mrg/ee/SearchStaging.yml +++ b/src/_data/codebase/v2_4/mrg/ee/SearchStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_SearchStaging source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/SearchStaging/README.md last_modified_at: '2016-07-04 12:55:14 +0000' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/Staging.yml b/src/_data/codebase/v2_4/mrg/ee/Staging.yml index 7988f47c20c..e82dd8f1e84 100644 --- a/src/_data/codebase/v2_4/mrg/ee/Staging.yml +++ b/src/_data/codebase/v2_4/mrg/ee/Staging.yml @@ -1,7 +1,7 @@ --- title: Magento_Staging source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Staging/README.md last_modified_at: '2016-10-19 18:10:05 +0300' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/StagingGraphQl.yml b/src/_data/codebase/v2_4/mrg/ee/StagingGraphQl.yml index 21ba2853726..8bb92e9fb09 100644 --- a/src/_data/codebase/v2_4/mrg/ee/StagingGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/ee/StagingGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_StagingGraphQl source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/StagingGraphQl/README.md last_modified_at: '2020-01-14 14:07:38 -0600' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/Support.yml b/src/_data/codebase/v2_4/mrg/ee/Support.yml index fb497032d55..8aee761fc78 100644 --- a/src/_data/codebase/v2_4/mrg/ee/Support.yml +++ b/src/_data/codebase/v2_4/mrg/ee/Support.yml @@ -1,10 +1,10 @@ --- title: Magento_Support source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Support/README.md last_modified_at: '2015-07-31 14:51:10 +0300' content: 'Magento_Support module is used for generation of system reports, which provide detailed information about the system environment and Magento instance configuration. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ee/Swat.yml b/src/_data/codebase/v2_4/mrg/ee/Swat.yml new file mode 100644 index 00000000000..b1599bc82ae --- /dev/null +++ b/src/_data/codebase/v2_4/mrg/ee/Swat.yml @@ -0,0 +1,9 @@ +--- +title: Magento_Swat +source_repo: magento2ee +release: 2.4.1 +github_path: app/code/Magento/Swat/README.md +last_modified_at: '2020-07-22 13:02:05 -0500' +content: 'Magento_Swat module provides access to the Site-Wide Analysis Tool + +' diff --git a/src/_data/codebase/v2_4/mrg/ee/TargetRule.yml b/src/_data/codebase/v2_4/mrg/ee/TargetRule.yml index 542d352da91..b4f0642dd78 100644 --- a/src/_data/codebase/v2_4/mrg/ee/TargetRule.yml +++ b/src/_data/codebase/v2_4/mrg/ee/TargetRule.yml @@ -1,10 +1,10 @@ --- title: Magento_TargetRule source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/TargetRule/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: 'Magento_TargetRule module allows to configure the rules for showing related products. - ' +' diff --git a/src/_data/codebase/v2_4/mrg/ee/TargetRuleGraphQl.yml b/src/_data/codebase/v2_4/mrg/ee/TargetRuleGraphQl.yml new file mode 100644 index 00000000000..8c2b6b501ba --- /dev/null +++ b/src/_data/codebase/v2_4/mrg/ee/TargetRuleGraphQl.yml @@ -0,0 +1,8 @@ +--- +title: Magento_TargetRuleGraphQl +source_repo: magento2ee +release: 2.4.1 +github_path: app/code/Magento/TargetRuleGraphQl/README.md +last_modified_at: '2020-06-25 18:20:29 +0200' +content: "#Magento_TargetRuleGraphQl \n\nMagento_TargetRuleGraphQl module provides + the rules for showing related products.\n" diff --git a/src/_data/codebase/v2_4/mrg/ee/Tinymce3Banner.yml b/src/_data/codebase/v2_4/mrg/ee/Tinymce3Banner.yml index c0b302622ee..49566ce11f5 100644 --- a/src/_data/codebase/v2_4/mrg/ee/Tinymce3Banner.yml +++ b/src/_data/codebase/v2_4/mrg/ee/Tinymce3Banner.yml @@ -1,7 +1,7 @@ --- title: Magento_Tinymce3Banner source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/Tinymce3Banner/README.md last_modified_at: '2018-05-14 12:30:39 -0500' content: Tinymce3Banner module allows to update banner widget images on Wysiwyg. We diff --git a/src/_data/codebase/v2_4/mrg/ee/VersionsCms.yml b/src/_data/codebase/v2_4/mrg/ee/VersionsCms.yml index 6a12db11dbc..a4b8cf2a493 100644 --- a/src/_data/codebase/v2_4/mrg/ee/VersionsCms.yml +++ b/src/_data/codebase/v2_4/mrg/ee/VersionsCms.yml @@ -1,7 +1,7 @@ --- title: Magento_VersionsCms source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/VersionsCms/README.md last_modified_at: '2017-04-14 11:20:03 -0500' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/VersionsCmsUrlRewrite.yml b/src/_data/codebase/v2_4/mrg/ee/VersionsCmsUrlRewrite.yml index 062ba3ad019..d286d4aafd9 100644 --- a/src/_data/codebase/v2_4/mrg/ee/VersionsCmsUrlRewrite.yml +++ b/src/_data/codebase/v2_4/mrg/ee/VersionsCmsUrlRewrite.yml @@ -1,7 +1,7 @@ --- title: Magento_VersionsCmsUrlRewrite source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/VersionsCmsUrlRewrite/README.md last_modified_at: '2020-01-22 14:53:01 +0200' content: "The Versions CMS Url Rewrite Module ties up the Store Switcher program with diff --git a/src/_data/codebase/v2_4/mrg/ee/VisualMerchandiser.yml b/src/_data/codebase/v2_4/mrg/ee/VisualMerchandiser.yml index 126aa51fccf..81888ee2446 100644 --- a/src/_data/codebase/v2_4/mrg/ee/VisualMerchandiser.yml +++ b/src/_data/codebase/v2_4/mrg/ee/VisualMerchandiser.yml @@ -1,7 +1,7 @@ --- title: Magento_VisualMerchandiser source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/VisualMerchandiser/README.md last_modified_at: '2015-06-03 11:17:57 +0000' content: |- diff --git a/src/_data/codebase/v2_4/mrg/ee/WebsiteRestriction.yml b/src/_data/codebase/v2_4/mrg/ee/WebsiteRestriction.yml index fa2a96560f4..f4e3e132b9a 100644 --- a/src/_data/codebase/v2_4/mrg/ee/WebsiteRestriction.yml +++ b/src/_data/codebase/v2_4/mrg/ee/WebsiteRestriction.yml @@ -1,7 +1,7 @@ --- title: Magento_WebsiteRestriction source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/WebsiteRestriction/README.md last_modified_at: '2014-12-17 18:31:49 +0000' content: | diff --git a/src/_data/codebase/v2_4/mrg/ee/WeeeStaging.yml b/src/_data/codebase/v2_4/mrg/ee/WeeeStaging.yml index 09913b6b35c..5107e982859 100644 --- a/src/_data/codebase/v2_4/mrg/ee/WeeeStaging.yml +++ b/src/_data/codebase/v2_4/mrg/ee/WeeeStaging.yml @@ -1,7 +1,7 @@ --- title: Magento_WeeeStaging source_repo: magento2ee -release: 2.4.0 +release: 2.4.1 github_path: app/code/Magento/WeeeStaging/README.md last_modified_at: '2016-07-06 16:58:52 +0300' content: |- diff --git a/src/_data/codebase/v2_4/mrg/msi/Inventory.yml b/src/_data/codebase/v2_4/mrg/msi/Inventory.yml index 60b6d0cb515..021f0280711 100644 --- a/src/_data/codebase/v2_4/mrg/msi/Inventory.yml +++ b/src/_data/codebase/v2_4/mrg/msi/Inventory.yml @@ -1,7 +1,7 @@ --- title: Magento_Inventory source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: Inventory/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `Inventory` module is part of the new inventory infrastructure,\nwhich diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryAdminUi.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryAdminUi.yml index 0043e5979c3..f058bd34689 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryAdminUi.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryAdminUi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryAdminUi source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryAdminUi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: | diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryAdvancedCheckout.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryAdvancedCheckout.yml index 971c3e4f7d5..52cf1a1af82 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryAdvancedCheckout.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryAdvancedCheckout.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryAdvancedCheckout source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryAdvancedCheckout/README.md last_modified_at: '2019-08-02 00:04:37 -0500' content: |- diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryApi.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryApi.yml index 2e00082e089..142ab696098 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryApi.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryApi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryApi source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryApi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventoryApi` module provides Inventory Management service contracts. diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryBundleImportExport.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryBundleImportExport.yml index 20eb99ca883..315db9f6834 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryBundleImportExport.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryBundleImportExport.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryBundleImportExport source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryBundleImportExport/README.md last_modified_at: '2020-03-13 09:52:30 +0200' content: | diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryBundleProduct.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryBundleProduct.yml index b3f28503553..02dadc72914 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryBundleProduct.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryBundleProduct.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryBundleProduct source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryBundleProduct/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: | diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryBundleProductAdminUi.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryBundleProductAdminUi.yml index 651beffc3f2..71bdcae276f 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryBundleProductAdminUi.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryBundleProductAdminUi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryBundleProductAdminUi source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryBundleProductAdminUi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventoryBundleProductAdminUi`extends the Magento Admin UI to add MSI diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryBundleProductIndexer.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryBundleProductIndexer.yml index 783394e3d3e..e74620a8243 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryBundleProductIndexer.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryBundleProductIndexer.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryBundleProductIndexer source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryBundleProductIndexer/README.md last_modified_at: '2020-02-07 11:00:07 +0200' content: | diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryCache.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryCache.yml index b9f62607dc2..462bdd0404e 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryCache.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryCache.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryCache source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryCache/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: | diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryCatalog.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryCatalog.yml index d31d4cf2707..3c5ac645018 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryCatalog.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryCatalog.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryCatalog source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryCatalog/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventoryCatalog` module integrates inventory management business logic diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryCatalogAdminUi.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryCatalogAdminUi.yml index 41d450983ef..cf9826fc38b 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryCatalogAdminUi.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryCatalogAdminUi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryCatalogAdminUi source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryCatalogAdminUi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: | diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryCatalogApi.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryCatalogApi.yml index c538447819b..14f809831e2 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryCatalogApi.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryCatalogApi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryCatalogApi source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryCatalogApi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventoryCatalogApi` module provides service contracts for default diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryCatalogSearch.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryCatalogSearch.yml index d8800ce6bdd..db3fa97bf30 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryCatalogSearch.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryCatalogSearch.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryCatalogSearch source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryCatalogSearch/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: | diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryConfigurableProduct.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryConfigurableProduct.yml index 4ab947b6ae8..3005f8038d6 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryConfigurableProduct.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryConfigurableProduct.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryConfigurableProduct source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryConfigurableProduct/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: | diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryConfigurableProductAdminUi.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryConfigurableProductAdminUi.yml index 8b043fe8900..9b6f70e408c 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryConfigurableProductAdminUi.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryConfigurableProductAdminUi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryConfigurableProductAdminUi source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryConfigurableProductAdminUi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventoryConfigurableProductAdminUi`extends the Magento Admin UI to diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryConfigurableProductIndexer.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryConfigurableProductIndexer.yml index 2ba9b6a6b4f..568ce70618a 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryConfigurableProductIndexer.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryConfigurableProductIndexer.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryConfigurableProductIndexer source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryConfigurableProductIndexer/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: | diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryConfiguration.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryConfiguration.yml index dec3f4c42e1..1ab5e07b14d 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryConfiguration.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryConfiguration.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryConfiguration source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryConfiguration/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventoryConfiguration` module implements logic for inventory management diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryConfigurationApi.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryConfigurationApi.yml index 87ad6d1833c..a365005706a 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryConfigurationApi.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryConfigurationApi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryConfigurationApi source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryConfigurationApi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: | diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryDistanceBasedSourceSelection.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryDistanceBasedSourceSelection.yml index da56d3b9fe8..e258aa3809f 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryDistanceBasedSourceSelection.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryDistanceBasedSourceSelection.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryDistanceBasedSourceSelection source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryDistanceBasedSourceSelection/README.md last_modified_at: '2018-12-28 10:54:19 +0100' content: "The `InventoryDistanceBasedSourceSelection` module implements logic for diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryDistanceBasedSourceSelectionAdminUi.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryDistanceBasedSourceSelectionAdminUi.yml index bac31d5b68b..f638563a8f3 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryDistanceBasedSourceSelectionAdminUi.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryDistanceBasedSourceSelectionAdminUi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryDistanceBasedSourceSelectionAdminUi source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryDistanceBasedSourceSelectionAdminUi/README.md last_modified_at: '2018-12-28 10:54:19 +0100' content: | diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryDistanceBasedSourceSelectionApi.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryDistanceBasedSourceSelectionApi.yml index 0324d06a8c4..1693a0be333 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryDistanceBasedSourceSelectionApi.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryDistanceBasedSourceSelectionApi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryDistanceBasedSourceSelectionApi source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryDistanceBasedSourceSelectionApi/README.md last_modified_at: '2018-12-28 10:54:19 +0100' content: "The `InventoryDistanceBasedSourceSelectionApi` module provides service contracts diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryElasticsearch.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryElasticsearch.yml index 4cd934ba4f4..4e306c900cc 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryElasticsearch.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryElasticsearch.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryElasticsearch source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryElasticsearch/README.md last_modified_at: '2018-12-21 16:08:11 +0200' content: | diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryExportStock.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryExportStock.yml index b7ada8c74e9..1de475ff194 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryExportStock.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryExportStock.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryExportStock source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryExportStock/README.md last_modified_at: '2019-04-23 22:46:43 +0300' content: | diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryExportStockApi.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryExportStockApi.yml index cbed588e1d1..c0081e3f4b7 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryExportStockApi.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryExportStockApi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryExportStockApi source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryExportStockApi/README.md last_modified_at: '2019-04-23 22:46:43 +0300' content: | diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryGraphQl.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryGraphQl.yml index 9e95bb4788d..76b78e42811 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryGraphQl source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryGraphQl/README.md last_modified_at: '2019-03-30 16:15:21 +0100' content: | diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryGroupedProduct.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryGroupedProduct.yml index 571918664c8..984044b5312 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryGroupedProduct.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryGroupedProduct.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryGroupedProduct source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryGroupedProduct/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventoryGroupedProduct` module integrates inventory management business diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryGroupedProductAdminUi.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryGroupedProductAdminUi.yml index be56e2f3a96..d4005f2e7a9 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryGroupedProductAdminUi.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryGroupedProductAdminUi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryGroupedProductAdminUi source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryGroupedProductAdminUi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: | diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryGroupedProductIndexer.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryGroupedProductIndexer.yml index d622f53c692..6d274486121 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryGroupedProductIndexer.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryGroupedProductIndexer.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryGroupedProductIndexer source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryGroupedProductIndexer/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: | diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryImportExport.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryImportExport.yml index 70963c1022a..fe02636e9cc 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryImportExport.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryImportExport.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryImportExport source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryImportExport/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventoryImportExport` module provides compatibility between Magento's diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickup.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickup.yml index 96afb29880c..08a322b5886 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickup.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickup.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryInStorePickup source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryInStorePickup/README.md last_modified_at: '2019-03-13 12:13:26 -0500' content: "The `InventoryInStorePickup` module provides business logic for In-Store diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupAdminUi.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupAdminUi.yml index 414484afb28..0c27462b3c1 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupAdminUi.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupAdminUi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryInStorePickupAdminUi source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryInStorePickupAdminUi/README.md last_modified_at: '2019-05-19 23:51:00 +0300' content: | diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupApi.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupApi.yml index ed545dbe77d..1d633dca59f 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupApi.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupApi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryInStorePickupApi source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryInStorePickupApi/README.md last_modified_at: '2019-02-11 13:03:35 +1030' content: | diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupFrontend.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupFrontend.yml index 09b7fc1cc2d..8d882cbe011 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupFrontend.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupFrontend.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryInStorePickupFrontend source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryInStorePickupFrontend/README.md last_modified_at: '2019-07-22 08:53:12 +0200' content: "The `InventoryInStorePickup` module provides business logic for In-Store diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupGraphQl.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupGraphQl.yml index 44ef0b8ec77..16647cc08e0 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryInStorePickupGraphQl source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryInStorePickupGraphQl/README.md last_modified_at: '2019-08-23 14:20:40 +0300' content: |- diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupMultishipping.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupMultishipping.yml index d3754d1d1bc..d43183d0d04 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupMultishipping.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupMultishipping.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryInStorePickupMultishipping source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryInStorePickupMultishipping/README.md last_modified_at: '2019-09-12 15:55:31 +0300' content: | diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupQuote.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupQuote.yml index 396ff20c308..38a6c890eaa 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupQuote.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupQuote.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryInStorePickupQuote source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryInStorePickupQuote/README.md last_modified_at: '2019-06-03 14:53:32 +0300' content: "The `InventoryInStorePickupQuote` module provides business logic for In-Store diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupQuoteGraphQl.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupQuoteGraphQl.yml index 610a8513f1f..4276d0c82d4 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupQuoteGraphQl.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupQuoteGraphQl.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryInStorePickupQuoteGraphQl source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryInStorePickupQuoteGraphQl/README.md last_modified_at: '2019-07-27 10:54:07 +0300' content: |- diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupSales.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupSales.yml index 0c2345914e3..64f4467d650 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupSales.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupSales.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryInStorePickupSales source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryInStorePickupSales/README.md last_modified_at: '2019-10-11 19:11:49 +0300' content: "The `InventoryInStorePickupSales` module provides business logic for In-Store diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupSalesAdminUi.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupSalesAdminUi.yml index f2a1ca01999..3db92c9ad17 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupSalesAdminUi.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupSalesAdminUi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryInStorePickupSalesAdminUi source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryInStorePickupSalesAdminUi/README.md last_modified_at: '2019-11-15 17:17:28 +0200' content: | diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupSalesApi.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupSalesApi.yml index 3ec41eaa667..4a2670f613e 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupSalesApi.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupSalesApi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryInStorePickupSalesApi source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryInStorePickupSalesApi/README.md last_modified_at: '2019-11-15 17:17:28 +0200' content: |+ @@ -21,4 +21,3 @@ content: |+ The `InventoryInStorePickupSalesApi` module contains extension points and APIs that 3rd-party developers can use to provide customization of In-Store Pickup functionality -... diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupShipping.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupShipping.yml index 78001fb0a41..ace4462f040 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupShipping.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupShipping.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryInStorePickupShipping source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryInStorePickupShipping/README.md last_modified_at: '2019-06-09 12:06:59 +0300' content: "The `InventoryInStorePickupShipping` module provides business logic for diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupShippingAdminUi.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupShippingAdminUi.yml index 50492557db9..c2c92c31bca 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupShippingAdminUi.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupShippingAdminUi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryInStorePickupShippingAdminUi source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryInStorePickupShippingAdminUi/README.md last_modified_at: '2019-05-29 21:29:50 +0300' content: |- diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupShippingApi.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupShippingApi.yml index 2a59538ba61..c453236e7f0 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupShippingApi.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupShippingApi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryInStorePickupShippingApi source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryInStorePickupShippingApi/README.md last_modified_at: '2019-05-29 21:29:50 +0300' content: | diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupWebapiExtension.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupWebapiExtension.yml index db67adcc0b6..e97b1893907 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupWebapiExtension.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryInStorePickupWebapiExtension.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryInStorePickupWebapiExtension source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryInStorePickupWebapiExtension/README.md last_modified_at: '2019-09-17 09:16:51 +0300' content: "The `InventoryInStorePickupWebapiExtension` is a part of `InStorePickup` diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryIndexer.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryIndexer.yml index 12dbdaebd9d..e6f4d8aac50 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryIndexer.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryIndexer.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryIndexer source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryIndexer/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: | diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryLowQuantityNotification.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryLowQuantityNotification.yml index df4e2ae7c68..c3207630187 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryLowQuantityNotification.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryLowQuantityNotification.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryLowQuantityNotification source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryLowQuantityNotification/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventoryLowQuantityNotification` module integrates Inventory Management diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryLowQuantityNotificationAdminUi.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryLowQuantityNotificationAdminUi.yml index 100736cba14..90fa39c0caa 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryLowQuantityNotificationAdminUi.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryLowQuantityNotificationAdminUi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryLowQuantityNotificationAdminUi source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryLowQuantityNotificationAdminUi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: | diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryLowQuantityNotificationApi.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryLowQuantityNotificationApi.yml index 93aa31f49a0..515c85819a9 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryLowQuantityNotificationApi.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryLowQuantityNotificationApi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryLowQuantityNotificationApi source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryLowQuantityNotificationApi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventoryLowQuantityNotificationApi` module provides service contracts diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryMultiDimensionalIndexerApi.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryMultiDimensionalIndexerApi.yml index 3621fd922b7..99c216bdc7f 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryMultiDimensionalIndexerApi.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryMultiDimensionalIndexerApi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryMultiDimensionalIndexerApi source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryMultiDimensionalIndexerApi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventoryMultiDimensionalIndexerApi` module provides functionality diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryProductAlert.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryProductAlert.yml index 1f78c184f54..46a85759e40 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryProductAlert.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryProductAlert.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryProductAlert source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryProductAlert/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: |+ @@ -19,4 +19,3 @@ content: |+ There are no extension points or service contracts for this module. -... diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryRequisitionList.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryRequisitionList.yml index 4edd70f2a67..ee0fd6f7404 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryRequisitionList.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryRequisitionList.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryRequisitionList source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryRequisitionList/README.md last_modified_at: '2019-08-02 00:04:37 -0500' content: The Magento_InventoryRequisitionList allows the customer to use the new inventory diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryReservationCli.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryReservationCli.yml index bac3b885089..90f8b11f9d8 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryReservationCli.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryReservationCli.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryReservationCli source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryReservationCli/README.md last_modified_at: '2019-04-10 12:11:17 +0200' content: | diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryReservations.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryReservations.yml index adeee36c625..9c0615f8331 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryReservations.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryReservations.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryReservations source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryReservations/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventoryReservations` module provides logic for handling product reservations.\n\nThis diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryReservationsApi.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryReservationsApi.yml index 7a419bc0697..abd05192cc7 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryReservationsApi.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryReservationsApi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryReservationsApi source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryReservationsApi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: | diff --git a/src/_data/codebase/v2_4/mrg/msi/InventorySales.yml b/src/_data/codebase/v2_4/mrg/msi/InventorySales.yml index a5b5df3c63c..ea4f7c9b8cf 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventorySales.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventorySales.yml @@ -1,7 +1,7 @@ --- title: Magento_InventorySales source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventorySales/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventorySales` module integrates Inventory Management business logic diff --git a/src/_data/codebase/v2_4/mrg/msi/InventorySalesAdminUi.yml b/src/_data/codebase/v2_4/mrg/msi/InventorySalesAdminUi.yml index a58953efd74..4b7194b40e7 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventorySalesAdminUi.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventorySalesAdminUi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventorySalesAdminUi source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventorySalesAdminUi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventorySalesAdminUi` module extends Magento's Admin UI with Inventory diff --git a/src/_data/codebase/v2_4/mrg/msi/InventorySalesApi.yml b/src/_data/codebase/v2_4/mrg/msi/InventorySalesApi.yml index 18bb00c7c55..2ca29b8b899 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventorySalesApi.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventorySalesApi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventorySalesApi source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventorySalesApi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventorySalesApi` module provides service contracts for inventory diff --git a/src/_data/codebase/v2_4/mrg/msi/InventorySalesFrontendUi.yml b/src/_data/codebase/v2_4/mrg/msi/InventorySalesFrontendUi.yml index 1fc17e3003f..b1d67b77806 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventorySalesFrontendUi.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventorySalesFrontendUi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventorySalesFrontendUi source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventorySalesFrontendUi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventorySalesFrontendUi` module extends Magento's frontend UI with diff --git a/src/_data/codebase/v2_4/mrg/msi/InventorySetupFixtureGenerator.yml b/src/_data/codebase/v2_4/mrg/msi/InventorySetupFixtureGenerator.yml index 1fe86a5e3d1..881556b7a04 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventorySetupFixtureGenerator.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventorySetupFixtureGenerator.yml @@ -1,7 +1,7 @@ --- title: Magento_InventorySetupFixtureGenerator source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventorySetupFixtureGenerator/README.md last_modified_at: '2018-12-24 14:41:45 +0200' content: "The `InventorySetupFixtureGenerator` module customizes the process of Inventory diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryShipping.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryShipping.yml index e6d71f327cd..7ec41088cfa 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryShipping.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryShipping.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryShipping source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryShipping/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventoryShipping` module integrates MSI business logic into Magento's diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryShippingAdminUi.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryShippingAdminUi.yml index 7ea33401bf3..eddde61b5f2 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventoryShippingAdminUi.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryShippingAdminUi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventoryShippingAdminUi source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventoryShippingAdminUi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: | diff --git a/src/_data/codebase/v2_4/mrg/msi/InventorySourceDeductionApi.yml b/src/_data/codebase/v2_4/mrg/msi/InventorySourceDeductionApi.yml index 80efe512105..21ac56ad7ec 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventorySourceDeductionApi.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventorySourceDeductionApi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventorySourceDeductionApi source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventorySourceDeductionApi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventorySourceDeductionApi` module provides service contracts for diff --git a/src/_data/codebase/v2_4/mrg/msi/InventorySourceSelection.yml b/src/_data/codebase/v2_4/mrg/msi/InventorySourceSelection.yml index 19b6851c241..88b3226113e 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventorySourceSelection.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventorySourceSelection.yml @@ -1,7 +1,7 @@ --- title: Magento_InventorySourceSelection source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventorySourceSelection/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: "The `InventorySourceSelection` module provides source selection logic for diff --git a/src/_data/codebase/v2_4/mrg/msi/InventorySourceSelectionApi.yml b/src/_data/codebase/v2_4/mrg/msi/InventorySourceSelectionApi.yml index b779ca39fd8..12cc5c0b801 100644 --- a/src/_data/codebase/v2_4/mrg/msi/InventorySourceSelectionApi.yml +++ b/src/_data/codebase/v2_4/mrg/msi/InventorySourceSelectionApi.yml @@ -1,7 +1,7 @@ --- title: Magento_InventorySourceSelectionApi source_repo: inventory -release: 1.2.0 +release: 1.2.1 github_path: InventorySourceSelectionApi/README.md last_modified_at: '2018-11-09 00:12:40 +0200' content: | diff --git a/src/_data/codebase/v2_4/mrg/msi/InventoryVisualMerchandiser.yml b/src/_data/codebase/v2_4/mrg/msi/InventoryVisualMerchandiser.yml new file mode 100644 index 00000000000..97250bf062d --- /dev/null +++ b/src/_data/codebase/v2_4/mrg/msi/InventoryVisualMerchandiser.yml @@ -0,0 +1,10 @@ +--- +title: Magento_InventoryVisualMerchandiser +source_repo: inventory +release: 1.2.1 +github_path: InventoryVisualMerchandiser/README.md +last_modified_at: '2020-07-27 17:15:03 +0300' +content: 'The Magento_InventoryVisualMerchandiser module adds multi-sourcing capabilities + to the VisualMerchandiser module + +' diff --git a/src/_data/toc/module-reference-guide-2_4.yml b/src/_data/toc/module-reference-guide-2_4.yml index 55c0f2bb36b..95c7d436073 100644 --- a/src/_data/toc/module-reference-guide-2_4.yml +++ b/src/_data/toc/module-reference-guide-2_4.yml @@ -3,7 +3,7 @@ pages: - label: Introduction url: /mrg/intro.html - - label: Open Source (v2.4.0) + - label: Open Source (v2.4.1) include_versions: ["2.4"] children: @@ -211,6 +211,9 @@ pages: - label: GiftMessage url: /mrg/ce/GiftMessage.html + - label: GiftMessageGraphQl + url: /mrg/ce/GiftMessageGraphQl.html + - label: GoogleAdwords url: /mrg/ce/GoogleAdwords.html @@ -259,6 +262,9 @@ pages: - label: LoginAsCustomerApi url: /mrg/ce/LoginAsCustomerApi.html + - label: LoginAsCustomerAssistance + url: /mrg/ce/LoginAsCustomerAssistance.html + - label: LoginAsCustomerFrontendUi url: /mrg/ce/LoginAsCustomerFrontendUi.html @@ -289,6 +295,18 @@ pages: - label: MediaContentCms url: /mrg/ce/MediaContentCms.html + - label: MediaContentSynchronization + url: /mrg/ce/MediaContentSynchronization.html + + - label: MediaContentSynchronizationApi + url: /mrg/ce/MediaContentSynchronizationApi.html + + - label: MediaContentSynchronizationCatalog + url: /mrg/ce/MediaContentSynchronizationCatalog.html + + - label: MediaContentSynchronizationCms + url: /mrg/ce/MediaContentSynchronizationCms.html + - label: MediaGallery url: /mrg/ce/MediaGallery.html @@ -298,6 +316,39 @@ pages: - label: MediaGalleryCatalog url: /mrg/ce/MediaGalleryCatalog.html + - label: MediaGalleryCatalogIntegration + url: /mrg/ce/MediaGalleryCatalogIntegration.html + + - label: MediaGalleryCatalogUi + url: /mrg/ce/MediaGalleryCatalogUi.html + + - label: MediaGalleryCmsUi + url: /mrg/ce/MediaGalleryCmsUi.html + + - label: MediaGalleryIntegration + url: /mrg/ce/MediaGalleryIntegration.html + + - label: MediaGalleryMetadata + url: /mrg/ce/MediaGalleryMetadata.html + + - label: MediaGalleryMetadataApi + url: /mrg/ce/MediaGalleryMetadataApi.html + + - label: MediaGallerySynchronization + url: /mrg/ce/MediaGallerySynchronization.html + + - label: MediaGallerySynchronizationApi + url: /mrg/ce/MediaGallerySynchronizationApi.html + + - label: MediaGallerySynchronizationMetadata + url: /mrg/ce/MediaGallerySynchronizationMetadata.html + + - label: MediaGalleryUi + url: /mrg/ce/MediaGalleryUi.html + + - label: MediaGalleryUiApi + url: /mrg/ce/MediaGalleryUiApi.html + - label: MediaStorage url: /mrg/ce/MediaStorage.html @@ -322,6 +373,9 @@ pages: - label: Newsletter url: /mrg/ce/Newsletter.html + - label: NewsletterGraphQl + url: /mrg/ce/NewsletterGraphQl.html + - label: OfflinePayments url: /mrg/ce/OfflinePayments.html @@ -358,6 +412,15 @@ pages: - label: QuoteAnalytics url: /mrg/ce/QuoteAnalytics.html + - label: QuoteBundleOptions + url: /mrg/ce/QuoteBundleOptions.html + + - label: QuoteConfigurableOptions + url: /mrg/ce/QuoteConfigurableOptions.html + + - label: QuoteDownloadableLinks + url: /mrg/ce/QuoteDownloadableLinks.html + - label: QuoteGraphQl url: /mrg/ce/QuoteGraphQl.html @@ -379,6 +442,9 @@ pages: - label: ReviewAnalytics url: /mrg/ce/ReviewAnalytics.html + - label: ReviewGraphQl + url: /mrg/ce/ReviewGraphQl.html + - label: Robots url: /mrg/ce/Robots.html @@ -527,13 +593,16 @@ pages: url: /mrg/ce/WishlistGraphQl.html - - label: Commerce (v2.4.0) + - label: Commerce (v2.4.1) include_versions: ["2.4"] children: - label: AdminGws url: /mrg/ee/AdminGws.html + - label: AdminGwsConfigurableProduct + url: /mrg/ee/AdminGwsConfigurableProduct.html + - label: AdminGwsStaging url: /mrg/ee/AdminGwsStaging.html @@ -573,6 +642,9 @@ pages: - label: CatalogPermissions url: /mrg/ee/CatalogPermissions.html + - label: CatalogPermissionsGraphQl + url: /mrg/ee/CatalogPermissionsGraphQl.html + - label: CatalogRuleStaging url: /mrg/ee/CatalogRuleStaging.html @@ -654,6 +726,9 @@ pages: - label: GiftWrapping url: /mrg/ee/GiftWrapping.html + - label: GiftWrappingGraphQl + url: /mrg/ee/GiftWrappingGraphQl.html + - label: GiftWrappingStaging url: /mrg/ee/GiftWrappingStaging.html @@ -705,6 +780,9 @@ pages: - label: PromotionPermissions url: /mrg/ee/PromotionPermissions.html + - label: QuoteGiftCardOptions + url: /mrg/ee/QuoteGiftCardOptions.html + - label: Reminder url: /mrg/ee/Reminder.html @@ -762,9 +840,15 @@ pages: - label: Support url: /mrg/ee/Support.html + - label: Swat + url: /mrg/ee/Swat.html + - label: TargetRule url: /mrg/ee/TargetRule.html + - label: TargetRuleGraphQl + url: /mrg/ee/TargetRuleGraphQl.html + - label: Tinymce3Banner url: /mrg/ee/Tinymce3Banner.html @@ -784,7 +868,7 @@ pages: url: /mrg/ee/WeeeStaging.html - - label: B2B (v1.2.0) + - label: B2B (v1.3.0) include_versions: ["2.4"] children: @@ -815,6 +899,9 @@ pages: - label: CompanyPayment url: /mrg/b2b/CompanyPayment.html + - label: CompanyShipping + url: /mrg/b2b/CompanyShipping.html + - label: ConfigurableNegotiableQuote url: /mrg/b2b/ConfigurableNegotiableQuote.html @@ -867,7 +954,7 @@ pages: url: /mrg/b2b/SharedCatalog.html - - label: Inventory Management (v1.2.0) + - label: Inventory Management (v1.2.1) include_versions: ["2.4"] children: @@ -1063,4 +1150,7 @@ pages: - label: InventorySourceSelectionApi url: /mrg/msi/InventorySourceSelectionApi.html + - label: InventoryVisualMerchandiser + url: /mrg/msi/InventoryVisualMerchandiser.html + From c05276027e3691ebec6e8cd7bb1849ac5df738a5 Mon Sep 17 00:00:00 2001 From: Jeff Matthews Date: Thu, 15 Oct 2020 12:18:07 -0500 Subject: [PATCH 013/143] Update availability page for Q4 2020 release (#8056) * Update availability.md * Update availability.md --- src/release/availability.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/release/availability.md b/src/release/availability.md index 07acab596bd..9a5485d407a 100644 --- a/src/release/availability.md +++ b/src/release/availability.md @@ -7,8 +7,7 @@ The following table describes the status of Magento software availability and wh | Product | Availability | How to get it | |---------------------------------------------------|-----------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| **{{site.data.var.ee}} 2.4.0** | Available now | [Composer]({{ site.baseurl }}/guides/v2.3/install-gde/composer.html) | -| **{{site.data.var.ee}} 2.3.5-p2** (security only) | Available now | [Composer]({{ site.baseurl }}/guides/v2.3/install-gde/composer.html) | +| **{{site.data.var.ee}} 2.4.1/2.4.0-p1/2.3.6** | Available now | [Composer]({{ site.baseurl }}/guides/v2.4/install-gde/composer.html) | | **{{site.data.var.ece}} Tools (aka ECE-Tools)** | Available now | [Composer]({{ site.baseurl }}/cloud/project/ece-tools-update.html) | | **Product Recommendations** | Available now | [Magento Marketplace](https://marketplace.magento.com/magento-product-recommendations.html) \| [Developer Documentation](https://devdocs.magento.com/recommendations/product-recs.html) \| [User Guide](https://docs.magento.com/m2/ee/user_guide/marketing/product-recommendations.html) | | **PWA Studio** | Available now | [Documentation](http://pwastudio.io) and [GitHub](https://github.com/magento-research/pwa-studio) | @@ -20,4 +19,4 @@ Magento modules that have been built to be decoupled from the {{site.data.var.ee The following table shows the release status of Magento extension versions relative to {{site.data.var.ee}}. -{% include compatibility-mde.html data=site.data.mde %} \ No newline at end of file +{% include compatibility-mde.html data=site.data.mde %} From 3650b7b35ae4d3c15ee996f134e71f64df3af1c9 Mon Sep 17 00:00:00 2001 From: devops-devdocs <48562208+devops-devdocs@users.noreply.github.com> Date: Thu, 15 Oct 2020 11:07:03 -0700 Subject: [PATCH 014/143] Update BIC reference (#8054) Updated reference documentation on backward incompatible changes for 2.4.0-2.4.1 versions delta. Updated reference documentation on backward incompatible changes for 2.3.5-2.3.6 versions delta. --- .../commerce/2.3.5-2.3.6.md | 5 + .../commerce/2.4.0-2.4.1-develop.html | 28 ----- .../commerce/2.4.0-2.4.1.md | 12 +++ .../open-source/2.3.5-2.3.6.html | 100 ++++++++++++++++++ .../open-source/2.3.5-2.3.6.md | 30 ++++++ ....0-2.4.1-develop.html => 2.4.0-2.4.1.html} | 12 +-- .../open-source/2.4.0-2.4.1.md | 48 +++++++++ .../reference.md | 6 ++ .../reference.md | 4 +- 9 files changed, 209 insertions(+), 36 deletions(-) create mode 100644 src/_includes/backward-incompatible-changes/commerce/2.3.5-2.3.6.md delete mode 100644 src/_includes/backward-incompatible-changes/commerce/2.4.0-2.4.1-develop.html create mode 100644 src/_includes/backward-incompatible-changes/commerce/2.4.0-2.4.1.md create mode 100644 src/_includes/backward-incompatible-changes/open-source/2.3.5-2.3.6.html create mode 100644 src/_includes/backward-incompatible-changes/open-source/2.3.5-2.3.6.md rename src/_includes/backward-incompatible-changes/open-source/{2.4.0-2.4.1-develop.html => 2.4.0-2.4.1.html} (91%) create mode 100644 src/_includes/backward-incompatible-changes/open-source/2.4.0-2.4.1.md diff --git a/src/_includes/backward-incompatible-changes/commerce/2.3.5-2.3.6.md b/src/_includes/backward-incompatible-changes/commerce/2.3.5-2.3.6.md new file mode 100644 index 00000000000..0cdd0522c1d --- /dev/null +++ b/src/_includes/backward-incompatible-changes/commerce/2.3.5-2.3.6.md @@ -0,0 +1,5 @@ +### {{ site.data.var.ee }} only changes in classes {#ee-235-236-class} + +| What changed | How it changed | +| --- | --- | +| Magento\Rma\Block\Email\Items::getCollection | [public] Method has been added. | diff --git a/src/_includes/backward-incompatible-changes/commerce/2.4.0-2.4.1-develop.html b/src/_includes/backward-incompatible-changes/commerce/2.4.0-2.4.1-develop.html deleted file mode 100644 index 6d424299dcb..00000000000 --- a/src/_includes/backward-incompatible-changes/commerce/2.4.0-2.4.1-develop.html +++ /dev/null @@ -1,28 +0,0 @@ - -

Class changes

- - - - - - - - - -
What changedHow it changed
Magento\CustomerSegment\Model\ResourceModel\Segment::createSelect[public] Method return typing changed.
- -

Class API membership changes

- - - - - - - - - - - - - -
What changedHow it changed
Magento\TargetRule\Block\Product\AbstractProductClass was added.
Magento\AdvancedCheckout\Block\Adminhtml\Sku\AbstractSkuClass was added.
diff --git a/src/_includes/backward-incompatible-changes/commerce/2.4.0-2.4.1.md b/src/_includes/backward-incompatible-changes/commerce/2.4.0-2.4.1.md new file mode 100644 index 00000000000..e7b2055b6bc --- /dev/null +++ b/src/_includes/backward-incompatible-changes/commerce/2.4.0-2.4.1.md @@ -0,0 +1,12 @@ +### {{ site.data.var.ee }} only changes in classes {#ee-240-241-class} + +| What changed | How it changed | +| --- | --- | +| Magento\CustomerSegment\Model\ResourceModel\Segment::createSelect | [public] Method return typing changed. | + +### {{ site.data.var.ee }} only changes in API membership {#ee-240-241-class-api-membership} + +| What changed | How it changed | +| --- | --- | +| Magento\TargetRule\Block\Product\AbstractProduct | Class was added. | +| Magento\AdvancedCheckout\Block\Adminhtml\Sku\AbstractSku | Class was added. | diff --git a/src/_includes/backward-incompatible-changes/open-source/2.3.5-2.3.6.html b/src/_includes/backward-incompatible-changes/open-source/2.3.5-2.3.6.html new file mode 100644 index 00000000000..6f5b67141bc --- /dev/null +++ b/src/_includes/backward-incompatible-changes/open-source/2.3.5-2.3.6.html @@ -0,0 +1,100 @@ + +

Class changes

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
What changedHow it changed
Magento\User\Model\User::$_cacheTag[protected] Property has been added.
Magento\Sales\Block\Order\Email\Items::__construct[public] Method has been added.
Magento\Sales\Block\Order\Email\Items::getOrder[public] Method has been added.
Magento\Sales\Block\Order\Email\Shipment\Items::__construct[public] Method has been added.
Magento\Sales\Block\Order\Email\Shipment\Items::getOrder[public] Method has been added.
Magento\Sales\Block\Order\Email\Shipment\Items::getShipment[public] Method has been added.
Magento\Sales\Block\Order\Email\Invoice\Items::__construct[public] Method has been added.
Magento\Sales\Block\Order\Email\Invoice\Items::getOrder[public] Method has been added.
Magento\Sales\Block\Order\Email\Invoice\Items::getInvoice[public] Method has been added.
Magento\Sales\Block\Order\Email\Creditmemo\Items::__construct[public] Method has been added.
Magento\Sales\Block\Order\Email\Creditmemo\Items::getOrder[public] Method has been added.
Magento\Sales\Block\Order\Email\Creditmemo\Items::getCreditmemo[public] Method has been added.
Magento\Catalog\Model\Category::getCacheTags[public] Method has been added.
Magento\Catalog\Model\Product::getCacheTags[public] Method has been added.
Magento\Authorization\Model\Role::$_cacheTag[protected] Property has been added.
+ +

Class API membership changes

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
What changedHow it changed
Magento\Framework\UrlClass was added.
Magento\Framework\Locale\ResolverClass was added.
Magento\Framework\Api\AbstractSimpleObjectBuilderClass was added.
Magento\Translation\Model\ResourceModel\TranslateClass was added.
Magento\SalesRule\Model\ValidatorClass was added.
Magento\Review\Block\Product\ViewClass was added.
diff --git a/src/_includes/backward-incompatible-changes/open-source/2.3.5-2.3.6.md b/src/_includes/backward-incompatible-changes/open-source/2.3.5-2.3.6.md new file mode 100644 index 00000000000..23ebcab75ca --- /dev/null +++ b/src/_includes/backward-incompatible-changes/open-source/2.3.5-2.3.6.md @@ -0,0 +1,30 @@ +### Class changes {#ce-235-236-class} + +| What changed | How it changed | +| --- | --- | +| Magento\User\Model\User::$\_cacheTag | [protected] Property has been added. | +| Magento\Sales\Block\Order\Email\Items::\_\_construct | [public] Method has been added. | +| Magento\Sales\Block\Order\Email\Items::getOrder | [public] Method has been added. | +| Magento\Sales\Block\Order\Email\Shipment\Items::\_\_construct | [public] Method has been added. | +| Magento\Sales\Block\Order\Email\Shipment\Items::getOrder | [public] Method has been added. | +| Magento\Sales\Block\Order\Email\Shipment\Items::getShipment | [public] Method has been added. | +| Magento\Sales\Block\Order\Email\Invoice\Items::\_\_construct | [public] Method has been added. | +| Magento\Sales\Block\Order\Email\Invoice\Items::getOrder | [public] Method has been added. | +| Magento\Sales\Block\Order\Email\Invoice\Items::getInvoice | [public] Method has been added. | +| Magento\Sales\Block\Order\Email\Creditmemo\Items::\_\_construct | [public] Method has been added. | +| Magento\Sales\Block\Order\Email\Creditmemo\Items::getOrder | [public] Method has been added. | +| Magento\Sales\Block\Order\Email\Creditmemo\Items::getCreditmemo | [public] Method has been added. | +| Magento\Catalog\Model\Category::getCacheTags | [public] Method has been added. | +| Magento\Catalog\Model\Product::getCacheTags | [public] Method has been added. | +| Magento\Authorization\Model\Role::$\_cacheTag | [protected] Property has been added. | + +### Class API membership changes {#ce-235-236-class-api-membership} + +| What changed | How it changed | +| --- | --- | +| Magento\Framework\Url | Class was added. | +| Magento\Framework\Locale\Resolver | Class was added. | +| Magento\Framework\Api\AbstractSimpleObjectBuilder | Class was added. | +| Magento\Translation\Model\ResourceModel\Translate | Class was added. | +| Magento\SalesRule\Model\Validator | Class was added. | +| Magento\Review\Block\Product\View | Class was added. | diff --git a/src/_includes/backward-incompatible-changes/open-source/2.4.0-2.4.1-develop.html b/src/_includes/backward-incompatible-changes/open-source/2.4.0-2.4.1.html similarity index 91% rename from src/_includes/backward-incompatible-changes/open-source/2.4.0-2.4.1-develop.html rename to src/_includes/backward-incompatible-changes/open-source/2.4.0-2.4.1.html index 960d70a9dfd..3b7298832c8 100644 --- a/src/_includes/backward-incompatible-changes/open-source/2.4.0-2.4.1-develop.html +++ b/src/_includes/backward-incompatible-changes/open-source/2.4.0-2.4.1.html @@ -1,5 +1,5 @@ -

Class changes

+

Class changes

@@ -35,7 +35,7 @@

Class changes

What changed
-

Interface changes

+

Interface changes

@@ -51,7 +51,7 @@

Interface changes

What changed
-

Database changes

+

Database changes

@@ -103,7 +103,7 @@

Database changes

What changed
-

System changes

+

System changes

@@ -123,7 +123,7 @@

System changes

What changed
-

Xsd changes

+

Xsd changes

@@ -143,7 +143,7 @@

Xsd changes

What changed
-

Class API membership changes

+

Class API membership changes

diff --git a/src/_includes/backward-incompatible-changes/open-source/2.4.0-2.4.1.md b/src/_includes/backward-incompatible-changes/open-source/2.4.0-2.4.1.md new file mode 100644 index 00000000000..4c60460a035 --- /dev/null +++ b/src/_includes/backward-incompatible-changes/open-source/2.4.0-2.4.1.md @@ -0,0 +1,48 @@ +### Class changes {#ce-240-241-class} + +| What changed | How it changed | +| --- | --- | +| Magento\Framework\Stdlib\Cookie\CookieMetadata::setSameSite | [public] Method has been added. | +| Magento\Framework\Stdlib\Cookie\CookieMetadata::getSameSite | [public] Method has been added. | +| Magento\Framework\Stdlib\Cookie\CookieMetadata::KEY\_SAME\_SITE | Constant has been added. | +| Magento\User\Model\User::$\_cacheTag | [protected] Property has been added. | +| Magento\Catalog\Model\Category::getCacheTags | [public] Method has been added. | +| Magento\Catalog\Model\Product::getCacheTags | [public] Method has been added. | +| Magento\Authorization\Model\Role::$\_cacheTag | [protected] Property has been added. | + +### Interface changes {#ce-240-241-interface} + +| What changed | How it changed | +| --- | --- | +| Magento\Eav\Api\AttributeOptionUpdateInterface | Interface was added. | +| Magento\Catalog\Api\ProductAttributeOptionUpdateInterface | Interface was added. | + +### Database changes {#ce-240-241-database} + +| What changed | How it changed | +| --- | --- | +| media\_gallery\_asset/MEDIA\_GALLERY\_ID\_PATH\_TITLE\_CONTENT\_TYPE\_WIDTH\_HEIGHT | Unique key was removed | +| media\_gallery\_asset/constraint | Module db schema whitelist reduced (media\_gallery\_asset/constraint). | +| login\_as\_customer\_assistance\_allowed | Table was added | + +### System changes {#ce-240-241-system} + +| What changed | How it changed | +| --- | --- | +| system.xml | System configuration file was added | +| checkout/cart/enable\_clear\_shopping\_cart | A field-node was added | + +### Xsd changes {#ce-240-241-xsd} + +| What changed | How it changed | +| --- | --- | +| maxIdleTime | An optional attribute was added | +| sleep | An optional attribute was added | +| onlySpawnWhenMessageAvailable | An optional attribute was added | + +### Class API membership changes {#ce-240-241-class-api-membership} + +| What changed | How it changed | +| --- | --- | +| Magento\Framework\View\Page\Builder | Class was added. | +| Magento\SalesRule\Model\Validator | Class was added. | diff --git a/src/guides/v2.3/release-notes/backward-incompatible-changes/reference.md b/src/guides/v2.3/release-notes/backward-incompatible-changes/reference.md index 3f43e4f1639..aa3fd3083a8 100644 --- a/src/guides/v2.3/release-notes/backward-incompatible-changes/reference.md +++ b/src/guides/v2.3/release-notes/backward-incompatible-changes/reference.md @@ -22,6 +22,12 @@ We expanded documentation coverage of the types of changes in 2.3.5. Previously, {:.bs-callout-info} Patch releases are primarily focused on delivering security and quality enhancements on a regular basis to help you keep your sites performing at their peak. On an exceptional basis, breaking changes or additional patches or hotfixes may be released to address security or compliance issues and high-impact quality issues. On the module level, these are mostly PATCH-level changes; sometimes MINOR-level changes. See [Release policy]({{site.baseurl}}/release/policy/). +## 2.3.5 - 2.3.6 + +{% include backward-incompatible-changes/open-source/2.3.5-2.3.6.md %} + +{% include backward-incompatible-changes/commerce/2.3.5-2.3.6.md %} + ## 2.3.4 - 2.3.5 {% include backward-incompatible-changes/open-source/2.3.4-2.3.5.md %} diff --git a/src/guides/v2.4/release-notes/backward-incompatible-changes/reference.md b/src/guides/v2.4/release-notes/backward-incompatible-changes/reference.md index 3367caafff3..ddbc7c863fa 100644 --- a/src/guides/v2.4/release-notes/backward-incompatible-changes/reference.md +++ b/src/guides/v2.4/release-notes/backward-incompatible-changes/reference.md @@ -24,9 +24,9 @@ Patch releases are primarily focused on delivering security and quality enhancem ## 2.4.0 - 2.4.1 -{% include backward-incompatible-changes/open-source/2.4.0-2.4.1-develop.html %} +{% include backward-incompatible-changes/open-source/2.4.0-2.4.1.md %} -{% include backward-incompatible-changes/commerce/2.4.0-2.4.1-develop.html %} +{% include backward-incompatible-changes/commerce/2.4.0-2.4.1.md %} ## 2.3.0 - 2.4.0 From 86af5a94c70c6d18984357d81c68a4c9ea52a176 Mon Sep 17 00:00:00 2001 From: Margaret Eker Date: Thu, 15 Oct 2020 13:23:54 -0500 Subject: [PATCH 015/143] Fix DB connection step in MySQLset up topic Corrected variable name in the command to connect to the database --- src/cloud/project/services-mysql.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cloud/project/services-mysql.md b/src/cloud/project/services-mysql.md index c0ec7faa732..6f3a1e5a7ca 100644 --- a/src/cloud/project/services-mysql.md +++ b/src/cloud/project/services-mysql.md @@ -155,10 +155,10 @@ Accessing the MariaDB database directly requires you to use a SSH to log in to t mysql -h database.internal -u ``` - - For Pro, use the following command with db, username, and password retrieved from the `$MAGENTO_CLOUD_RELATIONSHIPS` variable. + - For Pro, use the following command with hostname, username, and password retrieved from the `$MAGENTO_CLOUD_RELATIONSHIPS` variable. ```bash - mysql -h -P -u -p + mysql -h -P -u -p ``` ## Connect to secondary database From 24e725abf26b84e9edee17aa0f51f3c1b4ed2431 Mon Sep 17 00:00:00 2001 From: Barny Shergold Date: Thu, 15 Oct 2020 19:40:51 +0100 Subject: [PATCH 016/143] Added Cloud Configuration Hierarchy (#8031) * Added Configuration Hierarchy for application settings for Magento Commerce on Clout * Update src/cloud/live/sens-data-over.md * Added table and populated with full descriptions * Added missing info to table * Editorial & link updates for config hierarchy tbl * Corrected table order & text * Updated punctuation Co-authored-by: Barny Shergold Co-authored-by: Margaret Eker Co-authored-by: hguthrie --- src/cloud/live/sens-data-over.md | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/src/cloud/live/sens-data-over.md b/src/cloud/live/sens-data-over.md index dab9a0828f2..f3056793e4b 100644 --- a/src/cloud/live/sens-data-over.md +++ b/src/cloud/live/sens-data-over.md @@ -13,7 +13,7 @@ You must have [environment-level, Admin role privileges][admin] to complete conf ## Consistent configuration -The database contains default configurations for your Magento store. When you update configurations in the {{site.data.var.ece}} environments using the Magento Admin panel, your configuration changes apply to the `app/etc/config.php` file. You can then use this file to manage and synchronize the Magento application configuration for your local environment and across each Cloud environment. +The database contains default configurations for your Magento store. When you update configurations in the {{site.data.var.ece}} environments using the Magento Admin panel or the Magento CLI `bin/magento config:set` command, your configuration changes apply to the `app/etc/config.php` file. You can then use this file to manage and synchronize the Magento application configuration for your local environment and across each Cloud environment. Use the `{{site.data.var.ct}}` command in the remote environment to generate a `config.php` file: @@ -43,7 +43,9 @@ Because {{site.data.var.ece}} supports only the Magento production and maintenan ### Sensitive data -Sensitive values are _not_ stored in the `app/etc/config.php` file. Any sensitive configurations export to the `app/etc/config.php` file during the `config:dump` process. We recommend using environment variables to store sensitive values. For an example, see [Add Magento authentication keys][auth]. +Sensitive values are _not_ stored in the `app/etc/config.php` file. Any sensitive configurations export to the `app/etc/env.php` file when you use the `bin/magento app:config:dump` Magento CLI command. For Cloud projects, we recommend using {{ site.data.var.ece }} environment variables to store sensitive values. For an example, see [Add Magento authentication keys][auth]. + +You can also set sensitive values using the Magento CLI command: `bin/magento config:sensitive:set`, see [Sensitive or system-specific settings] in the _Configuration Guide_. ### SCD performance @@ -60,6 +62,17 @@ All system configurations are set during build and deploy according to the follo 1. If an environment variable does not exist, use the configuration from a `MAGENTO_CLOUD_RELATIONSHIPS` name-value pair in the [`.magento.app.yaml` file][app-yaml]. Ignore the default configuration. 1. If an environment variable does not exist and `MAGENTO_CLOUD_RELATIONSHIPS` does not contain a name-value pair, remove all customized configuration and use the values from the default configuration. +If the same setting is configured in multiple places, Magento relies on the following configuration hierarchy to determine which value to apply to the environment : + +|Priority|Configuration
Method|Description| +|---|---|---| +|1 | Project Web UI
environment variables | Values added from the _Variables_ tab of environment configuration in the Project Web UI. We recommend specifying values here for sensitive or environment-specific configurations. Settings specified here cannot be edited from the Magento Admin. See [Environment configuration variables][].| +|2 | `.magento.app.yaml` | Values added in the `variables` section of the `.magento.app.yaml` file. We recommend specifying values here to ensure consistent configuration across all environments. **Do not specify sensitive values in the `.magento.app.yaml` file.** See [Application settings][app-yaml].| +|3 | `app/etc/env.php` | Environment-specific configuration values stored here are added by using the Magento `app:config:dump` command. Set the system-specific and sensitive values using environment variables or the Magento CLI. See [Sensitive data](#sensitive-data). The `env.php` file is **not** included in source control.| +|4 | `app/etc/config.php` | Values stored here are added by using the Magento `app:config:dump` command. Shared configuration values are added to `config.php`. Set shared configuration from the Magento Admin or using the Magento CLI. See [Consistent configuration](#consistent-configuration). The `config.php` file is included in source control.| +|5 | Database | Values stored here are added by setting configurations in the Magento Admin. Note that configurations set using any of the preceding methods are locked (greyed out) and cannot be edited from the Magento Admin.| +|6 | `config.xml` | Many configurations have default values set in a the `config.xml` file for a module. If Magento cannot find any value set by any of the preceding methods, it falls back to the default value, if set.| + ## Procedure to manage your settings The following illustrates a high-level overview of this process: @@ -170,8 +183,10 @@ This process **overwrites** the store configuration; only do the following if th [app-yaml]: {{ site.baseurl }}/cloud/project/magento-app.html [commerce-dump]: {{ site.baseurl }}/guides/v2.3/reference/cli/magento-commerce.html#appconfigdump [env-yaml]: {{ site.baseurl }}/cloud/project/magento-env-yaml.html +[environment configuration variables]: {{ site.baseurl }}/cloud/project/projects.html#environment-configuration-variables [export]: {{ site.baseurl }}/config-guide/cli/config-cli-subcommands-config-mgmt-export.html [Optimize deployment]: {{ site.baseurl }}/cloud/deploy/optimize-cloud-deployment.html [Pipeline deployment]: {{ site.baseurl }}/guides/v2.3/config-guide/deployment/pipeline/technical-details.html [quick]: {{ site.baseurl }}/cloud/env/variables-build.html#scd_strategy -[scd]: {{ site.baseurl }}/cloud/deploy/static-content-deployment.html \ No newline at end of file +[scd]: {{ site.baseurl }}/cloud/deploy/static-content-deployment.html +[Sensitive or system-specific settings]: {{ site.baseurl }}/guides/v2.4/config-guide/prod/config-reference-sens.html From 6534362d80f7eeea4c43ed8fb9cf4d2c4138668b Mon Sep 17 00:00:00 2001 From: Pratik Oza <33807558+mage2pratik@users.noreply.github.com> Date: Fri, 16 Oct 2020 00:46:50 +0530 Subject: [PATCH 017/143] Update install-cli-install.md Set db options in single row. It is easy to read and user friendly same as other examples. --- src/guides/v2.4/install-gde/install/cli/install-cli-install.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/guides/v2.4/install-gde/install/cli/install-cli-install.md b/src/guides/v2.4/install-gde/install/cli/install-cli-install.md index 10422ae207e..e357466cdb4 100644 --- a/src/guides/v2.4/install-gde/install/cli/install-cli-install.md +++ b/src/guides/v2.4/install-gde/install/cli/install-cli-install.md @@ -261,8 +261,7 @@ The following example installs Magento with the following options: ```bash magento setup:install --base-url=http://127.0.0.1/magento2/ \ ---db-host=localhost --db-name=magento \ ---db-user=magento --db-password=magento \ +--db-host=localhost --db-name=magento --db-user=magento --db-password=magento \ --admin-firstname=Magento --admin-lastname=User --admin-email=user@example.com \ --admin-user=admin --admin-password=admin123 --language=en_US \ --currency=USD --timezone=America/Chicago --cleanup-database \ From 565977a1f06509bcb43e7b682c4d9a9e857fd5d3 Mon Sep 17 00:00:00 2001 From: Donald Booth Date: Thu, 15 Oct 2020 14:45:28 -0500 Subject: [PATCH 018/143] Added security section --- src/guides/v2.3/rest/generate-local.md | 17 +++++++++++++++++ src/guides/v2.4/rest/generate-local.md | 17 +++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/src/guides/v2.3/rest/generate-local.md b/src/guides/v2.3/rest/generate-local.md index fd85af6af50..6963ef9b661 100644 --- a/src/guides/v2.3/rest/generate-local.md +++ b/src/guides/v2.3/rest/generate-local.md @@ -63,6 +63,23 @@ To return the complete JSON schema, specify the `?services=all` parameter in the The base URL for returning the asynchronous schema is `http:///rest//async/schema`. +## Security + +By default, the `/swagger` endpoint is open on Magneto instances. Leaving it open on a public instance could potentially expose system information that should not be readable. + +To close off the `/swagger` endpoint, disable the following modules: + +- Swagger +- SwaggerWebapi +- SwaggerWebapiAsync + +To ensure proper functionality, always test Magento instances after disabling modules. + +You may also use web server rewrite rules to redirect users trying to access the endpoint: + +- [nginx rewrite module](http://nginx.org/en/docs/http/ngx_http_rewrite_module.html#rewrite) +- [apache mod_rewrite](https://httpd.apache.org/docs/2.4/rewrite/) + {:.ref-header} Related topics diff --git a/src/guides/v2.4/rest/generate-local.md b/src/guides/v2.4/rest/generate-local.md index 6a50fc1dbe3..fad94a25b07 100644 --- a/src/guides/v2.4/rest/generate-local.md +++ b/src/guides/v2.4/rest/generate-local.md @@ -60,6 +60,23 @@ To return the complete JSON schema, specify the `?services=all` parameter in the The base URL for returning the asynchronous schema is `http:///rest//async/schema`. +## Security + +By default, the `/swagger` endpoint is open on Magneto instances. Leaving it open on a public instance could potentially expose system information that should not be readable. + +To close off the `/swagger` endpoint, disable the following modules: + +- Swagger +- SwaggerWebapi +- SwaggerWebapiAsync + +To ensure proper functionality, always test Magento instances after disabling modules. + +You may also use web server rewrite rules to redirect users trying to access the endpoint: + +- [nginx rewrite module](http://nginx.org/en/docs/http/ngx_http_rewrite_module.html#rewrite) +- [apache mod_rewrite](https://httpd.apache.org/docs/2.4/rewrite/) + {:.ref-header} Related topics From 40747b66bb14b204318b6598132f1ca5e17ff061 Mon Sep 17 00:00:00 2001 From: Donald Booth Date: Thu, 15 Oct 2020 14:49:31 -0500 Subject: [PATCH 019/143] Added links --- src/guides/v2.3/rest/generate-local.md | 1 + src/guides/v2.4/rest/generate-local.md | 1 + 2 files changed, 2 insertions(+) diff --git a/src/guides/v2.3/rest/generate-local.md b/src/guides/v2.3/rest/generate-local.md index 6963ef9b661..febe01699ff 100644 --- a/src/guides/v2.3/rest/generate-local.md +++ b/src/guides/v2.3/rest/generate-local.md @@ -83,4 +83,5 @@ You may also use web server rewrite rules to redirect users trying to access the {:.ref-header} Related topics +[Restricting access to anonymous web APIs]({{ page.baseurl }}/rest/anonymous-api-security.html) [Token-based authentication]({{ page.baseurl }}/get-started/authentication/gs-authentication-token.html) diff --git a/src/guides/v2.4/rest/generate-local.md b/src/guides/v2.4/rest/generate-local.md index fad94a25b07..d7d32e84d47 100644 --- a/src/guides/v2.4/rest/generate-local.md +++ b/src/guides/v2.4/rest/generate-local.md @@ -80,4 +80,5 @@ You may also use web server rewrite rules to redirect users trying to access the {:.ref-header} Related topics +[Restricting access to anonymous web APIs]({{ page.baseurl }}/rest/anonymous-api-security.html) [Token-based authentication]({{ page.baseurl }}/get-started/authentication/gs-authentication-token.html) From f89c911a18e28a68866359ef821bfcbf3f7ede6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20H=C3=BCnig?= Date: Thu, 15 Oct 2020 22:39:52 +0200 Subject: [PATCH 020/143] Update elasticsearch.md (#8059) * Update elasticsearch.md Clarified Elasticsearch documentation * Update elasticsearch.md removed "support for Elasticsearch 7.x" in documentation again. * Update elasticsearch.md added extended explanation regarding compatibility other ES 7.x versions * Update src/guides/v2.4/install-gde/prereq/elasticsearch.md Co-authored-by: Jeff Matthews Co-authored-by: Jeff Matthews --- src/guides/v2.4/install-gde/prereq/elasticsearch.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/guides/v2.4/install-gde/prereq/elasticsearch.md b/src/guides/v2.4/install-gde/prereq/elasticsearch.md index 055cac3cacd..26cfbd9b3ef 100644 --- a/src/guides/v2.4/install-gde/prereq/elasticsearch.md +++ b/src/guides/v2.4/install-gde/prereq/elasticsearch.md @@ -23,7 +23,9 @@ As of Magento 2.4, all installations must be configured to use [Elasticsearch][] ## Supported versions {#es-spt-versions} -You must install and configure Elasticsearch 7.6.x before upgrading to Magento 2.4.0. +You must install and configure Elasticsearch 7.6.x before upgrading to Magento 2.4.x. + +Magento 2.4.x is tested with Elasticsearch 7.6.x only. You can use other 7.x versions at your discretion, but we recommend using the tested version of Elasticsearch. {:.bs-callout-info} Magento does not support Elasticsearch 2.x, 5.x, and 6.x. @@ -75,14 +77,14 @@ The tasks discussed in this section require the following: * [Firewall and SELinux](#firewall-selinux) * [Install the Java Software Development Kit (JDK)](#prereq-java) -* [Install Elasticsearch](#es-install-es6) +* [Install Elasticsearch](#es-install-es7) * [Upgrading Elasticsearch](#es-upgrade6) {% include config/solr-elastic-selinux.md %} {% include config/install-java8.md %} -### Install Elasticsearch {#es-install-es6} +### Install Elasticsearch {#es-install-es7} Follow [Installing Elasticsearch][] for your platform-specific steps. From a69127460d680f7e3a5d35d7537e7bf8e8faacf3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Corr=C3=AAa=20Gomes?= Date: Thu, 15 Oct 2020 17:03:54 -0400 Subject: [PATCH 021/143] Magento 2.4.1 Release Notes update (#8062) Co-authored-by: Jeff Matthews --- src/guides/v2.4/release-notes/commerce-2-4-1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guides/v2.4/release-notes/commerce-2-4-1.md b/src/guides/v2.4/release-notes/commerce-2-4-1.md index af5355b585c..e6e24f73bcc 100644 --- a/src/guides/v2.4/release-notes/commerce-2-4-1.md +++ b/src/guides/v2.4/release-notes/commerce-2-4-1.md @@ -572,7 +572,7 @@ We have fixed hundreds of issues in the Magento 2.4.1 core code. -* Updated the Magento Commerce logo and removed extraneous spaces from the README file. _Fix submitted by Rafael Corr̻a Gomes in pull request [28891](https://github.com/magento/magento2/pull/28891)_. [GitHub-29056](https://github.com/magento/magento2/issues/29056) +* Updated the Magento Commerce logo and removed extraneous spaces from the README file. _Fix submitted by Rafael Corr̻êa Gomes in pull request [28891](https://github.com/magento/magento2/pull/28891)_. [GitHub-29056](https://github.com/magento/magento2/issues/29056) From 3ec36b76dcdc2bb579249ccb8aafda513e05edbf Mon Sep 17 00:00:00 2001 From: Dmitry Shevtsov <12731225+dshevtsov@users.noreply.github.com> Date: Thu, 15 Oct 2020 16:48:08 -0500 Subject: [PATCH 022/143] Update composer dependencies (#8065) * Update composer dependencies 2.4.1/2.3.6 * Add missing Liquid variable --- .../codebase/v2_3/cloud/composer_lock.json | 2145 +-- .../codebase/v2_3/commerce/composer_lock.json | 2283 +-- .../v2_3/open-source/composer_lock.json | 1800 ++- .../codebase/v2_4/cloud/composer_lock.json | 3734 +++-- .../codebase/v2_4/commerce/composer_lock.json | 12911 +++++++++------- .../v2_4/open-source/composer_lock.json | 4391 ++++-- .../v2.3/release-notes/packages-cloud.md | 2 + 7 files changed, 15713 insertions(+), 11553 deletions(-) diff --git a/src/_data/codebase/v2_3/cloud/composer_lock.json b/src/_data/codebase/v2_3/cloud/composer_lock.json index 86d33558606..4c44220d2c4 100644 --- a/src/_data/codebase/v2_3/cloud/composer_lock.json +++ b/src/_data/codebase/v2_3/cloud/composer_lock.json @@ -4,20 +4,20 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "de9cfd03833a774805d6e24209e879f4", + "content-hash": "a1fc0391a1a6b45427b36de6f5c90bc2", "packages": [ { "name": "amzn/amazon-pay-and-login-magento-2-module", - "version": "3.4.1-p2", + "version": "3.4.1-p3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/amzn/amazon-pay-and-login-magento-2-module/amzn-amazon-pay-and-login-magento-2-module-3.4.1.0-patch2.zip", - "shasum": "e1af6db385858b358ea1af870eb883079b3fc10c" + "url": "https://repo.magento.com/archives/amzn/amazon-pay-and-login-magento-2-module/amzn-amazon-pay-and-login-magento-2-module-3.4.1.0-patch3.zip", + "shasum": "767dd813b3253ffea92bdf6136d948b123b4ed91" }, "require": { - "amzn/amazon-pay-and-login-with-amazon-core-module": "3.4.1-p2", - "amzn/amazon-pay-module": "3.4.1-p2", - "amzn/login-with-amazon-module": "3.4.1-p2" + "amzn/amazon-pay-and-login-with-amazon-core-module": "3.4.1-p3", + "amzn/amazon-pay-module": "3.4.1-p3", + "amzn/login-with-amazon-module": "3.4.1-p3" }, "type": "metapackage", "license": [ @@ -27,11 +27,11 @@ }, { "name": "amzn/amazon-pay-and-login-with-amazon-core-module", - "version": "3.4.1-p2", + "version": "3.4.1-p3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/amzn/amazon-pay-and-login-with-amazon-core-module/amzn-amazon-pay-and-login-with-amazon-core-module-3.4.1.0-patch2.zip", - "shasum": "b48f94288d428bc13b21e7b93b70228edde787d4" + "url": "https://repo.magento.com/archives/amzn/amazon-pay-and-login-with-amazon-core-module/amzn-amazon-pay-and-login-with-amazon-core-module-3.4.1.0-patch3.zip", + "shasum": "ee7b1b4ca803b40da8b86e9b848fa6311729978d" }, "require": { "amzn/amazon-pay-sdk-php": "^3.2.0", @@ -66,15 +66,15 @@ }, { "name": "amzn/amazon-pay-module", - "version": "3.4.1-p2", + "version": "3.4.1-p3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/amzn/amazon-pay-module/amzn-amazon-pay-module-3.4.1.0-patch2.zip", - "shasum": "814ef3b996315458f515563b7e4105eef634989a" + "url": "https://repo.magento.com/archives/amzn/amazon-pay-module/amzn-amazon-pay-module-3.4.1.0-patch3.zip", + "shasum": "273a277586733cd152f5711b5845a69783423550" }, "require": { - "amzn/amazon-pay-and-login-with-amazon-core-module": "^3.4.1-p2", - "amzn/login-with-amazon-module": "^3.4.1-p2", + "amzn/amazon-pay-and-login-with-amazon-core-module": "^3.4.1-p3", + "amzn/login-with-amazon-module": "^3.4.1-p3", "magento/framework": "^102", "magento/module-backend": "^101", "magento/module-catalog": "^103", @@ -160,14 +160,14 @@ }, { "name": "amzn/login-with-amazon-module", - "version": "3.4.1-p2", + "version": "3.4.1-p3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/amzn/login-with-amazon-module/amzn-login-with-amazon-module-3.4.1.0-patch2.zip", - "shasum": "59e2c666cf15f75bb8c899e1c9224837c00fb4ba" + "url": "https://repo.magento.com/archives/amzn/login-with-amazon-module/amzn-login-with-amazon-module-3.4.1.0-patch3.zip", + "shasum": "2b6a79e0d4d5380484c721d456f4b128bdbe20db" }, "require": { - "amzn/amazon-pay-and-login-with-amazon-core-module": "^3.4.1-p2", + "amzn/amazon-pay-and-login-with-amazon-core-module": "^3.4.1-p3", "magento/framework": "^102", "magento/module-checkout": "^100.3", "magento/module-checkout-agreements": "*", @@ -543,21 +543,21 @@ }, { "name": "colinmollenhour/php-redis-session-abstract", - "version": "v1.4.2", + "version": "v1.4.3", "source": { "type": "git", "url": "https://github.com/colinmollenhour/php-redis-session-abstract.git", - "reference": "669521218794f125c7b668252f4f576eda65e1e4" + "reference": "39ca38da5e0a981bc1a7e39a86693c128784a513" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/colinmollenhour/php-redis-session-abstract/zipball/669521218794f125c7b668252f4f576eda65e1e4", - "reference": "669521218794f125c7b668252f4f576eda65e1e4", + "url": "https://api.github.com/repos/colinmollenhour/php-redis-session-abstract/zipball/39ca38da5e0a981bc1a7e39a86693c128784a513", + "reference": "39ca38da5e0a981bc1a7e39a86693c128784a513", "shasum": "" }, "require": { "colinmollenhour/credis": "~1.6", - "php": "^5.5 || ^7.0" + "php": "^5.5 || ^7.0|| ^7.1 || ^7.2" }, "type": "library", "autoload": { @@ -576,20 +576,20 @@ ], "description": "A Redis-based session handler with optimistic locking", "homepage": "https://github.com/colinmollenhour/php-redis-session-abstract", - "time": "2020-01-08T17:41:01+00:00" + "time": "2020-10-07T09:47:22+00:00" }, { "name": "composer/ca-bundle", - "version": "1.2.7", + "version": "1.2.8", "source": { "type": "git", "url": "https://github.com/composer/ca-bundle.git", - "reference": "95c63ab2117a72f48f5a55da9740a3273d45b7fd" + "reference": "8a7ecad675253e4654ea05505233285377405215" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/95c63ab2117a72f48f5a55da9740a3273d45b7fd", - "reference": "95c63ab2117a72f48f5a55da9740a3273d45b7fd", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/8a7ecad675253e4654ea05505233285377405215", + "reference": "8a7ecad675253e4654ea05505233285377405215", "shasum": "" }, "require": { @@ -637,25 +637,29 @@ "url": "https://packagist.com", "type": "custom" }, + { + "url": "https://github.com/composer", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/composer/composer", "type": "tidelift" } ], - "time": "2020-04-08T08:27:21+00:00" + "time": "2020-08-23T12:54:47+00:00" }, { "name": "composer/composer", - "version": "1.10.10", + "version": "1.10.15", "source": { "type": "git", "url": "https://github.com/composer/composer.git", - "reference": "32966a3b1d48bc01472a8321fd6472b44fad033a" + "reference": "547c9ee73fe26c77af09a0ea16419176b1cdbd12" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/composer/zipball/32966a3b1d48bc01472a8321fd6472b44fad033a", - "reference": "32966a3b1d48bc01472a8321fd6472b44fad033a", + "url": "https://api.github.com/repos/composer/composer/zipball/547c9ee73fe26c77af09a0ea16419176b1cdbd12", + "reference": "547c9ee73fe26c77af09a0ea16419176b1cdbd12", "shasum": "" }, "require": { @@ -736,20 +740,20 @@ "type": "tidelift" } ], - "time": "2020-08-03T09:35:19+00:00" + "time": "2020-10-13T13:59:09+00:00" }, { "name": "composer/semver", - "version": "1.5.1", + "version": "1.7.1", "source": { "type": "git", "url": "https://github.com/composer/semver.git", - "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de" + "reference": "38276325bd896f90dfcfe30029aa5db40df387a7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/semver/zipball/c6bea70230ef4dd483e6bbcab6005f682ed3a8de", - "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de", + "url": "https://api.github.com/repos/composer/semver/zipball/38276325bd896f90dfcfe30029aa5db40df387a7", + "reference": "38276325bd896f90dfcfe30029aa5db40df387a7", "shasum": "" }, "require": { @@ -797,7 +801,21 @@ "validation", "versioning" ], - "time": "2020-01-13T12:06:48+00:00" + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2020-09-27T13:13:07+00:00" }, { "name": "composer/spdx-licenses", @@ -875,16 +893,16 @@ }, { "name": "composer/xdebug-handler", - "version": "1.4.2", + "version": "1.4.3", "source": { "type": "git", "url": "https://github.com/composer/xdebug-handler.git", - "reference": "fa2aaf99e2087f013a14f7432c1cd2dd7d8f1f51" + "reference": "ebd27a9866ae8254e873866f795491f02418c5a5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/fa2aaf99e2087f013a14f7432c1cd2dd7d8f1f51", - "reference": "fa2aaf99e2087f013a14f7432c1cd2dd7d8f1f51", + "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ebd27a9866ae8254e873866f795491f02418c5a5", + "reference": "ebd27a9866ae8254e873866f795491f02418c5a5", "shasum": "" }, "require": { @@ -929,7 +947,7 @@ "type": "tidelift" } ], - "time": "2020-06-04T11:16:35+00:00" + "time": "2020-08-19T10:27:58+00:00" }, { "name": "container-interop/container-interop", @@ -1057,16 +1075,16 @@ }, { "name": "donatj/phpuseragentparser", - "version": "v0.16.0", + "version": "v0.17.0", "source": { "type": "git", "url": "https://github.com/donatj/PhpUserAgent.git", - "reference": "b3551112ed84524aef6542a8778a3f812c8098ce" + "reference": "e159493010d4b71c9620a43fd05f8284f29dcfeb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/donatj/PhpUserAgent/zipball/b3551112ed84524aef6542a8778a3f812c8098ce", - "reference": "b3551112ed84524aef6542a8778a3f812c8098ce", + "url": "https://api.github.com/repos/donatj/PhpUserAgent/zipball/e159493010d4b71c9620a43fd05f8284f29dcfeb", + "reference": "e159493010d4b71c9620a43fd05f8284f29dcfeb", "shasum": "" }, "require": { @@ -1114,15 +1132,15 @@ "type": "github" } ], - "time": "2020-04-07T15:47:30+00:00" + "time": "2020-09-01T16:15:49+00:00" }, { "name": "dotmailer/dotmailer-magento2-extension", - "version": "4.4.0", + "version": "4.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension/dotmailer-dotmailer-magento2-extension-4.4.0.0.zip", - "shasum": "2ce54820044685bc127ec0c6bdc73d0c8c0984cd" + "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension/dotmailer-dotmailer-magento2-extension-4.4.1.0.zip", + "shasum": "4eadf48f14c689567e32fd4923674dbdac3453f6" }, "require": { "magento/framework": ">=101 <103", @@ -1176,11 +1194,11 @@ }, { "name": "dotmailer/dotmailer-magento2-extension-chat", - "version": "1.0.1", + "version": "1.0.1-p1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-chat/dotmailer-dotmailer-magento2-extension-chat-1.0.1.0.zip", - "shasum": "9c158025829fbdf2aa789cd269d67eba72d37ae4" + "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-chat/dotmailer-dotmailer-magento2-extension-chat-1.0.1.0-patch1.zip", + "shasum": "294a4e1c1fb0f17962b63e0ad8045ca5601c5096" }, "require": { "dotmailer/dotmailer-magento2-extension": "^4.3.1", @@ -1236,15 +1254,15 @@ }, { "name": "dotmailer/dotmailer-magento2-extension-enterprise-package", - "version": "4.4.0", + "version": "4.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-enterprise-package/dotmailer-dotmailer-magento2-extension-enterprise-package-4.4.0.0.zip", - "shasum": "97ce94c58e7c832a3ac9070e560fe6d12d93fe1e" + "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-enterprise-package/dotmailer-dotmailer-magento2-extension-enterprise-package-4.4.1.0.zip", + "shasum": "583a117d3d0853f5433c835ef96714a9f4054879" }, "require": { - "dotmailer/dotmailer-magento2-extension": "4.4.0", - "dotmailer/dotmailer-magento2-extension-chat": "1.0.1", + "dotmailer/dotmailer-magento2-extension": "4.4.1", + "dotmailer/dotmailer-magento2-extension-chat": "1.0.1-p1", "dotmailer/dotmailer-magento2-extension-enterprise": "1.0.7" }, "type": "metapackage", @@ -1255,15 +1273,15 @@ }, { "name": "dotmailer/dotmailer-magento2-extension-package", - "version": "4.4.0", + "version": "4.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-package/dotmailer-dotmailer-magento2-extension-package-4.4.0.0.zip", - "shasum": "2d49ed099b07985806a76cd8c67cbc379f4d9361" + "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-package/dotmailer-dotmailer-magento2-extension-package-4.4.1.0.zip", + "shasum": "9931bf660abe8579abb4013b331d8de9f13f9ac1" }, "require": { - "dotmailer/dotmailer-magento2-extension": "4.4.0", - "dotmailer/dotmailer-magento2-extension-chat": "1.0.1" + "dotmailer/dotmailer-magento2-extension": "4.4.1", + "dotmailer/dotmailer-magento2-extension-chat": "1.0.1-p1" }, "type": "metapackage", "license": [ @@ -1273,16 +1291,16 @@ }, { "name": "elasticsearch/elasticsearch", - "version": "v7.8.0", + "version": "v7.9.1", "source": { "type": "git", "url": "https://github.com/elastic/elasticsearch-php.git", - "reference": "5c2d039ae7bdaa1e28f1e66971c5b3314fc36383" + "reference": "38e821f37491bd91fe06b18b88613128950a11bb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/elastic/elasticsearch-php/zipball/5c2d039ae7bdaa1e28f1e66971c5b3314fc36383", - "reference": "5c2d039ae7bdaa1e28f1e66971c5b3314fc36383", + "url": "https://api.github.com/repos/elastic/elasticsearch-php/zipball/38e821f37491bd91fe06b18b88613128950a11bb", + "reference": "38e821f37491bd91fe06b18b88613128950a11bb", "shasum": "" }, "require": { @@ -1294,6 +1312,7 @@ "require-dev": { "cpliakas/git-wrapper": "~2.0", "doctrine/inflector": "^1.3", + "ext-yaml": "*", "mockery/mockery": "^1.2", "phpstan/phpstan": "^0.12", "phpunit/phpunit": "^7.5", @@ -1332,7 +1351,7 @@ "elasticsearch", "search" ], - "time": "2020-06-18T19:23:29+00:00" + "time": "2020-10-06T13:03:50+00:00" }, { "name": "endroid/qr-code", @@ -1506,16 +1525,16 @@ }, { "name": "fastly/magento2", - "version": "1.2.144", + "version": "1.2.148", "source": { "type": "git", "url": "https://github.com/fastly/fastly-magento2.git", - "reference": "36065594588d95560d4282a127cd3da10e53e2d8" + "reference": "0a6bffa24431b6500b92ffd42388d1c91b820fed" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/fastly/fastly-magento2/zipball/36065594588d95560d4282a127cd3da10e53e2d8", - "reference": "36065594588d95560d4282a127cd3da10e53e2d8", + "url": "https://api.github.com/repos/fastly/fastly-magento2/zipball/0a6bffa24431b6500b92ffd42388d1c91b820fed", + "reference": "0a6bffa24431b6500b92ffd42388d1c91b820fed", "shasum": "" }, "require": { @@ -1541,7 +1560,7 @@ "BSD-3-Clause" ], "description": "Fastly CDN Module for Magento 2.x", - "time": "2020-07-31T14:01:38+00:00" + "time": "2020-09-30T20:30:22+00:00" }, { "name": "google/recaptcha", @@ -1713,23 +1732,23 @@ }, { "name": "guzzlehttp/promises", - "version": "v1.3.1", + "version": "1.4.0", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646" + "reference": "60d379c243457e073cff02bc323a2a86cb355631" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646", + "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631", + "reference": "60d379c243457e073cff02bc323a2a86cb355631", "shasum": "" }, "require": { - "php": ">=5.5.0" + "php": ">=5.5" }, "require-dev": { - "phpunit/phpunit": "^4.0" + "symfony/phpunit-bridge": "^4.4 || ^5.1" }, "type": "library", "extra": { @@ -1760,20 +1779,20 @@ "keywords": [ "promise" ], - "time": "2016-12-20T10:07:11+00:00" + "time": "2020-09-30T07:37:28+00:00" }, { "name": "guzzlehttp/psr7", - "version": "1.6.1", + "version": "1.7.0", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "239400de7a173fe9901b9ac7c06497751f00727a" + "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a", - "reference": "239400de7a173fe9901b9ac7c06497751f00727a", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3", + "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3", "shasum": "" }, "require": { @@ -1786,15 +1805,15 @@ }, "require-dev": { "ext-zlib": "*", - "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8" + "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10" }, "suggest": { - "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses" + "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.6-dev" + "dev-master": "1.7-dev" } }, "autoload": { @@ -1831,7 +1850,7 @@ "uri", "url" ], - "time": "2019-07-01T23:21:34+00:00" + "time": "2020-09-30T07:37:11+00:00" }, { "name": "illuminate/config", @@ -2100,25 +2119,25 @@ }, { "name": "klarna/m2-payments", - "version": "7.5.1", + "version": "7.6.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/klarna/m2-payments/klarna-m2-payments-7.5.1.0.zip", - "shasum": "0246005c5d1bd9bf7e4c3c9e92f418024fe7ed0d" + "url": "https://repo.magento.com/archives/klarna/m2-payments/klarna-m2-payments-7.6.1.0.zip", + "shasum": "f710eda4053427417ff89fec22206eae59742beb" }, "require": { - "klarna/module-core": "5.3.0", - "klarna/module-kp": "6.5.1", - "klarna/module-ordermanagement": "5.0.8" + "klarna/module-core": "5.3.1", + "klarna/module-kp": "6.5.2", + "klarna/module-ordermanagement": "5.1.1" }, "require-dev": { - "friendsofphp/php-cs-fixer": "~2.10.1", + "friendsofphp/php-cs-fixer": "~2.14.0", "jakub-onderka/php-console-highlighter": "^0.3.2", "jakub-onderka/php-parallel-lint": "^0.9.2", "lusitanian/oauth": "~0.8.10", "magento/magento-coding-standard": "*", "mikey179/vfsstream": "^1.6", - "pdepend/pdepend": "^2.5", + "pdepend/pdepend": "^2.5.2", "phploc/phploc": "^4.0", "phpmd/phpmd": "@stable", "phpro/grumphp": "^0.14", @@ -2135,11 +2154,11 @@ }, { "name": "klarna/module-core", - "version": "5.3.0", + "version": "5.3.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/klarna/module-core/klarna-module-core-5.3.0.0.zip", - "shasum": "56c46cba222fd87495b67b2293dee81926d28e1c" + "url": "https://repo.magento.com/archives/klarna/module-core/klarna-module-core-5.3.1.0.zip", + "shasum": "a659d1f6b73e652873711ba3c571e1b5e95c0781" }, "require": { "guzzlehttp/guzzle": "^6.0", @@ -2223,11 +2242,11 @@ }, { "name": "klarna/module-kp", - "version": "6.5.1", + "version": "6.5.2", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/klarna/module-kp/klarna-module-kp-6.5.1.0.zip", - "shasum": "b7a07c16b9a49a89615e29e0f87eb20c76d2cb5c" + "url": "https://repo.magento.com/archives/klarna/module-kp/klarna-module-kp-6.5.2.0.zip", + "shasum": "ced255886156421059394612d53ee59e3e4d3d1a" }, "require": { "klarna/module-core": "^5.2", @@ -2310,11 +2329,11 @@ }, { "name": "klarna/module-ordermanagement", - "version": "5.0.8", + "version": "5.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/klarna/module-ordermanagement/klarna-module-ordermanagement-5.0.8.0.zip", - "shasum": "87fc66c717b46238ca5db2961ba866d8871b47fa" + "url": "https://repo.magento.com/archives/klarna/module-ordermanagement/klarna-module-ordermanagement-5.1.1.0.zip", + "shasum": "cc9b557916e9c3253d132f30da2709f059595c80" }, "require": { "klarna/module-core": "^5.2", @@ -2970,41 +2989,41 @@ }, { "name": "laminas/laminas-eventmanager", - "version": "3.2.1", + "version": "3.3.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-eventmanager.git", - "reference": "ce4dc0bdf3b14b7f9815775af9dfee80a63b4748" + "reference": "1940ccf30e058b2fd66f5a9d696f1b5e0027b082" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-eventmanager/zipball/ce4dc0bdf3b14b7f9815775af9dfee80a63b4748", - "reference": "ce4dc0bdf3b14b7f9815775af9dfee80a63b4748", + "url": "https://api.github.com/repos/laminas/laminas-eventmanager/zipball/1940ccf30e058b2fd66f5a9d696f1b5e0027b082", + "reference": "1940ccf30e058b2fd66f5a9d696f1b5e0027b082", "shasum": "" }, "require": { "laminas/laminas-zendframework-bridge": "^1.0", - "php": "^5.6 || ^7.0" + "php": "^7.3 || ^8.0" }, "replace": { - "zendframework/zend-eventmanager": "self.version" + "zendframework/zend-eventmanager": "^3.2.1" }, "require-dev": { - "athletic/athletic": "^0.1", - "container-interop/container-interop": "^1.1.0", + "container-interop/container-interop": "^1.1", "laminas/laminas-coding-standard": "~1.0.0", "laminas/laminas-stdlib": "^2.7.3 || ^3.0", - "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2" + "phpbench/phpbench": "^0.17.1", + "phpunit/phpunit": "^8.5.8" }, "suggest": { - "container-interop/container-interop": "^1.1.0, to use the lazy listeners feature", + "container-interop/container-interop": "^1.1, to use the lazy listeners feature", "laminas/laminas-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.2-dev", - "dev-develop": "3.3-dev" + "dev-master": "3.3.x-dev", + "dev-develop": "3.4.x-dev" } }, "autoload": { @@ -3024,20 +3043,26 @@ "events", "laminas" ], - "time": "2019-12-31T16:44:52+00:00" + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2020-08-25T11:10:44+00:00" }, { "name": "laminas/laminas-feed", - "version": "2.12.2", + "version": "2.12.3", "source": { "type": "git", "url": "https://github.com/laminas/laminas-feed.git", - "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654" + "reference": "3c91415633cb1be6f9d78683d69b7dcbfe6b4012" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/8a193ac96ebcb3e16b6ee754ac2a889eefacb654", - "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654", + "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/3c91415633cb1be6f9d78683d69b7dcbfe6b4012", + "reference": "3c91415633cb1be6f9d78683d69b7dcbfe6b4012", "shasum": "" }, "require": { @@ -3091,7 +3116,13 @@ "feed", "laminas" ], - "time": "2020-03-29T12:36:29+00:00" + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2020-08-18T13:45:04+00:00" }, { "name": "laminas/laminas-filter", @@ -3252,16 +3283,16 @@ }, { "name": "laminas/laminas-http", - "version": "2.12.0", + "version": "2.13.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-http.git", - "reference": "48bd06ffa3a6875e2b77d6852405eb7b1589d575" + "reference": "33b7942f51ce905ce9bfc8bf28badc501d3904b5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-http/zipball/48bd06ffa3a6875e2b77d6852405eb7b1589d575", - "reference": "48bd06ffa3a6875e2b77d6852405eb7b1589d575", + "url": "https://api.github.com/repos/laminas/laminas-http/zipball/33b7942f51ce905ce9bfc8bf28badc501d3904b5", + "reference": "33b7942f51ce905ce9bfc8bf28badc501d3904b5", "shasum": "" }, "require": { @@ -3284,12 +3315,6 @@ "paragonie/certainty": "For automated management of cacert.pem" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.12.x-dev", - "dev-develop": "2.13.x-dev" - } - }, "autoload": { "psr-4": { "Laminas\\Http\\": "src/" @@ -3312,7 +3337,7 @@ "type": "community_bridge" } ], - "time": "2020-06-23T15:14:37+00:00" + "time": "2020-08-18T17:11:58+00:00" }, { "name": "laminas/laminas-hydrator", @@ -3698,16 +3723,16 @@ }, { "name": "laminas/laminas-mail", - "version": "2.12.2", + "version": "2.12.3", "source": { "type": "git", "url": "https://github.com/laminas/laminas-mail.git", - "reference": "a85bd6ec20ebc382498cc1d3086dfe3fa201849b" + "reference": "c154a733b122539ac2c894561996c770db289f70" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-mail/zipball/a85bd6ec20ebc382498cc1d3086dfe3fa201849b", - "reference": "a85bd6ec20ebc382498cc1d3086dfe3fa201849b", + "url": "https://api.github.com/repos/laminas/laminas-mail/zipball/c154a733b122539ac2c894561996c770db289f70", + "reference": "c154a733b122539ac2c894561996c770db289f70", "shasum": "" }, "require": { @@ -3762,7 +3787,7 @@ "type": "community_bridge" } ], - "time": "2020-08-06T14:33:28+00:00" + "time": "2020-08-12T14:51:33+00:00" }, { "name": "laminas/laminas-math", @@ -3874,16 +3899,16 @@ }, { "name": "laminas/laminas-modulemanager", - "version": "2.8.4", + "version": "2.9.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-modulemanager.git", - "reference": "92b1cde1aab5aef687b863face6dd5d9c6751c78" + "reference": "789bbd4ab391da9221f265f6bb2d594f8f11855b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-modulemanager/zipball/92b1cde1aab5aef687b863face6dd5d9c6751c78", - "reference": "92b1cde1aab5aef687b863face6dd5d9c6751c78", + "url": "https://api.github.com/repos/laminas/laminas-modulemanager/zipball/789bbd4ab391da9221f265f6bb2d594f8f11855b", + "reference": "789bbd4ab391da9221f265f6bb2d594f8f11855b", "shasum": "" }, "require": { @@ -3891,10 +3916,11 @@ "laminas/laminas-eventmanager": "^3.2 || ^2.6.3", "laminas/laminas-stdlib": "^3.1 || ^2.7", "laminas/laminas-zendframework-bridge": "^1.0", - "php": "^5.6 || ^7.0" + "php": "^5.6 || ^7.0", + "webimpress/safe-writer": "^1.0.2 || ^2.1" }, "replace": { - "zendframework/zend-modulemanager": "self.version" + "zendframework/zend-modulemanager": "^2.8.4" }, "require-dev": { "laminas/laminas-coding-standard": "~1.0.0", @@ -3914,8 +3940,8 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.8.x-dev", - "dev-develop": "2.9.x-dev" + "dev-master": "2.9.x-dev", + "dev-develop": "2.10.x-dev" } }, "autoload": { @@ -3933,7 +3959,13 @@ "laminas", "modulemanager" ], - "time": "2019-12-31T17:26:56+00:00" + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2020-08-25T09:29:22+00:00" }, { "name": "laminas/laminas-mvc", @@ -4383,35 +4415,35 @@ }, { "name": "laminas/laminas-stdlib", - "version": "3.2.1", + "version": "3.3.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-stdlib.git", - "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6" + "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/2b18347625a2f06a1a485acfbc870f699dbe51c6", - "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6", + "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/b9d84eaa39fde733356ea948cdef36c631f202b6", + "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6", "shasum": "" }, "require": { "laminas/laminas-zendframework-bridge": "^1.0", - "php": "^5.6 || ^7.0" + "php": "^7.3 || ^8.0" }, "replace": { - "zendframework/zend-stdlib": "self.version" + "zendframework/zend-stdlib": "^3.2.1" }, "require-dev": { "laminas/laminas-coding-standard": "~1.0.0", - "phpbench/phpbench": "^0.13", - "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2" + "phpbench/phpbench": "^0.17.1", + "phpunit/phpunit": "^9.3.7" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.2.x-dev", - "dev-develop": "3.3.x-dev" + "dev-master": "3.3.x-dev", + "dev-develop": "3.4.x-dev" } }, "autoload": { @@ -4429,7 +4461,13 @@ "laminas", "stdlib" ], - "time": "2019-12-31T17:51:15+00:00" + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2020-08-25T09:08:16+00:00" }, { "name": "laminas/laminas-text", @@ -4706,31 +4744,27 @@ }, { "name": "laminas/laminas-zendframework-bridge", - "version": "1.0.4", + "version": "1.1.1", "source": { "type": "git", "url": "https://github.com/laminas/laminas-zendframework-bridge.git", - "reference": "fcd87520e4943d968557803919523772475e8ea3" + "reference": "6ede70583e101030bcace4dcddd648f760ddf642" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3", - "reference": "fcd87520e4943d968557803919523772475e8ea3", + "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/6ede70583e101030bcace4dcddd648f760ddf642", + "reference": "6ede70583e101030bcace4dcddd648f760ddf642", "shasum": "" }, "require": { - "php": "^5.6 || ^7.0" + "php": "^5.6 || ^7.0 || ^8.0" }, "require-dev": { - "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1", + "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^9.3", "squizlabs/php_codesniffer": "^3.5" }, "type": "library", "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev", - "dev-develop": "1.1.x-dev" - }, "laminas": { "module": "Laminas\\ZendFrameworkBridge" } @@ -4760,27 +4794,27 @@ "type": "community_bridge" } ], - "time": "2020-05-20T16:45:56+00:00" + "time": "2020-09-14T14:23:00+00:00" }, { "name": "magento/adobe-stock-integration", - "version": "1.0.1", + "version": "1.0.2", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/adobe-stock-integration/magento-adobe-stock-integration-1.0.1.0.zip", - "shasum": "207f0141051c92fb777509ee7deb894471a6dbd7" + "url": "https://repo.magento.com/archives/magento/adobe-stock-integration/magento-adobe-stock-integration-1.0.2.0.zip", + "shasum": "f241027da030675c38e1c38a9630c4e71be77b33" }, "require": { - "magento/module-adobe-ims": "1.0.0", - "magento/module-adobe-ims-api": "1.0.0", - "magento/module-adobe-stock-admin-ui": "1.0.0", - "magento/module-adobe-stock-asset": "1.0.0", - "magento/module-adobe-stock-asset-api": "1.0.0", - "magento/module-adobe-stock-client": "1.0.0", - "magento/module-adobe-stock-client-api": "1.0.0", - "magento/module-adobe-stock-image": "1.0.0", - "magento/module-adobe-stock-image-admin-ui": "1.0.1", - "magento/module-adobe-stock-image-api": "1.0.0" + "magento/module-adobe-ims": "1.0.1", + "magento/module-adobe-ims-api": "1.0.1", + "magento/module-adobe-stock-admin-ui": "1.0.1", + "magento/module-adobe-stock-asset": "1.0.1", + "magento/module-adobe-stock-asset-api": "1.0.1", + "magento/module-adobe-stock-client": "1.0.1", + "magento/module-adobe-stock-client-api": "1.0.1", + "magento/module-adobe-stock-image": "1.0.1", + "magento/module-adobe-stock-image-admin-ui": "1.0.2", + "magento/module-adobe-stock-image-api": "1.0.1" }, "type": "metapackage", "description": "Adobe Stock integration" @@ -5024,11 +5058,11 @@ }, { "name": "magento/framework", - "version": "102.0.5-p2", + "version": "102.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/framework/magento-framework-102.0.5.0-patch2.zip", - "shasum": "c822a9c727e4bf7f58464588a73666035d387843" + "url": "https://repo.magento.com/archives/magento/framework/magento-framework-102.0.6.0.zip", + "shasum": "5dd3ac0321de965f3d4769a894bb0a8ed27550c7" }, "require": { "colinmollenhour/php-redis-session-abstract": "~1.4.0", @@ -5164,11 +5198,11 @@ }, { "name": "magento/framework-message-queue", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/framework-message-queue/magento-framework-message-queue-100.3.5.0.zip", - "shasum": "f2d56382558a899dd7b04fa2b961f3ab00edc6ad" + "url": "https://repo.magento.com/archives/magento/framework-message-queue/magento-framework-message-queue-100.3.6.0.zip", + "shasum": "876005a316548d01f6a2af89c01e38ca06284567" }, "require": { "magento/framework": "102.0.*", @@ -5249,25 +5283,25 @@ }, { "name": "magento/inventory-composer-metapackage", - "version": "1.1.5-p1", + "version": "1.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/inventory-composer-metapackage/magento-inventory-composer-metapackage-1.1.5.0-patch1.zip", - "shasum": "74f6000a3073e2ab8d6d69c6cbeeb817ecc4975c" + "url": "https://repo.magento.com/archives/magento/inventory-composer-metapackage/magento-inventory-composer-metapackage-1.1.6.0.zip", + "shasum": "7ea8ae2b3e6044d59b71939ed14837ba313b7059" }, "require": { "magento/inventory-composer-installer": "1.1.0", - "magento/module-inventory": "1.0.8", - "magento/module-inventory-admin-ui": "1.0.9", + "magento/module-inventory": "1.0.9", + "magento/module-inventory-admin-ui": "1.0.10", "magento/module-inventory-advanced-checkout": "1.0.1", "magento/module-inventory-api": "1.0.8", "magento/module-inventory-bundle-product": "1.0.6", "magento/module-inventory-bundle-product-admin-ui": "1.0.6", - "magento/module-inventory-cache": "1.0.6", - "magento/module-inventory-catalog": "1.0.9", - "magento/module-inventory-catalog-admin-ui": "1.0.8", + "magento/module-inventory-cache": "1.0.7", + "magento/module-inventory-catalog": "1.0.10", + "magento/module-inventory-catalog-admin-ui": "1.0.9", "magento/module-inventory-catalog-api": "1.1.2", - "magento/module-inventory-catalog-search": "1.0.7", + "magento/module-inventory-catalog-search": "1.0.8", "magento/module-inventory-configurable-product": "1.0.8", "magento/module-inventory-configurable-product-admin-ui": "1.0.7", "magento/module-inventory-configurable-product-indexer": "1.0.6", @@ -5284,23 +5318,23 @@ "magento/module-inventory-grouped-product-admin-ui": "1.0.8", "magento/module-inventory-grouped-product-indexer": "1.0.6", "magento/module-inventory-import-export": "1.0.8", - "magento/module-inventory-indexer": "1.0.8", - "magento/module-inventory-low-quantity-notification": "1.0.8", - "magento/module-inventory-low-quantity-notification-admin-ui": "1.0.7", + "magento/module-inventory-indexer": "1.0.9", + "magento/module-inventory-low-quantity-notification": "1.0.9", + "magento/module-inventory-low-quantity-notification-admin-ui": "1.0.8", "magento/module-inventory-low-quantity-notification-api": "1.0.6", "magento/module-inventory-multi-dimensional-indexer-api": "1.0.7", "magento/module-inventory-product-alert": "1.0.8", "magento/module-inventory-requisition-list": "1.0.1", - "magento/module-inventory-reservation-cli": "1.0.2", - "magento/module-inventory-reservations": "1.0.7", + "magento/module-inventory-reservation-cli": "1.0.3", + "magento/module-inventory-reservations": "1.0.8", "magento/module-inventory-reservations-api": "1.0.6", - "magento/module-inventory-sales": "1.0.8", + "magento/module-inventory-sales": "1.0.9", "magento/module-inventory-sales-admin-ui": "1.0.8", "magento/module-inventory-sales-api": "1.0.7", "magento/module-inventory-sales-frontend-ui": "1.0.6", "magento/module-inventory-setup-fixture-generator": "1.0.3", "magento/module-inventory-shipping": "1.0.8", - "magento/module-inventory-shipping-admin-ui": "1.0.8", + "magento/module-inventory-shipping-admin-ui": "1.0.9", "magento/module-inventory-source-deduction-api": "1.0.8", "magento/module-inventory-source-selection": "1.0.7", "magento/module-inventory-source-selection-api": "1.2.2" @@ -5471,11 +5505,11 @@ }, { "name": "magento/magento-cloud-components", - "version": "1.0.6", + "version": "1.0.7", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/magento-cloud-components/magento-magento-cloud-components-1.0.6.0.zip", - "shasum": "291926a7210ba72eabe45c0220e2bad11b84569e" + "url": "https://repo.magento.com/archives/magento/magento-cloud-components/magento-magento-cloud-components-1.0.7.0.zip", + "shasum": "bc663be7930e70b2ceec6172d7c6fc7407025cfd" }, "require": { "colinmollenhour/cache-backend-redis": "^1.9", @@ -5488,7 +5522,7 @@ "consolidation/robo": "^1.2", "phpmd/phpmd": "@stable", "phpstan/phpstan": "^0.11", - "phpunit/phpunit": "^6.2", + "phpunit/phpunit": "^7.2", "squizlabs/php_codesniffer": "^3.0" }, "suggest": { @@ -5510,11 +5544,11 @@ }, { "name": "magento/magento-cloud-docker", - "version": "1.1.1", + "version": "1.1.2", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/magento-cloud-docker/magento-magento-cloud-docker-1.1.1.0.zip", - "shasum": "9abb937c2bd3a3e557ef1602620297377886926b" + "url": "https://repo.magento.com/archives/magento/magento-cloud-docker/magento-magento-cloud-docker-1.1.2.0.zip", + "shasum": "dc97c4c2f5e5c0e082531d3be1c9707655d9566c" }, "require": { "composer/composer": "^1.0", @@ -5600,17 +5634,17 @@ }, { "name": "magento/magento-cloud-metapackage", - "version": "2.3.5", + "version": "2.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/magento-cloud-metapackage/magento-magento-cloud-metapackage-2.3.5.0.zip", - "shasum": "d89dbeeed398feed22483059b973425ff8819bc6" + "url": "https://repo.magento.com/archives/magento/magento-cloud-metapackage/magento-magento-cloud-metapackage-2.3.6.0.zip", + "shasum": "7bb66668242ffa2563dbbebb68f9b9be82e41029" }, "require": { "fastly/magento2": "^1.2.34", - "magento/ece-tools": "^2002.0.20", + "magento/ece-tools": "^2002.1.0", "magento/module-paypal-on-boarding": "~100.3.0", - "magento/product-enterprise-edition": ">=2.3.5 <2.3.6" + "magento/product-enterprise-edition": ">=2.3.6 <2.3.7" }, "type": "metapackage", "license": [ @@ -5620,25 +5654,25 @@ }, { "name": "magento/magento-cloud-patches", - "version": "1.0.6", + "version": "1.0.8", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/magento-cloud-patches/magento-magento-cloud-patches-1.0.6.0.zip", - "shasum": "7e98bf341fb4b80df0231930cd659e972dd06b0c" + "url": "https://repo.magento.com/archives/magento/magento-cloud-patches/magento-magento-cloud-patches-1.0.8.0.zip", + "shasum": "16b1d026dc273c01aad76fe9e01c777f208f967f" }, "require": { "composer/composer": "@stable", "composer/semver": "^1.5", "ext-json": "*", - "magento/quality-patches": "^1.0.0", + "magento/quality-patches": "^1.0.7", "monolog/monolog": "^1.16", "php": "^7.0", - "symfony/config": "^3.3||^4.4", - "symfony/console": "^2.6||^4.0", - "symfony/dependency-injection": "^3.3||^4.3", - "symfony/process": "^2.1||^4.1", - "symfony/proxy-manager-bridge": "^3.3||^4.3", - "symfony/yaml": "^3.3||^4.0" + "symfony/config": "^3.3||^4.4||^5.1", + "symfony/console": "^2.6||^4.0||^5.1", + "symfony/dependency-injection": "^3.3||^4.3||^5.1", + "symfony/process": "^2.1||^4.1||^5.1", + "symfony/proxy-manager-bridge": "^3.3||^4.3||^5.1", + "symfony/yaml": "^3.3||^4.0||^5.1" }, "require-dev": { "codeception/codeception": "^2.5.3", @@ -5744,11 +5778,11 @@ }, { "name": "magento/magento2-base", - "version": "2.3.5-p2", + "version": "2.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/magento2-base/magento-magento2-base-2.3.5.0-patch2.zip", - "shasum": "0f5aaedb0b2a127f3eb508ccd053e62d820060f2" + "url": "https://repo.magento.com/archives/magento/magento2-base/magento-magento2-base-2.3.6.0.zip", + "shasum": "5eb86a791ca2cb7362107984e5c2854f664aab9b" }, "require": { "braintree/braintree_php": "3.35.0", @@ -6343,11 +6377,11 @@ }, { "name": "magento/magento2-ee-base", - "version": "2.3.5-p2", + "version": "2.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/magento2-ee-base/magento-magento2-ee-base-2.3.5.0-patch2.zip", - "shasum": "b60437db62e1fd10d0f3eeff4b412c1d65d1d72d" + "url": "https://repo.magento.com/archives/magento/magento2-ee-base/magento-magento2-ee-base-2.3.6.0.zip", + "shasum": "f4c8a0f130930297c254e0b2fc57427eb5c5c333" }, "require": { "braintree/braintree_php": "3.35.0", @@ -6500,11 +6534,11 @@ }, { "name": "magento/module-admin-gws", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-admin-gws/magento-module-admin-gws-100.3.5.0.zip", - "shasum": "9011b6a21d9ecf809d7261ecfe3cf6b647b4921e" + "url": "https://repo.magento.com/archives/magento/module-admin-gws/magento-module-admin-gws-100.3.6.0.zip", + "shasum": "a99821455ebfbcf6ed1b5f24c7e3b77ade1b2ca5" }, "require": { "magento/framework": "102.0.*", @@ -6543,6 +6577,63 @@ ], "description": "N/A" }, + { + "name": "magento/module-admin-gws-configurable-product", + "version": "100.3.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-admin-gws-configurable-product/magento-module-admin-gws-configurable-product-100.3.0.0.zip", + "shasum": "8e107f7a761e2711e2851ce0417da44a243e0f1b" + }, + "require": { + "magento/framework": "102.0.*", + "magento/module-admin-gws": "100.3.*", + "magento/module-configurable-product": "100.3.*", + "php": "~7.1.3||~7.2.0||~7.3.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\AdminGwsConfigurableProduct\\": "" + } + }, + "license": [ + "proprietary" + ], + "description": "N/A" + }, + { + "name": "magento/module-admin-gws-staging", + "version": "100.3.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-admin-gws-staging/magento-module-admin-gws-staging-100.3.0.0.zip", + "shasum": "001eaa7c865ca3cd214f74d5c9d4bfb5aea2cd8c" + }, + "require": { + "magento/framework": "102.0.*", + "magento/module-admin-gws": "100.3.*", + "magento/module-staging": "101.1.*", + "magento/module-store": "101.0.*", + "php": "~7.1.3||~7.2.0||~7.3.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\AdminGwsStaging\\": "" + } + }, + "license": [ + "proprietary" + ], + "description": "N/A" + }, { "name": "magento/module-admin-notification", "version": "100.3.5", @@ -6578,19 +6669,19 @@ }, { "name": "magento/module-adobe-ims", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-ims/magento-module-adobe-ims-1.0.0.0.zip", - "shasum": "710f086b6e95994efd4bc1d289dc3d5060f08f44" + "url": "https://repo.magento.com/archives/magento/module-adobe-ims/magento-module-adobe-ims-1.0.1.0.zip", + "shasum": "0d1acee77837c886a55965a9d11d6d010d2ee961" }, "require": { - "magento/framework": "~102.0.4", - "magento/module-adobe-ims-api": "1.*.*", - "magento/module-authorization": "~100.3.4", - "magento/module-backend": "~101.0.4", - "magento/module-config": "~101.1.4", - "magento/module-user": "~101.1.4", + "magento/framework": "*", + "magento/module-adobe-ims-api": "1.0.*", + "magento/module-authorization": "*", + "magento/module-backend": "*", + "magento/module-config": "*", + "magento/module-user": "*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "type": "magento2-module", @@ -6610,14 +6701,14 @@ }, { "name": "magento/module-adobe-ims-api", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-ims-api/magento-module-adobe-ims-api-1.0.0.0.zip", - "shasum": "b06bd9bb77149097697b2009021b554730413b21" + "url": "https://repo.magento.com/archives/magento/module-adobe-ims-api/magento-module-adobe-ims-api-1.0.1.0.zip", + "shasum": "8184ca2c849d7e525a2b0ae8997dcb7ca1df0b2f" }, "require": { - "magento/framework": "~102.0.4", + "magento/framework": "*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "type": "magento2-module", @@ -6637,22 +6728,22 @@ }, { "name": "magento/module-adobe-stock-admin-ui", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-admin-ui/magento-module-adobe-stock-admin-ui-1.0.0.0.zip", - "shasum": "8c78fac04b75ebaf3430a0e4dd9d9be255b3350c" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-admin-ui/magento-module-adobe-stock-admin-ui-1.0.1.0.zip", + "shasum": "6fdffb7780d558c392dceef331ac775b5b3660c1" }, "require": { - "magento/framework": "~102.0.4", - "magento/module-adobe-ims-api": "1.*.*", - "magento/module-adobe-stock-client-api": "1.*.*", - "magento/module-backend": "~101.0.4", - "magento/module-config": "~101.1.4", + "magento/framework": "*", + "magento/module-adobe-ims-api": "1.0.*", + "magento/module-adobe-stock-client-api": "1.0.*", + "magento/module-backend": "*", + "magento/module-config": "*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "suggest": { - "magento/module-cms": "~103.0.4" + "magento/module-cms": "*" }, "type": "magento2-module", "autoload": { @@ -6671,19 +6762,19 @@ }, { "name": "magento/module-adobe-stock-asset", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-asset/magento-module-adobe-stock-asset-1.0.0.0.zip", - "shasum": "d691df693547aa576bdbdc511fcf3437d729401b" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-asset/magento-module-adobe-stock-asset-1.0.1.0.zip", + "shasum": "c8d641777d114612cebd7b3bd860419934889987" }, "require": { - "magento/framework": "~102.0.4", - "magento/module-adobe-stock-asset-api": "1.*.*", - "magento/module-adobe-stock-client-api": "1.*.*", - "magento/module-config": "~101.1.4", - "magento/module-media-gallery": "~100.3.0", - "magento/module-media-gallery-api": "~100.3.0", + "magento/framework": "*", + "magento/module-adobe-stock-asset-api": "1.0.*", + "magento/module-adobe-stock-client-api": "1.0.*", + "magento/module-config": "*", + "magento/module-media-gallery": "*", + "magento/module-media-gallery-api": "*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "type": "magento2-module", @@ -6703,14 +6794,14 @@ }, { "name": "magento/module-adobe-stock-asset-api", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-asset-api/magento-module-adobe-stock-asset-api-1.0.0.0.zip", - "shasum": "74c37ce6d176428be340394c9d1ba01af054c46f" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-asset-api/magento-module-adobe-stock-asset-api-1.0.1.0.zip", + "shasum": "88a4f5749353fc6f318ace2c25405fab73635d30" }, "require": { - "magento/framework": "~102.0.4", + "magento/framework": "*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "type": "magento2-module", @@ -6730,17 +6821,17 @@ }, { "name": "magento/module-adobe-stock-client", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-client/magento-module-adobe-stock-client-1.0.0.0.zip", - "shasum": "3482b1559ebb5fb2f659d1fef1b796f8be12ae7f" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-client/magento-module-adobe-stock-client-1.0.1.0.zip", + "shasum": "c3a253135e07d3ac6ee926e052048288eec6e051" }, "require": { - "astock/stock-api-libphp": "^1.1.2", - "magento/framework": "~102.0.4", - "magento/module-adobe-ims-api": "1.*.*", - "magento/module-adobe-stock-client-api": "1.*.*", + "astock/stock-api-libphp": "^1.1.3", + "magento/framework": "*", + "magento/module-adobe-ims-api": "1.0.*", + "magento/module-adobe-stock-client-api": "1.0.*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "type": "magento2-module", @@ -6760,14 +6851,14 @@ }, { "name": "magento/module-adobe-stock-client-api", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-client-api/magento-module-adobe-stock-client-api-1.0.0.0.zip", - "shasum": "d50de661787f40fe9e357a11aec58aff78f6fc19" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-client-api/magento-module-adobe-stock-client-api-1.0.1.0.zip", + "shasum": "74cf0d23115fec3795d77b2d5e476eb7d06d33d9" }, "require": { - "magento/framework": "~102.0.4", + "magento/framework": "*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "type": "magento2-module", @@ -6787,22 +6878,22 @@ }, { "name": "magento/module-adobe-stock-image", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image/magento-module-adobe-stock-image-1.0.0.0.zip", - "shasum": "06e8de90d2e9c9e2fd9eb0d040f0a5e38190ff65" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image/magento-module-adobe-stock-image-1.0.1.0.zip", + "shasum": "48ca389d085f4398f8548bd2ce42615c7755e17f" }, "require": { - "magento/framework": "~102.0.4", - "magento/module-adobe-stock-asset-api": "1.*.*", - "magento/module-adobe-stock-client-api": "1.*.*", - "magento/module-adobe-stock-image-api": "1.*.*", - "magento/module-media-gallery-api": "~100.3.0", + "magento/framework": "*", + "magento/module-adobe-stock-asset-api": "1.0.*", + "magento/module-adobe-stock-client-api": "1.0.*", + "magento/module-adobe-stock-image-api": "1.0.*", + "magento/module-media-gallery-api": "*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "suggest": { - "magento/module-catalog": "~103.0.4" + "magento/module-catalog": "*" }, "type": "magento2-module", "autoload": { @@ -6821,25 +6912,25 @@ }, { "name": "magento/module-adobe-stock-image-admin-ui", - "version": "1.0.1", + "version": "1.0.2", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image-admin-ui/magento-module-adobe-stock-image-admin-ui-1.0.1.0.zip", - "shasum": "7aee8874378aaf13e9bb6a7fd6cafea80f3e2ec7" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image-admin-ui/magento-module-adobe-stock-image-admin-ui-1.0.2.0.zip", + "shasum": "f16c77eca30c5cec48381b10002d6735cd9fa0de" }, "require": { - "magento/framework": "~102.0.4", - "magento/module-adobe-ims": "1.*.*", - "magento/module-adobe-ims-api": "1.*.*", - "magento/module-adobe-stock-asset-api": "1.*.*", - "magento/module-adobe-stock-client-api": "1.*.*", - "magento/module-adobe-stock-image-api": "1.*.*", - "magento/module-backend": "~101.0.4", - "magento/module-ui": "~101.1.4", + "magento/framework": "*", + "magento/module-adobe-ims": "1.0.*", + "magento/module-adobe-ims-api": "1.0.*", + "magento/module-adobe-stock-asset-api": "1.0.*", + "magento/module-adobe-stock-client-api": "1.0.*", + "magento/module-adobe-stock-image-api": "1.0.*", + "magento/module-backend": "*", + "magento/module-ui": "*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "suggest": { - "magento/module-cms": "~103.0.4" + "magento/module-cms": "*" }, "type": "magento2-module", "autoload": { @@ -6858,14 +6949,14 @@ }, { "name": "magento/module-adobe-stock-image-api", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image-api/magento-module-adobe-stock-image-api-1.0.0.0.zip", - "shasum": "73de6001e60c181d353b0076bf072c89127c0d69" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image-api/magento-module-adobe-stock-image-api-1.0.1.0.zip", + "shasum": "76adcc85b56c4b0c61fe5fff94671b02bce12246" }, "require": { - "magento/framework": "~102.0.4", + "magento/framework": "*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "type": "magento2-module", @@ -6915,11 +7006,11 @@ }, { "name": "magento/module-advanced-checkout", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-advanced-checkout/magento-module-advanced-checkout-100.3.5.0.zip", - "shasum": "26a2cf7b5537a714a51b805dbc8443f43e7bd591" + "url": "https://repo.magento.com/archives/magento/module-advanced-checkout/magento-module-advanced-checkout-100.3.6.0.zip", + "shasum": "617a29d766dd317f576e87048d2e380ed857c004" }, "require": { "magento/framework": "102.0.*", @@ -7151,11 +7242,11 @@ }, { "name": "magento/module-analytics", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-analytics/magento-module-analytics-100.3.5.0.zip", - "shasum": "9bd395a51e3982f2f86bea5812ce48dc4597e8ca" + "url": "https://repo.magento.com/archives/magento/module-analytics/magento-module-analytics-100.3.6.0.zip", + "shasum": "eb12891a8cccf87fa40926714d77c5871825edaf" }, "require": { "magento/framework": "102.0.*", @@ -7182,11 +7273,11 @@ }, { "name": "magento/module-asynchronous-operations", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-asynchronous-operations/magento-module-asynchronous-operations-100.3.5.0.zip", - "shasum": "33c0400729a05e80a0911d9f5a1de38743011aeb" + "url": "https://repo.magento.com/archives/magento/module-asynchronous-operations/magento-module-asynchronous-operations-100.3.6.0.zip", + "shasum": "71c491c85bba044c46cd796e22085d02262604b0" }, "require": { "magento/framework": "102.0.*", @@ -7217,11 +7308,11 @@ }, { "name": "magento/module-authorization", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-authorization/magento-module-authorization-100.3.4.0.zip", - "shasum": "b7f9a8b38412d25f39963684fbc23fe42b18fbe7" + "url": "https://repo.magento.com/archives/magento/module-authorization/magento-module-authorization-100.3.5.0.zip", + "shasum": "f6af0187ac2cad1491511eb830d9200609f35c34" }, "require": { "magento/framework": "102.0.*", @@ -7381,11 +7472,11 @@ }, { "name": "magento/module-backend", - "version": "101.0.5-p2", + "version": "101.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-backend/magento-module-backend-101.0.5.0-patch2.zip", - "shasum": "e89775eee73a45dcad29c44cd8b48e456a7c148f" + "url": "https://repo.magento.com/archives/magento/module-backend/magento-module-backend-101.0.6.0.zip", + "shasum": "0fb5bc0d9ed8ce1cb51b8f0930374cc622cd3899" }, "require": { "magento/framework": "102.0.*", @@ -7457,11 +7548,11 @@ }, { "name": "magento/module-banner", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-banner/magento-module-banner-101.1.5.0.zip", - "shasum": "6105f0ec7ad4066ad76f864d823848088d974bd4" + "url": "https://repo.magento.com/archives/magento/module-banner/magento-module-banner-101.1.6.0.zip", + "shasum": "9a8c30c4b2d18f2909afa5c3c9a7fb57d891416b" }, "require": { "magento/framework": "102.0.*", @@ -7523,21 +7614,21 @@ }, { "name": "magento/module-banner-page-builder", - "version": "1.3.2", + "version": "1.3.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-banner-page-builder/magento-module-banner-page-builder-1.3.2.0.zip", - "shasum": "8c0a8ba1fa3c62599b1fed3a77e641056feaa335" + "url": "https://repo.magento.com/archives/magento/module-banner-page-builder/magento-module-banner-page-builder-1.3.3.0.zip", + "shasum": "afa18f7626f308e33d0518a20a9dbe7ea73f8c5c" }, "require": { - "magento/framework": "~102.0.5-p2", - "magento/module-backend": "~101.0.5-p2", - "magento/module-banner": "~101.1.5", + "magento/framework": "~102.0.6", + "magento/module-backend": "~101.0.6", + "magento/module-banner": "~101.1.6", "magento/module-banner-customer-segment": "~100.3.5", "magento/module-catalog-rule": "101.1.*", - "magento/module-customer-segment": "~102.0.5", + "magento/module-customer-segment": "~102.0.6", "magento/module-page-builder": "1.3.*", - "magento/module-sales-rule": "~101.1.5", + "magento/module-sales-rule": "~101.1.6", "php": "~7.1.3||~7.2.0||~7.3.0" }, "type": "magento2-module", @@ -7556,15 +7647,15 @@ }, { "name": "magento/module-banner-page-builder-analytics", - "version": "1.3.2", + "version": "1.3.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-banner-page-builder-analytics/magento-module-banner-page-builder-analytics-1.3.2.0.zip", - "shasum": "9ea2ff4162691f4f4f4c859466254533281e90ac" + "url": "https://repo.magento.com/archives/magento/module-banner-page-builder-analytics/magento-module-banner-page-builder-analytics-1.3.3.0.zip", + "shasum": "25b6f99856a30b3b002184c8b6f6c69aba25c2f1" }, "require": { - "magento/framework": "~102.0.5-p2", - "magento/module-banner": "~101.1.5", + "magento/framework": "~102.0.6", + "magento/module-banner": "~101.1.6", "magento/module-page-builder-analytics": "1.3.*", "php": "~7.1.3||~7.2.0||~7.3.0" }, @@ -7584,11 +7675,11 @@ }, { "name": "magento/module-braintree", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-braintree/magento-module-braintree-100.3.5.0.zip", - "shasum": "23f784d05c3431045e435001cc3a01887d8d55ad" + "url": "https://repo.magento.com/archives/magento/module-braintree/magento-module-braintree-100.3.6.0.zip", + "shasum": "9e543332dbd185d668d08cde0367947be0464b23" }, "require": { "braintree/braintree_php": "3.35.0", @@ -7631,11 +7722,11 @@ }, { "name": "magento/module-braintree-graph-ql", - "version": "100.3.2", + "version": "100.3.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-braintree-graph-ql/magento-module-braintree-graph-ql-100.3.2.0.zip", - "shasum": "2ddc3ac79d5ecb4740b9904c3298f77c0076fbe3" + "url": "https://repo.magento.com/archives/magento/module-braintree-graph-ql/magento-module-braintree-graph-ql-100.3.3.0.zip", + "shasum": "7a9e279daa1253ef1315e29b6f28ffab0a021249" }, "require": { "magento/framework": "102.0.*", @@ -7665,11 +7756,11 @@ }, { "name": "magento/module-bundle", - "version": "100.3.5-p2", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-bundle/magento-module-bundle-100.3.5.0-patch2.zip", - "shasum": "f70f3f35721f27b9cc0b580bc19b198576448930" + "url": "https://repo.magento.com/archives/magento/module-bundle/magento-module-bundle-100.3.6.0.zip", + "shasum": "1de7398c89dbcbeea14f00456e55243ea1f838c2" }, "require": { "magento/framework": "102.0.*", @@ -7745,11 +7836,11 @@ }, { "name": "magento/module-bundle-import-export", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-bundle-import-export/magento-module-bundle-import-export-100.3.4.0.zip", - "shasum": "adb56b983de9cf6b26e505d43f1a3ec83ecf6098" + "url": "https://repo.magento.com/archives/magento/module-bundle-import-export/magento-module-bundle-import-export-100.3.5.0.zip", + "shasum": "5ff6980381f3b162b9e3bb60ae0d0d46580bd2c3" }, "require": { "magento/framework": "102.0.*", @@ -7808,11 +7899,11 @@ }, { "name": "magento/module-bundle-staging", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-bundle-staging/magento-module-bundle-staging-100.3.4.0.zip", - "shasum": "27a1b5cd997bd85648639b6703300f7f426953ac" + "url": "https://repo.magento.com/archives/magento/module-bundle-staging/magento-module-bundle-staging-100.3.5.0.zip", + "shasum": "c160a1c5a421df1b94c8eef8673d759a60a85d8c" }, "require": { "magento/framework": "102.0.*", @@ -7868,17 +7959,18 @@ }, { "name": "magento/module-captcha", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-captcha/magento-module-captcha-100.3.5.0.zip", - "shasum": "add6039b2f8aae8e902146d35591f2be6c1ed70d" + "url": "https://repo.magento.com/archives/magento/module-captcha/magento-module-captcha-100.3.6.0.zip", + "shasum": "3d4ec22cc61a1648134b29b27d9e8faeec52031d" }, "require": { "laminas/laminas-captcha": "^2.7.1", "laminas/laminas-db": "^2.8.2", "laminas/laminas-session": "^2.7.3", "magento/framework": "102.0.*", + "magento/module-authorization": "100.3.*", "magento/module-backend": "101.0.*", "magento/module-checkout": "100.3.*", "magento/module-customer": "102.0.*", @@ -7932,11 +8024,11 @@ }, { "name": "magento/module-catalog", - "version": "103.0.5-p2", + "version": "103.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog/magento-module-catalog-103.0.5.0-patch2.zip", - "shasum": "a3b99eda5d5d16ce67d0e94c7568db840ce36211" + "url": "https://repo.magento.com/archives/magento/module-catalog/magento-module-catalog-103.0.6.0.zip", + "shasum": "ac0f9d194081c3ba02adc21a5fbd6c2c090051f5" }, "require": { "magento/framework": "102.0.*", @@ -8083,11 +8175,11 @@ }, { "name": "magento/module-catalog-event", - "version": "101.0.5", + "version": "101.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-event/magento-module-catalog-event-101.0.5.0.zip", - "shasum": "792e4ad65459b453bbe838fb598011e89a6660d5" + "url": "https://repo.magento.com/archives/magento/module-catalog-event/magento-module-catalog-event-101.0.6.0.zip", + "shasum": "65fce8723b72c567a65d0fdb06808e6db9aba182" }, "require": { "magento/framework": "102.0.*", @@ -8119,11 +8211,11 @@ }, { "name": "magento/module-catalog-graph-ql", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-graph-ql/magento-module-catalog-graph-ql-100.3.5.0.zip", - "shasum": "886dc91a883514d71c2b2a784debca701579a871" + "url": "https://repo.magento.com/archives/magento/module-catalog-graph-ql/magento-module-catalog-graph-ql-100.3.6.0.zip", + "shasum": "f02f86535027c3415aea31d622a8411c3e8e085a" }, "require": { "magento/framework": "102.0.*", @@ -8158,11 +8250,11 @@ }, { "name": "magento/module-catalog-import-export", - "version": "101.0.5-p2", + "version": "101.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-import-export/magento-module-catalog-import-export-101.0.5.0-patch2.zip", - "shasum": "4553525eafe0d7eb01c0c064f04a63f69052a84a" + "url": "https://repo.magento.com/archives/magento/module-catalog-import-export/magento-module-catalog-import-export-101.0.6.0.zip", + "shasum": "c77113adc1666182e29f0d80dd52c2345ca5ecf8" }, "require": { "ext-ctype": "*", @@ -8228,11 +8320,11 @@ }, { "name": "magento/module-catalog-inventory", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-inventory/magento-module-catalog-inventory-100.3.5.0.zip", - "shasum": "7b1508cce56fac131a6bbe02d633762f7c05787b" + "url": "https://repo.magento.com/archives/magento/module-catalog-inventory/magento-module-catalog-inventory-100.3.6.0.zip", + "shasum": "405ce2cb921d6251e61df5ad9dc5ae16791c0668" }, "require": { "magento/framework": "102.0.*", @@ -8326,15 +8418,15 @@ }, { "name": "magento/module-catalog-page-builder-analytics", - "version": "1.3.2", + "version": "1.3.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-page-builder-analytics/magento-module-catalog-page-builder-analytics-1.3.2.0.zip", - "shasum": "25d8c8e83dc98569281cdd6cbd98e1a6a51865eb" + "url": "https://repo.magento.com/archives/magento/module-catalog-page-builder-analytics/magento-module-catalog-page-builder-analytics-1.3.3.0.zip", + "shasum": "e27ce0bb46fcf5c27ac6e51c0a6de3a0a0d14c72" }, "require": { - "magento/framework": "~102.0.5-p2", - "magento/module-catalog": "~103.0.5-p2", + "magento/framework": "~102.0.6", + "magento/module-catalog": "~103.0.6", "magento/module-page-builder-analytics": "1.3.*", "php": "~7.1.3||~7.2.0||~7.3.0" }, @@ -8354,15 +8446,15 @@ }, { "name": "magento/module-catalog-page-builder-analytics-staging", - "version": "1.3.2", + "version": "1.3.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-page-builder-analytics-staging/magento-module-catalog-page-builder-analytics-staging-1.3.2.0.zip", - "shasum": "8ab6bba7950985f8f918c4312b32233d25257341" + "url": "https://repo.magento.com/archives/magento/module-catalog-page-builder-analytics-staging/magento-module-catalog-page-builder-analytics-staging-1.3.3.0.zip", + "shasum": "b9c1f94e866ee2459d7b3ac6ad8cc0f279d32a8f" }, "require": { - "magento/framework": "~102.0.5-p2", - "magento/module-catalog": "~103.0.5-p2", + "magento/framework": "~102.0.6", + "magento/module-catalog": "~103.0.6", "magento/module-page-builder-analytics": "1.3.*", "php": "~7.1.3||~7.2.0||~7.3.0" }, @@ -8382,11 +8474,11 @@ }, { "name": "magento/module-catalog-permissions", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-permissions/magento-module-catalog-permissions-100.3.4.0.zip", - "shasum": "b2b26022e2db3ced5c41d8993ac3714b4967ce53" + "url": "https://repo.magento.com/archives/magento/module-catalog-permissions/magento-module-catalog-permissions-100.3.5.0.zip", + "shasum": "fec9c06a340fa99250dbe2d2194dbbd716969ed2" }, "require": { "magento/framework": "102.0.*", @@ -8420,11 +8512,11 @@ }, { "name": "magento/module-catalog-rule", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-rule/magento-module-catalog-rule-101.1.5.0.zip", - "shasum": "03cc677562434e6792fce263e40da07221640018" + "url": "https://repo.magento.com/archives/magento/module-catalog-rule/magento-module-catalog-rule-101.1.6.0.zip", + "shasum": "dcf58c9d22d365ceaee39b2aeb5a37b41ec6cec0" }, "require": { "magento/framework": "102.0.*", @@ -8490,13 +8582,43 @@ ], "description": "N/A" }, + { + "name": "magento/module-catalog-rule-graph-ql", + "version": "100.3.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-catalog-rule-graph-ql/magento-module-catalog-rule-graph-ql-100.3.0.0.zip", + "shasum": "82845cc4469233d533c24951e75ffae990c8b631" + }, + "require": { + "magento/framework": "102.0.*", + "php": "~7.1.3||~7.2.0||~7.3.0" + }, + "suggest": { + "magento/module-catalog-rule": "101.1.*" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\CatalogRuleGraphQl\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "N/A" + }, { "name": "magento/module-catalog-rule-staging", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-rule-staging/magento-module-catalog-rule-staging-100.3.5.0.zip", - "shasum": "74c9b0cd6a1e4e6914a960140cda6dd0654b10eb" + "url": "https://repo.magento.com/archives/magento/module-catalog-rule-staging/magento-module-catalog-rule-staging-100.3.6.0.zip", + "shasum": "0f331c72bf6941c1e72abd345937e4208b72f7c1" }, "require": { "magento/framework": "102.0.*", @@ -8527,11 +8649,11 @@ }, { "name": "magento/module-catalog-search", - "version": "101.0.5", + "version": "101.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-search/magento-module-catalog-search-101.0.5.0.zip", - "shasum": "c77d85c4a5819fafc0fc251e88cd5ccf8a78a101" + "url": "https://repo.magento.com/archives/magento/module-catalog-search/magento-module-catalog-search-101.0.6.0.zip", + "shasum": "f9b7da78b5d70a04a82531d129c23e6006cd23e3" }, "require": { "magento/framework": "102.0.*", @@ -8568,11 +8690,11 @@ }, { "name": "magento/module-catalog-staging", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-staging/magento-module-catalog-staging-100.3.5.0.zip", - "shasum": "ef69b858bed62217fc833771b0118fbb2ab37ead" + "url": "https://repo.magento.com/archives/magento/module-catalog-staging/magento-module-catalog-staging-100.3.6.0.zip", + "shasum": "15488f2b5c06d2fa246b7643cab3bfe9147b639d" }, "require": { "lib-libxml": "*", @@ -8653,14 +8775,14 @@ }, { "name": "magento/module-catalog-staging-page-builder", - "version": "1.3.2", + "version": "1.3.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-staging-page-builder/magento-module-catalog-staging-page-builder-1.3.2.0.zip", - "shasum": "b1a60662349d0ae11052a5f13b758bfd989becaf" + "url": "https://repo.magento.com/archives/magento/module-catalog-staging-page-builder/magento-module-catalog-staging-page-builder-1.3.3.0.zip", + "shasum": "5039b73deeef94a5bd6fb8ed0cb49210bd88e93f" }, "require": { - "magento/framework": "~102.0.5-p2", + "magento/framework": "~102.0.6", "php": "~7.1.3||~7.2.0||~7.3.0" }, "suggest": { @@ -8683,11 +8805,11 @@ }, { "name": "magento/module-catalog-url-rewrite", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-url-rewrite/magento-module-catalog-url-rewrite-100.3.5.0.zip", - "shasum": "8bf1d252e0f51973ee7cbff07f11dfe87e71bc30" + "url": "https://repo.magento.com/archives/magento/module-catalog-url-rewrite/magento-module-catalog-url-rewrite-100.3.6.0.zip", + "shasum": "2bffdf611125e42ad81d3e98b329d4ebe7e5605d" }, "require": { "magento/framework": "102.0.*", @@ -8786,11 +8908,11 @@ }, { "name": "magento/module-catalog-widget", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-widget/magento-module-catalog-widget-100.3.5.0.zip", - "shasum": "30ff13f0a1eb3bebe4470ce3db67d001d5478e9d" + "url": "https://repo.magento.com/archives/magento/module-catalog-widget/magento-module-catalog-widget-100.3.6.0.zip", + "shasum": "3fcede4d687f6312bf19583d57d07e9a7bd06451" }, "require": { "magento/framework": "102.0.*", @@ -8822,14 +8944,15 @@ }, { "name": "magento/module-checkout", - "version": "100.3.5-p2", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-checkout/magento-module-checkout-100.3.5.0-patch2.zip", - "shasum": "4e23275bac7c354547fc1dc42299e20541122c7f" + "url": "https://repo.magento.com/archives/magento/module-checkout/magento-module-checkout-100.3.6.0.zip", + "shasum": "b879f2d1f98ba983e943958488116c48ce2da843" }, "require": { "magento/framework": "102.0.*", + "magento/module-authorization": "100.3.*", "magento/module-captcha": "100.3.*", "magento/module-catalog": "103.0.*", "magento/module-catalog-inventory": "100.3.*", @@ -8870,11 +8993,11 @@ }, { "name": "magento/module-checkout-address-search", - "version": "100.3.3", + "version": "100.3.4", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-checkout-address-search/magento-module-checkout-address-search-100.3.3.0.zip", - "shasum": "33f22277d683d205999dd2b1bbbc0760d422012e" + "url": "https://repo.magento.com/archives/magento/module-checkout-address-search/magento-module-checkout-address-search-100.3.4.0.zip", + "shasum": "e5359df8702312d0c52dea292bbb2a945781a76a" }, "require": { "magento/framework": "102.0.*", @@ -9028,11 +9151,11 @@ }, { "name": "magento/module-cms", - "version": "103.0.5-p2", + "version": "103.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-cms/magento-module-cms-103.0.5.0-patch2.zip", - "shasum": "f0a40279ee17bf2fae8d825e02e39310e228fa4f" + "url": "https://repo.magento.com/archives/magento/module-cms/magento-module-cms-103.0.6.0.zip", + "shasum": "b91cee3b50776339f8cba1decbe104c50e2e8a6e" }, "require": { "magento/framework": "102.0.*", @@ -9101,14 +9224,14 @@ }, { "name": "magento/module-cms-page-builder-analytics", - "version": "1.3.2", + "version": "1.3.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-cms-page-builder-analytics/magento-module-cms-page-builder-analytics-1.3.2.0.zip", - "shasum": "a35c21fae8ad190181f8733f09502189be7e6bb9" + "url": "https://repo.magento.com/archives/magento/module-cms-page-builder-analytics/magento-module-cms-page-builder-analytics-1.3.3.0.zip", + "shasum": "d3a5636cdc6350df0bea8dfb34bce9845d5baf94" }, "require": { - "magento/framework": "~102.0.5-p2", + "magento/framework": "~102.0.6", "magento/module-cms": "103.0.*", "magento/module-page-builder-analytics": "1.3.*", "php": "~7.1.3||~7.2.0||~7.3.0" @@ -9129,14 +9252,14 @@ }, { "name": "magento/module-cms-page-builder-analytics-staging", - "version": "1.3.2", + "version": "1.3.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-cms-page-builder-analytics-staging/magento-module-cms-page-builder-analytics-staging-1.3.2.0.zip", - "shasum": "0760465ab19a2263ce3328a2b9cc0f2070e4a75c" + "url": "https://repo.magento.com/archives/magento/module-cms-page-builder-analytics-staging/magento-module-cms-page-builder-analytics-staging-1.3.3.0.zip", + "shasum": "452f474d968e2e73719228881e26763b030db2ed" }, "require": { - "magento/framework": "~102.0.5-p2", + "magento/framework": "~102.0.6", "magento/module-cms": "103.0.*", "magento/module-page-builder-analytics": "1.3.*", "php": "~7.1.3||~7.2.0||~7.3.0" @@ -9157,11 +9280,11 @@ }, { "name": "magento/module-cms-staging", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-cms-staging/magento-module-cms-staging-100.3.4.0.zip", - "shasum": "2361e1fcc4b45516c6fd45f77f2e6f5062381fec" + "url": "https://repo.magento.com/archives/magento/module-cms-staging/magento-module-cms-staging-100.3.5.0.zip", + "shasum": "acd500f68dc58646197e5540ba816ca381fa173b" }, "require": { "magento/framework": "102.0.*", @@ -9188,11 +9311,11 @@ }, { "name": "magento/module-cms-url-rewrite", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-cms-url-rewrite/magento-module-cms-url-rewrite-100.3.4.0.zip", - "shasum": "7df716cbc611cd6a5017129be80e80303334da58" + "url": "https://repo.magento.com/archives/magento/module-cms-url-rewrite/magento-module-cms-url-rewrite-100.3.5.0.zip", + "shasum": "652031049c8d6bd0017c845a0b7bdee06d5486bb" }, "require": { "magento/framework": "102.0.*", @@ -9252,11 +9375,11 @@ }, { "name": "magento/module-config", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-config/magento-module-config-101.1.5.0.zip", - "shasum": "76f1db08a792f3d263a46e2e2fcb7c775891de4c" + "url": "https://repo.magento.com/archives/magento/module-config/magento-module-config-101.1.6.0.zip", + "shasum": "3486a146c99e129edb91c425619ee09419771b18" }, "require": { "magento/framework": "102.0.*", @@ -9319,11 +9442,11 @@ }, { "name": "magento/module-configurable-product", - "version": "100.3.5-p2", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-configurable-product/magento-module-configurable-product-100.3.5.0-patch2.zip", - "shasum": "18c09e3bd73428ba00fc291da83d58c591aad388" + "url": "https://repo.magento.com/archives/magento/module-configurable-product/magento-module-configurable-product-100.3.6.0.zip", + "shasum": "2582695ffba8512a02dc18c912713c7fb72299d5" }, "require": { "magento/framework": "102.0.*", @@ -9466,11 +9589,11 @@ }, { "name": "magento/module-contact", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-contact/magento-module-contact-100.3.5.0.zip", - "shasum": "ac90db3add4bae0f07f6fcd13f6096fcc89b3dda" + "url": "https://repo.magento.com/archives/magento/module-contact/magento-module-contact-100.3.6.0.zip", + "shasum": "25c11e54448ba9a9ee0e6a5d857932a76aa11898" }, "require": { "magento/framework": "102.0.*", @@ -9619,11 +9742,11 @@ }, { "name": "magento/module-custom-attribute-management", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-custom-attribute-management/magento-module-custom-attribute-management-100.3.5.0.zip", - "shasum": "d1d0a256efc6ce4fb1824059ee4fbce6e48057a7" + "url": "https://repo.magento.com/archives/magento/module-custom-attribute-management/magento-module-custom-attribute-management-100.3.6.0.zip", + "shasum": "de5b4b309979d57beb87bbc030e964135b8f302c" }, "require": { "magento/framework": "102.0.*", @@ -9649,11 +9772,11 @@ }, { "name": "magento/module-customer", - "version": "102.0.5-p2", + "version": "102.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-customer/magento-module-customer-102.0.5.0-patch2.zip", - "shasum": "730b768f0797dccb73d0b2c9a45028a2bf468e4e" + "url": "https://repo.magento.com/archives/magento/module-customer/magento-module-customer-102.0.6.0.zip", + "shasum": "0f6b6950a16f09e3c5cd51b8f53bd5cfa4e1e756" }, "require": { "magento/framework": "102.0.*", @@ -9728,11 +9851,11 @@ }, { "name": "magento/module-customer-balance", - "version": "100.3.5-p2", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-customer-balance/magento-module-customer-balance-100.3.5.0-patch2.zip", - "shasum": "bd03a12bafa31b91b2abc91db3759ed47f4cdd05" + "url": "https://repo.magento.com/archives/magento/module-customer-balance/magento-module-customer-balance-100.3.6.0.zip", + "shasum": "076588bab76bbf622375097f7dfcd32c4a090938" }, "require": { "magento/framework": "102.0.*", @@ -9798,11 +9921,11 @@ }, { "name": "magento/module-customer-custom-attributes", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-customer-custom-attributes/magento-module-customer-custom-attributes-100.3.5.0.zip", - "shasum": "41819e8e7ce94dbf212f859bf28da46891ab491a" + "url": "https://repo.magento.com/archives/magento/module-customer-custom-attributes/magento-module-customer-custom-attributes-100.3.6.0.zip", + "shasum": "4436c008919ed3cd3522b9a076c067e717951d07" }, "require": { "magento/framework": "102.0.*", @@ -9938,11 +10061,11 @@ }, { "name": "magento/module-customer-import-export", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-customer-import-export/magento-module-customer-import-export-100.3.5.0.zip", - "shasum": "d74239c6a4bf928980ba030fa0f492a8e40d9d7f" + "url": "https://repo.magento.com/archives/magento/module-customer-import-export/magento-module-customer-import-export-100.3.6.0.zip", + "shasum": "1d8a9f5c28048d434c3bd9ecfcb1a01735c44a6f" }, "require": { "magento/framework": "102.0.*", @@ -9971,11 +10094,11 @@ }, { "name": "magento/module-customer-segment", - "version": "102.0.5-p2", + "version": "102.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-customer-segment/magento-module-customer-segment-102.0.5.0-patch2.zip", - "shasum": "fa2d9e02ea83d3646aa2bb0920443aceea85fef2" + "url": "https://repo.magento.com/archives/magento/module-customer-segment/magento-module-customer-segment-102.0.6.0.zip", + "shasum": "7b1c1df82c16ddf713e49b04f0c4c0de39a968e6" }, "require": { "magento/framework": "102.0.*", @@ -10051,11 +10174,11 @@ }, { "name": "magento/module-deploy", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-deploy/magento-module-deploy-100.3.4.0.zip", - "shasum": "95d79bef2bf03ff18e4c6feedff80acc9ba2ba76" + "url": "https://repo.magento.com/archives/magento/module-deploy/magento-module-deploy-100.3.5.0.zip", + "shasum": "d50327a62dabb91a14cb7b81e073c813ca54308a" }, "require": { "magento/framework": "102.0.*", @@ -10152,11 +10275,11 @@ }, { "name": "magento/module-directory", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-directory/magento-module-directory-100.3.5.0.zip", - "shasum": "bb83cfae5ee7af13c3b001fb0ae7291027677b2c" + "url": "https://repo.magento.com/archives/magento/module-directory/magento-module-directory-100.3.6.0.zip", + "shasum": "4c229729a839bb7e04ceba703c2c6a993ea08a8d" }, "require": { "lib-libxml": "*", @@ -10213,11 +10336,11 @@ }, { "name": "magento/module-downloadable", - "version": "100.3.5-p2", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-downloadable/magento-module-downloadable-100.3.5.0-patch2.zip", - "shasum": "f1dc3a258ee6de78305207e702a070feb80d4b17" + "url": "https://repo.magento.com/archives/magento/module-downloadable/magento-module-downloadable-100.3.6.0.zip", + "shasum": "91e1b3edc4075055e9ff7972505b05d81b1295bc" }, "require": { "magento/framework": "102.0.*", @@ -10293,11 +10416,11 @@ }, { "name": "magento/module-downloadable-import-export", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-downloadable-import-export/magento-module-downloadable-import-export-100.3.5.0.zip", - "shasum": "2b60b8b872d50bbbedf425f857ec316ae675b07d" + "url": "https://repo.magento.com/archives/magento/module-downloadable-import-export/magento-module-downloadable-import-export-100.3.6.0.zip", + "shasum": "bf400b888ff439da7f711551ec67b27e2a4c7e08" }, "require": { "magento/framework": "102.0.*", @@ -10359,11 +10482,11 @@ }, { "name": "magento/module-eav", - "version": "102.0.5-p2", + "version": "102.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-eav/magento-module-eav-102.0.5.0-patch2.zip", - "shasum": "4a72cd7d546ad561da869e72415a63814f9d884a" + "url": "https://repo.magento.com/archives/magento/module-eav/magento-module-eav-102.0.6.0.zip", + "shasum": "b7714410250144144b6925c26d12a5013327adc0" }, "require": { "magento/framework": "102.0.*", @@ -10422,11 +10545,11 @@ }, { "name": "magento/module-elasticsearch", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-elasticsearch/magento-module-elasticsearch-100.3.5.0.zip", - "shasum": "096420d703b89ef9f3dd7ef86cbbcf85773d9bb8" + "url": "https://repo.magento.com/archives/magento/module-elasticsearch/magento-module-elasticsearch-100.3.6.0.zip", + "shasum": "979918c36328d69dbad72aa02adb8a841d9baea1" }, "require": { "elasticsearch/elasticsearch": "~2.0||~5.1||~6.1||~7.6", @@ -10461,11 +10584,11 @@ }, { "name": "magento/module-elasticsearch-6", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-elasticsearch-6/magento-module-elasticsearch-6-100.3.4.0.zip", - "shasum": "f96bb9a9087294780c3b9545badaf765ff5630a2" + "url": "https://repo.magento.com/archives/magento/module-elasticsearch-6/magento-module-elasticsearch-6-100.3.5.0.zip", + "shasum": "afcce2741e1555772961636367a7adc2aa37d088" }, "require": { "elasticsearch/elasticsearch": "~2.0||~5.1||~6.1||~7.6", @@ -10496,11 +10619,11 @@ }, { "name": "magento/module-elasticsearch-7", - "version": "100.3.0", + "version": "100.3.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-elasticsearch-7/magento-module-elasticsearch-7-100.3.0.0.zip", - "shasum": "a1676353edf098ef3265b71addbcd2db8e07ee2f" + "url": "https://repo.magento.com/archives/magento/module-elasticsearch-7/magento-module-elasticsearch-7-100.3.1.0.zip", + "shasum": "93ac35756331177019e28cb131677623bb3c3657" }, "require": { "elasticsearch/elasticsearch": "~2.0||~5.1||~6.1||~7.6 ", @@ -10568,11 +10691,11 @@ }, { "name": "magento/module-email", - "version": "101.0.5", + "version": "101.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-email/magento-module-email-101.0.5.0.zip", - "shasum": "0625386382db4eeca3ba27eb9b5d7f38fc883c20" + "url": "https://repo.magento.com/archives/magento/module-email/magento-module-email-101.0.6.0.zip", + "shasum": "f7e17b5dbc1211411e4a1236842237fcd2f2092e" }, "require": { "magento/framework": "102.0.*", @@ -10721,11 +10844,11 @@ }, { "name": "magento/module-fedex", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-fedex/magento-module-fedex-100.3.4.0.zip", - "shasum": "6e8840e022073bdf584fe268ad52c4dac6907f7e" + "url": "https://repo.magento.com/archives/magento/module-fedex/magento-module-fedex-100.3.5.0.zip", + "shasum": "a11dd0e6e016b6a1c8de05be637155d3de453142" }, "require": { "lib-libxml": "*", @@ -10757,11 +10880,11 @@ }, { "name": "magento/module-gift-card", - "version": "101.2.5-p2", + "version": "101.2.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-gift-card/magento-module-gift-card-101.2.5.0-patch2.zip", - "shasum": "43a67f0fa795825b4c6f0ad2ebcf941eb17a5d83" + "url": "https://repo.magento.com/archives/magento/module-gift-card/magento-module-gift-card-101.2.6.0.zip", + "shasum": "79c26781b371c302e31455c875ddefa2cb605b0f" }, "require": { "magento/framework": "102.0.*", @@ -10806,11 +10929,11 @@ }, { "name": "magento/module-gift-card-account", - "version": "101.1.5-p2", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-gift-card-account/magento-module-gift-card-account-101.1.5.0-patch2.zip", - "shasum": "8c3333b3796724afc6edaa45d60c4e817cda7575" + "url": "https://repo.magento.com/archives/magento/module-gift-card-account/magento-module-gift-card-account-101.1.6.0.zip", + "shasum": "69340731aab0769506bb22feb41b04da58480044" }, "require": { "magento/framework": "102.0.*", @@ -11037,11 +11160,11 @@ }, { "name": "magento/module-gift-registry", - "version": "101.1.5-p2", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-gift-registry/magento-module-gift-registry-101.1.5.0-patch2.zip", - "shasum": "d172e3cd5959b4b45a35c44bf34f3fc4824053ac" + "url": "https://repo.magento.com/archives/magento/module-gift-registry/magento-module-gift-registry-101.1.6.0.zip", + "shasum": "8ab84ab09c84325114becfcf682c22cf18e7b2c9" }, "require": { "magento/framework": "102.0.*", @@ -11081,11 +11204,11 @@ }, { "name": "magento/module-gift-wrapping", - "version": "101.1.5-p2", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-gift-wrapping/magento-module-gift-wrapping-101.1.5.0-patch2.zip", - "shasum": "c007892ead5b1e82802e3df09fac56c7cc083a27" + "url": "https://repo.magento.com/archives/magento/module-gift-wrapping/magento-module-gift-wrapping-101.1.6.0.zip", + "shasum": "23928aaf9e6a96fdbcd3ec8c5196b2827ead210f" }, "require": { "magento/framework": "102.0.*", @@ -11215,11 +11338,11 @@ }, { "name": "magento/module-google-optimizer", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-google-optimizer/magento-module-google-optimizer-100.3.4.0.zip", - "shasum": "4ae786d43c5e0fd364c5f2ce3e77da9d78e96d3d" + "url": "https://repo.magento.com/archives/magento/module-google-optimizer/magento-module-google-optimizer-100.3.5.0.zip", + "shasum": "cfce6f3912f1524d899ecebd9736fab0c01dc7c9" }, "require": { "magento/framework": "102.0.*", @@ -11280,11 +11403,11 @@ }, { "name": "magento/module-google-tag-manager", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-google-tag-manager/magento-module-google-tag-manager-100.3.5.0.zip", - "shasum": "8d22f14d3eeb5faf06c2acfaa0be986f3e4cfa75" + "url": "https://repo.magento.com/archives/magento/module-google-tag-manager/magento-module-google-tag-manager-100.3.6.0.zip", + "shasum": "8559cb417604c0779143c82e530289efe3f2187f" }, "require": { "magento/framework": "102.0.*", @@ -11443,11 +11566,11 @@ }, { "name": "magento/module-grouped-product", - "version": "100.3.5-p2", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-grouped-product/magento-module-grouped-product-100.3.5.0-patch2.zip", - "shasum": "abc8549ca7a81e5c5616a2a858f0a530efa4186a" + "url": "https://repo.magento.com/archives/magento/module-grouped-product/magento-module-grouped-product-100.3.6.0.zip", + "shasum": "af702b3a26b41c3b9b812e75ce25879fb7a9565a" }, "require": { "magento/framework": "102.0.*", @@ -11485,11 +11608,11 @@ }, { "name": "magento/module-grouped-product-graph-ql", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-grouped-product-graph-ql/magento-module-grouped-product-graph-ql-100.3.4.0.zip", - "shasum": "26127e7f50ae9d9b75840acdf3855b395e00eeec" + "url": "https://repo.magento.com/archives/magento/module-grouped-product-graph-ql/magento-module-grouped-product-graph-ql-100.3.5.0.zip", + "shasum": "0cd2c5455443c4ce76e4e679f07a53b6b7a09c60" }, "require": { "magento/framework": "102.0.*", @@ -11549,11 +11672,11 @@ }, { "name": "magento/module-import-export", - "version": "100.3.5-p2", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-import-export/magento-module-import-export-100.3.5.0-patch2.zip", - "shasum": "96e65e7ff3e376661507798befd0a7bf8ecb1072" + "url": "https://repo.magento.com/archives/magento/module-import-export/magento-module-import-export-100.3.6.0.zip", + "shasum": "9491cff094a4a998058b7626128fa3e4a2c62119" }, "require": { "ext-ctype": "*", @@ -11583,11 +11706,11 @@ }, { "name": "magento/module-indexer", - "version": "100.3.5-p2", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-indexer/magento-module-indexer-100.3.5.0-patch2.zip", - "shasum": "d95afd72b947cf3dc12f9e5cd19e5205d0062d39" + "url": "https://repo.magento.com/archives/magento/module-indexer/magento-module-indexer-100.3.6.0.zip", + "shasum": "27895412c08d6dfa27828d2d779604a89aa7e31a" }, "require": { "magento/framework": "102.0.*", @@ -11611,11 +11734,11 @@ }, { "name": "magento/module-instant-purchase", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-instant-purchase/magento-module-instant-purchase-100.3.5.0.zip", - "shasum": "9127850f81113ec2db99857a8138f67fbad9d1fa" + "url": "https://repo.magento.com/archives/magento/module-instant-purchase/magento-module-instant-purchase-100.3.6.0.zip", + "shasum": "af95153ab051b45e803b8b0b3041e3a853421926" }, "require": { "magento/framework": "102.0.*", @@ -11678,11 +11801,11 @@ }, { "name": "magento/module-inventory", - "version": "1.0.8", + "version": "1.0.9", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory/magento-module-inventory-1.0.8.0.zip", - "shasum": "7c455268fb2d8e1c8bfbeed31a6048142d36f2b9" + "url": "https://repo.magento.com/archives/magento/module-inventory/magento-module-inventory-1.0.9.0.zip", + "shasum": "8d889f4d490573e492ce036aa4716fa43d8b9c25" }, "require": { "magento/framework": "*", @@ -11706,11 +11829,11 @@ }, { "name": "magento/module-inventory-admin-ui", - "version": "1.0.9", + "version": "1.0.10", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-admin-ui/magento-module-inventory-admin-ui-1.0.9.0.zip", - "shasum": "040630139db6802a621f03a52e51985952d9a355" + "url": "https://repo.magento.com/archives/magento/module-inventory-admin-ui/magento-module-inventory-admin-ui-1.0.10.0.zip", + "shasum": "2f6f666afe849bc885a0db9ae2b231d3fdb77648" }, "require": { "magento/framework": "*", @@ -11861,11 +11984,11 @@ }, { "name": "magento/module-inventory-cache", - "version": "1.0.6", + "version": "1.0.7", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-cache/magento-module-inventory-cache-1.0.6.0.zip", - "shasum": "27dcf978f8950047fb387be19e7d4a6d03ecd19f" + "url": "https://repo.magento.com/archives/magento/module-inventory-cache/magento-module-inventory-cache-1.0.7.0.zip", + "shasum": "2e6176849868d9a801076f85ae73bfe98637da47" }, "require": { "magento/framework": "*", @@ -11893,11 +12016,11 @@ }, { "name": "magento/module-inventory-catalog", - "version": "1.0.9", + "version": "1.0.10", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-catalog/magento-module-inventory-catalog-1.0.9.0.zip", - "shasum": "0c1bbb0bd1467771ae87a3dc75e5c92e2f55e83d" + "url": "https://repo.magento.com/archives/magento/module-inventory-catalog/magento-module-inventory-catalog-1.0.10.0.zip", + "shasum": "5e2507061bcd0d0a6fc26239c4d305d41ee8955e" }, "require": { "magento/framework": "*", @@ -11933,11 +12056,11 @@ }, { "name": "magento/module-inventory-catalog-admin-ui", - "version": "1.0.8", + "version": "1.0.9", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-catalog-admin-ui/magento-module-inventory-catalog-admin-ui-1.0.8.0.zip", - "shasum": "0a0f4f4ae2f543efddc7c919ae5ffc4b78b31a66" + "url": "https://repo.magento.com/archives/magento/module-inventory-catalog-admin-ui/magento-module-inventory-catalog-admin-ui-1.0.9.0.zip", + "shasum": "c718c7a5e21842af052f02da363105964201ee53" }, "require": { "magento/framework": "*", @@ -11999,11 +12122,11 @@ }, { "name": "magento/module-inventory-catalog-search", - "version": "1.0.7", + "version": "1.0.8", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-catalog-search/magento-module-inventory-catalog-search-1.0.7.0.zip", - "shasum": "5e184ca90ba144bcca0056e1c314d143daca17dc" + "url": "https://repo.magento.com/archives/magento/module-inventory-catalog-search/magento-module-inventory-catalog-search-1.0.8.0.zip", + "shasum": "5e03d3c2a265be4be867c102fb9d45ed12d8c813" }, "require": { "magento/framework": "*", @@ -12550,11 +12673,11 @@ }, { "name": "magento/module-inventory-indexer", - "version": "1.0.8", + "version": "1.0.9", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-indexer/magento-module-inventory-indexer-1.0.8.0.zip", - "shasum": "021e084cae3e7b8699953bf33c325b735b622dd2" + "url": "https://repo.magento.com/archives/magento/module-inventory-indexer/magento-module-inventory-indexer-1.0.9.0.zip", + "shasum": "e78400492dac10faccaee6b38d5dabcd446f1620" }, "require": { "magento/framework": "*", @@ -12586,11 +12709,11 @@ }, { "name": "magento/module-inventory-low-quantity-notification", - "version": "1.0.8", + "version": "1.0.9", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-low-quantity-notification/magento-module-inventory-low-quantity-notification-1.0.8.0.zip", - "shasum": "8753b5535ce3c563ba1be02faa85ca362bcc6adf" + "url": "https://repo.magento.com/archives/magento/module-inventory-low-quantity-notification/magento-module-inventory-low-quantity-notification-1.0.9.0.zip", + "shasum": "48159395fddda55f5e1bd2fef6428c1e2bcc74ad" }, "require": { "magento/framework": "*", @@ -12622,11 +12745,11 @@ }, { "name": "magento/module-inventory-low-quantity-notification-admin-ui", - "version": "1.0.7", + "version": "1.0.8", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-low-quantity-notification-admin-ui/magento-module-inventory-low-quantity-notification-admin-ui-1.0.7.0.zip", - "shasum": "f866a90bdc313bdd4db8a597c64f942cff5efd28" + "url": "https://repo.magento.com/archives/magento/module-inventory-low-quantity-notification-admin-ui/magento-module-inventory-low-quantity-notification-admin-ui-1.0.8.0.zip", + "shasum": "74d8c8198bf9c2e6ba88d7070debb4740f2936b8" }, "require": { "magento/framework": "*", @@ -12780,11 +12903,11 @@ }, { "name": "magento/module-inventory-reservation-cli", - "version": "1.0.2", + "version": "1.0.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-reservation-cli/magento-module-inventory-reservation-cli-1.0.2.0.zip", - "shasum": "8d6620c638a31ea78b55eb67b4479c5f31c0365c" + "url": "https://repo.magento.com/archives/magento/module-inventory-reservation-cli/magento-module-inventory-reservation-cli-1.0.3.0.zip", + "shasum": "efc7b7f27ff1c163fd97885d4c18602c6e9b57e6" }, "require": { "magento/framework": "*", @@ -12812,11 +12935,11 @@ }, { "name": "magento/module-inventory-reservations", - "version": "1.0.7", + "version": "1.0.8", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-reservations/magento-module-inventory-reservations-1.0.7.0.zip", - "shasum": "2828010766f461ea2d25e59bac9e89f8ddaa7935" + "url": "https://repo.magento.com/archives/magento/module-inventory-reservations/magento-module-inventory-reservations-1.0.8.0.zip", + "shasum": "45e9b29ebaaf4398858189c505a4e07f1391ad4f" }, "require": { "magento/framework": "*", @@ -12867,11 +12990,11 @@ }, { "name": "magento/module-inventory-sales", - "version": "1.0.8", + "version": "1.0.9", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-sales/magento-module-inventory-sales-1.0.8.0.zip", - "shasum": "6a72d4ceb55548cab4a4b60767822925d148a924" + "url": "https://repo.magento.com/archives/magento/module-inventory-sales/magento-module-inventory-sales-1.0.9.0.zip", + "shasum": "fea14388086205521cfee99b9d4d788bb3d2143e" }, "require": { "magento/framework": "*", @@ -13071,11 +13194,11 @@ }, { "name": "magento/module-inventory-shipping-admin-ui", - "version": "1.0.8", + "version": "1.0.9", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-shipping-admin-ui/magento-module-inventory-shipping-admin-ui-1.0.8.0.zip", - "shasum": "607761941b8cc2ee07e4985c9c405daa608d0033" + "url": "https://repo.magento.com/archives/magento/module-inventory-shipping-admin-ui/magento-module-inventory-shipping-admin-ui-1.0.9.0.zip", + "shasum": "b0c4f9cd308e8009b092f4f61c6cab0108ac22c7" }, "require": { "magento/framework": "*", @@ -13411,11 +13534,11 @@ }, { "name": "magento/module-media-storage", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-storage/magento-module-media-storage-100.3.5.0.zip", - "shasum": "770765c3219f6e9b2a9219bda5f323c9a2bbe67f" + "url": "https://repo.magento.com/archives/magento/module-media-storage/magento-module-media-storage-100.3.6.0.zip", + "shasum": "f9ca6cc7c2a7ca61da2dc6f887cc93f78a6c1043" }, "require": { "magento/framework": "102.0.*", @@ -13443,11 +13566,11 @@ }, { "name": "magento/module-message-queue", - "version": "100.3.5-p2", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-message-queue/magento-module-message-queue-100.3.5.0-patch2.zip", - "shasum": "ea24ebd428552b0bbf154b6eb70aafa5dec473ad" + "url": "https://repo.magento.com/archives/magento/module-message-queue/magento-module-message-queue-100.3.5.0.zip", + "shasum": "330682b1d9eb0c8ba7d31eaaa62c0539d08820ee" }, "require": { "magento/framework": "102.0.*", @@ -13537,11 +13660,11 @@ }, { "name": "magento/module-msrp-grouped-product", - "version": "100.3.3", + "version": "100.3.4", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-msrp-grouped-product/magento-module-msrp-grouped-product-100.3.3.0.zip", - "shasum": "7aeb4e2fc75e2d26eebdf25b08fb0d6ec1b36890" + "url": "https://repo.magento.com/archives/magento/module-msrp-grouped-product/magento-module-msrp-grouped-product-100.3.4.0.zip", + "shasum": "324c11109d7f88a4f2565abd9382e1ae6d0dcd01" }, "require": { "magento/framework": "102.0.*", @@ -13599,11 +13722,11 @@ }, { "name": "magento/module-multiple-wishlist", - "version": "100.3.5-p2", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-multiple-wishlist/magento-module-multiple-wishlist-100.3.5.0-patch2.zip", - "shasum": "5013c346f7a8e117a61ec530d14569a00c9979fd" + "url": "https://repo.magento.com/archives/magento/module-multiple-wishlist/magento-module-multiple-wishlist-100.3.6.0.zip", + "shasum": "b0da382e2cff8c3e00a38edcbd53c483f49a2f1b" }, "require": { "magento/framework": "102.0.*", @@ -13615,6 +13738,7 @@ "magento/module-customer": "102.0.*", "magento/module-sales": "102.0.*", "magento/module-store": "101.0.*", + "magento/module-theme": "101.0.*", "magento/module-widget": "101.1.*", "magento/module-wishlist": "101.1.*", "php": "~7.1.3||~7.2.0||~7.3.0" @@ -13639,14 +13763,15 @@ }, { "name": "magento/module-multishipping", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-multishipping/magento-module-multishipping-100.3.5.0.zip", - "shasum": "f7041b4f635f04e7ce43ce75d980bc1de0626b16" + "url": "https://repo.magento.com/archives/magento/module-multishipping/magento-module-multishipping-100.3.6.0.zip", + "shasum": "f37d9a47554aecf41bb74a2463692cbf86839537" }, "require": { "magento/framework": "102.0.*", + "magento/module-captcha": "100.3.*", "magento/module-checkout": "100.3.*", "magento/module-customer": "102.0.*", "magento/module-directory": "100.3.*", @@ -13738,11 +13863,11 @@ }, { "name": "magento/module-newsletter", - "version": "100.3.5-p2", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-newsletter/magento-module-newsletter-100.3.5.0-patch2.zip", - "shasum": "5b47ffef85a74b97565e89594dc40925355ed9f5" + "url": "https://repo.magento.com/archives/magento/module-newsletter/magento-module-newsletter-100.3.6.0.zip", + "shasum": "574a87c5f5bdc2e1937d2d1ccd3bd5fee18866e1" }, "require": { "magento/framework": "102.0.*", @@ -13845,28 +13970,28 @@ }, { "name": "magento/module-page-builder", - "version": "1.3.2", + "version": "1.3.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-page-builder/magento-module-page-builder-1.3.2.0.zip", - "shasum": "a75e188609e43bef40161c6cf14c888c9f367acc" + "url": "https://repo.magento.com/archives/magento/module-page-builder/magento-module-page-builder-1.3.3.0.zip", + "shasum": "9d7c2ff62fafb382e50e59ca9f8159b6a078cc35" }, "require": { "magento/dom": "2.1.7", - "magento/framework": "~102.0.5-p2", - "magento/module-backend": "~101.0.5-p2", - "magento/module-catalog": "~103.0.5-p2", + "magento/framework": "~102.0.6", + "magento/module-backend": "~101.0.6", + "magento/module-catalog": "~103.0.6", "magento/module-catalog-inventory": "100.3.*", "magento/module-catalog-widget": "100.3.*", "magento/module-cms": "103.0.*", - "magento/module-config": "~101.1.5", - "magento/module-directory": "~100.3.5", + "magento/module-config": "~101.1.6", + "magento/module-directory": "~100.3.6", "magento/module-eav": "102.0.*", "magento/module-email": "101.0.*", "magento/module-media-storage": "100.3.*", "magento/module-require-js": "100.3.*", "magento/module-rule": "~100.3.5", - "magento/module-store": "~101.0.5", + "magento/module-store": "~101.0.6", "magento/module-theme": "101.0.*", "magento/module-ui": "101.1.*", "magento/module-variable": "100.3.*", @@ -13896,15 +14021,15 @@ }, { "name": "magento/module-page-builder-analytics", - "version": "1.3.2", + "version": "1.3.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-page-builder-analytics/magento-module-page-builder-analytics-1.3.2.0.zip", - "shasum": "e25fd6ca26224d35cdb4697de64ac9d1c3904900" + "url": "https://repo.magento.com/archives/magento/module-page-builder-analytics/magento-module-page-builder-analytics-1.3.3.0.zip", + "shasum": "d938fbc596ba6a533893ab495471b765370b04af" }, "require": { - "magento/framework": "~102.0.5-p2", - "magento/module-analytics": "~100.3.5", + "magento/framework": "~102.0.6", + "magento/module-analytics": "~100.3.6", "magento/module-page-builder": "1.3.*", "php": "~7.1.3||~7.2.0||~7.3.0" }, @@ -13924,11 +14049,11 @@ }, { "name": "magento/module-page-cache", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-page-cache/magento-module-page-cache-100.3.5.0.zip", - "shasum": "471c6c14cdef8f95272ef5464a188015e222f75a" + "url": "https://repo.magento.com/archives/magento/module-page-cache/magento-module-page-cache-100.3.6.0.zip", + "shasum": "b1ea6cda1108f7742176fcd42494466ae3660367" }, "require": { "magento/framework": "102.0.*", @@ -13954,11 +14079,11 @@ }, { "name": "magento/module-payment", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-payment/magento-module-payment-100.3.5.0.zip", - "shasum": "2ba5a4fc32d0abc41a9ee15c9fd951b60a14f279" + "url": "https://repo.magento.com/archives/magento/module-payment/magento-module-payment-100.3.6.0.zip", + "shasum": "a7ad27dd0f167becf119f6bba933abc5703eb70a" }, "require": { "magento/framework": "102.0.*", @@ -14019,11 +14144,11 @@ }, { "name": "magento/module-paypal", - "version": "100.3.5-p2", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-paypal/magento-module-paypal-100.3.5.0-patch2.zip", - "shasum": "bd9a8734abd0620c7ee65d333cec24275ddccceb" + "url": "https://repo.magento.com/archives/magento/module-paypal/magento-module-paypal-100.3.6.0.zip", + "shasum": "5aa34096fe4c435aabbb83b4ab6ee9a46aca2c9c" }, "require": { "lib-libxml": "*", @@ -14193,11 +14318,11 @@ }, { "name": "magento/module-persistent", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-persistent/magento-module-persistent-100.3.5.0.zip", - "shasum": "fff2b8564b689ee03390402f420655050da21e64" + "url": "https://repo.magento.com/archives/magento/module-persistent/magento-module-persistent-100.3.6.0.zip", + "shasum": "79f96718b546a9ccd22418258205360585bcf080" }, "require": { "magento/framework": "102.0.*", @@ -14226,11 +14351,11 @@ }, { "name": "magento/module-persistent-history", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-persistent-history/magento-module-persistent-history-100.3.4.0.zip", - "shasum": "66c74f0477bfa50e6db2b60c160dba5653fb19ff" + "url": "https://repo.magento.com/archives/magento/module-persistent-history/magento-module-persistent-history-100.3.5.0.zip", + "shasum": "27b0986284dd832266093c270a3b6a9890e47b2b" }, "require": { "magento/framework": "102.0.*", @@ -14302,11 +14427,11 @@ }, { "name": "magento/module-product-alert", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-product-alert/magento-module-product-alert-100.3.5.0.zip", - "shasum": "09671613f8eed2b5df5502addae25a92146aca9b" + "url": "https://repo.magento.com/archives/magento/module-product-alert/magento-module-product-alert-100.3.6.0.zip", + "shasum": "5ba5c1ed395eccea76f57cf214cdc69c54cf121a" }, "require": { "magento/framework": "102.0.*", @@ -14314,6 +14439,7 @@ "magento/module-catalog": "103.0.*", "magento/module-customer": "102.0.*", "magento/module-store": "101.0.*", + "magento/module-theme": "101.0.*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "suggest": { @@ -14336,11 +14462,11 @@ }, { "name": "magento/module-product-video", - "version": "100.3.5-p2", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-product-video/magento-module-product-video-100.3.5.0-patch2.zip", - "shasum": "d59a26548febc0336eae55c75710521761b0cd01" + "url": "https://repo.magento.com/archives/magento/module-product-video/magento-module-product-video-100.3.6.0.zip", + "shasum": "8766c6fd3f36449b6e6848d6a4d6e7ef2322e079" }, "require": { "magento/framework": "102.0.*", @@ -14439,11 +14565,11 @@ }, { "name": "magento/module-quote", - "version": "101.1.5-p2", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-quote/magento-module-quote-101.1.5.0-patch2.zip", - "shasum": "11c096eaa9c0b3e671094fdcde6ff0f574d516cd" + "url": "https://repo.magento.com/archives/magento/module-quote/magento-module-quote-101.1.6.0.zip", + "shasum": "2043b611b8f314b8d66aa001411e4bd157e7dbcf" }, "require": { "magento/framework": "102.0.*", @@ -14483,11 +14609,11 @@ }, { "name": "magento/module-quote-analytics", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-quote-analytics/magento-module-quote-analytics-100.3.4.0.zip", - "shasum": "040351b47b6b44b4682015ea6a7369c19ef2eda8" + "url": "https://repo.magento.com/archives/magento/module-quote-analytics/magento-module-quote-analytics-100.3.5.0.zip", + "shasum": "9d35bf6a1058deac8effbda4d041f6e23bb22c89" }, "require": { "magento/framework": "102.0.*", @@ -14512,11 +14638,11 @@ }, { "name": "magento/module-quote-graph-ql", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-quote-graph-ql/magento-module-quote-graph-ql-100.3.5.0.zip", - "shasum": "59a9dee66844f2e149c3008c7093729f4ab0e656" + "url": "https://repo.magento.com/archives/magento/module-quote-graph-ql/magento-module-quote-graph-ql-100.3.6.0.zip", + "shasum": "198f8952f988947c9f2f0de7bdea5b2252743406" }, "require": { "magento/framework": "102.0.*", @@ -14653,11 +14779,11 @@ }, { "name": "magento/module-reports", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-reports/magento-module-reports-100.3.5.0.zip", - "shasum": "21d76a652705a242465f9d62649cd8e1413cb131" + "url": "https://repo.magento.com/archives/magento/module-reports/magento-module-reports-100.3.6.0.zip", + "shasum": "e454141ac1454839cda044205fa1aa4a910b1646" }, "require": { "magento/framework": "102.0.*", @@ -14749,11 +14875,11 @@ }, { "name": "magento/module-review", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-review/magento-module-review-100.3.5.0.zip", - "shasum": "1d8c8db3b53d09be9619e08d539da30a9a84ca98" + "url": "https://repo.magento.com/archives/magento/module-review/magento-module-review-100.3.6.0.zip", + "shasum": "e8308b1447b60080a8d4195a5c387f47a87823e1" }, "require": { "magento/framework": "102.0.*", @@ -14959,11 +15085,11 @@ }, { "name": "magento/module-rma", - "version": "101.1.5-p2", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-rma/magento-module-rma-101.1.5.0-patch2.zip", - "shasum": "3d64e2cf656c51069d044bef3c6e41bed3eec519" + "url": "https://repo.magento.com/archives/magento/module-rma/magento-module-rma-101.1.6.0.zip", + "shasum": "844c3a9948f7eec436bf93b3a46e9c4d459fe68d" }, "require": { "ext-gd": "*", @@ -15166,11 +15292,11 @@ }, { "name": "magento/module-sales", - "version": "102.0.5-p2", + "version": "102.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sales/magento-module-sales-102.0.5.0-patch2.zip", - "shasum": "0db772ddb4c38180fc9ee633f413758ab85fc3bd" + "url": "https://repo.magento.com/archives/magento/module-sales/magento-module-sales-102.0.6.0.zip", + "shasum": "d370bdda0693544e74b83e0ae7aa2a53488ca530" }, "require": { "magento/framework": "102.0.*", @@ -15249,11 +15375,11 @@ }, { "name": "magento/module-sales-archive", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sales-archive/magento-module-sales-archive-100.3.5.0.zip", - "shasum": "ac8b640676955d988d4bc943f83a77fcfdb08c5c" + "url": "https://repo.magento.com/archives/magento/module-sales-archive/magento-module-sales-archive-100.3.6.0.zip", + "shasum": "211ce17cc5ae2b07232ca9e965921f61d833490f" }, "require": { "magento/framework": "102.0.*", @@ -15344,11 +15470,11 @@ }, { "name": "magento/module-sales-rule", - "version": "101.1.5-p2", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sales-rule/magento-module-sales-rule-101.1.5.0-patch2.zip", - "shasum": "8cf1d68bfef4bad4e926b584724d3248ea9e0db3" + "url": "https://repo.magento.com/archives/magento/module-sales-rule/magento-module-sales-rule-101.1.6.0.zip", + "shasum": "c50bb0d32a3063779a916922af01ee1efd539938" }, "require": { "magento/framework": "102.0.*", @@ -15393,11 +15519,11 @@ }, { "name": "magento/module-sales-rule-staging", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sales-rule-staging/magento-module-sales-rule-staging-100.3.4.0.zip", - "shasum": "1cb92718a0ae556267c4857930afeefdee119db7" + "url": "https://repo.magento.com/archives/magento/module-sales-rule-staging/magento-module-sales-rule-staging-100.3.5.0.zip", + "shasum": "051bebf6306a4ac93d969fbfcec678646d7fc976" }, "require": { "magento/framework": "102.0.*", @@ -15487,11 +15613,11 @@ }, { "name": "magento/module-scalable-checkout", - "version": "100.3.4-p2", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-scalable-checkout/magento-module-scalable-checkout-100.3.4.0-patch2.zip", - "shasum": "f41a73d1dab4510f5fe3c6d26e586121a598f4d6" + "url": "https://repo.magento.com/archives/magento/module-scalable-checkout/magento-module-scalable-checkout-100.3.5.0.zip", + "shasum": "9fa80753ba233f0d3647aee9a74ed5d0e94c0605" }, "require": { "magento/framework": "102.0.*", @@ -15580,11 +15706,11 @@ }, { "name": "magento/module-scheduled-import-export", - "version": "101.1.4", + "version": "101.1.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-scheduled-import-export/magento-module-scheduled-import-export-101.1.4.0.zip", - "shasum": "e8a9947ad9e6c1e7bd778afd068e9c8952495510" + "url": "https://repo.magento.com/archives/magento/module-scheduled-import-export/magento-module-scheduled-import-export-101.1.5.0.zip", + "shasum": "e7a6407677eee43574e2efb5cfdfcc195bac5e0b" }, "require": { "magento/framework": "102.0.*", @@ -15611,11 +15737,11 @@ }, { "name": "magento/module-search", - "version": "101.0.5", + "version": "101.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-search/magento-module-search-101.0.5.0.zip", - "shasum": "bfef11ff4d00ab02e174cf200642f6cbf6ac9ec9" + "url": "https://repo.magento.com/archives/magento/module-search/magento-module-search-101.0.6.0.zip", + "shasum": "806907e8ebdeeab0571e465187507b5c40f6b144" }, "require": { "magento/framework": "102.0.*", @@ -15768,11 +15894,11 @@ }, { "name": "magento/module-shipping", - "version": "100.3.5-p2", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-shipping/magento-module-shipping-100.3.5.0-patch2.zip", - "shasum": "b7b007a28e3704acb130dc35a0943a7bac839639" + "url": "https://repo.magento.com/archives/magento/module-shipping/magento-module-shipping-100.3.5.0.zip", + "shasum": "de9a53127d4efcfb40167279c3412da81dfd907d" }, "require": { "ext-gd": "*", @@ -15852,11 +15978,11 @@ }, { "name": "magento/module-sitemap", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sitemap/magento-module-sitemap-100.3.5.0.zip", - "shasum": "e039b87d1ef93b114f1f1eed8bfcb6b4fd7c68ff" + "url": "https://repo.magento.com/archives/magento/module-sitemap/magento-module-sitemap-100.3.6.0.zip", + "shasum": "44582749734f7f418e8b451afb898f8641b04b6d" }, "require": { "magento/framework": "102.0.*", @@ -15891,11 +16017,11 @@ }, { "name": "magento/module-staging", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-staging/magento-module-staging-101.1.5.0.zip", - "shasum": "45bf4fdc4aaf116029eaa0e8c32f53f184beb78d" + "url": "https://repo.magento.com/archives/magento/module-staging/magento-module-staging-101.1.6.0.zip", + "shasum": "f58e5031fed9597c7e9693145bf009fa7fb89474" }, "require": { "lib-libxml": "*", @@ -15958,14 +16084,14 @@ }, { "name": "magento/module-staging-page-builder", - "version": "1.3.2", + "version": "1.3.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-staging-page-builder/magento-module-staging-page-builder-1.3.2.0.zip", - "shasum": "309b02cab76e862612fc3044eb8b72f04d6479a3" + "url": "https://repo.magento.com/archives/magento/module-staging-page-builder/magento-module-staging-page-builder-1.3.3.0.zip", + "shasum": "4f2500586f93b7b0a4fa5403661fa4cd4acc5915" }, "require": { - "magento/framework": "~102.0.5-p2", + "magento/framework": "~102.0.6", "php": "~7.1.3||~7.2.0||~7.3.0" }, "suggest": { @@ -15988,11 +16114,11 @@ }, { "name": "magento/module-store", - "version": "101.0.5", + "version": "101.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-store/magento-module-store-101.0.5.0.zip", - "shasum": "d7c0eefb2f7c5c3d09bc337193a46ef7eb60540b" + "url": "https://repo.magento.com/archives/magento/module-store/magento-module-store-101.0.6.0.zip", + "shasum": "9a793146e8c8d3c40f1ed447478438d217406535" }, "require": { "magento/framework": "102.0.*", @@ -16188,11 +16314,11 @@ }, { "name": "magento/module-swatches", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-swatches/magento-module-swatches-100.3.5.0.zip", - "shasum": "ed376fb0d0e1f8ef82793a5fbb32524eb203b1ce" + "url": "https://repo.magento.com/archives/magento/module-swatches/magento-module-swatches-100.3.6.0.zip", + "shasum": "077072098a6cd90f0ed970f5d6d0126b6bc25cb2" }, "require": { "magento/framework": "102.0.*", @@ -16289,11 +16415,11 @@ }, { "name": "magento/module-target-rule", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-target-rule/magento-module-target-rule-101.1.5.0.zip", - "shasum": "bb70bbb945e7f1f82033dfcf1f40545813f5bebf" + "url": "https://repo.magento.com/archives/magento/module-target-rule/magento-module-target-rule-101.1.6.0.zip", + "shasum": "11f475de8a11997c56be8918671f4ed6bc6f542e" }, "require": { "magento/framework": "102.0.*", @@ -16330,11 +16456,11 @@ }, { "name": "magento/module-tax", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-tax/magento-module-tax-100.3.5.0.zip", - "shasum": "f610f8ae48e1d193187a270df28f8d1614cc656e" + "url": "https://repo.magento.com/archives/magento/module-tax/magento-module-tax-100.3.6.0.zip", + "shasum": "1a5d655aadf90b3bbb6337aed21888c178cc1bb0" }, "require": { "magento/framework": "102.0.*", @@ -16435,11 +16561,11 @@ }, { "name": "magento/module-theme", - "version": "101.0.5-p2", + "version": "101.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-theme/magento-module-theme-101.0.5.0-patch2.zip", - "shasum": "e8a3b23ea13f6543a1d88f0ffa1c60bc7daef67a" + "url": "https://repo.magento.com/archives/magento/module-theme/magento-module-theme-101.0.6.0.zip", + "shasum": "d7e663c6b2ea003b0b88a8341553e67ecf274aec" }, "require": { "magento/framework": "102.0.*", @@ -16507,11 +16633,11 @@ }, { "name": "magento/module-tinymce-3", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-tinymce-3/magento-module-tinymce-3-100.3.5.0.zip", - "shasum": "8ce8b1fbe6e9ea03336aaf9aeb90594eb319ca0b" + "url": "https://repo.magento.com/archives/magento/module-tinymce-3/magento-module-tinymce-3-100.3.6.0.zip", + "shasum": "67046d180ed5ed97ecff1ede122af6ccc1e3982d" }, "require": { "magento/framework": "102.0.*", @@ -16572,11 +16698,11 @@ }, { "name": "magento/module-translation", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-translation/magento-module-translation-100.3.5.0.zip", - "shasum": "22f0c984fabba7ee04a953ee9a2e6e4f76a97665" + "url": "https://repo.magento.com/archives/magento/module-translation/magento-module-translation-100.3.6.0.zip", + "shasum": "3b2bd37e991700567d812f9d3fdef63cbeefa8bf" }, "require": { "magento/framework": "102.0.*", @@ -16606,11 +16732,11 @@ }, { "name": "magento/module-ui", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-ui/magento-module-ui-101.1.5.0.zip", - "shasum": "ae1eefd94eb62e8e0ce32d24b96f5b6099b4a607" + "url": "https://repo.magento.com/archives/magento/module-ui/magento-module-ui-101.1.6.0.zip", + "shasum": "2517b9dcd24f279697dbdbaab8447a61ddaf69f5" }, "require": { "magento/framework": "102.0.*", @@ -16642,11 +16768,11 @@ }, { "name": "magento/module-ups", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-ups/magento-module-ups-100.3.5.0.zip", - "shasum": "19e923673638558daa46f216a7423ec641dc9ec1" + "url": "https://repo.magento.com/archives/magento/module-ups/magento-module-ups-100.3.6.0.zip", + "shasum": "467289aeed56a6d67dfc72cd8587a54a2f00e536" }, "require": { "magento/framework": "102.0.*", @@ -16712,11 +16838,11 @@ }, { "name": "magento/module-url-rewrite-graph-ql", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-url-rewrite-graph-ql/magento-module-url-rewrite-graph-ql-100.3.5.0.zip", - "shasum": "08d7837f658bc08e4a279030d4029a2c6f7bda2c" + "url": "https://repo.magento.com/archives/magento/module-url-rewrite-graph-ql/magento-module-url-rewrite-graph-ql-100.3.6.0.zip", + "shasum": "9618f81614ed43e38a421cbc664c98d8707faccb" }, "require": { "magento/framework": "102.0.*", @@ -16743,11 +16869,11 @@ }, { "name": "magento/module-user", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-user/magento-module-user-101.1.5.0.zip", - "shasum": "423be90044cb3c3c8c5239f0a8a2fa1eef26fa8c" + "url": "https://repo.magento.com/archives/magento/module-user/magento-module-user-101.1.6.0.zip", + "shasum": "6b73cd893c4b3ee4ff236969896262ba2c029084" }, "require": { "magento/framework": "102.0.*", @@ -16843,11 +16969,11 @@ }, { "name": "magento/module-vault", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-vault/magento-module-vault-101.1.5.0.zip", - "shasum": "00e602a862274666f4770e12eb9b128c7e64d420" + "url": "https://repo.magento.com/archives/magento/module-vault/magento-module-vault-101.1.6.0.zip", + "shasum": "263be5b1bba742578ff63273b3fa79084ef45897" }, "require": { "magento/framework": "102.0.*", @@ -16932,11 +17058,11 @@ }, { "name": "magento/module-versions-cms", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-versions-cms/magento-module-versions-cms-101.1.5.0.zip", - "shasum": "605f5ef6c9a9cee3b06896ac5f131bba6bd90dd4" + "url": "https://repo.magento.com/archives/magento/module-versions-cms/magento-module-versions-cms-101.1.6.0.zip", + "shasum": "d5f3a184c6bc0a5ad52a1082d88132864fda8012" }, "require": { "magento/framework": "102.0.*", @@ -16993,11 +17119,11 @@ }, { "name": "magento/module-visual-merchandiser", - "version": "100.3.5-p2", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-visual-merchandiser/magento-module-visual-merchandiser-100.3.5.0-patch2.zip", - "shasum": "94ddf9792f60c532b5f68108f374132096ba889b" + "url": "https://repo.magento.com/archives/magento/module-visual-merchandiser/magento-module-visual-merchandiser-100.3.6.0.zip", + "shasum": "6c494c629ad979738a09778ea841c7e2456029da" }, "require": { "magento/framework": "102.0.*", @@ -17028,11 +17154,11 @@ }, { "name": "magento/module-webapi", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-webapi/magento-module-webapi-100.3.4.0.zip", - "shasum": "91fdd2b46466e69c88fce02d69c0596104d24d08" + "url": "https://repo.magento.com/archives/magento/module-webapi/magento-module-webapi-100.3.5.0.zip", + "shasum": "a44c5801c04c7749966b7f92b4cf9b01ba3a348f" }, "require": { "magento/framework": "102.0.*", @@ -17063,11 +17189,11 @@ }, { "name": "magento/module-webapi-async", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-webapi-async/magento-module-webapi-async-100.3.5.0.zip", - "shasum": "ca9f17d104dafc32a56f8a3b97d2b4e95b27ea70" + "url": "https://repo.magento.com/archives/magento/module-webapi-async/magento-module-webapi-async-100.3.6.0.zip", + "shasum": "bbfe4feccba768f2c4f8b8592c7c72e69a7fbc64" }, "require": { "magento/framework": "102.0.*", @@ -17124,11 +17250,11 @@ }, { "name": "magento/module-website-restriction", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-website-restriction/magento-module-website-restriction-100.3.5.0.zip", - "shasum": "a8ea50c6f5b77b8d903198e4653d6d07709de788" + "url": "https://repo.magento.com/archives/magento/module-website-restriction/magento-module-website-restriction-100.3.6.0.zip", + "shasum": "77ede86522490cd2b11a2c77d003a308dc88ecc1" }, "require": { "magento/framework": "102.0.*", @@ -17300,11 +17426,11 @@ }, { "name": "magento/module-wishlist", - "version": "101.1.5-p2", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-wishlist/magento-module-wishlist-101.1.5.0-patch2.zip", - "shasum": "41254d8317871479f73aadb5d919ef2439df4009" + "url": "https://repo.magento.com/archives/magento/module-wishlist/magento-module-wishlist-101.1.6.0.zip", + "shasum": "3582146188e83f3c0df5b55a502cedc8066bf0f3" }, "require": { "magento/framework": "102.0.*", @@ -17438,44 +17564,44 @@ }, { "name": "magento/page-builder-commerce", - "version": "1.3.2", + "version": "1.3.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/page-builder-commerce/magento-page-builder-commerce-1.3.2.0.zip", - "shasum": "a3cfb820bdd4a0bd7f231fa42fa44f9262701963" + "url": "https://repo.magento.com/archives/magento/page-builder-commerce/magento-page-builder-commerce-1.3.3.0.zip", + "shasum": "4b0a538225cbec7b850519877d87611311e7bd64" }, "require": { - "magento/module-banner-page-builder": "1.3.2", - "magento/module-banner-page-builder-analytics": "1.3.2", - "magento/module-catalog-page-builder-analytics": "1.3.2", - "magento/module-catalog-page-builder-analytics-staging": "1.3.2", - "magento/module-catalog-staging-page-builder": "1.3.2", - "magento/module-cms-page-builder-analytics": "1.3.2", - "magento/module-cms-page-builder-analytics-staging": "1.3.2", - "magento/module-page-builder": "1.3.2", - "magento/module-page-builder-analytics": "1.3.2", - "magento/module-staging-page-builder": "1.3.2" + "magento/module-banner-page-builder": "1.3.3", + "magento/module-banner-page-builder-analytics": "1.3.3", + "magento/module-catalog-page-builder-analytics": "1.3.3", + "magento/module-catalog-page-builder-analytics-staging": "1.3.3", + "magento/module-catalog-staging-page-builder": "1.3.3", + "magento/module-cms-page-builder-analytics": "1.3.3", + "magento/module-cms-page-builder-analytics-staging": "1.3.3", + "magento/module-page-builder": "1.3.3", + "magento/module-page-builder-analytics": "1.3.3", + "magento/module-staging-page-builder": "1.3.3" }, "type": "metapackage", "description": "Page Builder Commerce metapackage" }, { "name": "magento/product-community-edition", - "version": "2.3.5-p2", + "version": "2.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/product-community-edition/magento-product-community-edition-2.3.5.0-patch2.zip", - "shasum": "64068ff8ba3f7d7d06744d0d6ed93f7b81f184aa" + "url": "https://repo.magento.com/archives/magento/product-community-edition/magento-product-community-edition-2.3.6.0.zip", + "shasum": "464614b41bc8eaf2520327cad579904cdf9d1b72" }, "require": { - "amzn/amazon-pay-and-login-magento-2-module": "3.4.1-p2", + "amzn/amazon-pay-and-login-magento-2-module": "3.4.1-p3", "braintree/braintree_php": "3.35.0", "colinmollenhour/cache-backend-file": "~1.4.1", "colinmollenhour/cache-backend-redis": "1.10.6", "colinmollenhour/credis": "1.10.0", "colinmollenhour/php-redis-session-abstract": "~1.4.0", "composer/composer": "^1.9", - "dotmailer/dotmailer-magento2-extension-package": "4.4.0", + "dotmailer/dotmailer-magento2-extension-package": "4.4.1", "elasticsearch/elasticsearch": "~2.0||~5.1||~6.1||~7.6", "ext-bcmath": "*", "ext-ctype": "*", @@ -17493,7 +17619,7 @@ "ext-xsl": "*", "ext-zip": "*", "guzzlehttp/guzzle": "^6.3.3", - "klarna/m2-payments": "7.5.1", + "klarna/m2-payments": "7.6.1", "laminas/laminas-captcha": "^2.7.1", "laminas/laminas-code": "~3.3.0", "laminas/laminas-config": "^2.6.0", @@ -17524,14 +17650,14 @@ "laminas/laminas-validator": "^2.6.0", "laminas/laminas-view": "~2.11.2", "lib-libxml": "*", - "magento/adobe-stock-integration": "1.0.1", + "magento/adobe-stock-integration": "1.0.2", "magento/composer": "~1.5.0", - "magento/framework": "102.0.5-p2", + "magento/framework": "102.0.6", "magento/framework-amqp": "100.3.5", "magento/framework-bulk": "100.3.5", - "magento/framework-message-queue": "100.3.5", + "magento/framework-message-queue": "100.3.6", "magento/google-shopping-ads": "4.0.1", - "magento/inventory-composer-metapackage": "1.1.5-p1", + "magento/inventory-composer-metapackage": "1.1.6", "magento/language-de_de": "100.3.4", "magento/language-en_us": "100.3.4", "magento/language-es_es": "100.3.4", @@ -17540,183 +17666,184 @@ "magento/language-pt_br": "100.3.4", "magento/language-zh_hans_cn": "100.3.4", "magento/magento-composer-installer": ">=0.1.11", - "magento/magento2-base": "2.3.5-p2", + "magento/magento2-base": "2.3.6", "magento/module-admin-analytics": "100.3.2", "magento/module-admin-notification": "100.3.5", "magento/module-advanced-pricing-import-export": "100.3.4", "magento/module-advanced-search": "100.3.4", "magento/module-amqp": "100.3.4", "magento/module-amqp-store": "100.3.1", - "magento/module-analytics": "100.3.5", - "magento/module-asynchronous-operations": "100.3.5", - "magento/module-authorization": "100.3.4", + "magento/module-analytics": "100.3.6", + "magento/module-asynchronous-operations": "100.3.6", + "magento/module-authorization": "100.3.5", "magento/module-authorizenet": "100.3.5", "magento/module-authorizenet-acceptjs": "100.3.4", "magento/module-authorizenet-cardinal": "100.3.1", "magento/module-authorizenet-graph-ql": "100.3.2", - "magento/module-backend": "101.0.5-p2", + "magento/module-backend": "101.0.6", "magento/module-backup": "100.3.5", - "magento/module-braintree": "100.3.5", - "magento/module-braintree-graph-ql": "100.3.2", - "magento/module-bundle": "100.3.5-p2", + "magento/module-braintree": "100.3.6", + "magento/module-braintree-graph-ql": "100.3.3", + "magento/module-bundle": "100.3.6", "magento/module-bundle-graph-ql": "100.3.4", - "magento/module-bundle-import-export": "100.3.4", + "magento/module-bundle-import-export": "100.3.5", "magento/module-cache-invalidate": "100.3.4", - "magento/module-captcha": "100.3.5", + "magento/module-captcha": "100.3.6", "magento/module-cardinal-commerce": "100.3.2", - "magento/module-catalog": "103.0.5-p2", + "magento/module-catalog": "103.0.6", "magento/module-catalog-analytics": "100.3.4", "magento/module-catalog-cms-graph-ql": "100.3.0", "magento/module-catalog-customer-graph-ql": "100.3.0", - "magento/module-catalog-graph-ql": "100.3.5", - "magento/module-catalog-import-export": "101.0.5-p2", - "magento/module-catalog-inventory": "100.3.5", + "magento/module-catalog-graph-ql": "100.3.6", + "magento/module-catalog-import-export": "101.0.6", + "magento/module-catalog-inventory": "100.3.6", "magento/module-catalog-inventory-graph-ql": "100.3.4", - "magento/module-catalog-rule": "101.1.5", + "magento/module-catalog-rule": "101.1.6", "magento/module-catalog-rule-configurable": "100.3.5", - "magento/module-catalog-search": "101.0.5", - "magento/module-catalog-url-rewrite": "100.3.5", + "magento/module-catalog-rule-graph-ql": "100.3.0", + "magento/module-catalog-search": "101.0.6", + "magento/module-catalog-url-rewrite": "100.3.6", "magento/module-catalog-url-rewrite-graph-ql": "100.3.5", - "magento/module-catalog-widget": "100.3.5", - "magento/module-checkout": "100.3.5-p2", + "magento/module-catalog-widget": "100.3.6", + "magento/module-checkout": "100.3.6", "magento/module-checkout-agreements": "100.3.5", "magento/module-checkout-agreements-graph-ql": "100.3.1", - "magento/module-cms": "103.0.5-p2", + "magento/module-cms": "103.0.6", "magento/module-cms-graph-ql": "100.3.4", - "magento/module-cms-url-rewrite": "100.3.4", + "magento/module-cms-url-rewrite": "100.3.5", "magento/module-cms-url-rewrite-graph-ql": "100.3.4", - "magento/module-config": "101.1.5", + "magento/module-config": "101.1.6", "magento/module-configurable-import-export": "100.3.4", - "magento/module-configurable-product": "100.3.5-p2", + "magento/module-configurable-product": "100.3.6", "magento/module-configurable-product-graph-ql": "100.3.5", "magento/module-configurable-product-sales": "100.3.4", - "magento/module-contact": "100.3.5", + "magento/module-contact": "100.3.6", "magento/module-cookie": "100.3.5", "magento/module-cron": "100.3.5", "magento/module-csp": "100.3.0", "magento/module-currency-symbol": "100.3.5", - "magento/module-customer": "102.0.5-p2", + "magento/module-customer": "102.0.6", "magento/module-customer-analytics": "100.3.4", "magento/module-customer-downloadable-graph-ql": "100.3.0", "magento/module-customer-graph-ql": "100.3.5", - "magento/module-customer-import-export": "100.3.5", - "magento/module-deploy": "100.3.4", + "magento/module-customer-import-export": "100.3.6", + "magento/module-deploy": "100.3.5", "magento/module-developer": "100.3.5", "magento/module-dhl": "100.3.5", - "magento/module-directory": "100.3.5", + "magento/module-directory": "100.3.6", "magento/module-directory-graph-ql": "100.3.3", - "magento/module-downloadable": "100.3.5-p2", + "magento/module-downloadable": "100.3.6", "magento/module-downloadable-graph-ql": "100.3.4", - "magento/module-downloadable-import-export": "100.3.5", - "magento/module-eav": "102.0.5-p2", + "magento/module-downloadable-import-export": "100.3.6", + "magento/module-eav": "102.0.6", "magento/module-eav-graph-ql": "100.3.4", - "magento/module-elasticsearch": "100.3.5", - "magento/module-elasticsearch-6": "100.3.4", - "magento/module-elasticsearch-7": "100.3.0", - "magento/module-email": "101.0.5", + "magento/module-elasticsearch": "100.3.6", + "magento/module-elasticsearch-6": "100.3.5", + "magento/module-elasticsearch-7": "100.3.1", + "magento/module-email": "101.0.6", "magento/module-encryption-key": "100.3.5", - "magento/module-fedex": "100.3.4", + "magento/module-fedex": "100.3.5", "magento/module-gift-message": "100.3.4", "magento/module-google-adwords": "100.3.5", "magento/module-google-analytics": "100.3.4", - "magento/module-google-optimizer": "100.3.4", + "magento/module-google-optimizer": "100.3.5", "magento/module-graph-ql": "100.3.5", "magento/module-graph-ql-cache": "100.3.2", "magento/module-grouped-catalog-inventory": "100.3.3", "magento/module-grouped-import-export": "100.3.4", - "magento/module-grouped-product": "100.3.5-p2", - "magento/module-grouped-product-graph-ql": "100.3.4", - "magento/module-import-export": "100.3.5-p2", - "magento/module-indexer": "100.3.5-p2", - "magento/module-instant-purchase": "100.3.5", + "magento/module-grouped-product": "100.3.6", + "magento/module-grouped-product-graph-ql": "100.3.5", + "magento/module-import-export": "100.3.6", + "magento/module-indexer": "100.3.6", + "magento/module-instant-purchase": "100.3.6", "magento/module-integration": "100.3.5", "magento/module-layered-navigation": "100.3.4", "magento/module-marketplace": "100.3.4", "magento/module-media-gallery": "100.3.1", "magento/module-media-gallery-api": "100.3.0", - "magento/module-media-storage": "100.3.5", - "magento/module-message-queue": "100.3.5-p2", + "magento/module-media-storage": "100.3.6", + "magento/module-message-queue": "100.3.5", "magento/module-msrp": "100.3.5", "magento/module-msrp-configurable-product": "100.3.3", - "magento/module-msrp-grouped-product": "100.3.3", - "magento/module-multishipping": "100.3.5", + "magento/module-msrp-grouped-product": "100.3.4", + "magento/module-multishipping": "100.3.6", "magento/module-mysql-mq": "100.3.4", "magento/module-new-relic-reporting": "100.3.4", - "magento/module-newsletter": "100.3.5-p2", + "magento/module-newsletter": "100.3.6", "magento/module-offline-payments": "100.3.4", "magento/module-offline-shipping": "100.3.5", - "magento/module-page-cache": "100.3.5", - "magento/module-payment": "100.3.5", - "magento/module-paypal": "100.3.5-p2", + "magento/module-page-cache": "100.3.6", + "magento/module-payment": "100.3.6", + "magento/module-paypal": "100.3.6", "magento/module-paypal-captcha": "100.3.2", "magento/module-paypal-graph-ql": "100.3.1", "magento/module-paypal-recaptcha": "1.0.1", - "magento/module-persistent": "100.3.5", - "magento/module-product-alert": "100.3.5", - "magento/module-product-video": "100.3.5-p2", - "magento/module-quote": "101.1.5-p2", - "magento/module-quote-analytics": "100.3.4", - "magento/module-quote-graph-ql": "100.3.5", + "magento/module-persistent": "100.3.6", + "magento/module-product-alert": "100.3.6", + "magento/module-product-video": "100.3.6", + "magento/module-quote": "101.1.6", + "magento/module-quote-analytics": "100.3.5", + "magento/module-quote-graph-ql": "100.3.6", "magento/module-related-product-graph-ql": "100.3.1", "magento/module-release-notification": "100.3.4", - "magento/module-reports": "100.3.5", + "magento/module-reports": "100.3.6", "magento/module-require-js": "100.3.4", - "magento/module-review": "100.3.5", + "magento/module-review": "100.3.6", "magento/module-review-analytics": "100.3.4", "magento/module-robots": "101.0.4", "magento/module-rss": "100.3.4", "magento/module-rule": "100.3.5", - "magento/module-sales": "102.0.5-p2", + "magento/module-sales": "102.0.6", "magento/module-sales-analytics": "100.3.4", "magento/module-sales-graph-ql": "100.3.3", "magento/module-sales-inventory": "100.3.4", - "magento/module-sales-rule": "101.1.5-p2", + "magento/module-sales-rule": "101.1.6", "magento/module-sales-sequence": "100.3.4", "magento/module-sample-data": "100.3.4", - "magento/module-search": "101.0.5", + "magento/module-search": "101.0.6", "magento/module-security": "100.3.5", "magento/module-send-friend": "100.3.4", "magento/module-send-friend-graph-ql": "100.3.3", - "magento/module-shipping": "100.3.5-p2", + "magento/module-shipping": "100.3.5", "magento/module-signifyd": "100.3.5", - "magento/module-sitemap": "100.3.5", - "magento/module-store": "101.0.5", + "magento/module-sitemap": "100.3.6", + "magento/module-store": "101.0.6", "magento/module-store-graph-ql": "100.3.4", "magento/module-swagger": "100.3.5", "magento/module-swagger-webapi": "100.3.4", "magento/module-swagger-webapi-async": "100.3.4", - "magento/module-swatches": "100.3.5", + "magento/module-swatches": "100.3.6", "magento/module-swatches-graph-ql": "100.3.5", "magento/module-swatches-layered-navigation": "100.3.4", - "magento/module-tax": "100.3.5", + "magento/module-tax": "100.3.6", "magento/module-tax-graph-ql": "100.3.4", "magento/module-tax-import-export": "100.3.4", - "magento/module-theme": "101.0.5-p2", + "magento/module-theme": "101.0.6", "magento/module-theme-graph-ql": "100.3.3", - "magento/module-tinymce-3": "100.3.5", - "magento/module-translation": "100.3.5", - "magento/module-ui": "101.1.5", - "magento/module-ups": "100.3.5", + "magento/module-tinymce-3": "100.3.6", + "magento/module-translation": "100.3.6", + "magento/module-ui": "101.1.6", + "magento/module-ups": "100.3.6", "magento/module-url-rewrite": "101.1.5", - "magento/module-url-rewrite-graph-ql": "100.3.5", - "magento/module-user": "101.1.5", + "magento/module-url-rewrite-graph-ql": "100.3.6", + "magento/module-user": "101.1.6", "magento/module-usps": "100.3.5", "magento/module-variable": "100.3.4", - "magento/module-vault": "101.1.5", + "magento/module-vault": "101.1.6", "magento/module-vault-graph-ql": "100.3.2", "magento/module-version": "100.3.4", - "magento/module-webapi": "100.3.4", - "magento/module-webapi-async": "100.3.5", + "magento/module-webapi": "100.3.5", + "magento/module-webapi-async": "100.3.6", "magento/module-webapi-security": "100.3.4", "magento/module-weee": "100.3.5", "magento/module-weee-graph-ql": "100.3.4", "magento/module-widget": "101.1.4", - "magento/module-wishlist": "101.1.5-p2", + "magento/module-wishlist": "101.1.6", "magento/module-wishlist-analytics": "100.3.4", "magento/module-wishlist-graph-ql": "100.3.3", "magento/theme-adminhtml-backend": "100.3.5", - "magento/theme-frontend-blank": "100.3.5", - "magento/theme-frontend-luma": "100.3.5", + "magento/theme-frontend-blank": "100.3.6", + "magento/theme-frontend-luma": "100.3.6", "magento/zendframework1": "~1.14.2", "monolog/monolog": "^1.17", "msp/recaptcha": "2.2.3", @@ -17734,7 +17861,7 @@ "tedivm/jshrink": "~1.3.0", "temando/module-shipping": "2.0.0", "tubalmartin/cssmin": "4.1.1", - "vertex/product-magento-module": "3.4.1", + "vertex/product-magento-module": "3.4.3", "webonyx/graphql-php": "^0.13.8", "wikimedia/less.php": "~1.8.0", "yotpo/magento2-module-yotpo-reviews-bundle": "3.1.0" @@ -17748,22 +17875,21 @@ }, { "name": "magento/product-enterprise-edition", - "version": "2.3.5-p2", + "version": "2.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/product-enterprise-edition/magento-product-enterprise-edition-2.3.5.0-patch2.zip", - "shasum": "c434966069b62a8efe2a3e3fd2b025225b71694d" + "url": "https://repo.magento.com/archives/magento/product-enterprise-edition/magento-product-enterprise-edition-2.3.6.0.zip", + "shasum": "bd67f0bfd624b48c3036b1dff7bbb05eafe3d174" }, "require": { - "amzn/amazon-pay-and-login-magento-2-module": "3.4.1-p2", + "amzn/amazon-pay-and-login-magento-2-module": "3.4.1-p3", "braintree/braintree_php": "3.35.0", "colinmollenhour/cache-backend-file": "~1.4.1", "colinmollenhour/cache-backend-redis": "1.10.6", "colinmollenhour/credis": "1.10.0", "colinmollenhour/php-redis-session-abstract": "~1.4.0", "composer/composer": "^1.9", - "dotmailer/dotmailer-magento2-extension-enterprise-package": "4.4.0", - "dotmailer/dotmailer-magento2-extension-package": "4.4.0", + "dotmailer/dotmailer-magento2-extension-enterprise-package": "4.4.1", "elasticsearch/elasticsearch": "~2.0||~5.1||~6.1||~7.6", "ext-bcmath": "*", "ext-ctype": "*", @@ -17782,7 +17908,7 @@ "ext-xsl": "*", "ext-zip": "*", "guzzlehttp/guzzle": "^6.3.3", - "klarna/m2-payments": "7.5.1", + "klarna/m2-payments": "7.6.1", "laminas/laminas-captcha": "^2.7.1", "laminas/laminas-code": "~3.3.0", "laminas/laminas-config": "^2.6.0", @@ -17813,67 +17939,69 @@ "laminas/laminas-validator": "^2.6.0", "laminas/laminas-view": "~2.11.2", "lib-libxml": "*", - "magento/adobe-stock-integration": "1.0.1", + "magento/adobe-stock-integration": "1.0.2", "magento/composer": "~1.5.0", "magento/framework-foreign-key": "100.3.5", "magento/google-shopping-ads": "4.0.1", - "magento/inventory-composer-metapackage": "1.1.5-p1", + "magento/inventory-composer-metapackage": "1.1.6", "magento/magento-composer-installer": ">=0.1.11", - "magento/magento2-ee-base": "2.3.5-p2", - "magento/module-admin-gws": "100.3.5", + "magento/magento2-ee-base": "2.3.6", + "magento/module-admin-gws": "100.3.6", + "magento/module-admin-gws-configurable-product": "100.3.0", + "magento/module-admin-gws-staging": "100.3.0", "magento/module-advanced-catalog": "100.3.4", - "magento/module-advanced-checkout": "100.3.5", + "magento/module-advanced-checkout": "100.3.6", "magento/module-advanced-rule": "100.3.4", "magento/module-advanced-sales-rule": "100.3.4", - "magento/module-banner": "101.1.5", + "magento/module-banner": "101.1.6", "magento/module-banner-customer-segment": "100.3.5", "magento/module-bundle-import-export-staging": "100.3.4", - "magento/module-bundle-staging": "100.3.4", - "magento/module-catalog-event": "101.0.5", + "magento/module-bundle-staging": "100.3.5", + "magento/module-catalog-event": "101.0.6", "magento/module-catalog-import-export-staging": "100.3.4", "magento/module-catalog-inventory-staging": "100.3.4", - "magento/module-catalog-permissions": "100.3.4", - "magento/module-catalog-rule-staging": "100.3.5", - "magento/module-catalog-staging": "100.3.5", + "magento/module-catalog-permissions": "100.3.5", + "magento/module-catalog-rule-staging": "100.3.6", + "magento/module-catalog-staging": "100.3.6", "magento/module-catalog-staging-graph-ql": "100.3.0", "magento/module-catalog-url-rewrite-staging": "100.3.4", - "magento/module-checkout-address-search": "100.3.3", + "magento/module-checkout-address-search": "100.3.4", "magento/module-checkout-address-search-gift-registry": "100.3.2", "magento/module-checkout-staging": "100.3.4", - "magento/module-cms-staging": "100.3.4", + "magento/module-cms-staging": "100.3.5", "magento/module-configurable-product-staging": "100.3.5", - "magento/module-custom-attribute-management": "100.3.5", - "magento/module-customer-balance": "100.3.5-p2", + "magento/module-custom-attribute-management": "100.3.6", + "magento/module-customer-balance": "100.3.6", "magento/module-customer-balance-graph-ql": "100.3.1", - "magento/module-customer-custom-attributes": "100.3.5", + "magento/module-customer-custom-attributes": "100.3.6", "magento/module-customer-finance": "100.3.4", - "magento/module-customer-segment": "102.0.5-p2", + "magento/module-customer-segment": "102.0.6", "magento/module-cybersource": "100.3.5", "magento/module-downloadable-staging": "100.3.4", "magento/module-elasticsearch-catalog-permissions": "100.3.2", "magento/module-enterprise": "100.3.4", "magento/module-eway": "100.3.5", - "magento/module-gift-card": "101.2.5-p2", - "magento/module-gift-card-account": "101.1.5-p2", + "magento/module-gift-card": "101.2.6", + "magento/module-gift-card-account": "101.1.6", "magento/module-gift-card-account-graph-ql": "100.3.2", "magento/module-gift-card-graph-ql": "100.3.4", "magento/module-gift-card-import-export": "100.3.5", "magento/module-gift-card-staging": "100.3.4", "magento/module-gift-message-staging": "100.3.4", - "magento/module-gift-registry": "101.1.5-p2", - "magento/module-gift-wrapping": "101.1.5-p2", + "magento/module-gift-registry": "101.1.6", + "magento/module-gift-wrapping": "101.1.6", "magento/module-gift-wrapping-staging": "100.3.4", "magento/module-google-optimizer-staging": "100.3.4", - "magento/module-google-tag-manager": "100.3.5", + "magento/module-google-tag-manager": "100.3.6", "magento/module-grouped-product-staging": "100.3.4", "magento/module-invitation": "100.3.5", "magento/module-layered-navigation-staging": "100.3.4", "magento/module-logging": "101.1.5", "magento/module-msrp-staging": "100.3.4", - "magento/module-multiple-wishlist": "100.3.5-p2", + "magento/module-multiple-wishlist": "100.3.6", "magento/module-payment-staging": "100.3.4", "magento/module-paypal-recaptcha": "1.0.1", - "magento/module-persistent-history": "100.3.4", + "magento/module-persistent-history": "100.3.5", "magento/module-price-permissions": "100.3.4", "magento/module-product-video-staging": "100.3.4", "magento/module-promotion-permissions": "100.3.4", @@ -17883,29 +18011,29 @@ "magento/module-reward": "101.1.5", "magento/module-reward-graph-ql": "100.3.4", "magento/module-reward-staging": "100.3.4", - "magento/module-rma": "101.1.5-p2", + "magento/module-rma": "101.1.6", "magento/module-rma-graph-ql": "100.3.4", "magento/module-rma-staging": "100.3.4", - "magento/module-sales-archive": "100.3.5", - "magento/module-sales-rule-staging": "100.3.4", - "magento/module-scalable-checkout": "100.3.4-p2", + "magento/module-sales-archive": "100.3.6", + "magento/module-sales-rule-staging": "100.3.5", + "magento/module-scalable-checkout": "100.3.5", "magento/module-scalable-inventory": "100.3.4", "magento/module-scalable-oms": "100.3.4", - "magento/module-scheduled-import-export": "101.1.4", + "magento/module-scheduled-import-export": "101.1.5", "magento/module-search-staging": "100.3.4", - "magento/module-staging": "101.1.5", + "magento/module-staging": "101.1.6", "magento/module-staging-graph-ql": "100.3.0", "magento/module-support": "101.1.4", - "magento/module-target-rule": "101.1.5", + "magento/module-target-rule": "101.1.6", "magento/module-tinymce-3-banner": "100.3.4", - "magento/module-versions-cms": "101.1.5", + "magento/module-versions-cms": "101.1.6", "magento/module-versions-cms-url-rewrite": "100.3.0", - "magento/module-visual-merchandiser": "100.3.5-p2", - "magento/module-website-restriction": "100.3.5", + "magento/module-visual-merchandiser": "100.3.6", + "magento/module-website-restriction": "100.3.6", "magento/module-weee-staging": "100.3.4", "magento/module-worldpay": "100.3.5", - "magento/page-builder-commerce": "1.3.2", - "magento/product-community-edition": "2.3.5-p2", + "magento/page-builder-commerce": "1.3.3", + "magento/product-community-edition": "2.3.6", "magento/zendframework1": "~1.14.2", "monolog/monolog": "^1.17", "msp/recaptcha": "2.2.3", @@ -17923,7 +18051,7 @@ "tedivm/jshrink": "~1.3.0", "temando/module-shipping": "2.0.0", "tubalmartin/cssmin": "4.1.1", - "vertex/product-magento-module": "3.4.1", + "vertex/product-magento-module": "3.4.3", "webonyx/graphql-php": "^0.13.8", "wikimedia/less.php": "~1.8.0", "yotpo/magento2-module-yotpo-reviews-bundle": "3.1.0" @@ -17936,11 +18064,11 @@ }, { "name": "magento/quality-patches", - "version": "1.0.1", + "version": "1.0.7", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/quality-patches/magento-quality-patches-1.0.1.0.zip", - "shasum": "6b4e81499a68d6ee484f20c31ac71b3bfcd93098" + "url": "https://repo.magento.com/archives/magento/quality-patches/magento-quality-patches-1.0.7.0.zip", + "shasum": "cc23243da343d5b84acb8d221f2e8337640805b1" }, "require": { "ext-json": "*", @@ -17994,11 +18122,11 @@ }, { "name": "magento/theme-frontend-blank", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/theme-frontend-blank/magento-theme-frontend-blank-100.3.5.0.zip", - "shasum": "f0e75444b5b01011d429ffccdf36e4c8635cb8f9" + "url": "https://repo.magento.com/archives/magento/theme-frontend-blank/magento-theme-frontend-blank-100.3.6.0.zip", + "shasum": "d66b2b8d303e265edc461d27825053e98c59c4d9" }, "require": { "magento/framework": "102.0.*", @@ -18018,11 +18146,11 @@ }, { "name": "magento/theme-frontend-luma", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/theme-frontend-luma/magento-theme-frontend-luma-100.3.5.0.zip", - "shasum": "b538c03c982a1329fe87c0d8d4e2c2de90c3f57b" + "url": "https://repo.magento.com/archives/magento/theme-frontend-luma/magento-theme-frontend-luma-100.3.6.0.zip", + "shasum": "d5b9670c351389a0c67545f29f933fc61b6374dc" }, "require": { "magento/framework": "102.0.*", @@ -18290,16 +18418,16 @@ }, { "name": "nesbot/carbon", - "version": "2.38.0", + "version": "2.41.3", "source": { "type": "git", "url": "https://github.com/briannesbitt/Carbon.git", - "reference": "d8f6a6a91d1eb9304527b040500f61923e97674b" + "reference": "e148788eeae9b9b7b87996520358b86faad37b52" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/d8f6a6a91d1eb9304527b040500f61923e97674b", - "reference": "d8f6a6a91d1eb9304527b040500f61923e97674b", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/e148788eeae9b9b7b87996520358b86faad37b52", + "reference": "e148788eeae9b9b7b87996520358b86faad37b52", "shasum": "" }, "require": { @@ -18312,7 +18440,7 @@ "doctrine/orm": "^2.7", "friendsofphp/php-cs-fixer": "^2.14 || ^3.0", "kylekatarnls/multi-tester": "^2.0", - "phpmd/phpmd": "^2.8", + "phpmd/phpmd": "^2.9", "phpstan/extension-installer": "^1.0", "phpstan/phpstan": "^0.12.35", "phpunit/phpunit": "^7.5 || ^8.0", @@ -18375,7 +18503,7 @@ "type": "tidelift" } ], - "time": "2020-08-04T19:12:46+00:00" + "time": "2020-10-12T20:36:09+00:00" }, { "name": "ocramius/package-versions", @@ -18885,16 +19013,16 @@ }, { "name": "phpseclib/phpseclib", - "version": "2.0.28", + "version": "2.0.29", "source": { "type": "git", "url": "https://github.com/phpseclib/phpseclib.git", - "reference": "d1ca58cf33cb21046d702ae3a7b14fdacd9f3260" + "reference": "497856a8d997f640b4a516062f84228a772a48a8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/d1ca58cf33cb21046d702ae3a7b14fdacd9f3260", - "reference": "d1ca58cf33cb21046d702ae3a7b14fdacd9f3260", + "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/497856a8d997f640b4a516062f84228a772a48a8", + "reference": "497856a8d997f640b4a516062f84228a772a48a8", "shasum": "" }, "require": { @@ -18903,7 +19031,6 @@ "require-dev": { "phing/phing": "~2.7", "phpunit/phpunit": "^4.8.35|^5.7|^6.0", - "sami/sami": "~2.0", "squizlabs/php_codesniffer": "~2.0" }, "suggest": { @@ -18987,7 +19114,7 @@ "type": "tidelift" } ], - "time": "2020-07-08T09:08:33+00:00" + "time": "2020-09-08T04:24:43+00:00" }, { "name": "psr/container", @@ -19353,16 +19480,16 @@ }, { "name": "seld/jsonlint", - "version": "1.8.0", + "version": "1.8.2", "source": { "type": "git", "url": "https://github.com/Seldaek/jsonlint.git", - "reference": "ff2aa5420bfbc296cf6a0bc785fa5b35736de7c1" + "reference": "590cfec960b77fd55e39b7d9246659e95dd6d337" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/ff2aa5420bfbc296cf6a0bc785fa5b35736de7c1", - "reference": "ff2aa5420bfbc296cf6a0bc785fa5b35736de7c1", + "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/590cfec960b77fd55e39b7d9246659e95dd6d337", + "reference": "590cfec960b77fd55e39b7d9246659e95dd6d337", "shasum": "" }, "require": { @@ -19408,7 +19535,7 @@ "type": "tidelift" } ], - "time": "2020-04-30T19:05:18+00:00" + "time": "2020-08-25T06:56:57+00:00" }, { "name": "seld/phar-utils", @@ -19520,16 +19647,16 @@ }, { "name": "symfony/config", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "b1d8f0d9341ea1d378b8b043ba90739f37c49d36" + "reference": "7c5a1002178a612787c291a4f515f87b19176b61" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/b1d8f0d9341ea1d378b8b043ba90739f37c49d36", - "reference": "b1d8f0d9341ea1d378b8b043ba90739f37c49d36", + "url": "https://api.github.com/repos/symfony/config/zipball/7c5a1002178a612787c291a4f515f87b19176b61", + "reference": "7c5a1002178a612787c291a4f515f87b19176b61", "shasum": "" }, "require": { @@ -19594,20 +19721,20 @@ "type": "tidelift" } ], - "time": "2020-07-15T08:27:46+00:00" + "time": "2020-10-02T07:34:48+00:00" }, { "name": "symfony/console", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "55d07021da933dd0d633ffdab6f45d5b230c7e02" + "reference": "90933b39c7b312fc3ceaa1ddeac7eb48cb953124" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/55d07021da933dd0d633ffdab6f45d5b230c7e02", - "reference": "55d07021da933dd0d633ffdab6f45d5b230c7e02", + "url": "https://api.github.com/repos/symfony/console/zipball/90933b39c7b312fc3ceaa1ddeac7eb48cb953124", + "reference": "90933b39c7b312fc3ceaa1ddeac7eb48cb953124", "shasum": "" }, "require": { @@ -19685,11 +19812,11 @@ "type": "tidelift" } ], - "time": "2020-07-06T13:18:39+00:00" + "time": "2020-09-15T07:58:55+00:00" }, { "name": "symfony/css-selector", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", @@ -19756,16 +19883,16 @@ }, { "name": "symfony/dependency-injection", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "f33a28edd42708ed579377391b3a556bcd6a626d" + "reference": "89274c8847dff2ed703e481843eb9159ca25cc6e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/f33a28edd42708ed579377391b3a556bcd6a626d", - "reference": "f33a28edd42708ed579377391b3a556bcd6a626d", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/89274c8847dff2ed703e481843eb9159ca25cc6e", + "reference": "89274c8847dff2ed703e481843eb9159ca25cc6e", "shasum": "" }, "require": { @@ -19839,20 +19966,20 @@ "type": "tidelift" } ], - "time": "2020-07-23T08:31:43+00:00" + "time": "2020-09-10T10:08:39+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "6140fc7047dafc5abbe84ba16a34a86c0b0229b8" + "reference": "e17bb5e0663dc725f7cdcafc932132735b4725cd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/6140fc7047dafc5abbe84ba16a34a86c0b0229b8", - "reference": "6140fc7047dafc5abbe84ba16a34a86c0b0229b8", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/e17bb5e0663dc725f7cdcafc932132735b4725cd", + "reference": "e17bb5e0663dc725f7cdcafc932132735b4725cd", "shasum": "" }, "require": { @@ -19870,6 +19997,7 @@ "psr/log": "~1.0", "symfony/config": "^3.4|^4.0|^5.0", "symfony/dependency-injection": "^3.4|^4.0|^5.0", + "symfony/error-handler": "~3.4|~4.4", "symfony/expression-language": "^3.4|^4.0|^5.0", "symfony/http-foundation": "^3.4|^4.0|^5.0", "symfony/service-contracts": "^1.1|^2", @@ -19923,7 +20051,7 @@ "type": "tidelift" } ], - "time": "2020-06-18T17:59:13+00:00" + "time": "2020-09-18T14:07:46+00:00" }, { "name": "symfony/event-dispatcher-contracts", @@ -20003,16 +20131,16 @@ }, { "name": "symfony/filesystem", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "6e4320f06d5f2cce0d96530162491f4465179157" + "reference": "1a8697545a8d87b9f2f6b1d32414199cc5e20aae" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/6e4320f06d5f2cce0d96530162491f4465179157", - "reference": "6e4320f06d5f2cce0d96530162491f4465179157", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/1a8697545a8d87b9f2f6b1d32414199cc5e20aae", + "reference": "1a8697545a8d87b9f2f6b1d32414199cc5e20aae", "shasum": "" }, "require": { @@ -20063,20 +20191,20 @@ "type": "tidelift" } ], - "time": "2020-05-30T20:35:19+00:00" + "time": "2020-09-27T14:02:37+00:00" }, { "name": "symfony/finder", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "4298870062bfc667cb78d2b379be4bf5dec5f187" + "reference": "2c3ba7ad6884e6c4451ce2340e2dc23f6fa3e0d8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/4298870062bfc667cb78d2b379be4bf5dec5f187", - "reference": "4298870062bfc667cb78d2b379be4bf5dec5f187", + "url": "https://api.github.com/repos/symfony/finder/zipball/2c3ba7ad6884e6c4451ce2340e2dc23f6fa3e0d8", + "reference": "2c3ba7ad6884e6c4451ce2340e2dc23f6fa3e0d8", "shasum": "" }, "require": { @@ -20126,7 +20254,7 @@ "type": "tidelift" } ], - "time": "2020-05-20T17:43:50+00:00" + "time": "2020-09-02T16:23:27+00:00" }, { "name": "symfony/options-resolver", @@ -20953,16 +21081,16 @@ }, { "name": "symfony/process", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "65e70bab62f3da7089a8d4591fb23fbacacb3479" + "reference": "9b887acc522935f77555ae8813495958c7771ba7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/65e70bab62f3da7089a8d4591fb23fbacacb3479", - "reference": "65e70bab62f3da7089a8d4591fb23fbacacb3479", + "url": "https://api.github.com/repos/symfony/process/zipball/9b887acc522935f77555ae8813495958c7771ba7", + "reference": "9b887acc522935f77555ae8813495958c7771ba7", "shasum": "" }, "require": { @@ -21012,7 +21140,7 @@ "type": "tidelift" } ], - "time": "2020-07-23T08:31:43+00:00" + "time": "2020-09-02T16:08:58+00:00" }, { "name": "symfony/property-access", @@ -21077,16 +21205,16 @@ }, { "name": "symfony/proxy-manager-bridge", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/proxy-manager-bridge.git", - "reference": "3f42656c548a373b9ffa212fb16f11e6cda2e0c6" + "reference": "3d698b01104bfca5b0776637cdfae6e1c8f658f1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/proxy-manager-bridge/zipball/3f42656c548a373b9ffa212fb16f11e6cda2e0c6", - "reference": "3f42656c548a373b9ffa212fb16f11e6cda2e0c6", + "url": "https://api.github.com/repos/symfony/proxy-manager-bridge/zipball/3d698b01104bfca5b0776637cdfae6e1c8f658f1", + "reference": "3d698b01104bfca5b0776637cdfae6e1c8f658f1", "shasum": "" }, "require": { @@ -21144,20 +21272,20 @@ "type": "tidelift" } ], - "time": "2020-05-20T08:37:50+00:00" + "time": "2020-09-02T16:08:58+00:00" }, { "name": "symfony/serializer", - "version": "v3.4.43", + "version": "v3.4.45", "source": { "type": "git", "url": "https://github.com/symfony/serializer.git", - "reference": "f64adecb8428febda812166bdc4baa99c039fc74" + "reference": "b7d9a52bb1b3ec606238feb645908ffc8b4f714f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/serializer/zipball/f64adecb8428febda812166bdc4baa99c039fc74", - "reference": "f64adecb8428febda812166bdc4baa99c039fc74", + "url": "https://api.github.com/repos/symfony/serializer/zipball/b7d9a52bb1b3ec606238feb645908ffc8b4f714f", + "reference": "b7d9a52bb1b3ec606238feb645908ffc8b4f714f", "shasum": "" }, "require": { @@ -21237,20 +21365,20 @@ "type": "tidelift" } ], - "time": "2020-06-18T17:32:39+00:00" + "time": "2020-09-02T16:06:40+00:00" }, { "name": "symfony/service-contracts", - "version": "v2.1.3", + "version": "v2.2.0", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "58c7475e5457c5492c26cc740cc0ad7464be9442" + "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/58c7475e5457c5492c26cc740cc0ad7464be9442", - "reference": "58c7475e5457c5492c26cc740cc0ad7464be9442", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1", + "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1", "shasum": "" }, "require": { @@ -21263,7 +21391,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.1-dev" + "dev-master": "2.2-dev" }, "thanks": { "name": "symfony/contracts", @@ -21313,20 +21441,20 @@ "type": "tidelift" } ], - "time": "2020-07-06T13:23:11+00:00" + "time": "2020-09-07T11:33:47+00:00" }, { "name": "symfony/translation", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "a8ea9d97353294eb6783f2894ef8cee99a045822" + "reference": "8494fa1bbf9d77fe1e7d50ac8ccfb80a858a98bd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/a8ea9d97353294eb6783f2894ef8cee99a045822", - "reference": "a8ea9d97353294eb6783f2894ef8cee99a045822", + "url": "https://api.github.com/repos/symfony/translation/zipball/8494fa1bbf9d77fe1e7d50ac8ccfb80a858a98bd", + "reference": "8494fa1bbf9d77fe1e7d50ac8ccfb80a858a98bd", "shasum": "" }, "require": { @@ -21403,20 +21531,20 @@ "type": "tidelift" } ], - "time": "2020-07-23T08:31:43+00:00" + "time": "2020-10-02T07:34:48+00:00" }, { "name": "symfony/translation-contracts", - "version": "v2.1.3", + "version": "v2.3.0", "source": { "type": "git", "url": "https://github.com/symfony/translation-contracts.git", - "reference": "616a9773c853097607cf9dd6577d5b143ffdcd63" + "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/616a9773c853097607cf9dd6577d5b143ffdcd63", - "reference": "616a9773c853097607cf9dd6577d5b143ffdcd63", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105", + "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105", "shasum": "" }, "require": { @@ -21428,7 +21556,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.1-dev" + "dev-master": "2.3-dev" }, "thanks": { "name": "symfony/contracts", @@ -21478,20 +21606,20 @@ "type": "tidelift" } ], - "time": "2020-07-06T13:23:11+00:00" + "time": "2020-09-28T13:05:58+00:00" }, { "name": "symfony/yaml", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "c2d2cc66e892322cfcc03f8f12f8340dbd7a3f8a" + "reference": "c7885964b1eceb70b0981556d0a9b01d2d97c8d1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/c2d2cc66e892322cfcc03f8f12f8340dbd7a3f8a", - "reference": "c2d2cc66e892322cfcc03f8f12f8340dbd7a3f8a", + "url": "https://api.github.com/repos/symfony/yaml/zipball/c7885964b1eceb70b0981556d0a9b01d2d97c8d1", + "reference": "c7885964b1eceb70b0981556d0a9b01d2d97c8d1", "shasum": "" }, "require": { @@ -21551,7 +21679,7 @@ "type": "tidelift" } ], - "time": "2020-05-20T08:37:50+00:00" + "time": "2020-09-27T03:36:23+00:00" }, { "name": "tedivm/jshrink", @@ -21747,11 +21875,11 @@ }, { "name": "vertex/module-address-validation", - "version": "1.1.1", + "version": "1.1.2", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/vertex/module-address-validation/vertex-module-address-validation-1.1.1.0.zip", - "shasum": "8e254da3ce07ccbefcc7aa6189a691596a625470" + "url": "https://repo.magento.com/archives/vertex/module-address-validation/vertex-module-address-validation-1.1.2.0.zip", + "shasum": "4a878033de8bf793e5f994aa0aaa17136010f2c3" }, "require": { "ext-json": "*", @@ -21764,7 +21892,7 @@ "magento/module-store": "^100|^101", "magento/module-tax": "^100", "php": "^7.0", - "vertex/module-tax": "^3.4.1" + "vertex/module-tax": "^3.4.2" }, "require-dev": { "ext-dom": "*", @@ -21789,11 +21917,11 @@ }, { "name": "vertex/module-tax", - "version": "3.4.1", + "version": "3.4.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/vertex/module-tax/vertex-module-tax-3.4.1.0.zip", - "shasum": "eb2adeb131e80b6cbb527fd63d0a1751115b0b79" + "url": "https://repo.magento.com/archives/vertex/module-tax/vertex-module-tax-3.4.3.0.zip", + "shasum": "6479c6679532204f8ad29e77fe3e83c941ce52a5" }, "require": { "ext-intl": "*", @@ -21853,20 +21981,28 @@ }, { "name": "vertex/product-magento-module", - "version": "3.4.1", + "version": "3.4.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/vertex/product-magento-module/vertex-product-magento-module-3.4.1.0.zip", - "shasum": "a0c5a95f0e8f8bdd9fbe8a3eabbed7f3753cb801" + "url": "https://repo.magento.com/archives/vertex/product-magento-module/vertex-product-magento-module-3.4.3.0.zip", + "shasum": "4b1cf3666acb71ff92827cfd5c5d4e592ecb8f9a" }, "require": { - "vertex/module-address-validation": "1.1.1", - "vertex/module-tax": "3.4.1" + "vertex/module-address-validation": "1.1.2", + "vertex/module-tax": "3.4.3" }, "type": "metapackage", "license": [ "proprietary" ], + "authors": [ + { + "name": "Mediotype", + "email": "diveinto@mediotype.com", + "homepage": "http://www.mediotype.com/", + "role": "Development Company" + } + ], "description": "Vertex Tax Links for Magento 2", "homepage": "http://go.vertexsmb.com/magento_cbe", "keywords": [ @@ -21876,11 +22012,11 @@ }, { "name": "vertex/sdk", - "version": "1.2.4", + "version": "1.2.7", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/vertex/sdk/vertex-sdk-1.2.4.0.zip", - "shasum": "2b9fd3deb46f45930b90d4e020f3236d8256cd4a" + "url": "https://repo.magento.com/archives/vertex/sdk/vertex-sdk-1.2.7.0.zip", + "shasum": "821465662cc2d8ec186e2baf138a7c3075fcf3ee" }, "require": { "ext-mbstring": "*", @@ -21889,6 +22025,8 @@ "php": "^5.4|^7" }, "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2", + "magento/magento-coding-standard": "^5.0", "php": "^7.3", "phpmd/phpmd": "^2.6", "phpunit/phpunit": "^9", @@ -21905,6 +22043,61 @@ ], "description": "Tools for communicating with Vertex Cloud and Vertex O-Series" }, + { + "name": "webimpress/safe-writer", + "version": "2.1.0", + "source": { + "type": "git", + "url": "https://github.com/webimpress/safe-writer.git", + "reference": "5cfafdec5873c389036f14bf832a5efc9390dcdd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/webimpress/safe-writer/zipball/5cfafdec5873c389036f14bf832a5efc9390dcdd", + "reference": "5cfafdec5873c389036f14bf832a5efc9390dcdd", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.8 || ^9.3.7", + "vimeo/psalm": "^3.14.2", + "webimpress/coding-standard": "^1.1.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1.x-dev", + "dev-develop": "2.2.x-dev", + "dev-release-1.0": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Webimpress\\SafeWriter\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-2-Clause" + ], + "description": "Tool to write files safely, to avoid race conditions", + "keywords": [ + "concurrent write", + "file writer", + "race condition", + "safe writer", + "webimpress" + ], + "funding": [ + { + "url": "https://github.com/michalbundyra", + "type": "github" + } + ], + "time": "2020-08-25T07:21:11+00:00" + }, { "name": "webonyx/graphql-php", "version": "v0.13.9", diff --git a/src/_data/codebase/v2_3/commerce/composer_lock.json b/src/_data/codebase/v2_3/commerce/composer_lock.json index d320fd8e4ae..4ba422f67c5 100644 --- a/src/_data/codebase/v2_3/commerce/composer_lock.json +++ b/src/_data/codebase/v2_3/commerce/composer_lock.json @@ -4,20 +4,20 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "aec73991e57c8703aaa55cd333140d13", + "content-hash": "2c9a5bc621394009b7625cfaa5afbd12", "packages": [ { "name": "amzn/amazon-pay-and-login-magento-2-module", - "version": "3.4.1", + "version": "3.4.1-p3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/amzn/amazon-pay-and-login-magento-2-module/amzn-amazon-pay-and-login-magento-2-module-3.4.1.0.zip", - "shasum": "46e79d698c277f6d61bad4f87a18d7a1195e1670" + "url": "https://repo.magento.com/archives/amzn/amazon-pay-and-login-magento-2-module/amzn-amazon-pay-and-login-magento-2-module-3.4.1.0-patch3.zip", + "shasum": "767dd813b3253ffea92bdf6136d948b123b4ed91" }, "require": { - "amzn/amazon-pay-and-login-with-amazon-core-module": "3.4.1", - "amzn/amazon-pay-module": "3.4.1", - "amzn/login-with-amazon-module": "3.4.1" + "amzn/amazon-pay-and-login-with-amazon-core-module": "3.4.1-p3", + "amzn/amazon-pay-module": "3.4.1-p3", + "amzn/login-with-amazon-module": "3.4.1-p3" }, "type": "metapackage", "license": [ @@ -27,11 +27,11 @@ }, { "name": "amzn/amazon-pay-and-login-with-amazon-core-module", - "version": "3.4.1", + "version": "3.4.1-p3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/amzn/amazon-pay-and-login-with-amazon-core-module/amzn-amazon-pay-and-login-with-amazon-core-module-3.4.1.0.zip", - "shasum": "7af5fc8a73b93e6d95c0fca9237c502482c00b46" + "url": "https://repo.magento.com/archives/amzn/amazon-pay-and-login-with-amazon-core-module/amzn-amazon-pay-and-login-with-amazon-core-module-3.4.1.0-patch3.zip", + "shasum": "ee7b1b4ca803b40da8b86e9b848fa6311729978d" }, "require": { "amzn/amazon-pay-sdk-php": "^3.2.0", @@ -66,15 +66,15 @@ }, { "name": "amzn/amazon-pay-module", - "version": "3.4.1", + "version": "3.4.1-p3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/amzn/amazon-pay-module/amzn-amazon-pay-module-3.4.1.0.zip", - "shasum": "d1ea35ab912a879815ea428671becd6b1b7b136e" + "url": "https://repo.magento.com/archives/amzn/amazon-pay-module/amzn-amazon-pay-module-3.4.1.0-patch3.zip", + "shasum": "273a277586733cd152f5711b5845a69783423550" }, "require": { - "amzn/amazon-pay-and-login-with-amazon-core-module": "^3.4.1", - "amzn/login-with-amazon-module": "^3.4.1", + "amzn/amazon-pay-and-login-with-amazon-core-module": "^3.4.1-p3", + "amzn/login-with-amazon-module": "^3.4.1-p3", "magento/framework": "^102", "magento/module-backend": "^101", "magento/module-catalog": "^103", @@ -160,14 +160,14 @@ }, { "name": "amzn/login-with-amazon-module", - "version": "3.4.1", + "version": "3.4.1-p3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/amzn/login-with-amazon-module/amzn-login-with-amazon-module-3.4.1.0.zip", - "shasum": "e53166af4a8da22a911fc48bed7682d2283e35fe" + "url": "https://repo.magento.com/archives/amzn/login-with-amazon-module/amzn-login-with-amazon-module-3.4.1.0-patch3.zip", + "shasum": "2b6a79e0d4d5380484c721d456f4b128bdbe20db" }, "require": { - "amzn/amazon-pay-and-login-with-amazon-core-module": "^3.4.1", + "amzn/amazon-pay-and-login-with-amazon-core-module": "^3.4.1-p3", "magento/framework": "^102", "magento/module-checkout": "^100.3", "magento/module-checkout-agreements": "*", @@ -543,21 +543,21 @@ }, { "name": "colinmollenhour/php-redis-session-abstract", - "version": "v1.4.2", + "version": "v1.4.3", "source": { "type": "git", "url": "https://github.com/colinmollenhour/php-redis-session-abstract.git", - "reference": "669521218794f125c7b668252f4f576eda65e1e4" + "reference": "39ca38da5e0a981bc1a7e39a86693c128784a513" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/colinmollenhour/php-redis-session-abstract/zipball/669521218794f125c7b668252f4f576eda65e1e4", - "reference": "669521218794f125c7b668252f4f576eda65e1e4", + "url": "https://api.github.com/repos/colinmollenhour/php-redis-session-abstract/zipball/39ca38da5e0a981bc1a7e39a86693c128784a513", + "reference": "39ca38da5e0a981bc1a7e39a86693c128784a513", "shasum": "" }, "require": { "colinmollenhour/credis": "~1.6", - "php": "^5.5 || ^7.0" + "php": "^5.5 || ^7.0|| ^7.1 || ^7.2" }, "type": "library", "autoload": { @@ -576,20 +576,20 @@ ], "description": "A Redis-based session handler with optimistic locking", "homepage": "https://github.com/colinmollenhour/php-redis-session-abstract", - "time": "2020-01-08T17:41:01+00:00" + "time": "2020-10-07T09:47:22+00:00" }, { "name": "composer/ca-bundle", - "version": "1.2.7", + "version": "1.2.8", "source": { "type": "git", "url": "https://github.com/composer/ca-bundle.git", - "reference": "95c63ab2117a72f48f5a55da9740a3273d45b7fd" + "reference": "8a7ecad675253e4654ea05505233285377405215" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/95c63ab2117a72f48f5a55da9740a3273d45b7fd", - "reference": "95c63ab2117a72f48f5a55da9740a3273d45b7fd", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/8a7ecad675253e4654ea05505233285377405215", + "reference": "8a7ecad675253e4654ea05505233285377405215", "shasum": "" }, "require": { @@ -637,25 +637,29 @@ "url": "https://packagist.com", "type": "custom" }, + { + "url": "https://github.com/composer", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/composer/composer", "type": "tidelift" } ], - "time": "2020-04-08T08:27:21+00:00" + "time": "2020-08-23T12:54:47+00:00" }, { "name": "composer/composer", - "version": "1.10.10", + "version": "1.10.6", "source": { "type": "git", "url": "https://github.com/composer/composer.git", - "reference": "32966a3b1d48bc01472a8321fd6472b44fad033a" + "reference": "be81b9c4735362c26876bdbfd3b5bc7e7f711c88" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/composer/zipball/32966a3b1d48bc01472a8321fd6472b44fad033a", - "reference": "32966a3b1d48bc01472a8321fd6472b44fad033a", + "url": "https://api.github.com/repos/composer/composer/zipball/be81b9c4735362c26876bdbfd3b5bc7e7f711c88", + "reference": "be81b9c4735362c26876bdbfd3b5bc7e7f711c88", "shasum": "" }, "require": { @@ -663,7 +667,7 @@ "composer/semver": "^1.0", "composer/spdx-licenses": "^1.2", "composer/xdebug-handler": "^1.1", - "justinrainbow/json-schema": "^5.2.10", + "justinrainbow/json-schema": "^3.0 || ^4.0 || ^5.0", "php": "^5.3.2 || ^7.0", "psr/log": "^1.0", "seld/jsonlint": "^1.4", @@ -674,11 +678,12 @@ "symfony/process": "^2.7 || ^3.0 || ^4.0 || ^5.0" }, "conflict": { - "symfony/console": "2.8.38" + "symfony/console": "2.8.38", + "symfony/phpunit-bridge": "3.4.40" }, "require-dev": { "phpspec/prophecy": "^1.10", - "symfony/phpunit-bridge": "^4.2" + "symfony/phpunit-bridge": "^3.4" }, "suggest": { "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages", @@ -727,29 +732,25 @@ "url": "https://packagist.com", "type": "custom" }, - { - "url": "https://github.com/composer", - "type": "github" - }, { "url": "https://tidelift.com/funding/github/packagist/composer/composer", "type": "tidelift" } ], - "time": "2020-08-03T09:35:19+00:00" + "time": "2020-05-06T08:28:10+00:00" }, { "name": "composer/semver", - "version": "1.5.1", + "version": "1.7.1", "source": { "type": "git", "url": "https://github.com/composer/semver.git", - "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de" + "reference": "38276325bd896f90dfcfe30029aa5db40df387a7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/semver/zipball/c6bea70230ef4dd483e6bbcab6005f682ed3a8de", - "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de", + "url": "https://api.github.com/repos/composer/semver/zipball/38276325bd896f90dfcfe30029aa5db40df387a7", + "reference": "38276325bd896f90dfcfe30029aa5db40df387a7", "shasum": "" }, "require": { @@ -797,7 +798,21 @@ "validation", "versioning" ], - "time": "2020-01-13T12:06:48+00:00" + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2020-09-27T13:13:07+00:00" }, { "name": "composer/spdx-licenses", @@ -875,16 +890,16 @@ }, { "name": "composer/xdebug-handler", - "version": "1.4.2", + "version": "1.4.3", "source": { "type": "git", "url": "https://github.com/composer/xdebug-handler.git", - "reference": "fa2aaf99e2087f013a14f7432c1cd2dd7d8f1f51" + "reference": "ebd27a9866ae8254e873866f795491f02418c5a5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/fa2aaf99e2087f013a14f7432c1cd2dd7d8f1f51", - "reference": "fa2aaf99e2087f013a14f7432c1cd2dd7d8f1f51", + "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ebd27a9866ae8254e873866f795491f02418c5a5", + "reference": "ebd27a9866ae8254e873866f795491f02418c5a5", "shasum": "" }, "require": { @@ -929,7 +944,7 @@ "type": "tidelift" } ], - "time": "2020-06-04T11:16:35+00:00" + "time": "2020-08-19T10:27:58+00:00" }, { "name": "container-interop/container-interop", @@ -965,16 +980,16 @@ }, { "name": "donatj/phpuseragentparser", - "version": "v0.16.0", + "version": "v0.17.0", "source": { "type": "git", "url": "https://github.com/donatj/PhpUserAgent.git", - "reference": "b3551112ed84524aef6542a8778a3f812c8098ce" + "reference": "e159493010d4b71c9620a43fd05f8284f29dcfeb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/donatj/PhpUserAgent/zipball/b3551112ed84524aef6542a8778a3f812c8098ce", - "reference": "b3551112ed84524aef6542a8778a3f812c8098ce", + "url": "https://api.github.com/repos/donatj/PhpUserAgent/zipball/e159493010d4b71c9620a43fd05f8284f29dcfeb", + "reference": "e159493010d4b71c9620a43fd05f8284f29dcfeb", "shasum": "" }, "require": { @@ -1022,15 +1037,15 @@ "type": "github" } ], - "time": "2020-04-07T15:47:30+00:00" + "time": "2020-09-01T16:15:49+00:00" }, { "name": "dotmailer/dotmailer-magento2-extension", - "version": "4.4.0", + "version": "4.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension/dotmailer-dotmailer-magento2-extension-4.4.0.0.zip", - "shasum": "2ce54820044685bc127ec0c6bdc73d0c8c0984cd" + "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension/dotmailer-dotmailer-magento2-extension-4.4.1.0.zip", + "shasum": "4eadf48f14c689567e32fd4923674dbdac3453f6" }, "require": { "magento/framework": ">=101 <103", @@ -1084,11 +1099,11 @@ }, { "name": "dotmailer/dotmailer-magento2-extension-chat", - "version": "1.0.1", + "version": "1.0.1-p1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-chat/dotmailer-dotmailer-magento2-extension-chat-1.0.1.0.zip", - "shasum": "9c158025829fbdf2aa789cd269d67eba72d37ae4" + "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-chat/dotmailer-dotmailer-magento2-extension-chat-1.0.1.0-patch1.zip", + "shasum": "294a4e1c1fb0f17962b63e0ad8045ca5601c5096" }, "require": { "dotmailer/dotmailer-magento2-extension": "^4.3.1", @@ -1144,15 +1159,15 @@ }, { "name": "dotmailer/dotmailer-magento2-extension-enterprise-package", - "version": "4.4.0", + "version": "4.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-enterprise-package/dotmailer-dotmailer-magento2-extension-enterprise-package-4.4.0.0.zip", - "shasum": "97ce94c58e7c832a3ac9070e560fe6d12d93fe1e" + "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-enterprise-package/dotmailer-dotmailer-magento2-extension-enterprise-package-4.4.1.0.zip", + "shasum": "583a117d3d0853f5433c835ef96714a9f4054879" }, "require": { - "dotmailer/dotmailer-magento2-extension": "4.4.0", - "dotmailer/dotmailer-magento2-extension-chat": "1.0.1", + "dotmailer/dotmailer-magento2-extension": "4.4.1", + "dotmailer/dotmailer-magento2-extension-chat": "1.0.1-p1", "dotmailer/dotmailer-magento2-extension-enterprise": "1.0.7" }, "type": "metapackage", @@ -1163,15 +1178,15 @@ }, { "name": "dotmailer/dotmailer-magento2-extension-package", - "version": "4.4.0", + "version": "4.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-package/dotmailer-dotmailer-magento2-extension-package-4.4.0.0.zip", - "shasum": "2d49ed099b07985806a76cd8c67cbc379f4d9361" + "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-package/dotmailer-dotmailer-magento2-extension-package-4.4.1.0.zip", + "shasum": "9931bf660abe8579abb4013b331d8de9f13f9ac1" }, "require": { - "dotmailer/dotmailer-magento2-extension": "4.4.0", - "dotmailer/dotmailer-magento2-extension-chat": "1.0.1" + "dotmailer/dotmailer-magento2-extension": "4.4.1", + "dotmailer/dotmailer-magento2-extension-chat": "1.0.1-p1" }, "type": "metapackage", "license": [ @@ -1181,16 +1196,16 @@ }, { "name": "elasticsearch/elasticsearch", - "version": "v7.8.0", + "version": "v7.9.1", "source": { "type": "git", "url": "https://github.com/elastic/elasticsearch-php.git", - "reference": "5c2d039ae7bdaa1e28f1e66971c5b3314fc36383" + "reference": "38e821f37491bd91fe06b18b88613128950a11bb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/elastic/elasticsearch-php/zipball/5c2d039ae7bdaa1e28f1e66971c5b3314fc36383", - "reference": "5c2d039ae7bdaa1e28f1e66971c5b3314fc36383", + "url": "https://api.github.com/repos/elastic/elasticsearch-php/zipball/38e821f37491bd91fe06b18b88613128950a11bb", + "reference": "38e821f37491bd91fe06b18b88613128950a11bb", "shasum": "" }, "require": { @@ -1202,6 +1217,7 @@ "require-dev": { "cpliakas/git-wrapper": "~2.0", "doctrine/inflector": "^1.3", + "ext-yaml": "*", "mockery/mockery": "^1.2", "phpstan/phpstan": "^0.12", "phpunit/phpunit": "^7.5", @@ -1240,7 +1256,7 @@ "elasticsearch", "search" ], - "time": "2020-06-18T19:23:29+00:00" + "time": "2020-10-06T13:03:50+00:00" }, { "name": "endroid/qr-code", @@ -1528,23 +1544,23 @@ }, { "name": "guzzlehttp/promises", - "version": "v1.3.1", + "version": "1.4.0", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646" + "reference": "60d379c243457e073cff02bc323a2a86cb355631" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646", + "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631", + "reference": "60d379c243457e073cff02bc323a2a86cb355631", "shasum": "" }, "require": { - "php": ">=5.5.0" + "php": ">=5.5" }, "require-dev": { - "phpunit/phpunit": "^4.0" + "symfony/phpunit-bridge": "^4.4 || ^5.1" }, "type": "library", "extra": { @@ -1575,20 +1591,20 @@ "keywords": [ "promise" ], - "time": "2016-12-20T10:07:11+00:00" + "time": "2020-09-30T07:37:28+00:00" }, { "name": "guzzlehttp/psr7", - "version": "1.6.1", + "version": "1.7.0", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "239400de7a173fe9901b9ac7c06497751f00727a" + "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a", - "reference": "239400de7a173fe9901b9ac7c06497751f00727a", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3", + "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3", "shasum": "" }, "require": { @@ -1601,15 +1617,15 @@ }, "require-dev": { "ext-zlib": "*", - "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8" + "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10" }, "suggest": { - "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses" + "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.6-dev" + "dev-master": "1.7-dev" } }, "autoload": { @@ -1646,7 +1662,7 @@ "uri", "url" ], - "time": "2019-07-01T23:21:34+00:00" + "time": "2020-09-30T07:37:11+00:00" }, { "name": "justinrainbow/json-schema", @@ -1766,25 +1782,25 @@ }, { "name": "klarna/m2-payments", - "version": "7.5.0", + "version": "7.6.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/klarna/m2-payments/klarna-m2-payments-7.5.0.0.zip", - "shasum": "dbf16872ef89126af34f2ed5b004bbb43e4b5dd0" + "url": "https://repo.magento.com/archives/klarna/m2-payments/klarna-m2-payments-7.6.1.0.zip", + "shasum": "f710eda4053427417ff89fec22206eae59742beb" }, "require": { - "klarna/module-core": "5.3.0", - "klarna/module-kp": "6.5.0", - "klarna/module-ordermanagement": "5.0.8" + "klarna/module-core": "5.3.1", + "klarna/module-kp": "6.5.2", + "klarna/module-ordermanagement": "5.1.1" }, "require-dev": { - "friendsofphp/php-cs-fixer": "~2.10.1", + "friendsofphp/php-cs-fixer": "~2.14.0", "jakub-onderka/php-console-highlighter": "^0.3.2", "jakub-onderka/php-parallel-lint": "^0.9.2", "lusitanian/oauth": "~0.8.10", "magento/magento-coding-standard": "*", "mikey179/vfsstream": "^1.6", - "pdepend/pdepend": "^2.5", + "pdepend/pdepend": "^2.5.2", "phploc/phploc": "^4.0", "phpmd/phpmd": "@stable", "phpro/grumphp": "^0.14", @@ -1801,11 +1817,11 @@ }, { "name": "klarna/module-core", - "version": "5.3.0", + "version": "5.3.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/klarna/module-core/klarna-module-core-5.3.0.0.zip", - "shasum": "56c46cba222fd87495b67b2293dee81926d28e1c" + "url": "https://repo.magento.com/archives/klarna/module-core/klarna-module-core-5.3.1.0.zip", + "shasum": "a659d1f6b73e652873711ba3c571e1b5e95c0781" }, "require": { "guzzlehttp/guzzle": "^6.0", @@ -1889,11 +1905,11 @@ }, { "name": "klarna/module-kp", - "version": "6.5.0", + "version": "6.5.2", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/klarna/module-kp/klarna-module-kp-6.5.0.0.zip", - "shasum": "b975b94bbb8c8524237e4f6375b90d12e0df732c" + "url": "https://repo.magento.com/archives/klarna/module-kp/klarna-module-kp-6.5.2.0.zip", + "shasum": "ced255886156421059394612d53ee59e3e4d3d1a" }, "require": { "klarna/module-core": "^5.2", @@ -1976,11 +1992,11 @@ }, { "name": "klarna/module-ordermanagement", - "version": "5.0.8", + "version": "5.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/klarna/module-ordermanagement/klarna-module-ordermanagement-5.0.8.0.zip", - "shasum": "87fc66c717b46238ca5db2961ba866d8871b47fa" + "url": "https://repo.magento.com/archives/klarna/module-ordermanagement/klarna-module-ordermanagement-5.1.1.0.zip", + "shasum": "cc9b557916e9c3253d132f30da2709f059595c80" }, "require": { "klarna/module-core": "^5.2", @@ -2636,41 +2652,41 @@ }, { "name": "laminas/laminas-eventmanager", - "version": "3.2.1", + "version": "3.3.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-eventmanager.git", - "reference": "ce4dc0bdf3b14b7f9815775af9dfee80a63b4748" + "reference": "1940ccf30e058b2fd66f5a9d696f1b5e0027b082" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-eventmanager/zipball/ce4dc0bdf3b14b7f9815775af9dfee80a63b4748", - "reference": "ce4dc0bdf3b14b7f9815775af9dfee80a63b4748", + "url": "https://api.github.com/repos/laminas/laminas-eventmanager/zipball/1940ccf30e058b2fd66f5a9d696f1b5e0027b082", + "reference": "1940ccf30e058b2fd66f5a9d696f1b5e0027b082", "shasum": "" }, "require": { "laminas/laminas-zendframework-bridge": "^1.0", - "php": "^5.6 || ^7.0" + "php": "^7.3 || ^8.0" }, "replace": { - "zendframework/zend-eventmanager": "self.version" + "zendframework/zend-eventmanager": "^3.2.1" }, "require-dev": { - "athletic/athletic": "^0.1", - "container-interop/container-interop": "^1.1.0", + "container-interop/container-interop": "^1.1", "laminas/laminas-coding-standard": "~1.0.0", "laminas/laminas-stdlib": "^2.7.3 || ^3.0", - "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2" + "phpbench/phpbench": "^0.17.1", + "phpunit/phpunit": "^8.5.8" }, "suggest": { - "container-interop/container-interop": "^1.1.0, to use the lazy listeners feature", + "container-interop/container-interop": "^1.1, to use the lazy listeners feature", "laminas/laminas-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.2-dev", - "dev-develop": "3.3-dev" + "dev-master": "3.3.x-dev", + "dev-develop": "3.4.x-dev" } }, "autoload": { @@ -2690,20 +2706,26 @@ "events", "laminas" ], - "time": "2019-12-31T16:44:52+00:00" + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2020-08-25T11:10:44+00:00" }, { "name": "laminas/laminas-feed", - "version": "2.12.2", + "version": "2.12.3", "source": { "type": "git", "url": "https://github.com/laminas/laminas-feed.git", - "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654" + "reference": "3c91415633cb1be6f9d78683d69b7dcbfe6b4012" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/8a193ac96ebcb3e16b6ee754ac2a889eefacb654", - "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654", + "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/3c91415633cb1be6f9d78683d69b7dcbfe6b4012", + "reference": "3c91415633cb1be6f9d78683d69b7dcbfe6b4012", "shasum": "" }, "require": { @@ -2757,7 +2779,13 @@ "feed", "laminas" ], - "time": "2020-03-29T12:36:29+00:00" + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2020-08-18T13:45:04+00:00" }, { "name": "laminas/laminas-filter", @@ -2918,16 +2946,16 @@ }, { "name": "laminas/laminas-http", - "version": "2.12.0", + "version": "2.13.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-http.git", - "reference": "48bd06ffa3a6875e2b77d6852405eb7b1589d575" + "reference": "33b7942f51ce905ce9bfc8bf28badc501d3904b5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-http/zipball/48bd06ffa3a6875e2b77d6852405eb7b1589d575", - "reference": "48bd06ffa3a6875e2b77d6852405eb7b1589d575", + "url": "https://api.github.com/repos/laminas/laminas-http/zipball/33b7942f51ce905ce9bfc8bf28badc501d3904b5", + "reference": "33b7942f51ce905ce9bfc8bf28badc501d3904b5", "shasum": "" }, "require": { @@ -2950,12 +2978,6 @@ "paragonie/certainty": "For automated management of cacert.pem" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.12.x-dev", - "dev-develop": "2.13.x-dev" - } - }, "autoload": { "psr-4": { "Laminas\\Http\\": "src/" @@ -2978,7 +3000,7 @@ "type": "community_bridge" } ], - "time": "2020-06-23T15:14:37+00:00" + "time": "2020-08-18T17:11:58+00:00" }, { "name": "laminas/laminas-hydrator", @@ -3364,16 +3386,16 @@ }, { "name": "laminas/laminas-mail", - "version": "2.12.2", + "version": "2.12.3", "source": { "type": "git", "url": "https://github.com/laminas/laminas-mail.git", - "reference": "a85bd6ec20ebc382498cc1d3086dfe3fa201849b" + "reference": "c154a733b122539ac2c894561996c770db289f70" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-mail/zipball/a85bd6ec20ebc382498cc1d3086dfe3fa201849b", - "reference": "a85bd6ec20ebc382498cc1d3086dfe3fa201849b", + "url": "https://api.github.com/repos/laminas/laminas-mail/zipball/c154a733b122539ac2c894561996c770db289f70", + "reference": "c154a733b122539ac2c894561996c770db289f70", "shasum": "" }, "require": { @@ -3428,7 +3450,7 @@ "type": "community_bridge" } ], - "time": "2020-08-06T14:33:28+00:00" + "time": "2020-08-12T14:51:33+00:00" }, { "name": "laminas/laminas-math", @@ -3540,16 +3562,16 @@ }, { "name": "laminas/laminas-modulemanager", - "version": "2.8.4", + "version": "2.9.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-modulemanager.git", - "reference": "92b1cde1aab5aef687b863face6dd5d9c6751c78" + "reference": "789bbd4ab391da9221f265f6bb2d594f8f11855b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-modulemanager/zipball/92b1cde1aab5aef687b863face6dd5d9c6751c78", - "reference": "92b1cde1aab5aef687b863face6dd5d9c6751c78", + "url": "https://api.github.com/repos/laminas/laminas-modulemanager/zipball/789bbd4ab391da9221f265f6bb2d594f8f11855b", + "reference": "789bbd4ab391da9221f265f6bb2d594f8f11855b", "shasum": "" }, "require": { @@ -3557,10 +3579,11 @@ "laminas/laminas-eventmanager": "^3.2 || ^2.6.3", "laminas/laminas-stdlib": "^3.1 || ^2.7", "laminas/laminas-zendframework-bridge": "^1.0", - "php": "^5.6 || ^7.0" + "php": "^5.6 || ^7.0", + "webimpress/safe-writer": "^1.0.2 || ^2.1" }, "replace": { - "zendframework/zend-modulemanager": "self.version" + "zendframework/zend-modulemanager": "^2.8.4" }, "require-dev": { "laminas/laminas-coding-standard": "~1.0.0", @@ -3580,8 +3603,8 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.8.x-dev", - "dev-develop": "2.9.x-dev" + "dev-master": "2.9.x-dev", + "dev-develop": "2.10.x-dev" } }, "autoload": { @@ -3599,7 +3622,13 @@ "laminas", "modulemanager" ], - "time": "2019-12-31T17:26:56+00:00" + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2020-08-25T09:29:22+00:00" }, { "name": "laminas/laminas-mvc", @@ -4049,35 +4078,35 @@ }, { "name": "laminas/laminas-stdlib", - "version": "3.2.1", + "version": "3.3.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-stdlib.git", - "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6" + "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/2b18347625a2f06a1a485acfbc870f699dbe51c6", - "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6", + "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/b9d84eaa39fde733356ea948cdef36c631f202b6", + "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6", "shasum": "" }, "require": { "laminas/laminas-zendframework-bridge": "^1.0", - "php": "^5.6 || ^7.0" + "php": "^7.3 || ^8.0" }, "replace": { - "zendframework/zend-stdlib": "self.version" + "zendframework/zend-stdlib": "^3.2.1" }, "require-dev": { "laminas/laminas-coding-standard": "~1.0.0", - "phpbench/phpbench": "^0.13", - "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2" + "phpbench/phpbench": "^0.17.1", + "phpunit/phpunit": "^9.3.7" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.2.x-dev", - "dev-develop": "3.3.x-dev" + "dev-master": "3.3.x-dev", + "dev-develop": "3.4.x-dev" } }, "autoload": { @@ -4095,7 +4124,13 @@ "laminas", "stdlib" ], - "time": "2019-12-31T17:51:15+00:00" + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2020-08-25T09:08:16+00:00" }, { "name": "laminas/laminas-text", @@ -4372,31 +4407,27 @@ }, { "name": "laminas/laminas-zendframework-bridge", - "version": "1.0.4", + "version": "1.1.1", "source": { "type": "git", "url": "https://github.com/laminas/laminas-zendframework-bridge.git", - "reference": "fcd87520e4943d968557803919523772475e8ea3" + "reference": "6ede70583e101030bcace4dcddd648f760ddf642" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3", - "reference": "fcd87520e4943d968557803919523772475e8ea3", + "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/6ede70583e101030bcace4dcddd648f760ddf642", + "reference": "6ede70583e101030bcace4dcddd648f760ddf642", "shasum": "" }, "require": { - "php": "^5.6 || ^7.0" + "php": "^5.6 || ^7.0 || ^8.0" }, "require-dev": { - "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1", + "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^9.3", "squizlabs/php_codesniffer": "^3.5" }, "type": "library", "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev", - "dev-develop": "1.1.x-dev" - }, "laminas": { "module": "Laminas\\ZendFrameworkBridge" } @@ -4426,27 +4457,27 @@ "type": "community_bridge" } ], - "time": "2020-05-20T16:45:56+00:00" + "time": "2020-09-14T14:23:00+00:00" }, { "name": "magento/adobe-stock-integration", - "version": "1.0.1", + "version": "1.0.2", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/adobe-stock-integration/magento-adobe-stock-integration-1.0.1.0.zip", - "shasum": "207f0141051c92fb777509ee7deb894471a6dbd7" + "url": "https://repo.magento.com/archives/magento/adobe-stock-integration/magento-adobe-stock-integration-1.0.2.0.zip", + "shasum": "f241027da030675c38e1c38a9630c4e71be77b33" }, "require": { - "magento/module-adobe-ims": "1.0.0", - "magento/module-adobe-ims-api": "1.0.0", - "magento/module-adobe-stock-admin-ui": "1.0.0", - "magento/module-adobe-stock-asset": "1.0.0", - "magento/module-adobe-stock-asset-api": "1.0.0", - "magento/module-adobe-stock-client": "1.0.0", - "magento/module-adobe-stock-client-api": "1.0.0", - "magento/module-adobe-stock-image": "1.0.0", - "magento/module-adobe-stock-image-admin-ui": "1.0.1", - "magento/module-adobe-stock-image-api": "1.0.0" + "magento/module-adobe-ims": "1.0.1", + "magento/module-adobe-ims-api": "1.0.1", + "magento/module-adobe-stock-admin-ui": "1.0.1", + "magento/module-adobe-stock-asset": "1.0.1", + "magento/module-adobe-stock-asset-api": "1.0.1", + "magento/module-adobe-stock-client": "1.0.1", + "magento/module-adobe-stock-client-api": "1.0.1", + "magento/module-adobe-stock-image": "1.0.1", + "magento/module-adobe-stock-image-admin-ui": "1.0.2", + "magento/module-adobe-stock-image-api": "1.0.1" }, "type": "metapackage", "description": "Adobe Stock integration" @@ -4487,6 +4518,39 @@ "description": "Magento composer library helps to instantiate Composer application and run composer commands.", "time": "2020-01-07T22:16:08+00:00" }, + { + "name": "magento/composer-root-update-plugin", + "version": "1.0.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/composer-root-update-plugin/magento-composer-root-update-plugin-1.0.0.0.zip", + "shasum": "df94356237e631516cdcaa18a6aaecea127e9623" + }, + "require": { + "composer-plugin-api": "^1.0", + "composer/composer": "<=1.10.6" + }, + "suggest": { + "magento/framework": "Enables the Magento Composer Root Update Plugin's functionality for the Web Setup Wizard" + }, + "type": "composer-plugin", + "extra": { + "class": "Magento\\ComposerRootUpdatePlugin\\Plugin\\PluginDefinition" + }, + "autoload": { + "psr-4": { + "Magento\\ComposerRootUpdatePlugin\\": "" + }, + "files": [ + "registration.php" + ] + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "Plugin to look ahead for Magento project root changes when running composer update for new Magento versions" + }, { "name": "magento/cssxpath", "version": "v1.1.3", @@ -4614,11 +4678,11 @@ }, { "name": "magento/framework", - "version": "102.0.5", + "version": "102.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/framework/magento-framework-102.0.5.0.zip", - "shasum": "576880107b411605f2fae5f3c4c7b6516b11d1d8" + "url": "https://repo.magento.com/archives/magento/framework/magento-framework-102.0.6.0.zip", + "shasum": "5dd3ac0321de965f3d4769a894bb0a8ed27550c7" }, "require": { "colinmollenhour/php-redis-session-abstract": "~1.4.0", @@ -4754,11 +4818,11 @@ }, { "name": "magento/framework-message-queue", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/framework-message-queue/magento-framework-message-queue-100.3.5.0.zip", - "shasum": "f2d56382558a899dd7b04fa2b961f3ab00edc6ad" + "url": "https://repo.magento.com/archives/magento/framework-message-queue/magento-framework-message-queue-100.3.6.0.zip", + "shasum": "876005a316548d01f6a2af89c01e38ca06284567" }, "require": { "magento/framework": "102.0.*", @@ -4781,29 +4845,16 @@ }, { "name": "magento/google-shopping-ads", - "version": "3.0.2", + "version": "4.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/google-shopping-ads/magento-google-shopping-ads-3.0.2.0.zip", - "shasum": "9ae1bcb06b17792fbad7bf6acbe7b101057d4aa5" + "url": "https://repo.magento.com/archives/magento/google-shopping-ads/magento-google-shopping-ads-4.0.1.0.zip", + "shasum": "ba1efed03c142908f53a02cce6704672c379a60d" }, "require": { - "guzzlehttp/guzzle": ">=6.0", - "guzzlehttp/psr7": "~1.0", "magento/framework": ">=101.0.4", - "magento/module-backend": ">=100.2.4", - "magento/module-bundle": ">=100.2.3", - "magento/module-catalog": ">=102.0.4", - "magento/module-catalog-inventory": ">=100.2.3", - "magento/module-checkout": ">=100.2.4", - "magento/module-config": ">=101.0.4", - "magento/module-configurable-product": ">=100.2.4", - "magento/module-directory": ">=100.2.3", - "magento/module-downloadable": ">=100.2.3", "magento/module-eav": ">=101.0.3", - "magento/module-store": ">=100.2.3", - "magento/module-ui": ">=101.0.4", - "php": "7.0.2||7.0.4||>=7.0.6 <7.4" + "php": "7.0.2||7.0.4||>=7.0.6" }, "type": "magento2-module", "autoload": { @@ -4852,25 +4903,25 @@ }, { "name": "magento/inventory-composer-metapackage", - "version": "1.1.5", + "version": "1.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/inventory-composer-metapackage/magento-inventory-composer-metapackage-1.1.5.0.zip", - "shasum": "02a2350c24d00860aa55f15e5057f5ee85f0aa1e" + "url": "https://repo.magento.com/archives/magento/inventory-composer-metapackage/magento-inventory-composer-metapackage-1.1.6.0.zip", + "shasum": "7ea8ae2b3e6044d59b71939ed14837ba313b7059" }, "require": { "magento/inventory-composer-installer": "1.1.0", - "magento/module-inventory": "1.0.8", - "magento/module-inventory-admin-ui": "1.0.8", + "magento/module-inventory": "1.0.9", + "magento/module-inventory-admin-ui": "1.0.10", "magento/module-inventory-advanced-checkout": "1.0.1", "magento/module-inventory-api": "1.0.8", "magento/module-inventory-bundle-product": "1.0.6", "magento/module-inventory-bundle-product-admin-ui": "1.0.6", - "magento/module-inventory-cache": "1.0.6", - "magento/module-inventory-catalog": "1.0.8", - "magento/module-inventory-catalog-admin-ui": "1.0.8", + "magento/module-inventory-cache": "1.0.7", + "magento/module-inventory-catalog": "1.0.10", + "magento/module-inventory-catalog-admin-ui": "1.0.9", "magento/module-inventory-catalog-api": "1.1.2", - "magento/module-inventory-catalog-search": "1.0.7", + "magento/module-inventory-catalog-search": "1.0.8", "magento/module-inventory-configurable-product": "1.0.8", "magento/module-inventory-configurable-product-admin-ui": "1.0.7", "magento/module-inventory-configurable-product-indexer": "1.0.6", @@ -4887,23 +4938,23 @@ "magento/module-inventory-grouped-product-admin-ui": "1.0.8", "magento/module-inventory-grouped-product-indexer": "1.0.6", "magento/module-inventory-import-export": "1.0.8", - "magento/module-inventory-indexer": "1.0.8", - "magento/module-inventory-low-quantity-notification": "1.0.8", - "magento/module-inventory-low-quantity-notification-admin-ui": "1.0.7", + "magento/module-inventory-indexer": "1.0.9", + "magento/module-inventory-low-quantity-notification": "1.0.9", + "magento/module-inventory-low-quantity-notification-admin-ui": "1.0.8", "magento/module-inventory-low-quantity-notification-api": "1.0.6", "magento/module-inventory-multi-dimensional-indexer-api": "1.0.7", "magento/module-inventory-product-alert": "1.0.8", "magento/module-inventory-requisition-list": "1.0.1", - "magento/module-inventory-reservation-cli": "1.0.2", - "magento/module-inventory-reservations": "1.0.7", + "magento/module-inventory-reservation-cli": "1.0.3", + "magento/module-inventory-reservations": "1.0.8", "magento/module-inventory-reservations-api": "1.0.6", - "magento/module-inventory-sales": "1.0.8", + "magento/module-inventory-sales": "1.0.9", "magento/module-inventory-sales-admin-ui": "1.0.8", "magento/module-inventory-sales-api": "1.0.7", "magento/module-inventory-sales-frontend-ui": "1.0.6", "magento/module-inventory-setup-fixture-generator": "1.0.3", "magento/module-inventory-shipping": "1.0.8", - "magento/module-inventory-shipping-admin-ui": "1.0.8", + "magento/module-inventory-shipping-admin-ui": "1.0.9", "magento/module-inventory-source-deduction-api": "1.0.8", "magento/module-inventory-source-selection": "1.0.7", "magento/module-inventory-source-selection-api": "1.2.2" @@ -5153,11 +5204,11 @@ }, { "name": "magento/magento2-base", - "version": "2.3.5", + "version": "2.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/magento2-base/magento-magento2-base-2.3.5.0.zip", - "shasum": "44bfaf8c4419c6d62d7c63eb237998e37126a96d" + "url": "https://repo.magento.com/archives/magento/magento2-base/magento-magento2-base-2.3.6.0.zip", + "shasum": "5eb86a791ca2cb7362107984e5c2854f664aab9b" }, "require": { "braintree/braintree_php": "3.35.0", @@ -5752,11 +5803,11 @@ }, { "name": "magento/magento2-ee-base", - "version": "2.3.5", + "version": "2.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/magento2-ee-base/magento-magento2-ee-base-2.3.5.0.zip", - "shasum": "0aef26c724261bc859d79b9b9970db34d3ea8173" + "url": "https://repo.magento.com/archives/magento/magento2-ee-base/magento-magento2-ee-base-2.3.6.0.zip", + "shasum": "f4c8a0f130930297c254e0b2fc57427eb5c5c333" }, "require": { "braintree/braintree_php": "3.35.0", @@ -5909,11 +5960,11 @@ }, { "name": "magento/module-admin-gws", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-admin-gws/magento-module-admin-gws-100.3.5.0.zip", - "shasum": "9011b6a21d9ecf809d7261ecfe3cf6b647b4921e" + "url": "https://repo.magento.com/archives/magento/module-admin-gws/magento-module-admin-gws-100.3.6.0.zip", + "shasum": "a99821455ebfbcf6ed1b5f24c7e3b77ade1b2ca5" }, "require": { "magento/framework": "102.0.*", @@ -5952,6 +6003,63 @@ ], "description": "N/A" }, + { + "name": "magento/module-admin-gws-configurable-product", + "version": "100.3.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-admin-gws-configurable-product/magento-module-admin-gws-configurable-product-100.3.0.0.zip", + "shasum": "8e107f7a761e2711e2851ce0417da44a243e0f1b" + }, + "require": { + "magento/framework": "102.0.*", + "magento/module-admin-gws": "100.3.*", + "magento/module-configurable-product": "100.3.*", + "php": "~7.1.3||~7.2.0||~7.3.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\AdminGwsConfigurableProduct\\": "" + } + }, + "license": [ + "proprietary" + ], + "description": "N/A" + }, + { + "name": "magento/module-admin-gws-staging", + "version": "100.3.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-admin-gws-staging/magento-module-admin-gws-staging-100.3.0.0.zip", + "shasum": "001eaa7c865ca3cd214f74d5c9d4bfb5aea2cd8c" + }, + "require": { + "magento/framework": "102.0.*", + "magento/module-admin-gws": "100.3.*", + "magento/module-staging": "101.1.*", + "magento/module-store": "101.0.*", + "php": "~7.1.3||~7.2.0||~7.3.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\AdminGwsStaging\\": "" + } + }, + "license": [ + "proprietary" + ], + "description": "N/A" + }, { "name": "magento/module-admin-notification", "version": "100.3.5", @@ -5987,19 +6095,19 @@ }, { "name": "magento/module-adobe-ims", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-ims/magento-module-adobe-ims-1.0.0.0.zip", - "shasum": "710f086b6e95994efd4bc1d289dc3d5060f08f44" + "url": "https://repo.magento.com/archives/magento/module-adobe-ims/magento-module-adobe-ims-1.0.1.0.zip", + "shasum": "0d1acee77837c886a55965a9d11d6d010d2ee961" }, "require": { - "magento/framework": "~102.0.4", - "magento/module-adobe-ims-api": "1.*.*", - "magento/module-authorization": "~100.3.4", - "magento/module-backend": "~101.0.4", - "magento/module-config": "~101.1.4", - "magento/module-user": "~101.1.4", + "magento/framework": "*", + "magento/module-adobe-ims-api": "1.0.*", + "magento/module-authorization": "*", + "magento/module-backend": "*", + "magento/module-config": "*", + "magento/module-user": "*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "type": "magento2-module", @@ -6019,14 +6127,14 @@ }, { "name": "magento/module-adobe-ims-api", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-ims-api/magento-module-adobe-ims-api-1.0.0.0.zip", - "shasum": "b06bd9bb77149097697b2009021b554730413b21" + "url": "https://repo.magento.com/archives/magento/module-adobe-ims-api/magento-module-adobe-ims-api-1.0.1.0.zip", + "shasum": "8184ca2c849d7e525a2b0ae8997dcb7ca1df0b2f" }, "require": { - "magento/framework": "~102.0.4", + "magento/framework": "*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "type": "magento2-module", @@ -6046,22 +6154,22 @@ }, { "name": "magento/module-adobe-stock-admin-ui", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-admin-ui/magento-module-adobe-stock-admin-ui-1.0.0.0.zip", - "shasum": "8c78fac04b75ebaf3430a0e4dd9d9be255b3350c" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-admin-ui/magento-module-adobe-stock-admin-ui-1.0.1.0.zip", + "shasum": "6fdffb7780d558c392dceef331ac775b5b3660c1" }, "require": { - "magento/framework": "~102.0.4", - "magento/module-adobe-ims-api": "1.*.*", - "magento/module-adobe-stock-client-api": "1.*.*", - "magento/module-backend": "~101.0.4", - "magento/module-config": "~101.1.4", + "magento/framework": "*", + "magento/module-adobe-ims-api": "1.0.*", + "magento/module-adobe-stock-client-api": "1.0.*", + "magento/module-backend": "*", + "magento/module-config": "*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "suggest": { - "magento/module-cms": "~103.0.4" + "magento/module-cms": "*" }, "type": "magento2-module", "autoload": { @@ -6080,19 +6188,19 @@ }, { "name": "magento/module-adobe-stock-asset", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-asset/magento-module-adobe-stock-asset-1.0.0.0.zip", - "shasum": "d691df693547aa576bdbdc511fcf3437d729401b" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-asset/magento-module-adobe-stock-asset-1.0.1.0.zip", + "shasum": "c8d641777d114612cebd7b3bd860419934889987" }, "require": { - "magento/framework": "~102.0.4", - "magento/module-adobe-stock-asset-api": "1.*.*", - "magento/module-adobe-stock-client-api": "1.*.*", - "magento/module-config": "~101.1.4", - "magento/module-media-gallery": "~100.3.0", - "magento/module-media-gallery-api": "~100.3.0", + "magento/framework": "*", + "magento/module-adobe-stock-asset-api": "1.0.*", + "magento/module-adobe-stock-client-api": "1.0.*", + "magento/module-config": "*", + "magento/module-media-gallery": "*", + "magento/module-media-gallery-api": "*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "type": "magento2-module", @@ -6112,14 +6220,14 @@ }, { "name": "magento/module-adobe-stock-asset-api", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-asset-api/magento-module-adobe-stock-asset-api-1.0.0.0.zip", - "shasum": "74c37ce6d176428be340394c9d1ba01af054c46f" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-asset-api/magento-module-adobe-stock-asset-api-1.0.1.0.zip", + "shasum": "88a4f5749353fc6f318ace2c25405fab73635d30" }, "require": { - "magento/framework": "~102.0.4", + "magento/framework": "*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "type": "magento2-module", @@ -6139,17 +6247,17 @@ }, { "name": "magento/module-adobe-stock-client", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-client/magento-module-adobe-stock-client-1.0.0.0.zip", - "shasum": "3482b1559ebb5fb2f659d1fef1b796f8be12ae7f" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-client/magento-module-adobe-stock-client-1.0.1.0.zip", + "shasum": "c3a253135e07d3ac6ee926e052048288eec6e051" }, "require": { - "astock/stock-api-libphp": "^1.1.2", - "magento/framework": "~102.0.4", - "magento/module-adobe-ims-api": "1.*.*", - "magento/module-adobe-stock-client-api": "1.*.*", + "astock/stock-api-libphp": "^1.1.3", + "magento/framework": "*", + "magento/module-adobe-ims-api": "1.0.*", + "magento/module-adobe-stock-client-api": "1.0.*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "type": "magento2-module", @@ -6169,14 +6277,14 @@ }, { "name": "magento/module-adobe-stock-client-api", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-client-api/magento-module-adobe-stock-client-api-1.0.0.0.zip", - "shasum": "d50de661787f40fe9e357a11aec58aff78f6fc19" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-client-api/magento-module-adobe-stock-client-api-1.0.1.0.zip", + "shasum": "74cf0d23115fec3795d77b2d5e476eb7d06d33d9" }, "require": { - "magento/framework": "~102.0.4", + "magento/framework": "*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "type": "magento2-module", @@ -6196,22 +6304,22 @@ }, { "name": "magento/module-adobe-stock-image", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image/magento-module-adobe-stock-image-1.0.0.0.zip", - "shasum": "06e8de90d2e9c9e2fd9eb0d040f0a5e38190ff65" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image/magento-module-adobe-stock-image-1.0.1.0.zip", + "shasum": "48ca389d085f4398f8548bd2ce42615c7755e17f" }, "require": { - "magento/framework": "~102.0.4", - "magento/module-adobe-stock-asset-api": "1.*.*", - "magento/module-adobe-stock-client-api": "1.*.*", - "magento/module-adobe-stock-image-api": "1.*.*", - "magento/module-media-gallery-api": "~100.3.0", + "magento/framework": "*", + "magento/module-adobe-stock-asset-api": "1.0.*", + "magento/module-adobe-stock-client-api": "1.0.*", + "magento/module-adobe-stock-image-api": "1.0.*", + "magento/module-media-gallery-api": "*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "suggest": { - "magento/module-catalog": "~103.0.4" + "magento/module-catalog": "*" }, "type": "magento2-module", "autoload": { @@ -6230,25 +6338,25 @@ }, { "name": "magento/module-adobe-stock-image-admin-ui", - "version": "1.0.1", + "version": "1.0.2", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image-admin-ui/magento-module-adobe-stock-image-admin-ui-1.0.1.0.zip", - "shasum": "7aee8874378aaf13e9bb6a7fd6cafea80f3e2ec7" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image-admin-ui/magento-module-adobe-stock-image-admin-ui-1.0.2.0.zip", + "shasum": "f16c77eca30c5cec48381b10002d6735cd9fa0de" }, "require": { - "magento/framework": "~102.0.4", - "magento/module-adobe-ims": "1.*.*", - "magento/module-adobe-ims-api": "1.*.*", - "magento/module-adobe-stock-asset-api": "1.*.*", - "magento/module-adobe-stock-client-api": "1.*.*", - "magento/module-adobe-stock-image-api": "1.*.*", - "magento/module-backend": "~101.0.4", - "magento/module-ui": "~101.1.4", + "magento/framework": "*", + "magento/module-adobe-ims": "1.0.*", + "magento/module-adobe-ims-api": "1.0.*", + "magento/module-adobe-stock-asset-api": "1.0.*", + "magento/module-adobe-stock-client-api": "1.0.*", + "magento/module-adobe-stock-image-api": "1.0.*", + "magento/module-backend": "*", + "magento/module-ui": "*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "suggest": { - "magento/module-cms": "~103.0.4" + "magento/module-cms": "*" }, "type": "magento2-module", "autoload": { @@ -6267,14 +6375,14 @@ }, { "name": "magento/module-adobe-stock-image-api", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image-api/magento-module-adobe-stock-image-api-1.0.0.0.zip", - "shasum": "73de6001e60c181d353b0076bf072c89127c0d69" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image-api/magento-module-adobe-stock-image-api-1.0.1.0.zip", + "shasum": "76adcc85b56c4b0c61fe5fff94671b02bce12246" }, "require": { - "magento/framework": "~102.0.4", + "magento/framework": "*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "type": "magento2-module", @@ -6324,11 +6432,11 @@ }, { "name": "magento/module-advanced-checkout", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-advanced-checkout/magento-module-advanced-checkout-100.3.5.0.zip", - "shasum": "26a2cf7b5537a714a51b805dbc8443f43e7bd591" + "url": "https://repo.magento.com/archives/magento/module-advanced-checkout/magento-module-advanced-checkout-100.3.6.0.zip", + "shasum": "617a29d766dd317f576e87048d2e380ed857c004" }, "require": { "magento/framework": "102.0.*", @@ -6560,11 +6668,11 @@ }, { "name": "magento/module-analytics", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-analytics/magento-module-analytics-100.3.5.0.zip", - "shasum": "9bd395a51e3982f2f86bea5812ce48dc4597e8ca" + "url": "https://repo.magento.com/archives/magento/module-analytics/magento-module-analytics-100.3.6.0.zip", + "shasum": "eb12891a8cccf87fa40926714d77c5871825edaf" }, "require": { "magento/framework": "102.0.*", @@ -6591,11 +6699,11 @@ }, { "name": "magento/module-asynchronous-operations", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-asynchronous-operations/magento-module-asynchronous-operations-100.3.5.0.zip", - "shasum": "33c0400729a05e80a0911d9f5a1de38743011aeb" + "url": "https://repo.magento.com/archives/magento/module-asynchronous-operations/magento-module-asynchronous-operations-100.3.6.0.zip", + "shasum": "71c491c85bba044c46cd796e22085d02262604b0" }, "require": { "magento/framework": "102.0.*", @@ -6626,11 +6734,11 @@ }, { "name": "magento/module-authorization", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-authorization/magento-module-authorization-100.3.4.0.zip", - "shasum": "b7f9a8b38412d25f39963684fbc23fe42b18fbe7" + "url": "https://repo.magento.com/archives/magento/module-authorization/magento-module-authorization-100.3.5.0.zip", + "shasum": "f6af0187ac2cad1491511eb830d9200609f35c34" }, "require": { "magento/framework": "102.0.*", @@ -6790,11 +6898,11 @@ }, { "name": "magento/module-backend", - "version": "101.0.5", + "version": "101.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-backend/magento-module-backend-101.0.5.0.zip", - "shasum": "97b6ba680497709af06b6f650fde3a40612238e7" + "url": "https://repo.magento.com/archives/magento/module-backend/magento-module-backend-101.0.6.0.zip", + "shasum": "0fb5bc0d9ed8ce1cb51b8f0930374cc622cd3899" }, "require": { "magento/framework": "102.0.*", @@ -6866,11 +6974,11 @@ }, { "name": "magento/module-banner", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-banner/magento-module-banner-101.1.5.0.zip", - "shasum": "6105f0ec7ad4066ad76f864d823848088d974bd4" + "url": "https://repo.magento.com/archives/magento/module-banner/magento-module-banner-101.1.6.0.zip", + "shasum": "9a8c30c4b2d18f2909afa5c3c9a7fb57d891416b" }, "require": { "magento/framework": "102.0.*", @@ -6932,21 +7040,21 @@ }, { "name": "magento/module-banner-page-builder", - "version": "1.3.0", + "version": "1.3.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-banner-page-builder/magento-module-banner-page-builder-1.3.0.0.zip", - "shasum": "bf6234b431321824252869a50ffdd9465a8da88d" + "url": "https://repo.magento.com/archives/magento/module-banner-page-builder/magento-module-banner-page-builder-1.3.3.0.zip", + "shasum": "afa18f7626f308e33d0518a20a9dbe7ea73f8c5c" }, "require": { - "magento/framework": "~102.0.5", - "magento/module-backend": "~101.0.5", - "magento/module-banner": "~101.1.5", + "magento/framework": "~102.0.6", + "magento/module-backend": "~101.0.6", + "magento/module-banner": "~101.1.6", "magento/module-banner-customer-segment": "~100.3.5", "magento/module-catalog-rule": "101.1.*", - "magento/module-customer-segment": "~102.0.5", + "magento/module-customer-segment": "~102.0.6", "magento/module-page-builder": "1.3.*", - "magento/module-sales-rule": "~101.1.5", + "magento/module-sales-rule": "~101.1.6", "php": "~7.1.3||~7.2.0||~7.3.0" }, "type": "magento2-module", @@ -6965,15 +7073,15 @@ }, { "name": "magento/module-banner-page-builder-analytics", - "version": "1.3.0", + "version": "1.3.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-banner-page-builder-analytics/magento-module-banner-page-builder-analytics-1.3.0.0.zip", - "shasum": "039e1b8658984e24184357853a416eabb9b2f5fb" + "url": "https://repo.magento.com/archives/magento/module-banner-page-builder-analytics/magento-module-banner-page-builder-analytics-1.3.3.0.zip", + "shasum": "25b6f99856a30b3b002184c8b6f6c69aba25c2f1" }, "require": { - "magento/framework": "~102.0.5", - "magento/module-banner": "~101.1.5", + "magento/framework": "~102.0.6", + "magento/module-banner": "~101.1.6", "magento/module-page-builder-analytics": "1.3.*", "php": "~7.1.3||~7.2.0||~7.3.0" }, @@ -6993,11 +7101,11 @@ }, { "name": "magento/module-braintree", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-braintree/magento-module-braintree-100.3.5.0.zip", - "shasum": "23f784d05c3431045e435001cc3a01887d8d55ad" + "url": "https://repo.magento.com/archives/magento/module-braintree/magento-module-braintree-100.3.6.0.zip", + "shasum": "9e543332dbd185d668d08cde0367947be0464b23" }, "require": { "braintree/braintree_php": "3.35.0", @@ -7040,11 +7148,11 @@ }, { "name": "magento/module-braintree-graph-ql", - "version": "100.3.2", + "version": "100.3.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-braintree-graph-ql/magento-module-braintree-graph-ql-100.3.2.0.zip", - "shasum": "2ddc3ac79d5ecb4740b9904c3298f77c0076fbe3" + "url": "https://repo.magento.com/archives/magento/module-braintree-graph-ql/magento-module-braintree-graph-ql-100.3.3.0.zip", + "shasum": "7a9e279daa1253ef1315e29b6f28ffab0a021249" }, "require": { "magento/framework": "102.0.*", @@ -7074,11 +7182,11 @@ }, { "name": "magento/module-bundle", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-bundle/magento-module-bundle-100.3.5.0.zip", - "shasum": "b0bd30f204434536591a9d884fcb642e878bac5b" + "url": "https://repo.magento.com/archives/magento/module-bundle/magento-module-bundle-100.3.6.0.zip", + "shasum": "1de7398c89dbcbeea14f00456e55243ea1f838c2" }, "require": { "magento/framework": "102.0.*", @@ -7154,11 +7262,11 @@ }, { "name": "magento/module-bundle-import-export", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-bundle-import-export/magento-module-bundle-import-export-100.3.4.0.zip", - "shasum": "adb56b983de9cf6b26e505d43f1a3ec83ecf6098" + "url": "https://repo.magento.com/archives/magento/module-bundle-import-export/magento-module-bundle-import-export-100.3.5.0.zip", + "shasum": "5ff6980381f3b162b9e3bb60ae0d0d46580bd2c3" }, "require": { "magento/framework": "102.0.*", @@ -7217,11 +7325,11 @@ }, { "name": "magento/module-bundle-staging", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-bundle-staging/magento-module-bundle-staging-100.3.4.0.zip", - "shasum": "27a1b5cd997bd85648639b6703300f7f426953ac" + "url": "https://repo.magento.com/archives/magento/module-bundle-staging/magento-module-bundle-staging-100.3.5.0.zip", + "shasum": "c160a1c5a421df1b94c8eef8673d759a60a85d8c" }, "require": { "magento/framework": "102.0.*", @@ -7277,17 +7385,18 @@ }, { "name": "magento/module-captcha", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-captcha/magento-module-captcha-100.3.5.0.zip", - "shasum": "add6039b2f8aae8e902146d35591f2be6c1ed70d" + "url": "https://repo.magento.com/archives/magento/module-captcha/magento-module-captcha-100.3.6.0.zip", + "shasum": "3d4ec22cc61a1648134b29b27d9e8faeec52031d" }, "require": { "laminas/laminas-captcha": "^2.7.1", "laminas/laminas-db": "^2.8.2", "laminas/laminas-session": "^2.7.3", "magento/framework": "102.0.*", + "magento/module-authorization": "100.3.*", "magento/module-backend": "101.0.*", "magento/module-checkout": "100.3.*", "magento/module-customer": "102.0.*", @@ -7341,11 +7450,11 @@ }, { "name": "magento/module-catalog", - "version": "103.0.5", + "version": "103.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog/magento-module-catalog-103.0.5.0.zip", - "shasum": "0e61c6128447e8565ec51dccbd184987cbc16c91" + "url": "https://repo.magento.com/archives/magento/module-catalog/magento-module-catalog-103.0.6.0.zip", + "shasum": "ac0f9d194081c3ba02adc21a5fbd6c2c090051f5" }, "require": { "magento/framework": "102.0.*", @@ -7492,11 +7601,11 @@ }, { "name": "magento/module-catalog-event", - "version": "101.0.5", + "version": "101.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-event/magento-module-catalog-event-101.0.5.0.zip", - "shasum": "792e4ad65459b453bbe838fb598011e89a6660d5" + "url": "https://repo.magento.com/archives/magento/module-catalog-event/magento-module-catalog-event-101.0.6.0.zip", + "shasum": "65fce8723b72c567a65d0fdb06808e6db9aba182" }, "require": { "magento/framework": "102.0.*", @@ -7528,11 +7637,11 @@ }, { "name": "magento/module-catalog-graph-ql", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-graph-ql/magento-module-catalog-graph-ql-100.3.5.0.zip", - "shasum": "886dc91a883514d71c2b2a784debca701579a871" + "url": "https://repo.magento.com/archives/magento/module-catalog-graph-ql/magento-module-catalog-graph-ql-100.3.6.0.zip", + "shasum": "f02f86535027c3415aea31d622a8411c3e8e085a" }, "require": { "magento/framework": "102.0.*", @@ -7567,11 +7676,11 @@ }, { "name": "magento/module-catalog-import-export", - "version": "101.0.5", + "version": "101.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-import-export/magento-module-catalog-import-export-101.0.5.0.zip", - "shasum": "a2aea6d8f53c2a0bf6805faa2b9e0f64f25a3c7a" + "url": "https://repo.magento.com/archives/magento/module-catalog-import-export/magento-module-catalog-import-export-101.0.6.0.zip", + "shasum": "c77113adc1666182e29f0d80dd52c2345ca5ecf8" }, "require": { "ext-ctype": "*", @@ -7637,11 +7746,11 @@ }, { "name": "magento/module-catalog-inventory", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-inventory/magento-module-catalog-inventory-100.3.5.0.zip", - "shasum": "7b1508cce56fac131a6bbe02d633762f7c05787b" + "url": "https://repo.magento.com/archives/magento/module-catalog-inventory/magento-module-catalog-inventory-100.3.6.0.zip", + "shasum": "405ce2cb921d6251e61df5ad9dc5ae16791c0668" }, "require": { "magento/framework": "102.0.*", @@ -7735,15 +7844,15 @@ }, { "name": "magento/module-catalog-page-builder-analytics", - "version": "1.3.0", + "version": "1.3.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-page-builder-analytics/magento-module-catalog-page-builder-analytics-1.3.0.0.zip", - "shasum": "f6a7e04fd2801d615b11dacc0d37d278c839c4cc" + "url": "https://repo.magento.com/archives/magento/module-catalog-page-builder-analytics/magento-module-catalog-page-builder-analytics-1.3.3.0.zip", + "shasum": "e27ce0bb46fcf5c27ac6e51c0a6de3a0a0d14c72" }, "require": { - "magento/framework": "~102.0.5", - "magento/module-catalog": "~103.0.5", + "magento/framework": "~102.0.6", + "magento/module-catalog": "~103.0.6", "magento/module-page-builder-analytics": "1.3.*", "php": "~7.1.3||~7.2.0||~7.3.0" }, @@ -7763,15 +7872,15 @@ }, { "name": "magento/module-catalog-page-builder-analytics-staging", - "version": "1.3.0", + "version": "1.3.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-page-builder-analytics-staging/magento-module-catalog-page-builder-analytics-staging-1.3.0.0.zip", - "shasum": "059814d5acecd6cd1fec0333a4f38fd1a2fcb8e6" + "url": "https://repo.magento.com/archives/magento/module-catalog-page-builder-analytics-staging/magento-module-catalog-page-builder-analytics-staging-1.3.3.0.zip", + "shasum": "b9c1f94e866ee2459d7b3ac6ad8cc0f279d32a8f" }, "require": { - "magento/framework": "~102.0.5", - "magento/module-catalog": "~103.0.5", + "magento/framework": "~102.0.6", + "magento/module-catalog": "~103.0.6", "magento/module-page-builder-analytics": "1.3.*", "php": "~7.1.3||~7.2.0||~7.3.0" }, @@ -7791,11 +7900,11 @@ }, { "name": "magento/module-catalog-permissions", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-permissions/magento-module-catalog-permissions-100.3.4.0.zip", - "shasum": "b2b26022e2db3ced5c41d8993ac3714b4967ce53" + "url": "https://repo.magento.com/archives/magento/module-catalog-permissions/magento-module-catalog-permissions-100.3.5.0.zip", + "shasum": "fec9c06a340fa99250dbe2d2194dbbd716969ed2" }, "require": { "magento/framework": "102.0.*", @@ -7829,11 +7938,11 @@ }, { "name": "magento/module-catalog-rule", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-rule/magento-module-catalog-rule-101.1.5.0.zip", - "shasum": "03cc677562434e6792fce263e40da07221640018" + "url": "https://repo.magento.com/archives/magento/module-catalog-rule/magento-module-catalog-rule-101.1.6.0.zip", + "shasum": "dcf58c9d22d365ceaee39b2aeb5a37b41ec6cec0" }, "require": { "magento/framework": "102.0.*", @@ -7899,13 +8008,43 @@ ], "description": "N/A" }, + { + "name": "magento/module-catalog-rule-graph-ql", + "version": "100.3.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-catalog-rule-graph-ql/magento-module-catalog-rule-graph-ql-100.3.0.0.zip", + "shasum": "82845cc4469233d533c24951e75ffae990c8b631" + }, + "require": { + "magento/framework": "102.0.*", + "php": "~7.1.3||~7.2.0||~7.3.0" + }, + "suggest": { + "magento/module-catalog-rule": "101.1.*" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\CatalogRuleGraphQl\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "N/A" + }, { "name": "magento/module-catalog-rule-staging", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-rule-staging/magento-module-catalog-rule-staging-100.3.5.0.zip", - "shasum": "74c9b0cd6a1e4e6914a960140cda6dd0654b10eb" + "url": "https://repo.magento.com/archives/magento/module-catalog-rule-staging/magento-module-catalog-rule-staging-100.3.6.0.zip", + "shasum": "0f331c72bf6941c1e72abd345937e4208b72f7c1" }, "require": { "magento/framework": "102.0.*", @@ -7936,11 +8075,11 @@ }, { "name": "magento/module-catalog-search", - "version": "101.0.5", + "version": "101.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-search/magento-module-catalog-search-101.0.5.0.zip", - "shasum": "c77d85c4a5819fafc0fc251e88cd5ccf8a78a101" + "url": "https://repo.magento.com/archives/magento/module-catalog-search/magento-module-catalog-search-101.0.6.0.zip", + "shasum": "f9b7da78b5d70a04a82531d129c23e6006cd23e3" }, "require": { "magento/framework": "102.0.*", @@ -7977,11 +8116,11 @@ }, { "name": "magento/module-catalog-staging", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-staging/magento-module-catalog-staging-100.3.5.0.zip", - "shasum": "ef69b858bed62217fc833771b0118fbb2ab37ead" + "url": "https://repo.magento.com/archives/magento/module-catalog-staging/magento-module-catalog-staging-100.3.6.0.zip", + "shasum": "15488f2b5c06d2fa246b7643cab3bfe9147b639d" }, "require": { "lib-libxml": "*", @@ -8062,14 +8201,14 @@ }, { "name": "magento/module-catalog-staging-page-builder", - "version": "1.3.0", + "version": "1.3.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-staging-page-builder/magento-module-catalog-staging-page-builder-1.3.0.0.zip", - "shasum": "2d83dd3f4e31b46cf160f478c94d6b7665dbbbb2" + "url": "https://repo.magento.com/archives/magento/module-catalog-staging-page-builder/magento-module-catalog-staging-page-builder-1.3.3.0.zip", + "shasum": "5039b73deeef94a5bd6fb8ed0cb49210bd88e93f" }, "require": { - "magento/framework": "~102.0.5", + "magento/framework": "~102.0.6", "php": "~7.1.3||~7.2.0||~7.3.0" }, "suggest": { @@ -8092,11 +8231,11 @@ }, { "name": "magento/module-catalog-url-rewrite", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-url-rewrite/magento-module-catalog-url-rewrite-100.3.5.0.zip", - "shasum": "8bf1d252e0f51973ee7cbff07f11dfe87e71bc30" + "url": "https://repo.magento.com/archives/magento/module-catalog-url-rewrite/magento-module-catalog-url-rewrite-100.3.6.0.zip", + "shasum": "2bffdf611125e42ad81d3e98b329d4ebe7e5605d" }, "require": { "magento/framework": "102.0.*", @@ -8195,11 +8334,11 @@ }, { "name": "magento/module-catalog-widget", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-widget/magento-module-catalog-widget-100.3.5.0.zip", - "shasum": "30ff13f0a1eb3bebe4470ce3db67d001d5478e9d" + "url": "https://repo.magento.com/archives/magento/module-catalog-widget/magento-module-catalog-widget-100.3.6.0.zip", + "shasum": "3fcede4d687f6312bf19583d57d07e9a7bd06451" }, "require": { "magento/framework": "102.0.*", @@ -8231,14 +8370,15 @@ }, { "name": "magento/module-checkout", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-checkout/magento-module-checkout-100.3.5.0.zip", - "shasum": "f089321ca5b08026baaa1ca08505fd22c3bc95b5" + "url": "https://repo.magento.com/archives/magento/module-checkout/magento-module-checkout-100.3.6.0.zip", + "shasum": "b879f2d1f98ba983e943958488116c48ce2da843" }, "require": { "magento/framework": "102.0.*", + "magento/module-authorization": "100.3.*", "magento/module-captcha": "100.3.*", "magento/module-catalog": "103.0.*", "magento/module-catalog-inventory": "100.3.*", @@ -8279,11 +8419,11 @@ }, { "name": "magento/module-checkout-address-search", - "version": "100.3.3", + "version": "100.3.4", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-checkout-address-search/magento-module-checkout-address-search-100.3.3.0.zip", - "shasum": "33f22277d683d205999dd2b1bbbc0760d422012e" + "url": "https://repo.magento.com/archives/magento/module-checkout-address-search/magento-module-checkout-address-search-100.3.4.0.zip", + "shasum": "e5359df8702312d0c52dea292bbb2a945781a76a" }, "require": { "magento/framework": "102.0.*", @@ -8437,11 +8577,11 @@ }, { "name": "magento/module-cms", - "version": "103.0.5", + "version": "103.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-cms/magento-module-cms-103.0.5.0.zip", - "shasum": "506da640118fc223d9e8c89b9bdeecc24b2d8de1" + "url": "https://repo.magento.com/archives/magento/module-cms/magento-module-cms-103.0.6.0.zip", + "shasum": "b91cee3b50776339f8cba1decbe104c50e2e8a6e" }, "require": { "magento/framework": "102.0.*", @@ -8510,14 +8650,14 @@ }, { "name": "magento/module-cms-page-builder-analytics", - "version": "1.3.0", + "version": "1.3.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-cms-page-builder-analytics/magento-module-cms-page-builder-analytics-1.3.0.0.zip", - "shasum": "0eaeca23b9a7b7095bca1b6e344c5c46bdbad52b" + "url": "https://repo.magento.com/archives/magento/module-cms-page-builder-analytics/magento-module-cms-page-builder-analytics-1.3.3.0.zip", + "shasum": "d3a5636cdc6350df0bea8dfb34bce9845d5baf94" }, "require": { - "magento/framework": "~102.0.5", + "magento/framework": "~102.0.6", "magento/module-cms": "103.0.*", "magento/module-page-builder-analytics": "1.3.*", "php": "~7.1.3||~7.2.0||~7.3.0" @@ -8538,14 +8678,14 @@ }, { "name": "magento/module-cms-page-builder-analytics-staging", - "version": "1.3.0", + "version": "1.3.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-cms-page-builder-analytics-staging/magento-module-cms-page-builder-analytics-staging-1.3.0.0.zip", - "shasum": "61e8c70c07b39395058d65992aab9feed95e49f4" + "url": "https://repo.magento.com/archives/magento/module-cms-page-builder-analytics-staging/magento-module-cms-page-builder-analytics-staging-1.3.3.0.zip", + "shasum": "452f474d968e2e73719228881e26763b030db2ed" }, "require": { - "magento/framework": "~102.0.5", + "magento/framework": "~102.0.6", "magento/module-cms": "103.0.*", "magento/module-page-builder-analytics": "1.3.*", "php": "~7.1.3||~7.2.0||~7.3.0" @@ -8566,11 +8706,11 @@ }, { "name": "magento/module-cms-staging", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-cms-staging/magento-module-cms-staging-100.3.4.0.zip", - "shasum": "2361e1fcc4b45516c6fd45f77f2e6f5062381fec" + "url": "https://repo.magento.com/archives/magento/module-cms-staging/magento-module-cms-staging-100.3.5.0.zip", + "shasum": "acd500f68dc58646197e5540ba816ca381fa173b" }, "require": { "magento/framework": "102.0.*", @@ -8597,11 +8737,11 @@ }, { "name": "magento/module-cms-url-rewrite", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-cms-url-rewrite/magento-module-cms-url-rewrite-100.3.4.0.zip", - "shasum": "7df716cbc611cd6a5017129be80e80303334da58" + "url": "https://repo.magento.com/archives/magento/module-cms-url-rewrite/magento-module-cms-url-rewrite-100.3.5.0.zip", + "shasum": "652031049c8d6bd0017c845a0b7bdee06d5486bb" }, "require": { "magento/framework": "102.0.*", @@ -8661,11 +8801,11 @@ }, { "name": "magento/module-config", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-config/magento-module-config-101.1.5.0.zip", - "shasum": "76f1db08a792f3d263a46e2e2fcb7c775891de4c" + "url": "https://repo.magento.com/archives/magento/module-config/magento-module-config-101.1.6.0.zip", + "shasum": "3486a146c99e129edb91c425619ee09419771b18" }, "require": { "magento/framework": "102.0.*", @@ -8728,11 +8868,11 @@ }, { "name": "magento/module-configurable-product", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-configurable-product/magento-module-configurable-product-100.3.5.0.zip", - "shasum": "b2ec4fa0385b7e827871c9313400c08e43c07092" + "url": "https://repo.magento.com/archives/magento/module-configurable-product/magento-module-configurable-product-100.3.6.0.zip", + "shasum": "2582695ffba8512a02dc18c912713c7fb72299d5" }, "require": { "magento/framework": "102.0.*", @@ -8875,11 +9015,11 @@ }, { "name": "magento/module-contact", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-contact/magento-module-contact-100.3.5.0.zip", - "shasum": "ac90db3add4bae0f07f6fcd13f6096fcc89b3dda" + "url": "https://repo.magento.com/archives/magento/module-contact/magento-module-contact-100.3.6.0.zip", + "shasum": "25c11e54448ba9a9ee0e6a5d857932a76aa11898" }, "require": { "magento/framework": "102.0.*", @@ -9028,11 +9168,11 @@ }, { "name": "magento/module-custom-attribute-management", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-custom-attribute-management/magento-module-custom-attribute-management-100.3.5.0.zip", - "shasum": "d1d0a256efc6ce4fb1824059ee4fbce6e48057a7" + "url": "https://repo.magento.com/archives/magento/module-custom-attribute-management/magento-module-custom-attribute-management-100.3.6.0.zip", + "shasum": "de5b4b309979d57beb87bbc030e964135b8f302c" }, "require": { "magento/framework": "102.0.*", @@ -9058,11 +9198,11 @@ }, { "name": "magento/module-customer", - "version": "102.0.5", + "version": "102.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-customer/magento-module-customer-102.0.5.0.zip", - "shasum": "d0ac50edf69a2c9b27914607807d9bb67c49e3d1" + "url": "https://repo.magento.com/archives/magento/module-customer/magento-module-customer-102.0.6.0.zip", + "shasum": "0f6b6950a16f09e3c5cd51b8f53bd5cfa4e1e756" }, "require": { "magento/framework": "102.0.*", @@ -9137,11 +9277,11 @@ }, { "name": "magento/module-customer-balance", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-customer-balance/magento-module-customer-balance-100.3.5.0.zip", - "shasum": "a650b0cb75b46e73f7f7b3f93b479f3f53375a9c" + "url": "https://repo.magento.com/archives/magento/module-customer-balance/magento-module-customer-balance-100.3.6.0.zip", + "shasum": "076588bab76bbf622375097f7dfcd32c4a090938" }, "require": { "magento/framework": "102.0.*", @@ -9207,11 +9347,11 @@ }, { "name": "magento/module-customer-custom-attributes", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-customer-custom-attributes/magento-module-customer-custom-attributes-100.3.5.0.zip", - "shasum": "41819e8e7ce94dbf212f859bf28da46891ab491a" + "url": "https://repo.magento.com/archives/magento/module-customer-custom-attributes/magento-module-customer-custom-attributes-100.3.6.0.zip", + "shasum": "4436c008919ed3cd3522b9a076c067e717951d07" }, "require": { "magento/framework": "102.0.*", @@ -9347,11 +9487,11 @@ }, { "name": "magento/module-customer-import-export", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-customer-import-export/magento-module-customer-import-export-100.3.5.0.zip", - "shasum": "d74239c6a4bf928980ba030fa0f492a8e40d9d7f" + "url": "https://repo.magento.com/archives/magento/module-customer-import-export/magento-module-customer-import-export-100.3.6.0.zip", + "shasum": "1d8a9f5c28048d434c3bd9ecfcb1a01735c44a6f" }, "require": { "magento/framework": "102.0.*", @@ -9380,11 +9520,11 @@ }, { "name": "magento/module-customer-segment", - "version": "102.0.5", + "version": "102.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-customer-segment/magento-module-customer-segment-102.0.5.0.zip", - "shasum": "49cdbad95eda35427d724cc5a628a7fc66693d99" + "url": "https://repo.magento.com/archives/magento/module-customer-segment/magento-module-customer-segment-102.0.6.0.zip", + "shasum": "7b1c1df82c16ddf713e49b04f0c4c0de39a968e6" }, "require": { "magento/framework": "102.0.*", @@ -9460,11 +9600,11 @@ }, { "name": "magento/module-deploy", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-deploy/magento-module-deploy-100.3.4.0.zip", - "shasum": "95d79bef2bf03ff18e4c6feedff80acc9ba2ba76" + "url": "https://repo.magento.com/archives/magento/module-deploy/magento-module-deploy-100.3.5.0.zip", + "shasum": "d50327a62dabb91a14cb7b81e073c813ca54308a" }, "require": { "magento/framework": "102.0.*", @@ -9561,11 +9701,11 @@ }, { "name": "magento/module-directory", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-directory/magento-module-directory-100.3.5.0.zip", - "shasum": "bb83cfae5ee7af13c3b001fb0ae7291027677b2c" + "url": "https://repo.magento.com/archives/magento/module-directory/magento-module-directory-100.3.6.0.zip", + "shasum": "4c229729a839bb7e04ceba703c2c6a993ea08a8d" }, "require": { "lib-libxml": "*", @@ -9622,11 +9762,11 @@ }, { "name": "magento/module-downloadable", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-downloadable/magento-module-downloadable-100.3.5.0.zip", - "shasum": "aa959dc1139294d14b46dc49fa303d2b012bdbe9" + "url": "https://repo.magento.com/archives/magento/module-downloadable/magento-module-downloadable-100.3.6.0.zip", + "shasum": "91e1b3edc4075055e9ff7972505b05d81b1295bc" }, "require": { "magento/framework": "102.0.*", @@ -9702,11 +9842,11 @@ }, { "name": "magento/module-downloadable-import-export", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-downloadable-import-export/magento-module-downloadable-import-export-100.3.5.0.zip", - "shasum": "2b60b8b872d50bbbedf425f857ec316ae675b07d" + "url": "https://repo.magento.com/archives/magento/module-downloadable-import-export/magento-module-downloadable-import-export-100.3.6.0.zip", + "shasum": "bf400b888ff439da7f711551ec67b27e2a4c7e08" }, "require": { "magento/framework": "102.0.*", @@ -9768,11 +9908,11 @@ }, { "name": "magento/module-eav", - "version": "102.0.5", + "version": "102.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-eav/magento-module-eav-102.0.5.0.zip", - "shasum": "d673598cb27104689beb0b8afc086b6ca7bed1e9" + "url": "https://repo.magento.com/archives/magento/module-eav/magento-module-eav-102.0.6.0.zip", + "shasum": "b7714410250144144b6925c26d12a5013327adc0" }, "require": { "magento/framework": "102.0.*", @@ -9831,11 +9971,11 @@ }, { "name": "magento/module-elasticsearch", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-elasticsearch/magento-module-elasticsearch-100.3.5.0.zip", - "shasum": "096420d703b89ef9f3dd7ef86cbbcf85773d9bb8" + "url": "https://repo.magento.com/archives/magento/module-elasticsearch/magento-module-elasticsearch-100.3.6.0.zip", + "shasum": "979918c36328d69dbad72aa02adb8a841d9baea1" }, "require": { "elasticsearch/elasticsearch": "~2.0||~5.1||~6.1||~7.6", @@ -9870,11 +10010,11 @@ }, { "name": "magento/module-elasticsearch-6", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-elasticsearch-6/magento-module-elasticsearch-6-100.3.4.0.zip", - "shasum": "f96bb9a9087294780c3b9545badaf765ff5630a2" + "url": "https://repo.magento.com/archives/magento/module-elasticsearch-6/magento-module-elasticsearch-6-100.3.5.0.zip", + "shasum": "afcce2741e1555772961636367a7adc2aa37d088" }, "require": { "elasticsearch/elasticsearch": "~2.0||~5.1||~6.1||~7.6", @@ -9905,11 +10045,11 @@ }, { "name": "magento/module-elasticsearch-7", - "version": "100.3.0", + "version": "100.3.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-elasticsearch-7/magento-module-elasticsearch-7-100.3.0.0.zip", - "shasum": "a1676353edf098ef3265b71addbcd2db8e07ee2f" + "url": "https://repo.magento.com/archives/magento/module-elasticsearch-7/magento-module-elasticsearch-7-100.3.1.0.zip", + "shasum": "93ac35756331177019e28cb131677623bb3c3657" }, "require": { "elasticsearch/elasticsearch": "~2.0||~5.1||~6.1||~7.6 ", @@ -9977,11 +10117,11 @@ }, { "name": "magento/module-email", - "version": "101.0.5", + "version": "101.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-email/magento-module-email-101.0.5.0.zip", - "shasum": "0625386382db4eeca3ba27eb9b5d7f38fc883c20" + "url": "https://repo.magento.com/archives/magento/module-email/magento-module-email-101.0.6.0.zip", + "shasum": "f7e17b5dbc1211411e4a1236842237fcd2f2092e" }, "require": { "magento/framework": "102.0.*", @@ -10130,11 +10270,11 @@ }, { "name": "magento/module-fedex", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-fedex/magento-module-fedex-100.3.4.0.zip", - "shasum": "6e8840e022073bdf584fe268ad52c4dac6907f7e" + "url": "https://repo.magento.com/archives/magento/module-fedex/magento-module-fedex-100.3.5.0.zip", + "shasum": "a11dd0e6e016b6a1c8de05be637155d3de453142" }, "require": { "lib-libxml": "*", @@ -10166,11 +10306,11 @@ }, { "name": "magento/module-gift-card", - "version": "101.2.5", + "version": "101.2.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-gift-card/magento-module-gift-card-101.2.5.0.zip", - "shasum": "2162d0ec09fa8a2cc826add638111befec08d88b" + "url": "https://repo.magento.com/archives/magento/module-gift-card/magento-module-gift-card-101.2.6.0.zip", + "shasum": "79c26781b371c302e31455c875ddefa2cb605b0f" }, "require": { "magento/framework": "102.0.*", @@ -10215,11 +10355,11 @@ }, { "name": "magento/module-gift-card-account", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-gift-card-account/magento-module-gift-card-account-101.1.5.0.zip", - "shasum": "3f907c909493a1ecd131a1a439d8863609116c30" + "url": "https://repo.magento.com/archives/magento/module-gift-card-account/magento-module-gift-card-account-101.1.6.0.zip", + "shasum": "69340731aab0769506bb22feb41b04da58480044" }, "require": { "magento/framework": "102.0.*", @@ -10446,11 +10586,11 @@ }, { "name": "magento/module-gift-registry", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-gift-registry/magento-module-gift-registry-101.1.5.0.zip", - "shasum": "6bd69dbe0112a8a5440506216b6af7c0292b596f" + "url": "https://repo.magento.com/archives/magento/module-gift-registry/magento-module-gift-registry-101.1.6.0.zip", + "shasum": "8ab84ab09c84325114becfcf682c22cf18e7b2c9" }, "require": { "magento/framework": "102.0.*", @@ -10490,11 +10630,11 @@ }, { "name": "magento/module-gift-wrapping", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-gift-wrapping/magento-module-gift-wrapping-101.1.5.0.zip", - "shasum": "9a67ea19791cc499cc132645f6a6f1c041891a2f" + "url": "https://repo.magento.com/archives/magento/module-gift-wrapping/magento-module-gift-wrapping-101.1.6.0.zip", + "shasum": "23928aaf9e6a96fdbcd3ec8c5196b2827ead210f" }, "require": { "magento/framework": "102.0.*", @@ -10624,11 +10764,11 @@ }, { "name": "magento/module-google-optimizer", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-google-optimizer/magento-module-google-optimizer-100.3.4.0.zip", - "shasum": "4ae786d43c5e0fd364c5f2ce3e77da9d78e96d3d" + "url": "https://repo.magento.com/archives/magento/module-google-optimizer/magento-module-google-optimizer-100.3.5.0.zip", + "shasum": "cfce6f3912f1524d899ecebd9736fab0c01dc7c9" }, "require": { "magento/framework": "102.0.*", @@ -10689,11 +10829,11 @@ }, { "name": "magento/module-google-tag-manager", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-google-tag-manager/magento-module-google-tag-manager-100.3.5.0.zip", - "shasum": "8d22f14d3eeb5faf06c2acfaa0be986f3e4cfa75" + "url": "https://repo.magento.com/archives/magento/module-google-tag-manager/magento-module-google-tag-manager-100.3.6.0.zip", + "shasum": "8559cb417604c0779143c82e530289efe3f2187f" }, "require": { "magento/framework": "102.0.*", @@ -10852,11 +10992,11 @@ }, { "name": "magento/module-grouped-product", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-grouped-product/magento-module-grouped-product-100.3.5.0.zip", - "shasum": "dff2cd3eadb14e05ce647448487b4e5607a8fb45" + "url": "https://repo.magento.com/archives/magento/module-grouped-product/magento-module-grouped-product-100.3.6.0.zip", + "shasum": "af702b3a26b41c3b9b812e75ce25879fb7a9565a" }, "require": { "magento/framework": "102.0.*", @@ -10894,11 +11034,11 @@ }, { "name": "magento/module-grouped-product-graph-ql", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-grouped-product-graph-ql/magento-module-grouped-product-graph-ql-100.3.4.0.zip", - "shasum": "26127e7f50ae9d9b75840acdf3855b395e00eeec" + "url": "https://repo.magento.com/archives/magento/module-grouped-product-graph-ql/magento-module-grouped-product-graph-ql-100.3.5.0.zip", + "shasum": "0cd2c5455443c4ce76e4e679f07a53b6b7a09c60" }, "require": { "magento/framework": "102.0.*", @@ -10958,11 +11098,11 @@ }, { "name": "magento/module-import-export", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-import-export/magento-module-import-export-100.3.5.0.zip", - "shasum": "b5233cd6e72f88cdd9c4057a0a8d3a0bf8d5fe5d" + "url": "https://repo.magento.com/archives/magento/module-import-export/magento-module-import-export-100.3.6.0.zip", + "shasum": "9491cff094a4a998058b7626128fa3e4a2c62119" }, "require": { "ext-ctype": "*", @@ -10992,11 +11132,11 @@ }, { "name": "magento/module-indexer", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-indexer/magento-module-indexer-100.3.5.0.zip", - "shasum": "97f2e2ab30599c77ded2b8a4e86370a1c0d93496" + "url": "https://repo.magento.com/archives/magento/module-indexer/magento-module-indexer-100.3.6.0.zip", + "shasum": "27895412c08d6dfa27828d2d779604a89aa7e31a" }, "require": { "magento/framework": "102.0.*", @@ -11020,11 +11160,11 @@ }, { "name": "magento/module-instant-purchase", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-instant-purchase/magento-module-instant-purchase-100.3.5.0.zip", - "shasum": "9127850f81113ec2db99857a8138f67fbad9d1fa" + "url": "https://repo.magento.com/archives/magento/module-instant-purchase/magento-module-instant-purchase-100.3.6.0.zip", + "shasum": "af95153ab051b45e803b8b0b3041e3a853421926" }, "require": { "magento/framework": "102.0.*", @@ -11087,11 +11227,11 @@ }, { "name": "magento/module-inventory", - "version": "1.0.8", + "version": "1.0.9", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory/magento-module-inventory-1.0.8.0.zip", - "shasum": "7c455268fb2d8e1c8bfbeed31a6048142d36f2b9" + "url": "https://repo.magento.com/archives/magento/module-inventory/magento-module-inventory-1.0.9.0.zip", + "shasum": "8d889f4d490573e492ce036aa4716fa43d8b9c25" }, "require": { "magento/framework": "*", @@ -11115,11 +11255,11 @@ }, { "name": "magento/module-inventory-admin-ui", - "version": "1.0.8", + "version": "1.0.10", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-admin-ui/magento-module-inventory-admin-ui-1.0.8.0.zip", - "shasum": "1165039e07ac657868e460cb4d6180fe8cfdcdb6" + "url": "https://repo.magento.com/archives/magento/module-inventory-admin-ui/magento-module-inventory-admin-ui-1.0.10.0.zip", + "shasum": "2f6f666afe849bc885a0db9ae2b231d3fdb77648" }, "require": { "magento/framework": "*", @@ -11270,11 +11410,11 @@ }, { "name": "magento/module-inventory-cache", - "version": "1.0.6", + "version": "1.0.7", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-cache/magento-module-inventory-cache-1.0.6.0.zip", - "shasum": "27dcf978f8950047fb387be19e7d4a6d03ecd19f" + "url": "https://repo.magento.com/archives/magento/module-inventory-cache/magento-module-inventory-cache-1.0.7.0.zip", + "shasum": "2e6176849868d9a801076f85ae73bfe98637da47" }, "require": { "magento/framework": "*", @@ -11302,11 +11442,11 @@ }, { "name": "magento/module-inventory-catalog", - "version": "1.0.8", + "version": "1.0.10", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-catalog/magento-module-inventory-catalog-1.0.8.0.zip", - "shasum": "f388df40f070d6a8280a86c6e8fd8deb27df2c1c" + "url": "https://repo.magento.com/archives/magento/module-inventory-catalog/magento-module-inventory-catalog-1.0.10.0.zip", + "shasum": "5e2507061bcd0d0a6fc26239c4d305d41ee8955e" }, "require": { "magento/framework": "*", @@ -11342,11 +11482,11 @@ }, { "name": "magento/module-inventory-catalog-admin-ui", - "version": "1.0.8", + "version": "1.0.9", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-catalog-admin-ui/magento-module-inventory-catalog-admin-ui-1.0.8.0.zip", - "shasum": "0a0f4f4ae2f543efddc7c919ae5ffc4b78b31a66" + "url": "https://repo.magento.com/archives/magento/module-inventory-catalog-admin-ui/magento-module-inventory-catalog-admin-ui-1.0.9.0.zip", + "shasum": "c718c7a5e21842af052f02da363105964201ee53" }, "require": { "magento/framework": "*", @@ -11408,11 +11548,11 @@ }, { "name": "magento/module-inventory-catalog-search", - "version": "1.0.7", + "version": "1.0.8", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-catalog-search/magento-module-inventory-catalog-search-1.0.7.0.zip", - "shasum": "5e184ca90ba144bcca0056e1c314d143daca17dc" + "url": "https://repo.magento.com/archives/magento/module-inventory-catalog-search/magento-module-inventory-catalog-search-1.0.8.0.zip", + "shasum": "5e03d3c2a265be4be867c102fb9d45ed12d8c813" }, "require": { "magento/framework": "*", @@ -11959,11 +12099,11 @@ }, { "name": "magento/module-inventory-indexer", - "version": "1.0.8", + "version": "1.0.9", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-indexer/magento-module-inventory-indexer-1.0.8.0.zip", - "shasum": "021e084cae3e7b8699953bf33c325b735b622dd2" + "url": "https://repo.magento.com/archives/magento/module-inventory-indexer/magento-module-inventory-indexer-1.0.9.0.zip", + "shasum": "e78400492dac10faccaee6b38d5dabcd446f1620" }, "require": { "magento/framework": "*", @@ -11995,11 +12135,11 @@ }, { "name": "magento/module-inventory-low-quantity-notification", - "version": "1.0.8", + "version": "1.0.9", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-low-quantity-notification/magento-module-inventory-low-quantity-notification-1.0.8.0.zip", - "shasum": "8753b5535ce3c563ba1be02faa85ca362bcc6adf" + "url": "https://repo.magento.com/archives/magento/module-inventory-low-quantity-notification/magento-module-inventory-low-quantity-notification-1.0.9.0.zip", + "shasum": "48159395fddda55f5e1bd2fef6428c1e2bcc74ad" }, "require": { "magento/framework": "*", @@ -12031,11 +12171,11 @@ }, { "name": "magento/module-inventory-low-quantity-notification-admin-ui", - "version": "1.0.7", + "version": "1.0.8", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-low-quantity-notification-admin-ui/magento-module-inventory-low-quantity-notification-admin-ui-1.0.7.0.zip", - "shasum": "f866a90bdc313bdd4db8a597c64f942cff5efd28" + "url": "https://repo.magento.com/archives/magento/module-inventory-low-quantity-notification-admin-ui/magento-module-inventory-low-quantity-notification-admin-ui-1.0.8.0.zip", + "shasum": "74d8c8198bf9c2e6ba88d7070debb4740f2936b8" }, "require": { "magento/framework": "*", @@ -12189,11 +12329,11 @@ }, { "name": "magento/module-inventory-reservation-cli", - "version": "1.0.2", + "version": "1.0.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-reservation-cli/magento-module-inventory-reservation-cli-1.0.2.0.zip", - "shasum": "8d6620c638a31ea78b55eb67b4479c5f31c0365c" + "url": "https://repo.magento.com/archives/magento/module-inventory-reservation-cli/magento-module-inventory-reservation-cli-1.0.3.0.zip", + "shasum": "efc7b7f27ff1c163fd97885d4c18602c6e9b57e6" }, "require": { "magento/framework": "*", @@ -12221,11 +12361,11 @@ }, { "name": "magento/module-inventory-reservations", - "version": "1.0.7", + "version": "1.0.8", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-reservations/magento-module-inventory-reservations-1.0.7.0.zip", - "shasum": "2828010766f461ea2d25e59bac9e89f8ddaa7935" + "url": "https://repo.magento.com/archives/magento/module-inventory-reservations/magento-module-inventory-reservations-1.0.8.0.zip", + "shasum": "45e9b29ebaaf4398858189c505a4e07f1391ad4f" }, "require": { "magento/framework": "*", @@ -12276,11 +12416,11 @@ }, { "name": "magento/module-inventory-sales", - "version": "1.0.8", + "version": "1.0.9", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-sales/magento-module-inventory-sales-1.0.8.0.zip", - "shasum": "6a72d4ceb55548cab4a4b60767822925d148a924" + "url": "https://repo.magento.com/archives/magento/module-inventory-sales/magento-module-inventory-sales-1.0.9.0.zip", + "shasum": "fea14388086205521cfee99b9d4d788bb3d2143e" }, "require": { "magento/framework": "*", @@ -12480,11 +12620,11 @@ }, { "name": "magento/module-inventory-shipping-admin-ui", - "version": "1.0.8", + "version": "1.0.9", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-shipping-admin-ui/magento-module-inventory-shipping-admin-ui-1.0.8.0.zip", - "shasum": "607761941b8cc2ee07e4985c9c405daa608d0033" + "url": "https://repo.magento.com/archives/magento/module-inventory-shipping-admin-ui/magento-module-inventory-shipping-admin-ui-1.0.9.0.zip", + "shasum": "b0c4f9cd308e8009b092f4f61c6cab0108ac22c7" }, "require": { "magento/framework": "*", @@ -12820,11 +12960,11 @@ }, { "name": "magento/module-media-storage", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-storage/magento-module-media-storage-100.3.5.0.zip", - "shasum": "770765c3219f6e9b2a9219bda5f323c9a2bbe67f" + "url": "https://repo.magento.com/archives/magento/module-media-storage/magento-module-media-storage-100.3.6.0.zip", + "shasum": "f9ca6cc7c2a7ca61da2dc6f887cc93f78a6c1043" }, "require": { "magento/framework": "102.0.*", @@ -12852,11 +12992,11 @@ }, { "name": "magento/module-message-queue", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-message-queue/magento-module-message-queue-100.3.4.0.zip", - "shasum": "3d7120d33a81009ff6a75dcf947187b73e18793a" + "url": "https://repo.magento.com/archives/magento/module-message-queue/magento-module-message-queue-100.3.5.0.zip", + "shasum": "330682b1d9eb0c8ba7d31eaaa62c0539d08820ee" }, "require": { "magento/framework": "102.0.*", @@ -12946,11 +13086,11 @@ }, { "name": "magento/module-msrp-grouped-product", - "version": "100.3.3", + "version": "100.3.4", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-msrp-grouped-product/magento-module-msrp-grouped-product-100.3.3.0.zip", - "shasum": "7aeb4e2fc75e2d26eebdf25b08fb0d6ec1b36890" + "url": "https://repo.magento.com/archives/magento/module-msrp-grouped-product/magento-module-msrp-grouped-product-100.3.4.0.zip", + "shasum": "324c11109d7f88a4f2565abd9382e1ae6d0dcd01" }, "require": { "magento/framework": "102.0.*", @@ -13008,11 +13148,11 @@ }, { "name": "magento/module-multiple-wishlist", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-multiple-wishlist/magento-module-multiple-wishlist-100.3.5.0.zip", - "shasum": "99ea6c435197c295e993e4956b53c41c36081833" + "url": "https://repo.magento.com/archives/magento/module-multiple-wishlist/magento-module-multiple-wishlist-100.3.6.0.zip", + "shasum": "b0da382e2cff8c3e00a38edcbd53c483f49a2f1b" }, "require": { "magento/framework": "102.0.*", @@ -13024,6 +13164,7 @@ "magento/module-customer": "102.0.*", "magento/module-sales": "102.0.*", "magento/module-store": "101.0.*", + "magento/module-theme": "101.0.*", "magento/module-widget": "101.1.*", "magento/module-wishlist": "101.1.*", "php": "~7.1.3||~7.2.0||~7.3.0" @@ -13048,14 +13189,15 @@ }, { "name": "magento/module-multishipping", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-multishipping/magento-module-multishipping-100.3.5.0.zip", - "shasum": "f7041b4f635f04e7ce43ce75d980bc1de0626b16" + "url": "https://repo.magento.com/archives/magento/module-multishipping/magento-module-multishipping-100.3.6.0.zip", + "shasum": "f37d9a47554aecf41bb74a2463692cbf86839537" }, "require": { "magento/framework": "102.0.*", + "magento/module-captcha": "100.3.*", "magento/module-checkout": "100.3.*", "magento/module-customer": "102.0.*", "magento/module-directory": "100.3.*", @@ -13147,11 +13289,11 @@ }, { "name": "magento/module-newsletter", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-newsletter/magento-module-newsletter-100.3.5.0.zip", - "shasum": "d4016f9448165145b33c27f1f362924f7046b3ec" + "url": "https://repo.magento.com/archives/magento/module-newsletter/magento-module-newsletter-100.3.6.0.zip", + "shasum": "574a87c5f5bdc2e1937d2d1ccd3bd5fee18866e1" }, "require": { "magento/framework": "102.0.*", @@ -13254,28 +13396,28 @@ }, { "name": "magento/module-page-builder", - "version": "1.3.0", + "version": "1.3.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-page-builder/magento-module-page-builder-1.3.0.0.zip", - "shasum": "396958b067c7c11cf30771239418274d1ca41341" + "url": "https://repo.magento.com/archives/magento/module-page-builder/magento-module-page-builder-1.3.3.0.zip", + "shasum": "9d7c2ff62fafb382e50e59ca9f8159b6a078cc35" }, "require": { "magento/dom": "2.1.7", - "magento/framework": "~102.0.5", - "magento/module-backend": "~101.0.5", - "magento/module-catalog": "~103.0.5", + "magento/framework": "~102.0.6", + "magento/module-backend": "~101.0.6", + "magento/module-catalog": "~103.0.6", "magento/module-catalog-inventory": "100.3.*", "magento/module-catalog-widget": "100.3.*", "magento/module-cms": "103.0.*", - "magento/module-config": "~101.1.5", - "magento/module-directory": "~100.3.5", + "magento/module-config": "~101.1.6", + "magento/module-directory": "~100.3.6", "magento/module-eav": "102.0.*", "magento/module-email": "101.0.*", "magento/module-media-storage": "100.3.*", "magento/module-require-js": "100.3.*", "magento/module-rule": "~100.3.5", - "magento/module-store": "~101.0.5", + "magento/module-store": "~101.0.6", "magento/module-theme": "101.0.*", "magento/module-ui": "101.1.*", "magento/module-variable": "100.3.*", @@ -13305,15 +13447,15 @@ }, { "name": "magento/module-page-builder-analytics", - "version": "1.3.0", + "version": "1.3.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-page-builder-analytics/magento-module-page-builder-analytics-1.3.0.0.zip", - "shasum": "9317ac7150065b268a0ee66d8fd98723b60cb823" + "url": "https://repo.magento.com/archives/magento/module-page-builder-analytics/magento-module-page-builder-analytics-1.3.3.0.zip", + "shasum": "d938fbc596ba6a533893ab495471b765370b04af" }, "require": { - "magento/framework": "~102.0.5", - "magento/module-analytics": "~100.3.5", + "magento/framework": "~102.0.6", + "magento/module-analytics": "~100.3.6", "magento/module-page-builder": "1.3.*", "php": "~7.1.3||~7.2.0||~7.3.0" }, @@ -13333,11 +13475,11 @@ }, { "name": "magento/module-page-cache", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-page-cache/magento-module-page-cache-100.3.5.0.zip", - "shasum": "471c6c14cdef8f95272ef5464a188015e222f75a" + "url": "https://repo.magento.com/archives/magento/module-page-cache/magento-module-page-cache-100.3.6.0.zip", + "shasum": "b1ea6cda1108f7742176fcd42494466ae3660367" }, "require": { "magento/framework": "102.0.*", @@ -13363,11 +13505,11 @@ }, { "name": "magento/module-payment", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-payment/magento-module-payment-100.3.5.0.zip", - "shasum": "2ba5a4fc32d0abc41a9ee15c9fd951b60a14f279" + "url": "https://repo.magento.com/archives/magento/module-payment/magento-module-payment-100.3.6.0.zip", + "shasum": "a7ad27dd0f167becf119f6bba933abc5703eb70a" }, "require": { "magento/framework": "102.0.*", @@ -13428,11 +13570,11 @@ }, { "name": "magento/module-paypal", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-paypal/magento-module-paypal-100.3.5.0.zip", - "shasum": "fecb00a2d07fb7c29f370d9381239a6c255c334d" + "url": "https://repo.magento.com/archives/magento/module-paypal/magento-module-paypal-100.3.6.0.zip", + "shasum": "5aa34096fe4c435aabbb83b4ab6ee9a46aca2c9c" }, "require": { "lib-libxml": "*", @@ -13572,11 +13714,11 @@ }, { "name": "magento/module-persistent", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-persistent/magento-module-persistent-100.3.5.0.zip", - "shasum": "fff2b8564b689ee03390402f420655050da21e64" + "url": "https://repo.magento.com/archives/magento/module-persistent/magento-module-persistent-100.3.6.0.zip", + "shasum": "79f96718b546a9ccd22418258205360585bcf080" }, "require": { "magento/framework": "102.0.*", @@ -13605,11 +13747,11 @@ }, { "name": "magento/module-persistent-history", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-persistent-history/magento-module-persistent-history-100.3.4.0.zip", - "shasum": "66c74f0477bfa50e6db2b60c160dba5653fb19ff" + "url": "https://repo.magento.com/archives/magento/module-persistent-history/magento-module-persistent-history-100.3.5.0.zip", + "shasum": "27b0986284dd832266093c270a3b6a9890e47b2b" }, "require": { "magento/framework": "102.0.*", @@ -13681,11 +13823,11 @@ }, { "name": "magento/module-product-alert", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-product-alert/magento-module-product-alert-100.3.5.0.zip", - "shasum": "09671613f8eed2b5df5502addae25a92146aca9b" + "url": "https://repo.magento.com/archives/magento/module-product-alert/magento-module-product-alert-100.3.6.0.zip", + "shasum": "5ba5c1ed395eccea76f57cf214cdc69c54cf121a" }, "require": { "magento/framework": "102.0.*", @@ -13693,6 +13835,7 @@ "magento/module-catalog": "103.0.*", "magento/module-customer": "102.0.*", "magento/module-store": "101.0.*", + "magento/module-theme": "101.0.*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "suggest": { @@ -13715,11 +13858,11 @@ }, { "name": "magento/module-product-video", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-product-video/magento-module-product-video-100.3.5.0.zip", - "shasum": "d14b870b6979f68c499f0790847c20b69045432c" + "url": "https://repo.magento.com/archives/magento/module-product-video/magento-module-product-video-100.3.6.0.zip", + "shasum": "8766c6fd3f36449b6e6848d6a4d6e7ef2322e079" }, "require": { "magento/framework": "102.0.*", @@ -13818,11 +13961,11 @@ }, { "name": "magento/module-quote", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-quote/magento-module-quote-101.1.5.0.zip", - "shasum": "3e155895b482f01197c841eecde3c4bd159d992e" + "url": "https://repo.magento.com/archives/magento/module-quote/magento-module-quote-101.1.6.0.zip", + "shasum": "2043b611b8f314b8d66aa001411e4bd157e7dbcf" }, "require": { "magento/framework": "102.0.*", @@ -13862,11 +14005,11 @@ }, { "name": "magento/module-quote-analytics", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-quote-analytics/magento-module-quote-analytics-100.3.4.0.zip", - "shasum": "040351b47b6b44b4682015ea6a7369c19ef2eda8" + "url": "https://repo.magento.com/archives/magento/module-quote-analytics/magento-module-quote-analytics-100.3.5.0.zip", + "shasum": "9d35bf6a1058deac8effbda4d041f6e23bb22c89" }, "require": { "magento/framework": "102.0.*", @@ -13891,11 +14034,11 @@ }, { "name": "magento/module-quote-graph-ql", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-quote-graph-ql/magento-module-quote-graph-ql-100.3.5.0.zip", - "shasum": "59a9dee66844f2e149c3008c7093729f4ab0e656" + "url": "https://repo.magento.com/archives/magento/module-quote-graph-ql/magento-module-quote-graph-ql-100.3.6.0.zip", + "shasum": "198f8952f988947c9f2f0de7bdea5b2252743406" }, "require": { "magento/framework": "102.0.*", @@ -14032,11 +14175,11 @@ }, { "name": "magento/module-reports", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-reports/magento-module-reports-100.3.5.0.zip", - "shasum": "21d76a652705a242465f9d62649cd8e1413cb131" + "url": "https://repo.magento.com/archives/magento/module-reports/magento-module-reports-100.3.6.0.zip", + "shasum": "e454141ac1454839cda044205fa1aa4a910b1646" }, "require": { "magento/framework": "102.0.*", @@ -14128,11 +14271,11 @@ }, { "name": "magento/module-review", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-review/magento-module-review-100.3.5.0.zip", - "shasum": "1d8c8db3b53d09be9619e08d539da30a9a84ca98" + "url": "https://repo.magento.com/archives/magento/module-review/magento-module-review-100.3.6.0.zip", + "shasum": "e8308b1447b60080a8d4195a5c387f47a87823e1" }, "require": { "magento/framework": "102.0.*", @@ -14338,11 +14481,11 @@ }, { "name": "magento/module-rma", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-rma/magento-module-rma-101.1.5.0.zip", - "shasum": "86ba256fee5492d7f437ca841384508b02379cb8" + "url": "https://repo.magento.com/archives/magento/module-rma/magento-module-rma-101.1.6.0.zip", + "shasum": "844c3a9948f7eec436bf93b3a46e9c4d459fe68d" }, "require": { "ext-gd": "*", @@ -14545,11 +14688,11 @@ }, { "name": "magento/module-sales", - "version": "102.0.5", + "version": "102.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sales/magento-module-sales-102.0.5.0.zip", - "shasum": "4b4f42cb0d3cc86b8db60b4da22bc47be52648bc" + "url": "https://repo.magento.com/archives/magento/module-sales/magento-module-sales-102.0.6.0.zip", + "shasum": "d370bdda0693544e74b83e0ae7aa2a53488ca530" }, "require": { "magento/framework": "102.0.*", @@ -14628,11 +14771,11 @@ }, { "name": "magento/module-sales-archive", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sales-archive/magento-module-sales-archive-100.3.5.0.zip", - "shasum": "ac8b640676955d988d4bc943f83a77fcfdb08c5c" + "url": "https://repo.magento.com/archives/magento/module-sales-archive/magento-module-sales-archive-100.3.6.0.zip", + "shasum": "211ce17cc5ae2b07232ca9e965921f61d833490f" }, "require": { "magento/framework": "102.0.*", @@ -14723,11 +14866,11 @@ }, { "name": "magento/module-sales-rule", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sales-rule/magento-module-sales-rule-101.1.5.0.zip", - "shasum": "c69b5ff1a1740574f5f212deb985709e5dcebb9d" + "url": "https://repo.magento.com/archives/magento/module-sales-rule/magento-module-sales-rule-101.1.6.0.zip", + "shasum": "c50bb0d32a3063779a916922af01ee1efd539938" }, "require": { "magento/framework": "102.0.*", @@ -14772,11 +14915,11 @@ }, { "name": "magento/module-sales-rule-staging", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sales-rule-staging/magento-module-sales-rule-staging-100.3.4.0.zip", - "shasum": "1cb92718a0ae556267c4857930afeefdee119db7" + "url": "https://repo.magento.com/archives/magento/module-sales-rule-staging/magento-module-sales-rule-staging-100.3.5.0.zip", + "shasum": "051bebf6306a4ac93d969fbfcec678646d7fc976" }, "require": { "magento/framework": "102.0.*", @@ -14866,11 +15009,11 @@ }, { "name": "magento/module-scalable-checkout", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-scalable-checkout/magento-module-scalable-checkout-100.3.4.0.zip", - "shasum": "9b73badf866e6bfda09b9217e48115d1ac3c83d4" + "url": "https://repo.magento.com/archives/magento/module-scalable-checkout/magento-module-scalable-checkout-100.3.5.0.zip", + "shasum": "9fa80753ba233f0d3647aee9a74ed5d0e94c0605" }, "require": { "magento/framework": "102.0.*", @@ -14959,11 +15102,11 @@ }, { "name": "magento/module-scheduled-import-export", - "version": "101.1.4", + "version": "101.1.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-scheduled-import-export/magento-module-scheduled-import-export-101.1.4.0.zip", - "shasum": "e8a9947ad9e6c1e7bd778afd068e9c8952495510" + "url": "https://repo.magento.com/archives/magento/module-scheduled-import-export/magento-module-scheduled-import-export-101.1.5.0.zip", + "shasum": "e7a6407677eee43574e2efb5cfdfcc195bac5e0b" }, "require": { "magento/framework": "102.0.*", @@ -14990,11 +15133,11 @@ }, { "name": "magento/module-search", - "version": "101.0.5", + "version": "101.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-search/magento-module-search-101.0.5.0.zip", - "shasum": "bfef11ff4d00ab02e174cf200642f6cbf6ac9ec9" + "url": "https://repo.magento.com/archives/magento/module-search/magento-module-search-101.0.6.0.zip", + "shasum": "806907e8ebdeeab0571e465187507b5c40f6b144" }, "require": { "magento/framework": "102.0.*", @@ -15231,11 +15374,11 @@ }, { "name": "magento/module-sitemap", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sitemap/magento-module-sitemap-100.3.5.0.zip", - "shasum": "e039b87d1ef93b114f1f1eed8bfcb6b4fd7c68ff" + "url": "https://repo.magento.com/archives/magento/module-sitemap/magento-module-sitemap-100.3.6.0.zip", + "shasum": "44582749734f7f418e8b451afb898f8641b04b6d" }, "require": { "magento/framework": "102.0.*", @@ -15270,11 +15413,11 @@ }, { "name": "magento/module-staging", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-staging/magento-module-staging-101.1.5.0.zip", - "shasum": "45bf4fdc4aaf116029eaa0e8c32f53f184beb78d" + "url": "https://repo.magento.com/archives/magento/module-staging/magento-module-staging-101.1.6.0.zip", + "shasum": "f58e5031fed9597c7e9693145bf009fa7fb89474" }, "require": { "lib-libxml": "*", @@ -15337,14 +15480,14 @@ }, { "name": "magento/module-staging-page-builder", - "version": "1.3.0", + "version": "1.3.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-staging-page-builder/magento-module-staging-page-builder-1.3.0.0.zip", - "shasum": "f99db4ce4dfc7522f695f8e6fc68f4cc687fefb6" + "url": "https://repo.magento.com/archives/magento/module-staging-page-builder/magento-module-staging-page-builder-1.3.3.0.zip", + "shasum": "4f2500586f93b7b0a4fa5403661fa4cd4acc5915" }, "require": { - "magento/framework": "~102.0.5", + "magento/framework": "~102.0.6", "php": "~7.1.3||~7.2.0||~7.3.0" }, "suggest": { @@ -15367,11 +15510,11 @@ }, { "name": "magento/module-store", - "version": "101.0.5", + "version": "101.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-store/magento-module-store-101.0.5.0.zip", - "shasum": "d7c0eefb2f7c5c3d09bc337193a46ef7eb60540b" + "url": "https://repo.magento.com/archives/magento/module-store/magento-module-store-101.0.6.0.zip", + "shasum": "9a793146e8c8d3c40f1ed447478438d217406535" }, "require": { "magento/framework": "102.0.*", @@ -15567,11 +15710,11 @@ }, { "name": "magento/module-swatches", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-swatches/magento-module-swatches-100.3.5.0.zip", - "shasum": "ed376fb0d0e1f8ef82793a5fbb32524eb203b1ce" + "url": "https://repo.magento.com/archives/magento/module-swatches/magento-module-swatches-100.3.6.0.zip", + "shasum": "077072098a6cd90f0ed970f5d6d0126b6bc25cb2" }, "require": { "magento/framework": "102.0.*", @@ -15668,11 +15811,11 @@ }, { "name": "magento/module-target-rule", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-target-rule/magento-module-target-rule-101.1.5.0.zip", - "shasum": "bb70bbb945e7f1f82033dfcf1f40545813f5bebf" + "url": "https://repo.magento.com/archives/magento/module-target-rule/magento-module-target-rule-101.1.6.0.zip", + "shasum": "11f475de8a11997c56be8918671f4ed6bc6f542e" }, "require": { "magento/framework": "102.0.*", @@ -15709,11 +15852,11 @@ }, { "name": "magento/module-tax", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-tax/magento-module-tax-100.3.5.0.zip", - "shasum": "f610f8ae48e1d193187a270df28f8d1614cc656e" + "url": "https://repo.magento.com/archives/magento/module-tax/magento-module-tax-100.3.6.0.zip", + "shasum": "1a5d655aadf90b3bbb6337aed21888c178cc1bb0" }, "require": { "magento/framework": "102.0.*", @@ -15814,11 +15957,11 @@ }, { "name": "magento/module-theme", - "version": "101.0.5", + "version": "101.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-theme/magento-module-theme-101.0.5.0.zip", - "shasum": "d7485f7189914fe59a490dcd89867cfe53447dea" + "url": "https://repo.magento.com/archives/magento/module-theme/magento-module-theme-101.0.6.0.zip", + "shasum": "d7e663c6b2ea003b0b88a8341553e67ecf274aec" }, "require": { "magento/framework": "102.0.*", @@ -15886,11 +16029,11 @@ }, { "name": "magento/module-tinymce-3", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-tinymce-3/magento-module-tinymce-3-100.3.5.0.zip", - "shasum": "8ce8b1fbe6e9ea03336aaf9aeb90594eb319ca0b" + "url": "https://repo.magento.com/archives/magento/module-tinymce-3/magento-module-tinymce-3-100.3.6.0.zip", + "shasum": "67046d180ed5ed97ecff1ede122af6ccc1e3982d" }, "require": { "magento/framework": "102.0.*", @@ -15951,11 +16094,11 @@ }, { "name": "magento/module-translation", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-translation/magento-module-translation-100.3.5.0.zip", - "shasum": "22f0c984fabba7ee04a953ee9a2e6e4f76a97665" + "url": "https://repo.magento.com/archives/magento/module-translation/magento-module-translation-100.3.6.0.zip", + "shasum": "3b2bd37e991700567d812f9d3fdef63cbeefa8bf" }, "require": { "magento/framework": "102.0.*", @@ -15985,11 +16128,11 @@ }, { "name": "magento/module-ui", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-ui/magento-module-ui-101.1.5.0.zip", - "shasum": "ae1eefd94eb62e8e0ce32d24b96f5b6099b4a607" + "url": "https://repo.magento.com/archives/magento/module-ui/magento-module-ui-101.1.6.0.zip", + "shasum": "2517b9dcd24f279697dbdbaab8447a61ddaf69f5" }, "require": { "magento/framework": "102.0.*", @@ -16021,11 +16164,11 @@ }, { "name": "magento/module-ups", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-ups/magento-module-ups-100.3.5.0.zip", - "shasum": "19e923673638558daa46f216a7423ec641dc9ec1" + "url": "https://repo.magento.com/archives/magento/module-ups/magento-module-ups-100.3.6.0.zip", + "shasum": "467289aeed56a6d67dfc72cd8587a54a2f00e536" }, "require": { "magento/framework": "102.0.*", @@ -16091,11 +16234,11 @@ }, { "name": "magento/module-url-rewrite-graph-ql", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-url-rewrite-graph-ql/magento-module-url-rewrite-graph-ql-100.3.5.0.zip", - "shasum": "08d7837f658bc08e4a279030d4029a2c6f7bda2c" + "url": "https://repo.magento.com/archives/magento/module-url-rewrite-graph-ql/magento-module-url-rewrite-graph-ql-100.3.6.0.zip", + "shasum": "9618f81614ed43e38a421cbc664c98d8707faccb" }, "require": { "magento/framework": "102.0.*", @@ -16122,11 +16265,11 @@ }, { "name": "magento/module-user", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-user/magento-module-user-101.1.5.0.zip", - "shasum": "423be90044cb3c3c8c5239f0a8a2fa1eef26fa8c" + "url": "https://repo.magento.com/archives/magento/module-user/magento-module-user-101.1.6.0.zip", + "shasum": "6b73cd893c4b3ee4ff236969896262ba2c029084" }, "require": { "magento/framework": "102.0.*", @@ -16222,11 +16365,11 @@ }, { "name": "magento/module-vault", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-vault/magento-module-vault-101.1.5.0.zip", - "shasum": "00e602a862274666f4770e12eb9b128c7e64d420" + "url": "https://repo.magento.com/archives/magento/module-vault/magento-module-vault-101.1.6.0.zip", + "shasum": "263be5b1bba742578ff63273b3fa79084ef45897" }, "require": { "magento/framework": "102.0.*", @@ -16311,11 +16454,11 @@ }, { "name": "magento/module-versions-cms", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-versions-cms/magento-module-versions-cms-101.1.5.0.zip", - "shasum": "605f5ef6c9a9cee3b06896ac5f131bba6bd90dd4" + "url": "https://repo.magento.com/archives/magento/module-versions-cms/magento-module-versions-cms-101.1.6.0.zip", + "shasum": "d5f3a184c6bc0a5ad52a1082d88132864fda8012" }, "require": { "magento/framework": "102.0.*", @@ -16372,11 +16515,11 @@ }, { "name": "magento/module-visual-merchandiser", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-visual-merchandiser/magento-module-visual-merchandiser-100.3.5.0.zip", - "shasum": "4f3d4ad72ba306be9c804b88ecc91485c2f54fdd" + "url": "https://repo.magento.com/archives/magento/module-visual-merchandiser/magento-module-visual-merchandiser-100.3.6.0.zip", + "shasum": "6c494c629ad979738a09778ea841c7e2456029da" }, "require": { "magento/framework": "102.0.*", @@ -16407,11 +16550,11 @@ }, { "name": "magento/module-webapi", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-webapi/magento-module-webapi-100.3.4.0.zip", - "shasum": "91fdd2b46466e69c88fce02d69c0596104d24d08" + "url": "https://repo.magento.com/archives/magento/module-webapi/magento-module-webapi-100.3.5.0.zip", + "shasum": "a44c5801c04c7749966b7f92b4cf9b01ba3a348f" }, "require": { "magento/framework": "102.0.*", @@ -16442,11 +16585,11 @@ }, { "name": "magento/module-webapi-async", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-webapi-async/magento-module-webapi-async-100.3.5.0.zip", - "shasum": "ca9f17d104dafc32a56f8a3b97d2b4e95b27ea70" + "url": "https://repo.magento.com/archives/magento/module-webapi-async/magento-module-webapi-async-100.3.6.0.zip", + "shasum": "bbfe4feccba768f2c4f8b8592c7c72e69a7fbc64" }, "require": { "magento/framework": "102.0.*", @@ -16503,11 +16646,11 @@ }, { "name": "magento/module-website-restriction", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-website-restriction/magento-module-website-restriction-100.3.5.0.zip", - "shasum": "a8ea50c6f5b77b8d903198e4653d6d07709de788" + "url": "https://repo.magento.com/archives/magento/module-website-restriction/magento-module-website-restriction-100.3.6.0.zip", + "shasum": "77ede86522490cd2b11a2c77d003a308dc88ecc1" }, "require": { "magento/framework": "102.0.*", @@ -16679,11 +16822,11 @@ }, { "name": "magento/module-wishlist", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-wishlist/magento-module-wishlist-101.1.5.0.zip", - "shasum": "e0921f64c20dc7922b2f1f00400fa9e66bbbbb22" + "url": "https://repo.magento.com/archives/magento/module-wishlist/magento-module-wishlist-101.1.6.0.zip", + "shasum": "3582146188e83f3c0df5b55a502cedc8066bf0f3" }, "require": { "magento/framework": "102.0.*", @@ -16817,44 +16960,44 @@ }, { "name": "magento/page-builder-commerce", - "version": "1.3.0", + "version": "1.3.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/page-builder-commerce/magento-page-builder-commerce-1.3.0.0.zip", - "shasum": "8d645501782017d9c4809a1797f7518d207fc6f3" + "url": "https://repo.magento.com/archives/magento/page-builder-commerce/magento-page-builder-commerce-1.3.3.0.zip", + "shasum": "4b0a538225cbec7b850519877d87611311e7bd64" }, "require": { - "magento/module-banner-page-builder": "1.3.0", - "magento/module-banner-page-builder-analytics": "1.3.0", - "magento/module-catalog-page-builder-analytics": "1.3.0", - "magento/module-catalog-page-builder-analytics-staging": "1.3.0", - "magento/module-catalog-staging-page-builder": "1.3.0", - "magento/module-cms-page-builder-analytics": "1.3.0", - "magento/module-cms-page-builder-analytics-staging": "1.3.0", - "magento/module-page-builder": "1.3.0", - "magento/module-page-builder-analytics": "1.3.0", - "magento/module-staging-page-builder": "1.3.0" + "magento/module-banner-page-builder": "1.3.3", + "magento/module-banner-page-builder-analytics": "1.3.3", + "magento/module-catalog-page-builder-analytics": "1.3.3", + "magento/module-catalog-page-builder-analytics-staging": "1.3.3", + "magento/module-catalog-staging-page-builder": "1.3.3", + "magento/module-cms-page-builder-analytics": "1.3.3", + "magento/module-cms-page-builder-analytics-staging": "1.3.3", + "magento/module-page-builder": "1.3.3", + "magento/module-page-builder-analytics": "1.3.3", + "magento/module-staging-page-builder": "1.3.3" }, "type": "metapackage", "description": "Page Builder Commerce metapackage" }, { "name": "magento/product-community-edition", - "version": "2.3.5", + "version": "2.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/product-community-edition/magento-product-community-edition-2.3.5.0.zip", - "shasum": "0580c9dce5982bdf780cb9102d9aa357659d58e3" + "url": "https://repo.magento.com/archives/magento/product-community-edition/magento-product-community-edition-2.3.6.0.zip", + "shasum": "464614b41bc8eaf2520327cad579904cdf9d1b72" }, "require": { - "amzn/amazon-pay-and-login-magento-2-module": "3.4.1", + "amzn/amazon-pay-and-login-magento-2-module": "3.4.1-p3", "braintree/braintree_php": "3.35.0", "colinmollenhour/cache-backend-file": "~1.4.1", "colinmollenhour/cache-backend-redis": "1.10.6", "colinmollenhour/credis": "1.10.0", "colinmollenhour/php-redis-session-abstract": "~1.4.0", "composer/composer": "^1.9", - "dotmailer/dotmailer-magento2-extension-package": "4.4.0", + "dotmailer/dotmailer-magento2-extension-package": "4.4.1", "elasticsearch/elasticsearch": "~2.0||~5.1||~6.1||~7.6", "ext-bcmath": "*", "ext-ctype": "*", @@ -16872,7 +17015,7 @@ "ext-xsl": "*", "ext-zip": "*", "guzzlehttp/guzzle": "^6.3.3", - "klarna/m2-payments": "7.5.0", + "klarna/m2-payments": "7.6.1", "laminas/laminas-captcha": "^2.7.1", "laminas/laminas-code": "~3.3.0", "laminas/laminas-config": "^2.6.0", @@ -16903,14 +17046,14 @@ "laminas/laminas-validator": "^2.6.0", "laminas/laminas-view": "~2.11.2", "lib-libxml": "*", - "magento/adobe-stock-integration": "1.0.1", + "magento/adobe-stock-integration": "1.0.2", "magento/composer": "~1.5.0", - "magento/framework": "102.0.5", + "magento/framework": "102.0.6", "magento/framework-amqp": "100.3.5", "magento/framework-bulk": "100.3.5", - "magento/framework-message-queue": "100.3.5", - "magento/google-shopping-ads": "3.0.2", - "magento/inventory-composer-metapackage": "1.1.5", + "magento/framework-message-queue": "100.3.6", + "magento/google-shopping-ads": "4.0.1", + "magento/inventory-composer-metapackage": "1.1.6", "magento/language-de_de": "100.3.4", "magento/language-en_us": "100.3.4", "magento/language-es_es": "100.3.4", @@ -16919,183 +17062,184 @@ "magento/language-pt_br": "100.3.4", "magento/language-zh_hans_cn": "100.3.4", "magento/magento-composer-installer": ">=0.1.11", - "magento/magento2-base": "2.3.5", + "magento/magento2-base": "2.3.6", "magento/module-admin-analytics": "100.3.2", "magento/module-admin-notification": "100.3.5", "magento/module-advanced-pricing-import-export": "100.3.4", "magento/module-advanced-search": "100.3.4", "magento/module-amqp": "100.3.4", "magento/module-amqp-store": "100.3.1", - "magento/module-analytics": "100.3.5", - "magento/module-asynchronous-operations": "100.3.5", - "magento/module-authorization": "100.3.4", + "magento/module-analytics": "100.3.6", + "magento/module-asynchronous-operations": "100.3.6", + "magento/module-authorization": "100.3.5", "magento/module-authorizenet": "100.3.5", "magento/module-authorizenet-acceptjs": "100.3.4", "magento/module-authorizenet-cardinal": "100.3.1", "magento/module-authorizenet-graph-ql": "100.3.2", - "magento/module-backend": "101.0.5", + "magento/module-backend": "101.0.6", "magento/module-backup": "100.3.5", - "magento/module-braintree": "100.3.5", - "magento/module-braintree-graph-ql": "100.3.2", - "magento/module-bundle": "100.3.5", + "magento/module-braintree": "100.3.6", + "magento/module-braintree-graph-ql": "100.3.3", + "magento/module-bundle": "100.3.6", "magento/module-bundle-graph-ql": "100.3.4", - "magento/module-bundle-import-export": "100.3.4", + "magento/module-bundle-import-export": "100.3.5", "magento/module-cache-invalidate": "100.3.4", - "magento/module-captcha": "100.3.5", + "magento/module-captcha": "100.3.6", "magento/module-cardinal-commerce": "100.3.2", - "magento/module-catalog": "103.0.5", + "magento/module-catalog": "103.0.6", "magento/module-catalog-analytics": "100.3.4", "magento/module-catalog-cms-graph-ql": "100.3.0", "magento/module-catalog-customer-graph-ql": "100.3.0", - "magento/module-catalog-graph-ql": "100.3.5", - "magento/module-catalog-import-export": "101.0.5", - "magento/module-catalog-inventory": "100.3.5", + "magento/module-catalog-graph-ql": "100.3.6", + "magento/module-catalog-import-export": "101.0.6", + "magento/module-catalog-inventory": "100.3.6", "magento/module-catalog-inventory-graph-ql": "100.3.4", - "magento/module-catalog-rule": "101.1.5", + "magento/module-catalog-rule": "101.1.6", "magento/module-catalog-rule-configurable": "100.3.5", - "magento/module-catalog-search": "101.0.5", - "magento/module-catalog-url-rewrite": "100.3.5", + "magento/module-catalog-rule-graph-ql": "100.3.0", + "magento/module-catalog-search": "101.0.6", + "magento/module-catalog-url-rewrite": "100.3.6", "magento/module-catalog-url-rewrite-graph-ql": "100.3.5", - "magento/module-catalog-widget": "100.3.5", - "magento/module-checkout": "100.3.5", + "magento/module-catalog-widget": "100.3.6", + "magento/module-checkout": "100.3.6", "magento/module-checkout-agreements": "100.3.5", "magento/module-checkout-agreements-graph-ql": "100.3.1", - "magento/module-cms": "103.0.5", + "magento/module-cms": "103.0.6", "magento/module-cms-graph-ql": "100.3.4", - "magento/module-cms-url-rewrite": "100.3.4", + "magento/module-cms-url-rewrite": "100.3.5", "magento/module-cms-url-rewrite-graph-ql": "100.3.4", - "magento/module-config": "101.1.5", + "magento/module-config": "101.1.6", "magento/module-configurable-import-export": "100.3.4", - "magento/module-configurable-product": "100.3.5", + "magento/module-configurable-product": "100.3.6", "magento/module-configurable-product-graph-ql": "100.3.5", "magento/module-configurable-product-sales": "100.3.4", - "magento/module-contact": "100.3.5", + "magento/module-contact": "100.3.6", "magento/module-cookie": "100.3.5", "magento/module-cron": "100.3.5", "magento/module-csp": "100.3.0", "magento/module-currency-symbol": "100.3.5", - "magento/module-customer": "102.0.5", + "magento/module-customer": "102.0.6", "magento/module-customer-analytics": "100.3.4", "magento/module-customer-downloadable-graph-ql": "100.3.0", "magento/module-customer-graph-ql": "100.3.5", - "magento/module-customer-import-export": "100.3.5", - "magento/module-deploy": "100.3.4", + "magento/module-customer-import-export": "100.3.6", + "magento/module-deploy": "100.3.5", "magento/module-developer": "100.3.5", "magento/module-dhl": "100.3.5", - "magento/module-directory": "100.3.5", + "magento/module-directory": "100.3.6", "magento/module-directory-graph-ql": "100.3.3", - "magento/module-downloadable": "100.3.5", + "magento/module-downloadable": "100.3.6", "magento/module-downloadable-graph-ql": "100.3.4", - "magento/module-downloadable-import-export": "100.3.5", - "magento/module-eav": "102.0.5", + "magento/module-downloadable-import-export": "100.3.6", + "magento/module-eav": "102.0.6", "magento/module-eav-graph-ql": "100.3.4", - "magento/module-elasticsearch": "100.3.5", - "magento/module-elasticsearch-6": "100.3.4", - "magento/module-elasticsearch-7": "100.3.0", - "magento/module-email": "101.0.5", + "magento/module-elasticsearch": "100.3.6", + "magento/module-elasticsearch-6": "100.3.5", + "magento/module-elasticsearch-7": "100.3.1", + "magento/module-email": "101.0.6", "magento/module-encryption-key": "100.3.5", - "magento/module-fedex": "100.3.4", + "magento/module-fedex": "100.3.5", "magento/module-gift-message": "100.3.4", "magento/module-google-adwords": "100.3.5", "magento/module-google-analytics": "100.3.4", - "magento/module-google-optimizer": "100.3.4", + "magento/module-google-optimizer": "100.3.5", "magento/module-graph-ql": "100.3.5", "magento/module-graph-ql-cache": "100.3.2", "magento/module-grouped-catalog-inventory": "100.3.3", "magento/module-grouped-import-export": "100.3.4", - "magento/module-grouped-product": "100.3.5", - "magento/module-grouped-product-graph-ql": "100.3.4", - "magento/module-import-export": "100.3.5", - "magento/module-indexer": "100.3.5", - "magento/module-instant-purchase": "100.3.5", + "magento/module-grouped-product": "100.3.6", + "magento/module-grouped-product-graph-ql": "100.3.5", + "magento/module-import-export": "100.3.6", + "magento/module-indexer": "100.3.6", + "magento/module-instant-purchase": "100.3.6", "magento/module-integration": "100.3.5", "magento/module-layered-navigation": "100.3.4", "magento/module-marketplace": "100.3.4", "magento/module-media-gallery": "100.3.1", "magento/module-media-gallery-api": "100.3.0", - "magento/module-media-storage": "100.3.5", - "magento/module-message-queue": "100.3.4", + "magento/module-media-storage": "100.3.6", + "magento/module-message-queue": "100.3.5", "magento/module-msrp": "100.3.5", "magento/module-msrp-configurable-product": "100.3.3", - "magento/module-msrp-grouped-product": "100.3.3", - "magento/module-multishipping": "100.3.5", + "magento/module-msrp-grouped-product": "100.3.4", + "magento/module-multishipping": "100.3.6", "magento/module-mysql-mq": "100.3.4", "magento/module-new-relic-reporting": "100.3.4", - "magento/module-newsletter": "100.3.5", + "magento/module-newsletter": "100.3.6", "magento/module-offline-payments": "100.3.4", "magento/module-offline-shipping": "100.3.5", - "magento/module-page-cache": "100.3.5", - "magento/module-payment": "100.3.5", - "magento/module-paypal": "100.3.5", + "magento/module-page-cache": "100.3.6", + "magento/module-payment": "100.3.6", + "magento/module-paypal": "100.3.6", "magento/module-paypal-captcha": "100.3.2", "magento/module-paypal-graph-ql": "100.3.1", "magento/module-paypal-recaptcha": "1.0.1", - "magento/module-persistent": "100.3.5", - "magento/module-product-alert": "100.3.5", - "magento/module-product-video": "100.3.5", - "magento/module-quote": "101.1.5", - "magento/module-quote-analytics": "100.3.4", - "magento/module-quote-graph-ql": "100.3.5", + "magento/module-persistent": "100.3.6", + "magento/module-product-alert": "100.3.6", + "magento/module-product-video": "100.3.6", + "magento/module-quote": "101.1.6", + "magento/module-quote-analytics": "100.3.5", + "magento/module-quote-graph-ql": "100.3.6", "magento/module-related-product-graph-ql": "100.3.1", "magento/module-release-notification": "100.3.4", - "magento/module-reports": "100.3.5", + "magento/module-reports": "100.3.6", "magento/module-require-js": "100.3.4", - "magento/module-review": "100.3.5", + "magento/module-review": "100.3.6", "magento/module-review-analytics": "100.3.4", "magento/module-robots": "101.0.4", "magento/module-rss": "100.3.4", "magento/module-rule": "100.3.5", - "magento/module-sales": "102.0.5", + "magento/module-sales": "102.0.6", "magento/module-sales-analytics": "100.3.4", "magento/module-sales-graph-ql": "100.3.3", "magento/module-sales-inventory": "100.3.4", - "magento/module-sales-rule": "101.1.5", + "magento/module-sales-rule": "101.1.6", "magento/module-sales-sequence": "100.3.4", "magento/module-sample-data": "100.3.4", - "magento/module-search": "101.0.5", + "magento/module-search": "101.0.6", "magento/module-security": "100.3.5", "magento/module-send-friend": "100.3.4", "magento/module-send-friend-graph-ql": "100.3.3", "magento/module-shipping": "100.3.5", "magento/module-signifyd": "100.3.5", - "magento/module-sitemap": "100.3.5", - "magento/module-store": "101.0.5", + "magento/module-sitemap": "100.3.6", + "magento/module-store": "101.0.6", "magento/module-store-graph-ql": "100.3.4", "magento/module-swagger": "100.3.5", "magento/module-swagger-webapi": "100.3.4", "magento/module-swagger-webapi-async": "100.3.4", - "magento/module-swatches": "100.3.5", + "magento/module-swatches": "100.3.6", "magento/module-swatches-graph-ql": "100.3.5", "magento/module-swatches-layered-navigation": "100.3.4", - "magento/module-tax": "100.3.5", + "magento/module-tax": "100.3.6", "magento/module-tax-graph-ql": "100.3.4", "magento/module-tax-import-export": "100.3.4", - "magento/module-theme": "101.0.5", + "magento/module-theme": "101.0.6", "magento/module-theme-graph-ql": "100.3.3", - "magento/module-tinymce-3": "100.3.5", - "magento/module-translation": "100.3.5", - "magento/module-ui": "101.1.5", - "magento/module-ups": "100.3.5", + "magento/module-tinymce-3": "100.3.6", + "magento/module-translation": "100.3.6", + "magento/module-ui": "101.1.6", + "magento/module-ups": "100.3.6", "magento/module-url-rewrite": "101.1.5", - "magento/module-url-rewrite-graph-ql": "100.3.5", - "magento/module-user": "101.1.5", + "magento/module-url-rewrite-graph-ql": "100.3.6", + "magento/module-user": "101.1.6", "magento/module-usps": "100.3.5", "magento/module-variable": "100.3.4", - "magento/module-vault": "101.1.5", + "magento/module-vault": "101.1.6", "magento/module-vault-graph-ql": "100.3.2", "magento/module-version": "100.3.4", - "magento/module-webapi": "100.3.4", - "magento/module-webapi-async": "100.3.5", + "magento/module-webapi": "100.3.5", + "magento/module-webapi-async": "100.3.6", "magento/module-webapi-security": "100.3.4", "magento/module-weee": "100.3.5", "magento/module-weee-graph-ql": "100.3.4", "magento/module-widget": "101.1.4", - "magento/module-wishlist": "101.1.5", + "magento/module-wishlist": "101.1.6", "magento/module-wishlist-analytics": "100.3.4", "magento/module-wishlist-graph-ql": "100.3.3", "magento/theme-adminhtml-backend": "100.3.5", - "magento/theme-frontend-blank": "100.3.5", - "magento/theme-frontend-luma": "100.3.5", + "magento/theme-frontend-blank": "100.3.6", + "magento/theme-frontend-luma": "100.3.6", "magento/zendframework1": "~1.14.2", "monolog/monolog": "^1.17", "msp/recaptcha": "2.2.3", @@ -17113,7 +17257,7 @@ "tedivm/jshrink": "~1.3.0", "temando/module-shipping": "2.0.0", "tubalmartin/cssmin": "4.1.1", - "vertex/product-magento-module": "3.4.0", + "vertex/product-magento-module": "3.4.3", "webonyx/graphql-php": "^0.13.8", "wikimedia/less.php": "~1.8.0", "yotpo/magento2-module-yotpo-reviews-bundle": "3.1.0" @@ -17127,22 +17271,21 @@ }, { "name": "magento/product-enterprise-edition", - "version": "2.3.5", + "version": "2.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/product-enterprise-edition/magento-product-enterprise-edition-2.3.5.0.zip", - "shasum": "f44ab10a65a023397b037128fddb6efe29b0e1fe" + "url": "https://repo.magento.com/archives/magento/product-enterprise-edition/magento-product-enterprise-edition-2.3.6.0.zip", + "shasum": "bd67f0bfd624b48c3036b1dff7bbb05eafe3d174" }, "require": { - "amzn/amazon-pay-and-login-magento-2-module": "3.4.1", + "amzn/amazon-pay-and-login-magento-2-module": "3.4.1-p3", "braintree/braintree_php": "3.35.0", "colinmollenhour/cache-backend-file": "~1.4.1", "colinmollenhour/cache-backend-redis": "1.10.6", "colinmollenhour/credis": "1.10.0", "colinmollenhour/php-redis-session-abstract": "~1.4.0", "composer/composer": "^1.9", - "dotmailer/dotmailer-magento2-extension-enterprise-package": "4.4.0", - "dotmailer/dotmailer-magento2-extension-package": "4.4.0", + "dotmailer/dotmailer-magento2-extension-enterprise-package": "4.4.1", "elasticsearch/elasticsearch": "~2.0||~5.1||~6.1||~7.6", "ext-bcmath": "*", "ext-ctype": "*", @@ -17161,7 +17304,7 @@ "ext-xsl": "*", "ext-zip": "*", "guzzlehttp/guzzle": "^6.3.3", - "klarna/m2-payments": "7.5.0", + "klarna/m2-payments": "7.6.1", "laminas/laminas-captcha": "^2.7.1", "laminas/laminas-code": "~3.3.0", "laminas/laminas-config": "^2.6.0", @@ -17192,67 +17335,69 @@ "laminas/laminas-validator": "^2.6.0", "laminas/laminas-view": "~2.11.2", "lib-libxml": "*", - "magento/adobe-stock-integration": "1.0.1", + "magento/adobe-stock-integration": "1.0.2", "magento/composer": "~1.5.0", "magento/framework-foreign-key": "100.3.5", - "magento/google-shopping-ads": "3.0.2", - "magento/inventory-composer-metapackage": "1.1.5", + "magento/google-shopping-ads": "4.0.1", + "magento/inventory-composer-metapackage": "1.1.6", "magento/magento-composer-installer": ">=0.1.11", - "magento/magento2-ee-base": "2.3.5", - "magento/module-admin-gws": "100.3.5", + "magento/magento2-ee-base": "2.3.6", + "magento/module-admin-gws": "100.3.6", + "magento/module-admin-gws-configurable-product": "100.3.0", + "magento/module-admin-gws-staging": "100.3.0", "magento/module-advanced-catalog": "100.3.4", - "magento/module-advanced-checkout": "100.3.5", + "magento/module-advanced-checkout": "100.3.6", "magento/module-advanced-rule": "100.3.4", "magento/module-advanced-sales-rule": "100.3.4", - "magento/module-banner": "101.1.5", + "magento/module-banner": "101.1.6", "magento/module-banner-customer-segment": "100.3.5", "magento/module-bundle-import-export-staging": "100.3.4", - "magento/module-bundle-staging": "100.3.4", - "magento/module-catalog-event": "101.0.5", + "magento/module-bundle-staging": "100.3.5", + "magento/module-catalog-event": "101.0.6", "magento/module-catalog-import-export-staging": "100.3.4", "magento/module-catalog-inventory-staging": "100.3.4", - "magento/module-catalog-permissions": "100.3.4", - "magento/module-catalog-rule-staging": "100.3.5", - "magento/module-catalog-staging": "100.3.5", + "magento/module-catalog-permissions": "100.3.5", + "magento/module-catalog-rule-staging": "100.3.6", + "magento/module-catalog-staging": "100.3.6", "magento/module-catalog-staging-graph-ql": "100.3.0", "magento/module-catalog-url-rewrite-staging": "100.3.4", - "magento/module-checkout-address-search": "100.3.3", + "magento/module-checkout-address-search": "100.3.4", "magento/module-checkout-address-search-gift-registry": "100.3.2", "magento/module-checkout-staging": "100.3.4", - "magento/module-cms-staging": "100.3.4", + "magento/module-cms-staging": "100.3.5", "magento/module-configurable-product-staging": "100.3.5", - "magento/module-custom-attribute-management": "100.3.5", - "magento/module-customer-balance": "100.3.5", + "magento/module-custom-attribute-management": "100.3.6", + "magento/module-customer-balance": "100.3.6", "magento/module-customer-balance-graph-ql": "100.3.1", - "magento/module-customer-custom-attributes": "100.3.5", + "magento/module-customer-custom-attributes": "100.3.6", "magento/module-customer-finance": "100.3.4", - "magento/module-customer-segment": "102.0.5", + "magento/module-customer-segment": "102.0.6", "magento/module-cybersource": "100.3.5", "magento/module-downloadable-staging": "100.3.4", "magento/module-elasticsearch-catalog-permissions": "100.3.2", "magento/module-enterprise": "100.3.4", "magento/module-eway": "100.3.5", - "magento/module-gift-card": "101.2.5", - "magento/module-gift-card-account": "101.1.5", + "magento/module-gift-card": "101.2.6", + "magento/module-gift-card-account": "101.1.6", "magento/module-gift-card-account-graph-ql": "100.3.2", "magento/module-gift-card-graph-ql": "100.3.4", "magento/module-gift-card-import-export": "100.3.5", "magento/module-gift-card-staging": "100.3.4", "magento/module-gift-message-staging": "100.3.4", - "magento/module-gift-registry": "101.1.5", - "magento/module-gift-wrapping": "101.1.5", + "magento/module-gift-registry": "101.1.6", + "magento/module-gift-wrapping": "101.1.6", "magento/module-gift-wrapping-staging": "100.3.4", "magento/module-google-optimizer-staging": "100.3.4", - "magento/module-google-tag-manager": "100.3.5", + "magento/module-google-tag-manager": "100.3.6", "magento/module-grouped-product-staging": "100.3.4", "magento/module-invitation": "100.3.5", "magento/module-layered-navigation-staging": "100.3.4", "magento/module-logging": "101.1.5", "magento/module-msrp-staging": "100.3.4", - "magento/module-multiple-wishlist": "100.3.5", + "magento/module-multiple-wishlist": "100.3.6", "magento/module-payment-staging": "100.3.4", "magento/module-paypal-recaptcha": "1.0.1", - "magento/module-persistent-history": "100.3.4", + "magento/module-persistent-history": "100.3.5", "magento/module-price-permissions": "100.3.4", "magento/module-product-video-staging": "100.3.4", "magento/module-promotion-permissions": "100.3.4", @@ -17262,29 +17407,29 @@ "magento/module-reward": "101.1.5", "magento/module-reward-graph-ql": "100.3.4", "magento/module-reward-staging": "100.3.4", - "magento/module-rma": "101.1.5", + "magento/module-rma": "101.1.6", "magento/module-rma-graph-ql": "100.3.4", "magento/module-rma-staging": "100.3.4", - "magento/module-sales-archive": "100.3.5", - "magento/module-sales-rule-staging": "100.3.4", - "magento/module-scalable-checkout": "100.3.4", + "magento/module-sales-archive": "100.3.6", + "magento/module-sales-rule-staging": "100.3.5", + "magento/module-scalable-checkout": "100.3.5", "magento/module-scalable-inventory": "100.3.4", "magento/module-scalable-oms": "100.3.4", - "magento/module-scheduled-import-export": "101.1.4", + "magento/module-scheduled-import-export": "101.1.5", "magento/module-search-staging": "100.3.4", - "magento/module-staging": "101.1.5", + "magento/module-staging": "101.1.6", "magento/module-staging-graph-ql": "100.3.0", "magento/module-support": "101.1.4", - "magento/module-target-rule": "101.1.5", + "magento/module-target-rule": "101.1.6", "magento/module-tinymce-3-banner": "100.3.4", - "magento/module-versions-cms": "101.1.5", + "magento/module-versions-cms": "101.1.6", "magento/module-versions-cms-url-rewrite": "100.3.0", - "magento/module-visual-merchandiser": "100.3.5", - "magento/module-website-restriction": "100.3.5", + "magento/module-visual-merchandiser": "100.3.6", + "magento/module-website-restriction": "100.3.6", "magento/module-weee-staging": "100.3.4", "magento/module-worldpay": "100.3.5", - "magento/page-builder-commerce": "1.3.0", - "magento/product-community-edition": "2.3.5", + "magento/page-builder-commerce": "1.3.3", + "magento/product-community-edition": "2.3.6", "magento/zendframework1": "~1.14.2", "monolog/monolog": "^1.17", "msp/recaptcha": "2.2.3", @@ -17302,7 +17447,7 @@ "tedivm/jshrink": "~1.3.0", "temando/module-shipping": "2.0.0", "tubalmartin/cssmin": "4.1.1", - "vertex/product-magento-module": "3.4.0", + "vertex/product-magento-module": "3.4.3", "webonyx/graphql-php": "^0.13.8", "wikimedia/less.php": "~1.8.0", "yotpo/magento2-module-yotpo-reviews-bundle": "3.1.0" @@ -17339,11 +17484,11 @@ }, { "name": "magento/theme-frontend-blank", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/theme-frontend-blank/magento-theme-frontend-blank-100.3.5.0.zip", - "shasum": "f0e75444b5b01011d429ffccdf36e4c8635cb8f9" + "url": "https://repo.magento.com/archives/magento/theme-frontend-blank/magento-theme-frontend-blank-100.3.6.0.zip", + "shasum": "d66b2b8d303e265edc461d27825053e98c59c4d9" }, "require": { "magento/framework": "102.0.*", @@ -17363,11 +17508,11 @@ }, { "name": "magento/theme-frontend-luma", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/theme-frontend-luma/magento-theme-frontend-luma-100.3.5.0.zip", - "shasum": "b538c03c982a1329fe87c0d8d4e2c2de90c3f57b" + "url": "https://repo.magento.com/archives/magento/theme-frontend-luma/magento-theme-frontend-luma-100.3.6.0.zip", + "shasum": "d5b9670c351389a0c67545f29f933fc61b6374dc" }, "require": { "magento/framework": "102.0.*", @@ -18020,16 +18165,16 @@ }, { "name": "phpseclib/phpseclib", - "version": "2.0.28", + "version": "2.0.29", "source": { "type": "git", "url": "https://github.com/phpseclib/phpseclib.git", - "reference": "d1ca58cf33cb21046d702ae3a7b14fdacd9f3260" + "reference": "497856a8d997f640b4a516062f84228a772a48a8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/d1ca58cf33cb21046d702ae3a7b14fdacd9f3260", - "reference": "d1ca58cf33cb21046d702ae3a7b14fdacd9f3260", + "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/497856a8d997f640b4a516062f84228a772a48a8", + "reference": "497856a8d997f640b4a516062f84228a772a48a8", "shasum": "" }, "require": { @@ -18038,7 +18183,6 @@ "require-dev": { "phing/phing": "~2.7", "phpunit/phpunit": "^4.8.35|^5.7|^6.0", - "sami/sami": "~2.0", "squizlabs/php_codesniffer": "~2.0" }, "suggest": { @@ -18122,7 +18266,7 @@ "type": "tidelift" } ], - "time": "2020-07-08T09:08:33+00:00" + "time": "2020-09-08T04:24:43+00:00" }, { "name": "psr/container", @@ -18440,16 +18584,16 @@ }, { "name": "seld/jsonlint", - "version": "1.8.0", + "version": "1.8.2", "source": { "type": "git", "url": "https://github.com/Seldaek/jsonlint.git", - "reference": "ff2aa5420bfbc296cf6a0bc785fa5b35736de7c1" + "reference": "590cfec960b77fd55e39b7d9246659e95dd6d337" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/ff2aa5420bfbc296cf6a0bc785fa5b35736de7c1", - "reference": "ff2aa5420bfbc296cf6a0bc785fa5b35736de7c1", + "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/590cfec960b77fd55e39b7d9246659e95dd6d337", + "reference": "590cfec960b77fd55e39b7d9246659e95dd6d337", "shasum": "" }, "require": { @@ -18495,7 +18639,7 @@ "type": "tidelift" } ], - "time": "2020-04-30T19:05:18+00:00" + "time": "2020-08-25T06:56:57+00:00" }, { "name": "seld/phar-utils", @@ -18607,16 +18751,16 @@ }, { "name": "symfony/console", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "55d07021da933dd0d633ffdab6f45d5b230c7e02" + "reference": "90933b39c7b312fc3ceaa1ddeac7eb48cb953124" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/55d07021da933dd0d633ffdab6f45d5b230c7e02", - "reference": "55d07021da933dd0d633ffdab6f45d5b230c7e02", + "url": "https://api.github.com/repos/symfony/console/zipball/90933b39c7b312fc3ceaa1ddeac7eb48cb953124", + "reference": "90933b39c7b312fc3ceaa1ddeac7eb48cb953124", "shasum": "" }, "require": { @@ -18694,11 +18838,11 @@ "type": "tidelift" } ], - "time": "2020-07-06T13:18:39+00:00" + "time": "2020-09-15T07:58:55+00:00" }, { "name": "symfony/css-selector", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", @@ -18765,16 +18909,16 @@ }, { "name": "symfony/event-dispatcher", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "6140fc7047dafc5abbe84ba16a34a86c0b0229b8" + "reference": "e17bb5e0663dc725f7cdcafc932132735b4725cd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/6140fc7047dafc5abbe84ba16a34a86c0b0229b8", - "reference": "6140fc7047dafc5abbe84ba16a34a86c0b0229b8", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/e17bb5e0663dc725f7cdcafc932132735b4725cd", + "reference": "e17bb5e0663dc725f7cdcafc932132735b4725cd", "shasum": "" }, "require": { @@ -18792,6 +18936,7 @@ "psr/log": "~1.0", "symfony/config": "^3.4|^4.0|^5.0", "symfony/dependency-injection": "^3.4|^4.0|^5.0", + "symfony/error-handler": "~3.4|~4.4", "symfony/expression-language": "^3.4|^4.0|^5.0", "symfony/http-foundation": "^3.4|^4.0|^5.0", "symfony/service-contracts": "^1.1|^2", @@ -18845,7 +18990,7 @@ "type": "tidelift" } ], - "time": "2020-06-18T17:59:13+00:00" + "time": "2020-09-18T14:07:46+00:00" }, { "name": "symfony/event-dispatcher-contracts", @@ -18925,16 +19070,16 @@ }, { "name": "symfony/filesystem", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "b27f491309db5757816db672b256ea2e03677d30" + "reference": "ebc51494739d3b081ea543ed7c462fa73a4f74db" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/b27f491309db5757816db672b256ea2e03677d30", - "reference": "b27f491309db5757816db672b256ea2e03677d30", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/ebc51494739d3b081ea543ed7c462fa73a4f74db", + "reference": "ebc51494739d3b081ea543ed7c462fa73a4f74db", "shasum": "" }, "require": { @@ -18985,20 +19130,20 @@ "type": "tidelift" } ], - "time": "2020-05-30T18:50:54+00:00" + "time": "2020-09-27T13:54:16+00:00" }, { "name": "symfony/finder", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "2727aa35fddfada1dd37599948528e9b152eb742" + "reference": "60d08560f9aa72997c44077c40d47aa28a963230" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/2727aa35fddfada1dd37599948528e9b152eb742", - "reference": "2727aa35fddfada1dd37599948528e9b152eb742", + "url": "https://api.github.com/repos/symfony/finder/zipball/60d08560f9aa72997c44077c40d47aa28a963230", + "reference": "60d08560f9aa72997c44077c40d47aa28a963230", "shasum": "" }, "require": { @@ -19048,20 +19193,20 @@ "type": "tidelift" } ], - "time": "2020-07-05T09:39:30+00:00" + "time": "2020-10-02T07:34:48+00:00" }, { "name": "symfony/options-resolver", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", - "reference": "376bd3a02e7946dbf90b01563361b47dde425025" + "reference": "02b120a79ff06b779819f1594a300226bfc75105" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/options-resolver/zipball/376bd3a02e7946dbf90b01563361b47dde425025", - "reference": "376bd3a02e7946dbf90b01563361b47dde425025", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/02b120a79ff06b779819f1594a300226bfc75105", + "reference": "02b120a79ff06b779819f1594a300226bfc75105", "shasum": "" }, "require": { @@ -19116,7 +19261,7 @@ "type": "tidelift" } ], - "time": "2020-07-10T09:12:14+00:00" + "time": "2020-09-24T16:40:22+00:00" }, { "name": "symfony/polyfill-ctype", @@ -19967,16 +20112,16 @@ }, { "name": "symfony/process", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "65e70bab62f3da7089a8d4591fb23fbacacb3479" + "reference": "9b887acc522935f77555ae8813495958c7771ba7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/65e70bab62f3da7089a8d4591fb23fbacacb3479", - "reference": "65e70bab62f3da7089a8d4591fb23fbacacb3479", + "url": "https://api.github.com/repos/symfony/process/zipball/9b887acc522935f77555ae8813495958c7771ba7", + "reference": "9b887acc522935f77555ae8813495958c7771ba7", "shasum": "" }, "require": { @@ -20026,20 +20171,20 @@ "type": "tidelift" } ], - "time": "2020-07-23T08:31:43+00:00" + "time": "2020-09-02T16:08:58+00:00" }, { "name": "symfony/property-access", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/property-access.git", - "reference": "eb617a57fc38f43bf4208dcbdb2dab3c14d9cbd9" + "reference": "4c43f7ff784e1e3ee1c96e15f76b342af6617b39" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/property-access/zipball/eb617a57fc38f43bf4208dcbdb2dab3c14d9cbd9", - "reference": "eb617a57fc38f43bf4208dcbdb2dab3c14d9cbd9", + "url": "https://api.github.com/repos/symfony/property-access/zipball/4c43f7ff784e1e3ee1c96e15f76b342af6617b39", + "reference": "4c43f7ff784e1e3ee1c96e15f76b342af6617b39", "shasum": "" }, "require": { @@ -20108,20 +20253,20 @@ "type": "tidelift" } ], - "time": "2020-07-03T07:49:29+00:00" + "time": "2020-09-02T16:23:27+00:00" }, { "name": "symfony/property-info", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/property-info.git", - "reference": "0c4813930953f6db6c62ebec8ee695a897b89020" + "reference": "22518930091e0bdb249694efc509e3697f7e325e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/property-info/zipball/0c4813930953f6db6c62ebec8ee695a897b89020", - "reference": "0c4813930953f6db6c62ebec8ee695a897b89020", + "url": "https://api.github.com/repos/symfony/property-info/zipball/22518930091e0bdb249694efc509e3697f7e325e", + "reference": "22518930091e0bdb249694efc509e3697f7e325e", "shasum": "" }, "require": { @@ -20199,20 +20344,20 @@ "type": "tidelift" } ], - "time": "2020-06-18T21:19:28+00:00" + "time": "2020-09-07T05:10:28+00:00" }, { "name": "symfony/service-contracts", - "version": "v2.1.3", + "version": "v2.2.0", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "58c7475e5457c5492c26cc740cc0ad7464be9442" + "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/58c7475e5457c5492c26cc740cc0ad7464be9442", - "reference": "58c7475e5457c5492c26cc740cc0ad7464be9442", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1", + "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1", "shasum": "" }, "require": { @@ -20225,7 +20370,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.1-dev" + "dev-master": "2.2-dev" }, "thanks": { "name": "symfony/contracts", @@ -20275,20 +20420,20 @@ "type": "tidelift" } ], - "time": "2020-07-06T13:23:11+00:00" + "time": "2020-09-07T11:33:47+00:00" }, { "name": "symfony/string", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "f629ba9b611c76224feb21fe2bcbf0b6f992300b" + "reference": "4a9afe9d07bac506f75bcee8ed3ce76da5a9343e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/f629ba9b611c76224feb21fe2bcbf0b6f992300b", - "reference": "f629ba9b611c76224feb21fe2bcbf0b6f992300b", + "url": "https://api.github.com/repos/symfony/string/zipball/4a9afe9d07bac506f75bcee8ed3ce76da5a9343e", + "reference": "4a9afe9d07bac506f75bcee8ed3ce76da5a9343e", "shasum": "" }, "require": { @@ -20360,7 +20505,7 @@ "type": "tidelift" } ], - "time": "2020-07-08T08:27:49+00:00" + "time": "2020-09-15T12:23:47+00:00" }, { "name": "tedivm/jshrink", @@ -20556,11 +20701,11 @@ }, { "name": "vertex/module-address-validation", - "version": "1.1.0", + "version": "1.1.2", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/vertex/module-address-validation/vertex-module-address-validation-1.1.0.0.zip", - "shasum": "5ea30b8c087a9631f6dd6a3e83996f41e314d8d5" + "url": "https://repo.magento.com/archives/vertex/module-address-validation/vertex-module-address-validation-1.1.2.0.zip", + "shasum": "4a878033de8bf793e5f994aa0aaa17136010f2c3" }, "require": { "ext-json": "*", @@ -20573,7 +20718,7 @@ "magento/module-store": "^100|^101", "magento/module-tax": "^100", "php": "^7.0", - "vertex/module-tax": "^3.4.0" + "vertex/module-tax": "^3.4.2" }, "require-dev": { "ext-dom": "*", @@ -20598,11 +20743,11 @@ }, { "name": "vertex/module-tax", - "version": "3.4.0", + "version": "3.4.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/vertex/module-tax/vertex-module-tax-3.4.0.0.zip", - "shasum": "7762da2cba9ec285fed2b2eac6c872fe27770e36" + "url": "https://repo.magento.com/archives/vertex/module-tax/vertex-module-tax-3.4.3.0.zip", + "shasum": "6479c6679532204f8ad29e77fe3e83c941ce52a5" }, "require": { "ext-intl": "*", @@ -20618,7 +20763,7 @@ "magento/module-customer": "^100|^101|^102", "magento/module-directory": "^100", "magento/module-eav": "^100|^101|^102", - "magento/module-quote": ">=101.1.0 <= 101.1.5 || 101.2.0", + "magento/module-quote": ">=101.1.0 <= 101.1.6 || 101.2.0", "magento/module-sales": "^100|^101|^102", "magento/module-shipping": "^100", "magento/module-store": "^100|^101", @@ -20662,20 +20807,28 @@ }, { "name": "vertex/product-magento-module", - "version": "3.4.0", + "version": "3.4.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/vertex/product-magento-module/vertex-product-magento-module-3.4.0.0.zip", - "shasum": "2e22c0e3ce6d60cfcacc90274027d695fc4de537" + "url": "https://repo.magento.com/archives/vertex/product-magento-module/vertex-product-magento-module-3.4.3.0.zip", + "shasum": "4b1cf3666acb71ff92827cfd5c5d4e592ecb8f9a" }, "require": { - "vertex/module-address-validation": "1.1.0", - "vertex/module-tax": "3.4.0" + "vertex/module-address-validation": "1.1.2", + "vertex/module-tax": "3.4.3" }, "type": "metapackage", "license": [ "proprietary" ], + "authors": [ + { + "name": "Mediotype", + "email": "diveinto@mediotype.com", + "homepage": "http://www.mediotype.com/", + "role": "Development Company" + } + ], "description": "Vertex Tax Links for Magento 2", "homepage": "http://go.vertexsmb.com/magento_cbe", "keywords": [ @@ -20685,11 +20838,11 @@ }, { "name": "vertex/sdk", - "version": "1.2.5", + "version": "1.2.7", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/vertex/sdk/vertex-sdk-1.2.5.0.zip", - "shasum": "1d2cab94f393be238516799fc7077c336829fae4" + "url": "https://repo.magento.com/archives/vertex/sdk/vertex-sdk-1.2.7.0.zip", + "shasum": "821465662cc2d8ec186e2baf138a7c3075fcf3ee" }, "require": { "ext-mbstring": "*", @@ -20698,9 +20851,11 @@ "php": "^5.4|^7" }, "require-dev": { - "php": "^7.1", + "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2", + "magento/magento-coding-standard": "^5.0", + "php": "^7.3", "phpmd/phpmd": "^2.6", - "phpunit/phpunit": "^7.2", + "phpunit/phpunit": "^9", "squizlabs/php_codesniffer": "^3.3" }, "type": "library", @@ -20714,6 +20869,61 @@ ], "description": "Tools for communicating with Vertex Cloud and Vertex O-Series" }, + { + "name": "webimpress/safe-writer", + "version": "2.1.0", + "source": { + "type": "git", + "url": "https://github.com/webimpress/safe-writer.git", + "reference": "5cfafdec5873c389036f14bf832a5efc9390dcdd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/webimpress/safe-writer/zipball/5cfafdec5873c389036f14bf832a5efc9390dcdd", + "reference": "5cfafdec5873c389036f14bf832a5efc9390dcdd", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.8 || ^9.3.7", + "vimeo/psalm": "^3.14.2", + "webimpress/coding-standard": "^1.1.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1.x-dev", + "dev-develop": "2.2.x-dev", + "dev-release-1.0": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Webimpress\\SafeWriter\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-2-Clause" + ], + "description": "Tool to write files safely, to avoid race conditions", + "keywords": [ + "concurrent write", + "file writer", + "race condition", + "safe writer", + "webimpress" + ], + "funding": [ + { + "url": "https://github.com/michalbundyra", + "type": "github" + } + ], + "time": "2020-08-25T07:21:11+00:00" + }, { "name": "webonyx/graphql-php", "version": "v0.13.9", @@ -21087,16 +21297,16 @@ }, { "name": "aws/aws-sdk-php", - "version": "3.148.1", + "version": "3.158.7", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "56caf889ddc8dcc5b6999c234998f3b945d787e3" + "reference": "9afc422ad4ef0f1de9fa2a0be4b856c1dfa31123" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/56caf889ddc8dcc5b6999c234998f3b945d787e3", - "reference": "56caf889ddc8dcc5b6999c234998f3b945d787e3", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/9afc422ad4ef0f1de9fa2a0be4b856c1dfa31123", + "reference": "9afc422ad4ef0f1de9fa2a0be4b856c1dfa31123", "shasum": "" }, "require": { @@ -21168,7 +21378,7 @@ "s3", "sdk" ], - "time": "2020-08-10T18:14:21+00:00" + "time": "2020-10-15T18:16:19+00:00" }, { "name": "behat/gherkin", @@ -21415,16 +21625,16 @@ }, { "name": "codeception/phpunit-wrapper", - "version": "6.8.1", + "version": "6.8.2", "source": { "type": "git", "url": "https://github.com/Codeception/phpunit-wrapper.git", - "reference": "ca6e94c6dadc19db05698d4e0d84214e570ce045" + "reference": "372f1b5c1b0842dfc1fb491175ea22861a42ba13" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/ca6e94c6dadc19db05698d4e0d84214e570ce045", - "reference": "ca6e94c6dadc19db05698d4e0d84214e570ce045", + "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/372f1b5c1b0842dfc1fb491175ea22861a42ba13", + "reference": "372f1b5c1b0842dfc1fb491175ea22861a42ba13", "shasum": "" }, "require": { @@ -21457,7 +21667,7 @@ } ], "description": "PHPUnit classes used by Codeception", - "time": "2020-03-20T08:05:05+00:00" + "time": "2020-10-11T18:17:59+00:00" }, { "name": "codeception/stub", @@ -22059,6 +22269,7 @@ } ], "description": "JSONPath implementation for parsing, searching and flattening arrays", + "abandoned": "softcreatr/jsonpath", "time": "2019-07-15T17:23:22+00:00" }, { @@ -22376,16 +22587,16 @@ }, { "name": "league/flysystem", - "version": "1.1.0", + "version": "1.1.3", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "481c0174b9c99b189959e2bb9d6f52188ed1f692" + "reference": "9be3b16c877d477357c015cec057548cf9b2a14a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/481c0174b9c99b189959e2bb9d6f52188ed1f692", - "reference": "481c0174b9c99b189959e2bb9d6f52188ed1f692", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a", + "reference": "9be3b16c877d477357c015cec057548cf9b2a14a", "shasum": "" }, "require": { @@ -22463,20 +22674,20 @@ "type": "other" } ], - "time": "2020-08-09T15:57:10+00:00" + "time": "2020-08-23T07:39:11+00:00" }, { "name": "league/mime-type-detection", - "version": "1.4.0", + "version": "1.5.0", "source": { "type": "git", "url": "https://github.com/thephpleague/mime-type-detection.git", - "reference": "fda190b62b962d96a069fcc414d781db66d65b69" + "reference": "ea2fbfc988bade315acd5967e6d02274086d0f28" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/fda190b62b962d96a069fcc414d781db66d65b69", - "reference": "fda190b62b962d96a069fcc414d781db66d65b69", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ea2fbfc988bade315acd5967e6d02274086d0f28", + "reference": "ea2fbfc988bade315acd5967e6d02274086d0f28", "shasum": "" }, "require": { @@ -22514,7 +22725,7 @@ "type": "tidelift" } ], - "time": "2020-08-09T10:34:01+00:00" + "time": "2020-09-21T18:10:53+00:00" }, { "name": "lusitanian/oauth", @@ -23058,23 +23269,23 @@ }, { "name": "php-cs-fixer/diff", - "version": "v1.3.0", + "version": "v1.3.1", "source": { "type": "git", "url": "https://github.com/PHP-CS-Fixer/diff.git", - "reference": "78bb099e9c16361126c86ce82ec4405ebab8e756" + "reference": "dbd31aeb251639ac0b9e7e29405c1441907f5759" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHP-CS-Fixer/diff/zipball/78bb099e9c16361126c86ce82ec4405ebab8e756", - "reference": "78bb099e9c16361126c86ce82ec4405ebab8e756", + "url": "https://api.github.com/repos/PHP-CS-Fixer/diff/zipball/dbd31aeb251639ac0b9e7e29405c1441907f5759", + "reference": "dbd31aeb251639ac0b9e7e29405c1441907f5759", "shasum": "" }, "require": { - "php": "^5.6 || ^7.0" + "php": "^5.6 || ^7.0 || ^8.0" }, "require-dev": { - "phpunit/phpunit": "^5.7.23 || ^6.4.3", + "phpunit/phpunit": "^5.7.23 || ^6.4.3 || ^7.0", "symfony/process": "^3.3" }, "type": "library", @@ -23088,14 +23299,14 @@ "BSD-3-Clause" ], "authors": [ - { - "name": "Kore Nordmann", - "email": "mail@kore-nordmann.de" - }, { "name": "Sebastian Bergmann", "email": "sebastian@phpunit.de" }, + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" + }, { "name": "SpacePossum" } @@ -23105,7 +23316,7 @@ "keywords": [ "diff" ], - "time": "2018-02-15T16:58:55+00:00" + "time": "2020-10-14T08:39:05+00:00" }, { "name": "php-webdriver/webdriver", @@ -23329,16 +23540,16 @@ }, { "name": "phpdocumentor/reflection-docblock", - "version": "5.2.0", + "version": "5.2.2", "source": { "type": "git", "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "3170448f5769fe19f456173d833734e0ff1b84df" + "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/3170448f5769fe19f456173d833734e0ff1b84df", - "reference": "3170448f5769fe19f456173d833734e0ff1b84df", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556", + "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556", "shasum": "" }, "require": { @@ -23377,20 +23588,20 @@ } ], "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", - "time": "2020-07-20T20:05:34+00:00" + "time": "2020-09-03T19:13:55+00:00" }, { "name": "phpdocumentor/type-resolver", - "version": "1.3.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://github.com/phpDocumentor/TypeResolver.git", - "reference": "e878a14a65245fbe78f8080eba03b47c3b705651" + "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/e878a14a65245fbe78f8080eba03b47c3b705651", - "reference": "e878a14a65245fbe78f8080eba03b47c3b705651", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0", + "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0", "shasum": "" }, "require": { @@ -23422,7 +23633,7 @@ } ], "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", - "time": "2020-06-27T10:12:23+00:00" + "time": "2020-09-17T18:55:26+00:00" }, { "name": "phpmd/phpmd", @@ -23622,16 +23833,16 @@ }, { "name": "phpstan/phpstan", - "version": "0.12.37", + "version": "0.12.49", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "5e16d83e6eb2dd784fbdaeaece5e2bca72e4f68a" + "reference": "9a6136c2b39d5214da78de37128d5fe08e5d5b05" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/5e16d83e6eb2dd784fbdaeaece5e2bca72e4f68a", - "reference": "5e16d83e6eb2dd784fbdaeaece5e2bca72e4f68a", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/9a6136c2b39d5214da78de37128d5fe08e5d5b05", + "reference": "9a6136c2b39d5214da78de37128d5fe08e5d5b05", "shasum": "" }, "require": { @@ -23674,7 +23885,7 @@ "type": "tidelift" } ], - "time": "2020-08-09T14:32:41+00:00" + "time": "2020-10-12T14:10:44+00:00" }, { "name": "phpunit/php-code-coverage", @@ -23923,6 +24134,7 @@ "keywords": [ "tokenizer" ], + "abandoned": true, "time": "2017-11-27T05:48:46+00:00" }, { @@ -24482,6 +24694,7 @@ ], "description": "FinderFacade is a convenience wrapper for Symfony's Finder component.", "homepage": "https://github.com/sebastianbergmann/finder-facade", + "abandoned": true, "time": "2020-01-16T08:08:45+00:00" }, { @@ -24868,16 +25081,16 @@ }, { "name": "symfony/browser-kit", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/browser-kit.git", - "reference": "f53310646af9901292488b2ff36e26ea10f545f5" + "reference": "9a1786e5020783605a30cff2ceed9aca030e8d80" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/browser-kit/zipball/f53310646af9901292488b2ff36e26ea10f545f5", - "reference": "f53310646af9901292488b2ff36e26ea10f545f5", + "url": "https://api.github.com/repos/symfony/browser-kit/zipball/9a1786e5020783605a30cff2ceed9aca030e8d80", + "reference": "9a1786e5020783605a30cff2ceed9aca030e8d80", "shasum": "" }, "require": { @@ -24937,20 +25150,20 @@ "type": "tidelift" } ], - "time": "2020-05-22T17:28:00+00:00" + "time": "2020-10-02T08:38:15+00:00" }, { "name": "symfony/config", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "b1d8f0d9341ea1d378b8b043ba90739f37c49d36" + "reference": "7c5a1002178a612787c291a4f515f87b19176b61" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/b1d8f0d9341ea1d378b8b043ba90739f37c49d36", - "reference": "b1d8f0d9341ea1d378b8b043ba90739f37c49d36", + "url": "https://api.github.com/repos/symfony/config/zipball/7c5a1002178a612787c291a4f515f87b19176b61", + "reference": "7c5a1002178a612787c291a4f515f87b19176b61", "shasum": "" }, "require": { @@ -25015,20 +25228,20 @@ "type": "tidelift" } ], - "time": "2020-07-15T08:27:46+00:00" + "time": "2020-10-02T07:34:48+00:00" }, { "name": "symfony/dependency-injection", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "f33a28edd42708ed579377391b3a556bcd6a626d" + "reference": "89274c8847dff2ed703e481843eb9159ca25cc6e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/f33a28edd42708ed579377391b3a556bcd6a626d", - "reference": "f33a28edd42708ed579377391b3a556bcd6a626d", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/89274c8847dff2ed703e481843eb9159ca25cc6e", + "reference": "89274c8847dff2ed703e481843eb9159ca25cc6e", "shasum": "" }, "require": { @@ -25102,20 +25315,20 @@ "type": "tidelift" } ], - "time": "2020-07-23T08:31:43+00:00" + "time": "2020-09-10T10:08:39+00:00" }, { "name": "symfony/dom-crawler", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/dom-crawler.git", - "reference": "72b3a65ddd5052cf6d65eac6669748ed311f39bf" + "reference": "bdcb7633a501770a0daefbf81d2e6b28c3864f2b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/72b3a65ddd5052cf6d65eac6669748ed311f39bf", - "reference": "72b3a65ddd5052cf6d65eac6669748ed311f39bf", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/bdcb7633a501770a0daefbf81d2e6b28c3864f2b", + "reference": "bdcb7633a501770a0daefbf81d2e6b28c3864f2b", "shasum": "" }, "require": { @@ -25177,20 +25390,20 @@ "type": "tidelift" } ], - "time": "2020-07-23T08:31:43+00:00" + "time": "2020-10-02T07:34:48+00:00" }, { "name": "symfony/http-foundation", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "3675676b6a47f3e71d3ab10bcf53fb9239eb77e6" + "reference": "10683b407c3b6087c64619ebc97a87e36ea62c92" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3675676b6a47f3e71d3ab10bcf53fb9239eb77e6", - "reference": "3675676b6a47f3e71d3ab10bcf53fb9239eb77e6", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/10683b407c3b6087c64619ebc97a87e36ea62c92", + "reference": "10683b407c3b6087c64619ebc97a87e36ea62c92", "shasum": "" }, "require": { @@ -25246,20 +25459,20 @@ "type": "tidelift" } ], - "time": "2020-07-23T09:48:09+00:00" + "time": "2020-09-27T14:14:06+00:00" }, { "name": "symfony/mime", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "cb00d7210bc096f997e63189a62b5e35d72babac" + "reference": "42df2507eb8e6cd9795f51c99dd52bab543a918f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/cb00d7210bc096f997e63189a62b5e35d72babac", - "reference": "cb00d7210bc096f997e63189a62b5e35d72babac", + "url": "https://api.github.com/repos/symfony/mime/zipball/42df2507eb8e6cd9795f51c99dd52bab543a918f", + "reference": "42df2507eb8e6cd9795f51c99dd52bab543a918f", "shasum": "" }, "require": { @@ -25322,20 +25535,20 @@ "type": "tidelift" } ], - "time": "2020-07-22T12:10:07+00:00" + "time": "2020-09-02T16:08:58+00:00" }, { "name": "symfony/stopwatch", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/stopwatch.git", - "reference": "f51fb90df1154a7f75987198a9689e28f91e6a50" + "reference": "6f89e19772cf61b3c65bab329fe0e318259fbd91" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/stopwatch/zipball/f51fb90df1154a7f75987198a9689e28f91e6a50", - "reference": "f51fb90df1154a7f75987198a9689e28f91e6a50", + "url": "https://api.github.com/repos/symfony/stopwatch/zipball/6f89e19772cf61b3c65bab329fe0e318259fbd91", + "reference": "6f89e19772cf61b3c65bab329fe0e318259fbd91", "shasum": "" }, "require": { @@ -25386,20 +25599,20 @@ "type": "tidelift" } ], - "time": "2020-05-20T08:37:50+00:00" + "time": "2020-09-02T16:08:58+00:00" }, { "name": "symfony/yaml", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "c2d2cc66e892322cfcc03f8f12f8340dbd7a3f8a" + "reference": "c7885964b1eceb70b0981556d0a9b01d2d97c8d1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/c2d2cc66e892322cfcc03f8f12f8340dbd7a3f8a", - "reference": "c2d2cc66e892322cfcc03f8f12f8340dbd7a3f8a", + "url": "https://api.github.com/repos/symfony/yaml/zipball/c7885964b1eceb70b0981556d0a9b01d2d97c8d1", + "reference": "c7885964b1eceb70b0981556d0a9b01d2d97c8d1", "shasum": "" }, "require": { @@ -25459,7 +25672,7 @@ "type": "tidelift" } ], - "time": "2020-05-20T08:37:50+00:00" + "time": "2020-09-27T03:36:23+00:00" }, { "name": "theseer/fdomdocument", diff --git a/src/_data/codebase/v2_3/open-source/composer_lock.json b/src/_data/codebase/v2_3/open-source/composer_lock.json index 1cc9425e45e..486a8152434 100644 --- a/src/_data/codebase/v2_3/open-source/composer_lock.json +++ b/src/_data/codebase/v2_3/open-source/composer_lock.json @@ -4,20 +4,20 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "81be44d7b002a7cc0b9ecfb6383581e0", + "content-hash": "6b530e25eae14e55a6dca04b20945397", "packages": [ { "name": "amzn/amazon-pay-and-login-magento-2-module", - "version": "3.4.1", + "version": "3.4.1-p3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/amzn/amazon-pay-and-login-magento-2-module/amzn-amazon-pay-and-login-magento-2-module-3.4.1.0.zip", - "shasum": "46e79d698c277f6d61bad4f87a18d7a1195e1670" + "url": "https://repo.magento.com/archives/amzn/amazon-pay-and-login-magento-2-module/amzn-amazon-pay-and-login-magento-2-module-3.4.1.0-patch3.zip", + "shasum": "767dd813b3253ffea92bdf6136d948b123b4ed91" }, "require": { - "amzn/amazon-pay-and-login-with-amazon-core-module": "3.4.1", - "amzn/amazon-pay-module": "3.4.1", - "amzn/login-with-amazon-module": "3.4.1" + "amzn/amazon-pay-and-login-with-amazon-core-module": "3.4.1-p3", + "amzn/amazon-pay-module": "3.4.1-p3", + "amzn/login-with-amazon-module": "3.4.1-p3" }, "type": "metapackage", "license": [ @@ -27,11 +27,11 @@ }, { "name": "amzn/amazon-pay-and-login-with-amazon-core-module", - "version": "3.4.1", + "version": "3.4.1-p3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/amzn/amazon-pay-and-login-with-amazon-core-module/amzn-amazon-pay-and-login-with-amazon-core-module-3.4.1.0.zip", - "shasum": "7af5fc8a73b93e6d95c0fca9237c502482c00b46" + "url": "https://repo.magento.com/archives/amzn/amazon-pay-and-login-with-amazon-core-module/amzn-amazon-pay-and-login-with-amazon-core-module-3.4.1.0-patch3.zip", + "shasum": "ee7b1b4ca803b40da8b86e9b848fa6311729978d" }, "require": { "amzn/amazon-pay-sdk-php": "^3.2.0", @@ -66,15 +66,15 @@ }, { "name": "amzn/amazon-pay-module", - "version": "3.4.1", + "version": "3.4.1-p3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/amzn/amazon-pay-module/amzn-amazon-pay-module-3.4.1.0.zip", - "shasum": "d1ea35ab912a879815ea428671becd6b1b7b136e" + "url": "https://repo.magento.com/archives/amzn/amazon-pay-module/amzn-amazon-pay-module-3.4.1.0-patch3.zip", + "shasum": "273a277586733cd152f5711b5845a69783423550" }, "require": { - "amzn/amazon-pay-and-login-with-amazon-core-module": "^3.4.1", - "amzn/login-with-amazon-module": "^3.4.1", + "amzn/amazon-pay-and-login-with-amazon-core-module": "^3.4.1-p3", + "amzn/login-with-amazon-module": "^3.4.1-p3", "magento/framework": "^102", "magento/module-backend": "^101", "magento/module-catalog": "^103", @@ -160,14 +160,14 @@ }, { "name": "amzn/login-with-amazon-module", - "version": "3.4.1", + "version": "3.4.1-p3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/amzn/login-with-amazon-module/amzn-login-with-amazon-module-3.4.1.0.zip", - "shasum": "e53166af4a8da22a911fc48bed7682d2283e35fe" + "url": "https://repo.magento.com/archives/amzn/login-with-amazon-module/amzn-login-with-amazon-module-3.4.1.0-patch3.zip", + "shasum": "2b6a79e0d4d5380484c721d456f4b128bdbe20db" }, "require": { - "amzn/amazon-pay-and-login-with-amazon-core-module": "^3.4.1", + "amzn/amazon-pay-and-login-with-amazon-core-module": "^3.4.1-p3", "magento/framework": "^102", "magento/module-checkout": "^100.3", "magento/module-checkout-agreements": "*", @@ -543,21 +543,21 @@ }, { "name": "colinmollenhour/php-redis-session-abstract", - "version": "v1.4.2", + "version": "v1.4.3", "source": { "type": "git", "url": "https://github.com/colinmollenhour/php-redis-session-abstract.git", - "reference": "669521218794f125c7b668252f4f576eda65e1e4" + "reference": "39ca38da5e0a981bc1a7e39a86693c128784a513" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/colinmollenhour/php-redis-session-abstract/zipball/669521218794f125c7b668252f4f576eda65e1e4", - "reference": "669521218794f125c7b668252f4f576eda65e1e4", + "url": "https://api.github.com/repos/colinmollenhour/php-redis-session-abstract/zipball/39ca38da5e0a981bc1a7e39a86693c128784a513", + "reference": "39ca38da5e0a981bc1a7e39a86693c128784a513", "shasum": "" }, "require": { "colinmollenhour/credis": "~1.6", - "php": "^5.5 || ^7.0" + "php": "^5.5 || ^7.0|| ^7.1 || ^7.2" }, "type": "library", "autoload": { @@ -576,20 +576,20 @@ ], "description": "A Redis-based session handler with optimistic locking", "homepage": "https://github.com/colinmollenhour/php-redis-session-abstract", - "time": "2020-01-08T17:41:01+00:00" + "time": "2020-10-07T09:47:22+00:00" }, { "name": "composer/ca-bundle", - "version": "1.2.7", + "version": "1.2.8", "source": { "type": "git", "url": "https://github.com/composer/ca-bundle.git", - "reference": "95c63ab2117a72f48f5a55da9740a3273d45b7fd" + "reference": "8a7ecad675253e4654ea05505233285377405215" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/95c63ab2117a72f48f5a55da9740a3273d45b7fd", - "reference": "95c63ab2117a72f48f5a55da9740a3273d45b7fd", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/8a7ecad675253e4654ea05505233285377405215", + "reference": "8a7ecad675253e4654ea05505233285377405215", "shasum": "" }, "require": { @@ -637,25 +637,29 @@ "url": "https://packagist.com", "type": "custom" }, + { + "url": "https://github.com/composer", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/composer/composer", "type": "tidelift" } ], - "time": "2020-04-08T08:27:21+00:00" + "time": "2020-08-23T12:54:47+00:00" }, { "name": "composer/composer", - "version": "1.10.10", + "version": "1.10.6", "source": { "type": "git", "url": "https://github.com/composer/composer.git", - "reference": "32966a3b1d48bc01472a8321fd6472b44fad033a" + "reference": "be81b9c4735362c26876bdbfd3b5bc7e7f711c88" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/composer/zipball/32966a3b1d48bc01472a8321fd6472b44fad033a", - "reference": "32966a3b1d48bc01472a8321fd6472b44fad033a", + "url": "https://api.github.com/repos/composer/composer/zipball/be81b9c4735362c26876bdbfd3b5bc7e7f711c88", + "reference": "be81b9c4735362c26876bdbfd3b5bc7e7f711c88", "shasum": "" }, "require": { @@ -663,7 +667,7 @@ "composer/semver": "^1.0", "composer/spdx-licenses": "^1.2", "composer/xdebug-handler": "^1.1", - "justinrainbow/json-schema": "^5.2.10", + "justinrainbow/json-schema": "^3.0 || ^4.0 || ^5.0", "php": "^5.3.2 || ^7.0", "psr/log": "^1.0", "seld/jsonlint": "^1.4", @@ -674,11 +678,12 @@ "symfony/process": "^2.7 || ^3.0 || ^4.0 || ^5.0" }, "conflict": { - "symfony/console": "2.8.38" + "symfony/console": "2.8.38", + "symfony/phpunit-bridge": "3.4.40" }, "require-dev": { "phpspec/prophecy": "^1.10", - "symfony/phpunit-bridge": "^4.2" + "symfony/phpunit-bridge": "^3.4" }, "suggest": { "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages", @@ -727,29 +732,25 @@ "url": "https://packagist.com", "type": "custom" }, - { - "url": "https://github.com/composer", - "type": "github" - }, { "url": "https://tidelift.com/funding/github/packagist/composer/composer", "type": "tidelift" } ], - "time": "2020-08-03T09:35:19+00:00" + "time": "2020-05-06T08:28:10+00:00" }, { "name": "composer/semver", - "version": "1.5.1", + "version": "1.7.1", "source": { "type": "git", "url": "https://github.com/composer/semver.git", - "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de" + "reference": "38276325bd896f90dfcfe30029aa5db40df387a7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/semver/zipball/c6bea70230ef4dd483e6bbcab6005f682ed3a8de", - "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de", + "url": "https://api.github.com/repos/composer/semver/zipball/38276325bd896f90dfcfe30029aa5db40df387a7", + "reference": "38276325bd896f90dfcfe30029aa5db40df387a7", "shasum": "" }, "require": { @@ -797,7 +798,21 @@ "validation", "versioning" ], - "time": "2020-01-13T12:06:48+00:00" + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2020-09-27T13:13:07+00:00" }, { "name": "composer/spdx-licenses", @@ -875,16 +890,16 @@ }, { "name": "composer/xdebug-handler", - "version": "1.4.2", + "version": "1.4.3", "source": { "type": "git", "url": "https://github.com/composer/xdebug-handler.git", - "reference": "fa2aaf99e2087f013a14f7432c1cd2dd7d8f1f51" + "reference": "ebd27a9866ae8254e873866f795491f02418c5a5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/fa2aaf99e2087f013a14f7432c1cd2dd7d8f1f51", - "reference": "fa2aaf99e2087f013a14f7432c1cd2dd7d8f1f51", + "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ebd27a9866ae8254e873866f795491f02418c5a5", + "reference": "ebd27a9866ae8254e873866f795491f02418c5a5", "shasum": "" }, "require": { @@ -929,7 +944,7 @@ "type": "tidelift" } ], - "time": "2020-06-04T11:16:35+00:00" + "time": "2020-08-19T10:27:58+00:00" }, { "name": "container-interop/container-interop", @@ -965,16 +980,16 @@ }, { "name": "donatj/phpuseragentparser", - "version": "v0.16.0", + "version": "v0.17.0", "source": { "type": "git", "url": "https://github.com/donatj/PhpUserAgent.git", - "reference": "b3551112ed84524aef6542a8778a3f812c8098ce" + "reference": "e159493010d4b71c9620a43fd05f8284f29dcfeb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/donatj/PhpUserAgent/zipball/b3551112ed84524aef6542a8778a3f812c8098ce", - "reference": "b3551112ed84524aef6542a8778a3f812c8098ce", + "url": "https://api.github.com/repos/donatj/PhpUserAgent/zipball/e159493010d4b71c9620a43fd05f8284f29dcfeb", + "reference": "e159493010d4b71c9620a43fd05f8284f29dcfeb", "shasum": "" }, "require": { @@ -1022,15 +1037,15 @@ "type": "github" } ], - "time": "2020-04-07T15:47:30+00:00" + "time": "2020-09-01T16:15:49+00:00" }, { "name": "dotmailer/dotmailer-magento2-extension", - "version": "4.4.0", + "version": "4.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension/dotmailer-dotmailer-magento2-extension-4.4.0.0.zip", - "shasum": "2ce54820044685bc127ec0c6bdc73d0c8c0984cd" + "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension/dotmailer-dotmailer-magento2-extension-4.4.1.0.zip", + "shasum": "4eadf48f14c689567e32fd4923674dbdac3453f6" }, "require": { "magento/framework": ">=101 <103", @@ -1084,11 +1099,11 @@ }, { "name": "dotmailer/dotmailer-magento2-extension-chat", - "version": "1.0.1", + "version": "1.0.1-p1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-chat/dotmailer-dotmailer-magento2-extension-chat-1.0.1.0.zip", - "shasum": "9c158025829fbdf2aa789cd269d67eba72d37ae4" + "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-chat/dotmailer-dotmailer-magento2-extension-chat-1.0.1.0-patch1.zip", + "shasum": "294a4e1c1fb0f17962b63e0ad8045ca5601c5096" }, "require": { "dotmailer/dotmailer-magento2-extension": "^4.3.1", @@ -1116,15 +1131,15 @@ }, { "name": "dotmailer/dotmailer-magento2-extension-package", - "version": "4.4.0", + "version": "4.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-package/dotmailer-dotmailer-magento2-extension-package-4.4.0.0.zip", - "shasum": "2d49ed099b07985806a76cd8c67cbc379f4d9361" + "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-package/dotmailer-dotmailer-magento2-extension-package-4.4.1.0.zip", + "shasum": "9931bf660abe8579abb4013b331d8de9f13f9ac1" }, "require": { - "dotmailer/dotmailer-magento2-extension": "4.4.0", - "dotmailer/dotmailer-magento2-extension-chat": "1.0.1" + "dotmailer/dotmailer-magento2-extension": "4.4.1", + "dotmailer/dotmailer-magento2-extension-chat": "1.0.1-p1" }, "type": "metapackage", "license": [ @@ -1134,16 +1149,16 @@ }, { "name": "elasticsearch/elasticsearch", - "version": "v7.8.0", + "version": "v7.9.1", "source": { "type": "git", "url": "https://github.com/elastic/elasticsearch-php.git", - "reference": "5c2d039ae7bdaa1e28f1e66971c5b3314fc36383" + "reference": "38e821f37491bd91fe06b18b88613128950a11bb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/elastic/elasticsearch-php/zipball/5c2d039ae7bdaa1e28f1e66971c5b3314fc36383", - "reference": "5c2d039ae7bdaa1e28f1e66971c5b3314fc36383", + "url": "https://api.github.com/repos/elastic/elasticsearch-php/zipball/38e821f37491bd91fe06b18b88613128950a11bb", + "reference": "38e821f37491bd91fe06b18b88613128950a11bb", "shasum": "" }, "require": { @@ -1155,6 +1170,7 @@ "require-dev": { "cpliakas/git-wrapper": "~2.0", "doctrine/inflector": "^1.3", + "ext-yaml": "*", "mockery/mockery": "^1.2", "phpstan/phpstan": "^0.12", "phpunit/phpunit": "^7.5", @@ -1193,7 +1209,7 @@ "elasticsearch", "search" ], - "time": "2020-06-18T19:23:29+00:00" + "time": "2020-10-06T13:03:50+00:00" }, { "name": "endroid/qr-code", @@ -1481,23 +1497,23 @@ }, { "name": "guzzlehttp/promises", - "version": "v1.3.1", + "version": "1.4.0", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646" + "reference": "60d379c243457e073cff02bc323a2a86cb355631" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646", + "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631", + "reference": "60d379c243457e073cff02bc323a2a86cb355631", "shasum": "" }, "require": { - "php": ">=5.5.0" + "php": ">=5.5" }, "require-dev": { - "phpunit/phpunit": "^4.0" + "symfony/phpunit-bridge": "^4.4 || ^5.1" }, "type": "library", "extra": { @@ -1528,20 +1544,20 @@ "keywords": [ "promise" ], - "time": "2016-12-20T10:07:11+00:00" + "time": "2020-09-30T07:37:28+00:00" }, { "name": "guzzlehttp/psr7", - "version": "1.6.1", + "version": "1.7.0", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "239400de7a173fe9901b9ac7c06497751f00727a" + "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a", - "reference": "239400de7a173fe9901b9ac7c06497751f00727a", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3", + "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3", "shasum": "" }, "require": { @@ -1554,15 +1570,15 @@ }, "require-dev": { "ext-zlib": "*", - "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8" + "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10" }, "suggest": { - "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses" + "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.6-dev" + "dev-master": "1.7-dev" } }, "autoload": { @@ -1599,7 +1615,7 @@ "uri", "url" ], - "time": "2019-07-01T23:21:34+00:00" + "time": "2020-09-30T07:37:11+00:00" }, { "name": "justinrainbow/json-schema", @@ -1719,25 +1735,25 @@ }, { "name": "klarna/m2-payments", - "version": "7.5.0", + "version": "7.6.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/klarna/m2-payments/klarna-m2-payments-7.5.0.0.zip", - "shasum": "dbf16872ef89126af34f2ed5b004bbb43e4b5dd0" + "url": "https://repo.magento.com/archives/klarna/m2-payments/klarna-m2-payments-7.6.1.0.zip", + "shasum": "f710eda4053427417ff89fec22206eae59742beb" }, "require": { - "klarna/module-core": "5.3.0", - "klarna/module-kp": "6.5.0", - "klarna/module-ordermanagement": "5.0.8" + "klarna/module-core": "5.3.1", + "klarna/module-kp": "6.5.2", + "klarna/module-ordermanagement": "5.1.1" }, "require-dev": { - "friendsofphp/php-cs-fixer": "~2.10.1", + "friendsofphp/php-cs-fixer": "~2.14.0", "jakub-onderka/php-console-highlighter": "^0.3.2", "jakub-onderka/php-parallel-lint": "^0.9.2", "lusitanian/oauth": "~0.8.10", "magento/magento-coding-standard": "*", "mikey179/vfsstream": "^1.6", - "pdepend/pdepend": "^2.5", + "pdepend/pdepend": "^2.5.2", "phploc/phploc": "^4.0", "phpmd/phpmd": "@stable", "phpro/grumphp": "^0.14", @@ -1754,11 +1770,11 @@ }, { "name": "klarna/module-core", - "version": "5.3.0", + "version": "5.3.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/klarna/module-core/klarna-module-core-5.3.0.0.zip", - "shasum": "56c46cba222fd87495b67b2293dee81926d28e1c" + "url": "https://repo.magento.com/archives/klarna/module-core/klarna-module-core-5.3.1.0.zip", + "shasum": "a659d1f6b73e652873711ba3c571e1b5e95c0781" }, "require": { "guzzlehttp/guzzle": "^6.0", @@ -1842,11 +1858,11 @@ }, { "name": "klarna/module-kp", - "version": "6.5.0", + "version": "6.5.2", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/klarna/module-kp/klarna-module-kp-6.5.0.0.zip", - "shasum": "b975b94bbb8c8524237e4f6375b90d12e0df732c" + "url": "https://repo.magento.com/archives/klarna/module-kp/klarna-module-kp-6.5.2.0.zip", + "shasum": "ced255886156421059394612d53ee59e3e4d3d1a" }, "require": { "klarna/module-core": "^5.2", @@ -1929,11 +1945,11 @@ }, { "name": "klarna/module-ordermanagement", - "version": "5.0.8", + "version": "5.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/klarna/module-ordermanagement/klarna-module-ordermanagement-5.0.8.0.zip", - "shasum": "87fc66c717b46238ca5db2961ba866d8871b47fa" + "url": "https://repo.magento.com/archives/klarna/module-ordermanagement/klarna-module-ordermanagement-5.1.1.0.zip", + "shasum": "cc9b557916e9c3253d132f30da2709f059595c80" }, "require": { "klarna/module-core": "^5.2", @@ -2589,41 +2605,41 @@ }, { "name": "laminas/laminas-eventmanager", - "version": "3.2.1", + "version": "3.3.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-eventmanager.git", - "reference": "ce4dc0bdf3b14b7f9815775af9dfee80a63b4748" + "reference": "1940ccf30e058b2fd66f5a9d696f1b5e0027b082" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-eventmanager/zipball/ce4dc0bdf3b14b7f9815775af9dfee80a63b4748", - "reference": "ce4dc0bdf3b14b7f9815775af9dfee80a63b4748", + "url": "https://api.github.com/repos/laminas/laminas-eventmanager/zipball/1940ccf30e058b2fd66f5a9d696f1b5e0027b082", + "reference": "1940ccf30e058b2fd66f5a9d696f1b5e0027b082", "shasum": "" }, "require": { "laminas/laminas-zendframework-bridge": "^1.0", - "php": "^5.6 || ^7.0" + "php": "^7.3 || ^8.0" }, "replace": { - "zendframework/zend-eventmanager": "self.version" + "zendframework/zend-eventmanager": "^3.2.1" }, "require-dev": { - "athletic/athletic": "^0.1", - "container-interop/container-interop": "^1.1.0", + "container-interop/container-interop": "^1.1", "laminas/laminas-coding-standard": "~1.0.0", "laminas/laminas-stdlib": "^2.7.3 || ^3.0", - "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2" + "phpbench/phpbench": "^0.17.1", + "phpunit/phpunit": "^8.5.8" }, "suggest": { - "container-interop/container-interop": "^1.1.0, to use the lazy listeners feature", + "container-interop/container-interop": "^1.1, to use the lazy listeners feature", "laminas/laminas-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.2-dev", - "dev-develop": "3.3-dev" + "dev-master": "3.3.x-dev", + "dev-develop": "3.4.x-dev" } }, "autoload": { @@ -2643,20 +2659,26 @@ "events", "laminas" ], - "time": "2019-12-31T16:44:52+00:00" + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2020-08-25T11:10:44+00:00" }, { "name": "laminas/laminas-feed", - "version": "2.12.2", + "version": "2.12.3", "source": { "type": "git", "url": "https://github.com/laminas/laminas-feed.git", - "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654" + "reference": "3c91415633cb1be6f9d78683d69b7dcbfe6b4012" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/8a193ac96ebcb3e16b6ee754ac2a889eefacb654", - "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654", + "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/3c91415633cb1be6f9d78683d69b7dcbfe6b4012", + "reference": "3c91415633cb1be6f9d78683d69b7dcbfe6b4012", "shasum": "" }, "require": { @@ -2710,7 +2732,13 @@ "feed", "laminas" ], - "time": "2020-03-29T12:36:29+00:00" + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2020-08-18T13:45:04+00:00" }, { "name": "laminas/laminas-filter", @@ -2871,16 +2899,16 @@ }, { "name": "laminas/laminas-http", - "version": "2.12.0", + "version": "2.13.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-http.git", - "reference": "48bd06ffa3a6875e2b77d6852405eb7b1589d575" + "reference": "33b7942f51ce905ce9bfc8bf28badc501d3904b5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-http/zipball/48bd06ffa3a6875e2b77d6852405eb7b1589d575", - "reference": "48bd06ffa3a6875e2b77d6852405eb7b1589d575", + "url": "https://api.github.com/repos/laminas/laminas-http/zipball/33b7942f51ce905ce9bfc8bf28badc501d3904b5", + "reference": "33b7942f51ce905ce9bfc8bf28badc501d3904b5", "shasum": "" }, "require": { @@ -2903,12 +2931,6 @@ "paragonie/certainty": "For automated management of cacert.pem" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.12.x-dev", - "dev-develop": "2.13.x-dev" - } - }, "autoload": { "psr-4": { "Laminas\\Http\\": "src/" @@ -2931,7 +2953,7 @@ "type": "community_bridge" } ], - "time": "2020-06-23T15:14:37+00:00" + "time": "2020-08-18T17:11:58+00:00" }, { "name": "laminas/laminas-hydrator", @@ -3317,16 +3339,16 @@ }, { "name": "laminas/laminas-mail", - "version": "2.12.2", + "version": "2.12.3", "source": { "type": "git", "url": "https://github.com/laminas/laminas-mail.git", - "reference": "a85bd6ec20ebc382498cc1d3086dfe3fa201849b" + "reference": "c154a733b122539ac2c894561996c770db289f70" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-mail/zipball/a85bd6ec20ebc382498cc1d3086dfe3fa201849b", - "reference": "a85bd6ec20ebc382498cc1d3086dfe3fa201849b", + "url": "https://api.github.com/repos/laminas/laminas-mail/zipball/c154a733b122539ac2c894561996c770db289f70", + "reference": "c154a733b122539ac2c894561996c770db289f70", "shasum": "" }, "require": { @@ -3381,7 +3403,7 @@ "type": "community_bridge" } ], - "time": "2020-08-06T14:33:28+00:00" + "time": "2020-08-12T14:51:33+00:00" }, { "name": "laminas/laminas-math", @@ -3493,16 +3515,16 @@ }, { "name": "laminas/laminas-modulemanager", - "version": "2.8.4", + "version": "2.9.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-modulemanager.git", - "reference": "92b1cde1aab5aef687b863face6dd5d9c6751c78" + "reference": "789bbd4ab391da9221f265f6bb2d594f8f11855b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-modulemanager/zipball/92b1cde1aab5aef687b863face6dd5d9c6751c78", - "reference": "92b1cde1aab5aef687b863face6dd5d9c6751c78", + "url": "https://api.github.com/repos/laminas/laminas-modulemanager/zipball/789bbd4ab391da9221f265f6bb2d594f8f11855b", + "reference": "789bbd4ab391da9221f265f6bb2d594f8f11855b", "shasum": "" }, "require": { @@ -3510,10 +3532,11 @@ "laminas/laminas-eventmanager": "^3.2 || ^2.6.3", "laminas/laminas-stdlib": "^3.1 || ^2.7", "laminas/laminas-zendframework-bridge": "^1.0", - "php": "^5.6 || ^7.0" + "php": "^5.6 || ^7.0", + "webimpress/safe-writer": "^1.0.2 || ^2.1" }, "replace": { - "zendframework/zend-modulemanager": "self.version" + "zendframework/zend-modulemanager": "^2.8.4" }, "require-dev": { "laminas/laminas-coding-standard": "~1.0.0", @@ -3533,8 +3556,8 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.8.x-dev", - "dev-develop": "2.9.x-dev" + "dev-master": "2.9.x-dev", + "dev-develop": "2.10.x-dev" } }, "autoload": { @@ -3552,7 +3575,13 @@ "laminas", "modulemanager" ], - "time": "2019-12-31T17:26:56+00:00" + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2020-08-25T09:29:22+00:00" }, { "name": "laminas/laminas-mvc", @@ -4002,35 +4031,35 @@ }, { "name": "laminas/laminas-stdlib", - "version": "3.2.1", + "version": "3.3.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-stdlib.git", - "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6" + "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/2b18347625a2f06a1a485acfbc870f699dbe51c6", - "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6", + "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/b9d84eaa39fde733356ea948cdef36c631f202b6", + "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6", "shasum": "" }, "require": { "laminas/laminas-zendframework-bridge": "^1.0", - "php": "^5.6 || ^7.0" + "php": "^7.3 || ^8.0" }, "replace": { - "zendframework/zend-stdlib": "self.version" + "zendframework/zend-stdlib": "^3.2.1" }, "require-dev": { "laminas/laminas-coding-standard": "~1.0.0", - "phpbench/phpbench": "^0.13", - "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2" + "phpbench/phpbench": "^0.17.1", + "phpunit/phpunit": "^9.3.7" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.2.x-dev", - "dev-develop": "3.3.x-dev" + "dev-master": "3.3.x-dev", + "dev-develop": "3.4.x-dev" } }, "autoload": { @@ -4048,7 +4077,13 @@ "laminas", "stdlib" ], - "time": "2019-12-31T17:51:15+00:00" + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2020-08-25T09:08:16+00:00" }, { "name": "laminas/laminas-text", @@ -4325,31 +4360,27 @@ }, { "name": "laminas/laminas-zendframework-bridge", - "version": "1.0.4", + "version": "1.1.1", "source": { "type": "git", "url": "https://github.com/laminas/laminas-zendframework-bridge.git", - "reference": "fcd87520e4943d968557803919523772475e8ea3" + "reference": "6ede70583e101030bcace4dcddd648f760ddf642" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3", - "reference": "fcd87520e4943d968557803919523772475e8ea3", + "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/6ede70583e101030bcace4dcddd648f760ddf642", + "reference": "6ede70583e101030bcace4dcddd648f760ddf642", "shasum": "" }, "require": { - "php": "^5.6 || ^7.0" + "php": "^5.6 || ^7.0 || ^8.0" }, "require-dev": { - "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1", + "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^9.3", "squizlabs/php_codesniffer": "^3.5" }, "type": "library", "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev", - "dev-develop": "1.1.x-dev" - }, "laminas": { "module": "Laminas\\ZendFrameworkBridge" } @@ -4379,27 +4410,27 @@ "type": "community_bridge" } ], - "time": "2020-05-20T16:45:56+00:00" + "time": "2020-09-14T14:23:00+00:00" }, { "name": "magento/adobe-stock-integration", - "version": "1.0.1", + "version": "1.0.2", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/adobe-stock-integration/magento-adobe-stock-integration-1.0.1.0.zip", - "shasum": "207f0141051c92fb777509ee7deb894471a6dbd7" + "url": "https://repo.magento.com/archives/magento/adobe-stock-integration/magento-adobe-stock-integration-1.0.2.0.zip", + "shasum": "f241027da030675c38e1c38a9630c4e71be77b33" }, "require": { - "magento/module-adobe-ims": "1.0.0", - "magento/module-adobe-ims-api": "1.0.0", - "magento/module-adobe-stock-admin-ui": "1.0.0", - "magento/module-adobe-stock-asset": "1.0.0", - "magento/module-adobe-stock-asset-api": "1.0.0", - "magento/module-adobe-stock-client": "1.0.0", - "magento/module-adobe-stock-client-api": "1.0.0", - "magento/module-adobe-stock-image": "1.0.0", - "magento/module-adobe-stock-image-admin-ui": "1.0.1", - "magento/module-adobe-stock-image-api": "1.0.0" + "magento/module-adobe-ims": "1.0.1", + "magento/module-adobe-ims-api": "1.0.1", + "magento/module-adobe-stock-admin-ui": "1.0.1", + "magento/module-adobe-stock-asset": "1.0.1", + "magento/module-adobe-stock-asset-api": "1.0.1", + "magento/module-adobe-stock-client": "1.0.1", + "magento/module-adobe-stock-client-api": "1.0.1", + "magento/module-adobe-stock-image": "1.0.1", + "magento/module-adobe-stock-image-admin-ui": "1.0.2", + "magento/module-adobe-stock-image-api": "1.0.1" }, "type": "metapackage", "description": "Adobe Stock integration" @@ -4440,13 +4471,46 @@ "description": "Magento composer library helps to instantiate Composer application and run composer commands.", "time": "2020-01-07T22:16:08+00:00" }, + { + "name": "magento/composer-root-update-plugin", + "version": "1.0.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/composer-root-update-plugin/magento-composer-root-update-plugin-1.0.0.0.zip", + "shasum": "df94356237e631516cdcaa18a6aaecea127e9623" + }, + "require": { + "composer-plugin-api": "^1.0", + "composer/composer": "<=1.10.6" + }, + "suggest": { + "magento/framework": "Enables the Magento Composer Root Update Plugin's functionality for the Web Setup Wizard" + }, + "type": "composer-plugin", + "extra": { + "class": "Magento\\ComposerRootUpdatePlugin\\Plugin\\PluginDefinition" + }, + "autoload": { + "psr-4": { + "Magento\\ComposerRootUpdatePlugin\\": "" + }, + "files": [ + "registration.php" + ] + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "Plugin to look ahead for Magento project root changes when running composer update for new Magento versions" + }, { "name": "magento/framework", - "version": "102.0.5", + "version": "102.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/framework/magento-framework-102.0.5.0.zip", - "shasum": "576880107b411605f2fae5f3c4c7b6516b11d1d8" + "url": "https://repo.magento.com/archives/magento/framework/magento-framework-102.0.6.0.zip", + "shasum": "5dd3ac0321de965f3d4769a894bb0a8ed27550c7" }, "require": { "colinmollenhour/php-redis-session-abstract": "~1.4.0", @@ -4555,11 +4619,11 @@ }, { "name": "magento/framework-message-queue", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/framework-message-queue/magento-framework-message-queue-100.3.5.0.zip", - "shasum": "f2d56382558a899dd7b04fa2b961f3ab00edc6ad" + "url": "https://repo.magento.com/archives/magento/framework-message-queue/magento-framework-message-queue-100.3.6.0.zip", + "shasum": "876005a316548d01f6a2af89c01e38ca06284567" }, "require": { "magento/framework": "102.0.*", @@ -4582,29 +4646,16 @@ }, { "name": "magento/google-shopping-ads", - "version": "3.0.2", + "version": "4.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/google-shopping-ads/magento-google-shopping-ads-3.0.2.0.zip", - "shasum": "9ae1bcb06b17792fbad7bf6acbe7b101057d4aa5" + "url": "https://repo.magento.com/archives/magento/google-shopping-ads/magento-google-shopping-ads-4.0.1.0.zip", + "shasum": "ba1efed03c142908f53a02cce6704672c379a60d" }, "require": { - "guzzlehttp/guzzle": ">=6.0", - "guzzlehttp/psr7": "~1.0", "magento/framework": ">=101.0.4", - "magento/module-backend": ">=100.2.4", - "magento/module-bundle": ">=100.2.3", - "magento/module-catalog": ">=102.0.4", - "magento/module-catalog-inventory": ">=100.2.3", - "magento/module-checkout": ">=100.2.4", - "magento/module-config": ">=101.0.4", - "magento/module-configurable-product": ">=100.2.4", - "magento/module-directory": ">=100.2.3", - "magento/module-downloadable": ">=100.2.3", "magento/module-eav": ">=101.0.3", - "magento/module-store": ">=100.2.3", - "magento/module-ui": ">=101.0.4", - "php": "7.0.2||7.0.4||>=7.0.6 <7.4" + "php": "7.0.2||7.0.4||>=7.0.6" }, "type": "magento2-module", "autoload": { @@ -4653,25 +4704,25 @@ }, { "name": "magento/inventory-composer-metapackage", - "version": "1.1.5", + "version": "1.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/inventory-composer-metapackage/magento-inventory-composer-metapackage-1.1.5.0.zip", - "shasum": "02a2350c24d00860aa55f15e5057f5ee85f0aa1e" + "url": "https://repo.magento.com/archives/magento/inventory-composer-metapackage/magento-inventory-composer-metapackage-1.1.6.0.zip", + "shasum": "7ea8ae2b3e6044d59b71939ed14837ba313b7059" }, "require": { "magento/inventory-composer-installer": "1.1.0", - "magento/module-inventory": "1.0.8", - "magento/module-inventory-admin-ui": "1.0.8", + "magento/module-inventory": "1.0.9", + "magento/module-inventory-admin-ui": "1.0.10", "magento/module-inventory-advanced-checkout": "1.0.1", "magento/module-inventory-api": "1.0.8", "magento/module-inventory-bundle-product": "1.0.6", "magento/module-inventory-bundle-product-admin-ui": "1.0.6", - "magento/module-inventory-cache": "1.0.6", - "magento/module-inventory-catalog": "1.0.8", - "magento/module-inventory-catalog-admin-ui": "1.0.8", + "magento/module-inventory-cache": "1.0.7", + "magento/module-inventory-catalog": "1.0.10", + "magento/module-inventory-catalog-admin-ui": "1.0.9", "magento/module-inventory-catalog-api": "1.1.2", - "magento/module-inventory-catalog-search": "1.0.7", + "magento/module-inventory-catalog-search": "1.0.8", "magento/module-inventory-configurable-product": "1.0.8", "magento/module-inventory-configurable-product-admin-ui": "1.0.7", "magento/module-inventory-configurable-product-indexer": "1.0.6", @@ -4688,23 +4739,23 @@ "magento/module-inventory-grouped-product-admin-ui": "1.0.8", "magento/module-inventory-grouped-product-indexer": "1.0.6", "magento/module-inventory-import-export": "1.0.8", - "magento/module-inventory-indexer": "1.0.8", - "magento/module-inventory-low-quantity-notification": "1.0.8", - "magento/module-inventory-low-quantity-notification-admin-ui": "1.0.7", + "magento/module-inventory-indexer": "1.0.9", + "magento/module-inventory-low-quantity-notification": "1.0.9", + "magento/module-inventory-low-quantity-notification-admin-ui": "1.0.8", "magento/module-inventory-low-quantity-notification-api": "1.0.6", "magento/module-inventory-multi-dimensional-indexer-api": "1.0.7", "magento/module-inventory-product-alert": "1.0.8", "magento/module-inventory-requisition-list": "1.0.1", - "magento/module-inventory-reservation-cli": "1.0.2", - "magento/module-inventory-reservations": "1.0.7", + "magento/module-inventory-reservation-cli": "1.0.3", + "magento/module-inventory-reservations": "1.0.8", "magento/module-inventory-reservations-api": "1.0.6", - "magento/module-inventory-sales": "1.0.8", + "magento/module-inventory-sales": "1.0.9", "magento/module-inventory-sales-admin-ui": "1.0.8", "magento/module-inventory-sales-api": "1.0.7", "magento/module-inventory-sales-frontend-ui": "1.0.6", "magento/module-inventory-setup-fixture-generator": "1.0.3", "magento/module-inventory-shipping": "1.0.8", - "magento/module-inventory-shipping-admin-ui": "1.0.8", + "magento/module-inventory-shipping-admin-ui": "1.0.9", "magento/module-inventory-source-deduction-api": "1.0.8", "magento/module-inventory-source-selection": "1.0.7", "magento/module-inventory-source-selection-api": "1.2.2" @@ -4954,11 +5005,11 @@ }, { "name": "magento/magento2-base", - "version": "2.3.5", + "version": "2.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/magento2-base/magento-magento2-base-2.3.5.0.zip", - "shasum": "44bfaf8c4419c6d62d7c63eb237998e37126a96d" + "url": "https://repo.magento.com/archives/magento/magento2-base/magento-magento2-base-2.3.6.0.zip", + "shasum": "5eb86a791ca2cb7362107984e5c2854f664aab9b" }, "require": { "braintree/braintree_php": "3.35.0", @@ -5617,19 +5668,19 @@ }, { "name": "magento/module-adobe-ims", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-ims/magento-module-adobe-ims-1.0.0.0.zip", - "shasum": "710f086b6e95994efd4bc1d289dc3d5060f08f44" + "url": "https://repo.magento.com/archives/magento/module-adobe-ims/magento-module-adobe-ims-1.0.1.0.zip", + "shasum": "0d1acee77837c886a55965a9d11d6d010d2ee961" }, "require": { - "magento/framework": "~102.0.4", - "magento/module-adobe-ims-api": "1.*.*", - "magento/module-authorization": "~100.3.4", - "magento/module-backend": "~101.0.4", - "magento/module-config": "~101.1.4", - "magento/module-user": "~101.1.4", + "magento/framework": "*", + "magento/module-adobe-ims-api": "1.0.*", + "magento/module-authorization": "*", + "magento/module-backend": "*", + "magento/module-config": "*", + "magento/module-user": "*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "type": "magento2-module", @@ -5649,14 +5700,14 @@ }, { "name": "magento/module-adobe-ims-api", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-ims-api/magento-module-adobe-ims-api-1.0.0.0.zip", - "shasum": "b06bd9bb77149097697b2009021b554730413b21" + "url": "https://repo.magento.com/archives/magento/module-adobe-ims-api/magento-module-adobe-ims-api-1.0.1.0.zip", + "shasum": "8184ca2c849d7e525a2b0ae8997dcb7ca1df0b2f" }, "require": { - "magento/framework": "~102.0.4", + "magento/framework": "*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "type": "magento2-module", @@ -5676,22 +5727,22 @@ }, { "name": "magento/module-adobe-stock-admin-ui", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-admin-ui/magento-module-adobe-stock-admin-ui-1.0.0.0.zip", - "shasum": "8c78fac04b75ebaf3430a0e4dd9d9be255b3350c" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-admin-ui/magento-module-adobe-stock-admin-ui-1.0.1.0.zip", + "shasum": "6fdffb7780d558c392dceef331ac775b5b3660c1" }, "require": { - "magento/framework": "~102.0.4", - "magento/module-adobe-ims-api": "1.*.*", - "magento/module-adobe-stock-client-api": "1.*.*", - "magento/module-backend": "~101.0.4", - "magento/module-config": "~101.1.4", + "magento/framework": "*", + "magento/module-adobe-ims-api": "1.0.*", + "magento/module-adobe-stock-client-api": "1.0.*", + "magento/module-backend": "*", + "magento/module-config": "*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "suggest": { - "magento/module-cms": "~103.0.4" + "magento/module-cms": "*" }, "type": "magento2-module", "autoload": { @@ -5710,19 +5761,19 @@ }, { "name": "magento/module-adobe-stock-asset", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-asset/magento-module-adobe-stock-asset-1.0.0.0.zip", - "shasum": "d691df693547aa576bdbdc511fcf3437d729401b" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-asset/magento-module-adobe-stock-asset-1.0.1.0.zip", + "shasum": "c8d641777d114612cebd7b3bd860419934889987" }, "require": { - "magento/framework": "~102.0.4", - "magento/module-adobe-stock-asset-api": "1.*.*", - "magento/module-adobe-stock-client-api": "1.*.*", - "magento/module-config": "~101.1.4", - "magento/module-media-gallery": "~100.3.0", - "magento/module-media-gallery-api": "~100.3.0", + "magento/framework": "*", + "magento/module-adobe-stock-asset-api": "1.0.*", + "magento/module-adobe-stock-client-api": "1.0.*", + "magento/module-config": "*", + "magento/module-media-gallery": "*", + "magento/module-media-gallery-api": "*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "type": "magento2-module", @@ -5742,14 +5793,14 @@ }, { "name": "magento/module-adobe-stock-asset-api", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-asset-api/magento-module-adobe-stock-asset-api-1.0.0.0.zip", - "shasum": "74c37ce6d176428be340394c9d1ba01af054c46f" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-asset-api/magento-module-adobe-stock-asset-api-1.0.1.0.zip", + "shasum": "88a4f5749353fc6f318ace2c25405fab73635d30" }, "require": { - "magento/framework": "~102.0.4", + "magento/framework": "*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "type": "magento2-module", @@ -5769,17 +5820,17 @@ }, { "name": "magento/module-adobe-stock-client", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-client/magento-module-adobe-stock-client-1.0.0.0.zip", - "shasum": "3482b1559ebb5fb2f659d1fef1b796f8be12ae7f" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-client/magento-module-adobe-stock-client-1.0.1.0.zip", + "shasum": "c3a253135e07d3ac6ee926e052048288eec6e051" }, "require": { - "astock/stock-api-libphp": "^1.1.2", - "magento/framework": "~102.0.4", - "magento/module-adobe-ims-api": "1.*.*", - "magento/module-adobe-stock-client-api": "1.*.*", + "astock/stock-api-libphp": "^1.1.3", + "magento/framework": "*", + "magento/module-adobe-ims-api": "1.0.*", + "magento/module-adobe-stock-client-api": "1.0.*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "type": "magento2-module", @@ -5799,14 +5850,14 @@ }, { "name": "magento/module-adobe-stock-client-api", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-client-api/magento-module-adobe-stock-client-api-1.0.0.0.zip", - "shasum": "d50de661787f40fe9e357a11aec58aff78f6fc19" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-client-api/magento-module-adobe-stock-client-api-1.0.1.0.zip", + "shasum": "74cf0d23115fec3795d77b2d5e476eb7d06d33d9" }, "require": { - "magento/framework": "~102.0.4", + "magento/framework": "*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "type": "magento2-module", @@ -5826,22 +5877,22 @@ }, { "name": "magento/module-adobe-stock-image", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image/magento-module-adobe-stock-image-1.0.0.0.zip", - "shasum": "06e8de90d2e9c9e2fd9eb0d040f0a5e38190ff65" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image/magento-module-adobe-stock-image-1.0.1.0.zip", + "shasum": "48ca389d085f4398f8548bd2ce42615c7755e17f" }, "require": { - "magento/framework": "~102.0.4", - "magento/module-adobe-stock-asset-api": "1.*.*", - "magento/module-adobe-stock-client-api": "1.*.*", - "magento/module-adobe-stock-image-api": "1.*.*", - "magento/module-media-gallery-api": "~100.3.0", + "magento/framework": "*", + "magento/module-adobe-stock-asset-api": "1.0.*", + "magento/module-adobe-stock-client-api": "1.0.*", + "magento/module-adobe-stock-image-api": "1.0.*", + "magento/module-media-gallery-api": "*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "suggest": { - "magento/module-catalog": "~103.0.4" + "magento/module-catalog": "*" }, "type": "magento2-module", "autoload": { @@ -5860,25 +5911,25 @@ }, { "name": "magento/module-adobe-stock-image-admin-ui", - "version": "1.0.1", + "version": "1.0.2", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image-admin-ui/magento-module-adobe-stock-image-admin-ui-1.0.1.0.zip", - "shasum": "7aee8874378aaf13e9bb6a7fd6cafea80f3e2ec7" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image-admin-ui/magento-module-adobe-stock-image-admin-ui-1.0.2.0.zip", + "shasum": "f16c77eca30c5cec48381b10002d6735cd9fa0de" }, "require": { - "magento/framework": "~102.0.4", - "magento/module-adobe-ims": "1.*.*", - "magento/module-adobe-ims-api": "1.*.*", - "magento/module-adobe-stock-asset-api": "1.*.*", - "magento/module-adobe-stock-client-api": "1.*.*", - "magento/module-adobe-stock-image-api": "1.*.*", - "magento/module-backend": "~101.0.4", - "magento/module-ui": "~101.1.4", + "magento/framework": "*", + "magento/module-adobe-ims": "1.0.*", + "magento/module-adobe-ims-api": "1.0.*", + "magento/module-adobe-stock-asset-api": "1.0.*", + "magento/module-adobe-stock-client-api": "1.0.*", + "magento/module-adobe-stock-image-api": "1.0.*", + "magento/module-backend": "*", + "magento/module-ui": "*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "suggest": { - "magento/module-cms": "~103.0.4" + "magento/module-cms": "*" }, "type": "magento2-module", "autoload": { @@ -5897,14 +5948,14 @@ }, { "name": "magento/module-adobe-stock-image-api", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image-api/magento-module-adobe-stock-image-api-1.0.0.0.zip", - "shasum": "73de6001e60c181d353b0076bf072c89127c0d69" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image-api/magento-module-adobe-stock-image-api-1.0.1.0.zip", + "shasum": "76adcc85b56c4b0c61fe5fff94671b02bce12246" }, "require": { - "magento/framework": "~102.0.4", + "magento/framework": "*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "type": "magento2-module", @@ -6054,11 +6105,11 @@ }, { "name": "magento/module-analytics", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-analytics/magento-module-analytics-100.3.5.0.zip", - "shasum": "9bd395a51e3982f2f86bea5812ce48dc4597e8ca" + "url": "https://repo.magento.com/archives/magento/module-analytics/magento-module-analytics-100.3.6.0.zip", + "shasum": "eb12891a8cccf87fa40926714d77c5871825edaf" }, "require": { "magento/framework": "102.0.*", @@ -6085,11 +6136,11 @@ }, { "name": "magento/module-asynchronous-operations", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-asynchronous-operations/magento-module-asynchronous-operations-100.3.5.0.zip", - "shasum": "33c0400729a05e80a0911d9f5a1de38743011aeb" + "url": "https://repo.magento.com/archives/magento/module-asynchronous-operations/magento-module-asynchronous-operations-100.3.6.0.zip", + "shasum": "71c491c85bba044c46cd796e22085d02262604b0" }, "require": { "magento/framework": "102.0.*", @@ -6120,11 +6171,11 @@ }, { "name": "magento/module-authorization", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-authorization/magento-module-authorization-100.3.4.0.zip", - "shasum": "b7f9a8b38412d25f39963684fbc23fe42b18fbe7" + "url": "https://repo.magento.com/archives/magento/module-authorization/magento-module-authorization-100.3.5.0.zip", + "shasum": "f6af0187ac2cad1491511eb830d9200609f35c34" }, "require": { "magento/framework": "102.0.*", @@ -6284,11 +6335,11 @@ }, { "name": "magento/module-backend", - "version": "101.0.5", + "version": "101.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-backend/magento-module-backend-101.0.5.0.zip", - "shasum": "97b6ba680497709af06b6f650fde3a40612238e7" + "url": "https://repo.magento.com/archives/magento/module-backend/magento-module-backend-101.0.6.0.zip", + "shasum": "0fb5bc0d9ed8ce1cb51b8f0930374cc622cd3899" }, "require": { "magento/framework": "102.0.*", @@ -6360,11 +6411,11 @@ }, { "name": "magento/module-braintree", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-braintree/magento-module-braintree-100.3.5.0.zip", - "shasum": "23f784d05c3431045e435001cc3a01887d8d55ad" + "url": "https://repo.magento.com/archives/magento/module-braintree/magento-module-braintree-100.3.6.0.zip", + "shasum": "9e543332dbd185d668d08cde0367947be0464b23" }, "require": { "braintree/braintree_php": "3.35.0", @@ -6407,11 +6458,11 @@ }, { "name": "magento/module-braintree-graph-ql", - "version": "100.3.2", + "version": "100.3.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-braintree-graph-ql/magento-module-braintree-graph-ql-100.3.2.0.zip", - "shasum": "2ddc3ac79d5ecb4740b9904c3298f77c0076fbe3" + "url": "https://repo.magento.com/archives/magento/module-braintree-graph-ql/magento-module-braintree-graph-ql-100.3.3.0.zip", + "shasum": "7a9e279daa1253ef1315e29b6f28ffab0a021249" }, "require": { "magento/framework": "102.0.*", @@ -6441,11 +6492,11 @@ }, { "name": "magento/module-bundle", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-bundle/magento-module-bundle-100.3.5.0.zip", - "shasum": "b0bd30f204434536591a9d884fcb642e878bac5b" + "url": "https://repo.magento.com/archives/magento/module-bundle/magento-module-bundle-100.3.6.0.zip", + "shasum": "1de7398c89dbcbeea14f00456e55243ea1f838c2" }, "require": { "magento/framework": "102.0.*", @@ -6521,11 +6572,11 @@ }, { "name": "magento/module-bundle-import-export", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-bundle-import-export/magento-module-bundle-import-export-100.3.4.0.zip", - "shasum": "adb56b983de9cf6b26e505d43f1a3ec83ecf6098" + "url": "https://repo.magento.com/archives/magento/module-bundle-import-export/magento-module-bundle-import-export-100.3.5.0.zip", + "shasum": "5ff6980381f3b162b9e3bb60ae0d0d46580bd2c3" }, "require": { "magento/framework": "102.0.*", @@ -6582,17 +6633,18 @@ }, { "name": "magento/module-captcha", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-captcha/magento-module-captcha-100.3.5.0.zip", - "shasum": "add6039b2f8aae8e902146d35591f2be6c1ed70d" + "url": "https://repo.magento.com/archives/magento/module-captcha/magento-module-captcha-100.3.6.0.zip", + "shasum": "3d4ec22cc61a1648134b29b27d9e8faeec52031d" }, "require": { "laminas/laminas-captcha": "^2.7.1", "laminas/laminas-db": "^2.8.2", "laminas/laminas-session": "^2.7.3", "magento/framework": "102.0.*", + "magento/module-authorization": "100.3.*", "magento/module-backend": "101.0.*", "magento/module-checkout": "100.3.*", "magento/module-customer": "102.0.*", @@ -6646,11 +6698,11 @@ }, { "name": "magento/module-catalog", - "version": "103.0.5", + "version": "103.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog/magento-module-catalog-103.0.5.0.zip", - "shasum": "0e61c6128447e8565ec51dccbd184987cbc16c91" + "url": "https://repo.magento.com/archives/magento/module-catalog/magento-module-catalog-103.0.6.0.zip", + "shasum": "ac0f9d194081c3ba02adc21a5fbd6c2c090051f5" }, "require": { "magento/framework": "102.0.*", @@ -6797,11 +6849,11 @@ }, { "name": "magento/module-catalog-graph-ql", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-graph-ql/magento-module-catalog-graph-ql-100.3.5.0.zip", - "shasum": "886dc91a883514d71c2b2a784debca701579a871" + "url": "https://repo.magento.com/archives/magento/module-catalog-graph-ql/magento-module-catalog-graph-ql-100.3.6.0.zip", + "shasum": "f02f86535027c3415aea31d622a8411c3e8e085a" }, "require": { "magento/framework": "102.0.*", @@ -6836,11 +6888,11 @@ }, { "name": "magento/module-catalog-import-export", - "version": "101.0.5", + "version": "101.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-import-export/magento-module-catalog-import-export-101.0.5.0.zip", - "shasum": "a2aea6d8f53c2a0bf6805faa2b9e0f64f25a3c7a" + "url": "https://repo.magento.com/archives/magento/module-catalog-import-export/magento-module-catalog-import-export-101.0.6.0.zip", + "shasum": "c77113adc1666182e29f0d80dd52c2345ca5ecf8" }, "require": { "ext-ctype": "*", @@ -6874,11 +6926,11 @@ }, { "name": "magento/module-catalog-inventory", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-inventory/magento-module-catalog-inventory-100.3.5.0.zip", - "shasum": "7b1508cce56fac131a6bbe02d633762f7c05787b" + "url": "https://repo.magento.com/archives/magento/module-catalog-inventory/magento-module-catalog-inventory-100.3.6.0.zip", + "shasum": "405ce2cb921d6251e61df5ad9dc5ae16791c0668" }, "require": { "magento/framework": "102.0.*", @@ -6938,11 +6990,11 @@ }, { "name": "magento/module-catalog-rule", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-rule/magento-module-catalog-rule-101.1.5.0.zip", - "shasum": "03cc677562434e6792fce263e40da07221640018" + "url": "https://repo.magento.com/archives/magento/module-catalog-rule/magento-module-catalog-rule-101.1.6.0.zip", + "shasum": "dcf58c9d22d365ceaee39b2aeb5a37b41ec6cec0" }, "require": { "magento/framework": "102.0.*", @@ -7008,13 +7060,43 @@ ], "description": "N/A" }, + { + "name": "magento/module-catalog-rule-graph-ql", + "version": "100.3.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-catalog-rule-graph-ql/magento-module-catalog-rule-graph-ql-100.3.0.0.zip", + "shasum": "82845cc4469233d533c24951e75ffae990c8b631" + }, + "require": { + "magento/framework": "102.0.*", + "php": "~7.1.3||~7.2.0||~7.3.0" + }, + "suggest": { + "magento/module-catalog-rule": "101.1.*" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\CatalogRuleGraphQl\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "N/A" + }, { "name": "magento/module-catalog-search", - "version": "101.0.5", + "version": "101.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-search/magento-module-catalog-search-101.0.5.0.zip", - "shasum": "c77d85c4a5819fafc0fc251e88cd5ccf8a78a101" + "url": "https://repo.magento.com/archives/magento/module-catalog-search/magento-module-catalog-search-101.0.6.0.zip", + "shasum": "f9b7da78b5d70a04a82531d129c23e6006cd23e3" }, "require": { "magento/framework": "102.0.*", @@ -7051,11 +7133,11 @@ }, { "name": "magento/module-catalog-url-rewrite", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-url-rewrite/magento-module-catalog-url-rewrite-100.3.5.0.zip", - "shasum": "8bf1d252e0f51973ee7cbff07f11dfe87e71bc30" + "url": "https://repo.magento.com/archives/magento/module-catalog-url-rewrite/magento-module-catalog-url-rewrite-100.3.6.0.zip", + "shasum": "2bffdf611125e42ad81d3e98b329d4ebe7e5605d" }, "require": { "magento/framework": "102.0.*", @@ -7123,11 +7205,11 @@ }, { "name": "magento/module-catalog-widget", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-widget/magento-module-catalog-widget-100.3.5.0.zip", - "shasum": "30ff13f0a1eb3bebe4470ce3db67d001d5478e9d" + "url": "https://repo.magento.com/archives/magento/module-catalog-widget/magento-module-catalog-widget-100.3.6.0.zip", + "shasum": "3fcede4d687f6312bf19583d57d07e9a7bd06451" }, "require": { "magento/framework": "102.0.*", @@ -7159,14 +7241,15 @@ }, { "name": "magento/module-checkout", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-checkout/magento-module-checkout-100.3.5.0.zip", - "shasum": "f089321ca5b08026baaa1ca08505fd22c3bc95b5" + "url": "https://repo.magento.com/archives/magento/module-checkout/magento-module-checkout-100.3.6.0.zip", + "shasum": "b879f2d1f98ba983e943958488116c48ce2da843" }, "require": { "magento/framework": "102.0.*", + "magento/module-authorization": "100.3.*", "magento/module-captcha": "100.3.*", "magento/module-catalog": "103.0.*", "magento/module-catalog-inventory": "100.3.*", @@ -7270,11 +7353,11 @@ }, { "name": "magento/module-cms", - "version": "103.0.5", + "version": "103.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-cms/magento-module-cms-103.0.5.0.zip", - "shasum": "506da640118fc223d9e8c89b9bdeecc24b2d8de1" + "url": "https://repo.magento.com/archives/magento/module-cms/magento-module-cms-103.0.6.0.zip", + "shasum": "b91cee3b50776339f8cba1decbe104c50e2e8a6e" }, "require": { "magento/framework": "102.0.*", @@ -7343,11 +7426,11 @@ }, { "name": "magento/module-cms-url-rewrite", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-cms-url-rewrite/magento-module-cms-url-rewrite-100.3.4.0.zip", - "shasum": "7df716cbc611cd6a5017129be80e80303334da58" + "url": "https://repo.magento.com/archives/magento/module-cms-url-rewrite/magento-module-cms-url-rewrite-100.3.5.0.zip", + "shasum": "652031049c8d6bd0017c845a0b7bdee06d5486bb" }, "require": { "magento/framework": "102.0.*", @@ -7407,11 +7490,11 @@ }, { "name": "magento/module-config", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-config/magento-module-config-101.1.5.0.zip", - "shasum": "76f1db08a792f3d263a46e2e2fcb7c775891de4c" + "url": "https://repo.magento.com/archives/magento/module-config/magento-module-config-101.1.6.0.zip", + "shasum": "3486a146c99e129edb91c425619ee09419771b18" }, "require": { "magento/framework": "102.0.*", @@ -7474,11 +7557,11 @@ }, { "name": "magento/module-configurable-product", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-configurable-product/magento-module-configurable-product-100.3.5.0.zip", - "shasum": "b2ec4fa0385b7e827871c9313400c08e43c07092" + "url": "https://repo.magento.com/archives/magento/module-configurable-product/magento-module-configurable-product-100.3.6.0.zip", + "shasum": "2582695ffba8512a02dc18c912713c7fb72299d5" }, "require": { "magento/framework": "102.0.*", @@ -7586,11 +7669,11 @@ }, { "name": "magento/module-contact", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-contact/magento-module-contact-100.3.5.0.zip", - "shasum": "ac90db3add4bae0f07f6fcd13f6096fcc89b3dda" + "url": "https://repo.magento.com/archives/magento/module-contact/magento-module-contact-100.3.6.0.zip", + "shasum": "25c11e54448ba9a9ee0e6a5d857932a76aa11898" }, "require": { "magento/framework": "102.0.*", @@ -7739,11 +7822,11 @@ }, { "name": "magento/module-customer", - "version": "102.0.5", + "version": "102.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-customer/magento-module-customer-102.0.5.0.zip", - "shasum": "d0ac50edf69a2c9b27914607807d9bb67c49e3d1" + "url": "https://repo.magento.com/archives/magento/module-customer/magento-module-customer-102.0.6.0.zip", + "shasum": "0f6b6950a16f09e3c5cd51b8f53bd5cfa4e1e756" }, "require": { "magento/framework": "102.0.*", @@ -7885,11 +7968,11 @@ }, { "name": "magento/module-customer-import-export", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-customer-import-export/magento-module-customer-import-export-100.3.5.0.zip", - "shasum": "d74239c6a4bf928980ba030fa0f492a8e40d9d7f" + "url": "https://repo.magento.com/archives/magento/module-customer-import-export/magento-module-customer-import-export-100.3.6.0.zip", + "shasum": "1d8a9f5c28048d434c3bd9ecfcb1a01735c44a6f" }, "require": { "magento/framework": "102.0.*", @@ -7918,11 +8001,11 @@ }, { "name": "magento/module-deploy", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-deploy/magento-module-deploy-100.3.4.0.zip", - "shasum": "95d79bef2bf03ff18e4c6feedff80acc9ba2ba76" + "url": "https://repo.magento.com/archives/magento/module-deploy/magento-module-deploy-100.3.5.0.zip", + "shasum": "d50327a62dabb91a14cb7b81e073c813ca54308a" }, "require": { "magento/framework": "102.0.*", @@ -8019,11 +8102,11 @@ }, { "name": "magento/module-directory", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-directory/magento-module-directory-100.3.5.0.zip", - "shasum": "bb83cfae5ee7af13c3b001fb0ae7291027677b2c" + "url": "https://repo.magento.com/archives/magento/module-directory/magento-module-directory-100.3.6.0.zip", + "shasum": "4c229729a839bb7e04ceba703c2c6a993ea08a8d" }, "require": { "lib-libxml": "*", @@ -8080,11 +8163,11 @@ }, { "name": "magento/module-downloadable", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-downloadable/magento-module-downloadable-100.3.5.0.zip", - "shasum": "aa959dc1139294d14b46dc49fa303d2b012bdbe9" + "url": "https://repo.magento.com/archives/magento/module-downloadable/magento-module-downloadable-100.3.6.0.zip", + "shasum": "91e1b3edc4075055e9ff7972505b05d81b1295bc" }, "require": { "magento/framework": "102.0.*", @@ -8160,11 +8243,11 @@ }, { "name": "magento/module-downloadable-import-export", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-downloadable-import-export/magento-module-downloadable-import-export-100.3.5.0.zip", - "shasum": "2b60b8b872d50bbbedf425f857ec316ae675b07d" + "url": "https://repo.magento.com/archives/magento/module-downloadable-import-export/magento-module-downloadable-import-export-100.3.6.0.zip", + "shasum": "bf400b888ff439da7f711551ec67b27e2a4c7e08" }, "require": { "magento/framework": "102.0.*", @@ -8193,11 +8276,11 @@ }, { "name": "magento/module-eav", - "version": "102.0.5", + "version": "102.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-eav/magento-module-eav-102.0.5.0.zip", - "shasum": "d673598cb27104689beb0b8afc086b6ca7bed1e9" + "url": "https://repo.magento.com/archives/magento/module-eav/magento-module-eav-102.0.6.0.zip", + "shasum": "b7714410250144144b6925c26d12a5013327adc0" }, "require": { "magento/framework": "102.0.*", @@ -8256,11 +8339,11 @@ }, { "name": "magento/module-elasticsearch", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-elasticsearch/magento-module-elasticsearch-100.3.5.0.zip", - "shasum": "096420d703b89ef9f3dd7ef86cbbcf85773d9bb8" + "url": "https://repo.magento.com/archives/magento/module-elasticsearch/magento-module-elasticsearch-100.3.6.0.zip", + "shasum": "979918c36328d69dbad72aa02adb8a841d9baea1" }, "require": { "elasticsearch/elasticsearch": "~2.0||~5.1||~6.1||~7.6", @@ -8295,11 +8378,11 @@ }, { "name": "magento/module-elasticsearch-6", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-elasticsearch-6/magento-module-elasticsearch-6-100.3.4.0.zip", - "shasum": "f96bb9a9087294780c3b9545badaf765ff5630a2" + "url": "https://repo.magento.com/archives/magento/module-elasticsearch-6/magento-module-elasticsearch-6-100.3.5.0.zip", + "shasum": "afcce2741e1555772961636367a7adc2aa37d088" }, "require": { "elasticsearch/elasticsearch": "~2.0||~5.1||~6.1||~7.6", @@ -8330,11 +8413,11 @@ }, { "name": "magento/module-elasticsearch-7", - "version": "100.3.0", + "version": "100.3.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-elasticsearch-7/magento-module-elasticsearch-7-100.3.0.0.zip", - "shasum": "a1676353edf098ef3265b71addbcd2db8e07ee2f" + "url": "https://repo.magento.com/archives/magento/module-elasticsearch-7/magento-module-elasticsearch-7-100.3.1.0.zip", + "shasum": "93ac35756331177019e28cb131677623bb3c3657" }, "require": { "elasticsearch/elasticsearch": "~2.0||~5.1||~6.1||~7.6 ", @@ -8365,11 +8448,11 @@ }, { "name": "magento/module-email", - "version": "101.0.5", + "version": "101.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-email/magento-module-email-101.0.5.0.zip", - "shasum": "0625386382db4eeca3ba27eb9b5d7f38fc883c20" + "url": "https://repo.magento.com/archives/magento/module-email/magento-module-email-101.0.6.0.zip", + "shasum": "f7e17b5dbc1211411e4a1236842237fcd2f2092e" }, "require": { "magento/framework": "102.0.*", @@ -8432,11 +8515,11 @@ }, { "name": "magento/module-fedex", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-fedex/magento-module-fedex-100.3.4.0.zip", - "shasum": "6e8840e022073bdf584fe268ad52c4dac6907f7e" + "url": "https://repo.magento.com/archives/magento/module-fedex/magento-module-fedex-100.3.5.0.zip", + "shasum": "a11dd0e6e016b6a1c8de05be637155d3de453142" }, "require": { "lib-libxml": "*", @@ -8569,11 +8652,11 @@ }, { "name": "magento/module-google-optimizer", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-google-optimizer/magento-module-google-optimizer-100.3.4.0.zip", - "shasum": "4ae786d43c5e0fd364c5f2ce3e77da9d78e96d3d" + "url": "https://repo.magento.com/archives/magento/module-google-optimizer/magento-module-google-optimizer-100.3.5.0.zip", + "shasum": "cfce6f3912f1524d899ecebd9736fab0c01dc7c9" }, "require": { "magento/framework": "102.0.*", @@ -8725,11 +8808,11 @@ }, { "name": "magento/module-grouped-product", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-grouped-product/magento-module-grouped-product-100.3.5.0.zip", - "shasum": "dff2cd3eadb14e05ce647448487b4e5607a8fb45" + "url": "https://repo.magento.com/archives/magento/module-grouped-product/magento-module-grouped-product-100.3.6.0.zip", + "shasum": "af702b3a26b41c3b9b812e75ce25879fb7a9565a" }, "require": { "magento/framework": "102.0.*", @@ -8767,11 +8850,11 @@ }, { "name": "magento/module-grouped-product-graph-ql", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-grouped-product-graph-ql/magento-module-grouped-product-graph-ql-100.3.4.0.zip", - "shasum": "26127e7f50ae9d9b75840acdf3855b395e00eeec" + "url": "https://repo.magento.com/archives/magento/module-grouped-product-graph-ql/magento-module-grouped-product-graph-ql-100.3.5.0.zip", + "shasum": "0cd2c5455443c4ce76e4e679f07a53b6b7a09c60" }, "require": { "magento/framework": "102.0.*", @@ -8797,11 +8880,11 @@ }, { "name": "magento/module-import-export", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-import-export/magento-module-import-export-100.3.5.0.zip", - "shasum": "b5233cd6e72f88cdd9c4057a0a8d3a0bf8d5fe5d" + "url": "https://repo.magento.com/archives/magento/module-import-export/magento-module-import-export-100.3.6.0.zip", + "shasum": "9491cff094a4a998058b7626128fa3e4a2c62119" }, "require": { "ext-ctype": "*", @@ -8831,11 +8914,11 @@ }, { "name": "magento/module-indexer", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-indexer/magento-module-indexer-100.3.5.0.zip", - "shasum": "97f2e2ab30599c77ded2b8a4e86370a1c0d93496" + "url": "https://repo.magento.com/archives/magento/module-indexer/magento-module-indexer-100.3.6.0.zip", + "shasum": "27895412c08d6dfa27828d2d779604a89aa7e31a" }, "require": { "magento/framework": "102.0.*", @@ -8859,11 +8942,11 @@ }, { "name": "magento/module-instant-purchase", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-instant-purchase/magento-module-instant-purchase-100.3.5.0.zip", - "shasum": "9127850f81113ec2db99857a8138f67fbad9d1fa" + "url": "https://repo.magento.com/archives/magento/module-instant-purchase/magento-module-instant-purchase-100.3.6.0.zip", + "shasum": "af95153ab051b45e803b8b0b3041e3a853421926" }, "require": { "magento/framework": "102.0.*", @@ -8926,11 +9009,11 @@ }, { "name": "magento/module-inventory", - "version": "1.0.8", + "version": "1.0.9", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory/magento-module-inventory-1.0.8.0.zip", - "shasum": "7c455268fb2d8e1c8bfbeed31a6048142d36f2b9" + "url": "https://repo.magento.com/archives/magento/module-inventory/magento-module-inventory-1.0.9.0.zip", + "shasum": "8d889f4d490573e492ce036aa4716fa43d8b9c25" }, "require": { "magento/framework": "*", @@ -8954,11 +9037,11 @@ }, { "name": "magento/module-inventory-admin-ui", - "version": "1.0.8", + "version": "1.0.10", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-admin-ui/magento-module-inventory-admin-ui-1.0.8.0.zip", - "shasum": "1165039e07ac657868e460cb4d6180fe8cfdcdb6" + "url": "https://repo.magento.com/archives/magento/module-inventory-admin-ui/magento-module-inventory-admin-ui-1.0.10.0.zip", + "shasum": "2f6f666afe849bc885a0db9ae2b231d3fdb77648" }, "require": { "magento/framework": "*", @@ -9109,11 +9192,11 @@ }, { "name": "magento/module-inventory-cache", - "version": "1.0.6", + "version": "1.0.7", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-cache/magento-module-inventory-cache-1.0.6.0.zip", - "shasum": "27dcf978f8950047fb387be19e7d4a6d03ecd19f" + "url": "https://repo.magento.com/archives/magento/module-inventory-cache/magento-module-inventory-cache-1.0.7.0.zip", + "shasum": "2e6176849868d9a801076f85ae73bfe98637da47" }, "require": { "magento/framework": "*", @@ -9141,11 +9224,11 @@ }, { "name": "magento/module-inventory-catalog", - "version": "1.0.8", + "version": "1.0.10", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-catalog/magento-module-inventory-catalog-1.0.8.0.zip", - "shasum": "f388df40f070d6a8280a86c6e8fd8deb27df2c1c" + "url": "https://repo.magento.com/archives/magento/module-inventory-catalog/magento-module-inventory-catalog-1.0.10.0.zip", + "shasum": "5e2507061bcd0d0a6fc26239c4d305d41ee8955e" }, "require": { "magento/framework": "*", @@ -9181,11 +9264,11 @@ }, { "name": "magento/module-inventory-catalog-admin-ui", - "version": "1.0.8", + "version": "1.0.9", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-catalog-admin-ui/magento-module-inventory-catalog-admin-ui-1.0.8.0.zip", - "shasum": "0a0f4f4ae2f543efddc7c919ae5ffc4b78b31a66" + "url": "https://repo.magento.com/archives/magento/module-inventory-catalog-admin-ui/magento-module-inventory-catalog-admin-ui-1.0.9.0.zip", + "shasum": "c718c7a5e21842af052f02da363105964201ee53" }, "require": { "magento/framework": "*", @@ -9247,11 +9330,11 @@ }, { "name": "magento/module-inventory-catalog-search", - "version": "1.0.7", + "version": "1.0.8", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-catalog-search/magento-module-inventory-catalog-search-1.0.7.0.zip", - "shasum": "5e184ca90ba144bcca0056e1c314d143daca17dc" + "url": "https://repo.magento.com/archives/magento/module-inventory-catalog-search/magento-module-inventory-catalog-search-1.0.8.0.zip", + "shasum": "5e03d3c2a265be4be867c102fb9d45ed12d8c813" }, "require": { "magento/framework": "*", @@ -9798,11 +9881,11 @@ }, { "name": "magento/module-inventory-indexer", - "version": "1.0.8", + "version": "1.0.9", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-indexer/magento-module-inventory-indexer-1.0.8.0.zip", - "shasum": "021e084cae3e7b8699953bf33c325b735b622dd2" + "url": "https://repo.magento.com/archives/magento/module-inventory-indexer/magento-module-inventory-indexer-1.0.9.0.zip", + "shasum": "e78400492dac10faccaee6b38d5dabcd446f1620" }, "require": { "magento/framework": "*", @@ -9834,11 +9917,11 @@ }, { "name": "magento/module-inventory-low-quantity-notification", - "version": "1.0.8", + "version": "1.0.9", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-low-quantity-notification/magento-module-inventory-low-quantity-notification-1.0.8.0.zip", - "shasum": "8753b5535ce3c563ba1be02faa85ca362bcc6adf" + "url": "https://repo.magento.com/archives/magento/module-inventory-low-quantity-notification/magento-module-inventory-low-quantity-notification-1.0.9.0.zip", + "shasum": "48159395fddda55f5e1bd2fef6428c1e2bcc74ad" }, "require": { "magento/framework": "*", @@ -9870,11 +9953,11 @@ }, { "name": "magento/module-inventory-low-quantity-notification-admin-ui", - "version": "1.0.7", + "version": "1.0.8", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-low-quantity-notification-admin-ui/magento-module-inventory-low-quantity-notification-admin-ui-1.0.7.0.zip", - "shasum": "f866a90bdc313bdd4db8a597c64f942cff5efd28" + "url": "https://repo.magento.com/archives/magento/module-inventory-low-quantity-notification-admin-ui/magento-module-inventory-low-quantity-notification-admin-ui-1.0.8.0.zip", + "shasum": "74d8c8198bf9c2e6ba88d7070debb4740f2936b8" }, "require": { "magento/framework": "*", @@ -10028,11 +10111,11 @@ }, { "name": "magento/module-inventory-reservation-cli", - "version": "1.0.2", + "version": "1.0.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-reservation-cli/magento-module-inventory-reservation-cli-1.0.2.0.zip", - "shasum": "8d6620c638a31ea78b55eb67b4479c5f31c0365c" + "url": "https://repo.magento.com/archives/magento/module-inventory-reservation-cli/magento-module-inventory-reservation-cli-1.0.3.0.zip", + "shasum": "efc7b7f27ff1c163fd97885d4c18602c6e9b57e6" }, "require": { "magento/framework": "*", @@ -10060,11 +10143,11 @@ }, { "name": "magento/module-inventory-reservations", - "version": "1.0.7", + "version": "1.0.8", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-reservations/magento-module-inventory-reservations-1.0.7.0.zip", - "shasum": "2828010766f461ea2d25e59bac9e89f8ddaa7935" + "url": "https://repo.magento.com/archives/magento/module-inventory-reservations/magento-module-inventory-reservations-1.0.8.0.zip", + "shasum": "45e9b29ebaaf4398858189c505a4e07f1391ad4f" }, "require": { "magento/framework": "*", @@ -10115,11 +10198,11 @@ }, { "name": "magento/module-inventory-sales", - "version": "1.0.8", + "version": "1.0.9", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-sales/magento-module-inventory-sales-1.0.8.0.zip", - "shasum": "6a72d4ceb55548cab4a4b60767822925d148a924" + "url": "https://repo.magento.com/archives/magento/module-inventory-sales/magento-module-inventory-sales-1.0.9.0.zip", + "shasum": "fea14388086205521cfee99b9d4d788bb3d2143e" }, "require": { "magento/framework": "*", @@ -10319,11 +10402,11 @@ }, { "name": "magento/module-inventory-shipping-admin-ui", - "version": "1.0.8", + "version": "1.0.9", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-shipping-admin-ui/magento-module-inventory-shipping-admin-ui-1.0.8.0.zip", - "shasum": "607761941b8cc2ee07e4985c9c405daa608d0033" + "url": "https://repo.magento.com/archives/magento/module-inventory-shipping-admin-ui/magento-module-inventory-shipping-admin-ui-1.0.9.0.zip", + "shasum": "b0c4f9cd308e8009b092f4f61c6cab0108ac22c7" }, "require": { "magento/framework": "*", @@ -10558,11 +10641,11 @@ }, { "name": "magento/module-media-storage", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-storage/magento-module-media-storage-100.3.5.0.zip", - "shasum": "770765c3219f6e9b2a9219bda5f323c9a2bbe67f" + "url": "https://repo.magento.com/archives/magento/module-media-storage/magento-module-media-storage-100.3.6.0.zip", + "shasum": "f9ca6cc7c2a7ca61da2dc6f887cc93f78a6c1043" }, "require": { "magento/framework": "102.0.*", @@ -10590,11 +10673,11 @@ }, { "name": "magento/module-message-queue", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-message-queue/magento-module-message-queue-100.3.4.0.zip", - "shasum": "3d7120d33a81009ff6a75dcf947187b73e18793a" + "url": "https://repo.magento.com/archives/magento/module-message-queue/magento-module-message-queue-100.3.5.0.zip", + "shasum": "330682b1d9eb0c8ba7d31eaaa62c0539d08820ee" }, "require": { "magento/framework": "102.0.*", @@ -10684,11 +10767,11 @@ }, { "name": "magento/module-msrp-grouped-product", - "version": "100.3.3", + "version": "100.3.4", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-msrp-grouped-product/magento-module-msrp-grouped-product-100.3.3.0.zip", - "shasum": "7aeb4e2fc75e2d26eebdf25b08fb0d6ec1b36890" + "url": "https://repo.magento.com/archives/magento/module-msrp-grouped-product/magento-module-msrp-grouped-product-100.3.4.0.zip", + "shasum": "324c11109d7f88a4f2565abd9382e1ae6d0dcd01" }, "require": { "magento/framework": "102.0.*", @@ -10714,14 +10797,15 @@ }, { "name": "magento/module-multishipping", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-multishipping/magento-module-multishipping-100.3.5.0.zip", - "shasum": "f7041b4f635f04e7ce43ce75d980bc1de0626b16" + "url": "https://repo.magento.com/archives/magento/module-multishipping/magento-module-multishipping-100.3.6.0.zip", + "shasum": "f37d9a47554aecf41bb74a2463692cbf86839537" }, "require": { "magento/framework": "102.0.*", + "magento/module-captcha": "100.3.*", "magento/module-checkout": "100.3.*", "magento/module-customer": "102.0.*", "magento/module-directory": "100.3.*", @@ -10813,11 +10897,11 @@ }, { "name": "magento/module-newsletter", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-newsletter/magento-module-newsletter-100.3.5.0.zip", - "shasum": "d4016f9448165145b33c27f1f362924f7046b3ec" + "url": "https://repo.magento.com/archives/magento/module-newsletter/magento-module-newsletter-100.3.6.0.zip", + "shasum": "574a87c5f5bdc2e1937d2d1ccd3bd5fee18866e1" }, "require": { "magento/framework": "102.0.*", @@ -10920,11 +11004,11 @@ }, { "name": "magento/module-page-cache", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-page-cache/magento-module-page-cache-100.3.5.0.zip", - "shasum": "471c6c14cdef8f95272ef5464a188015e222f75a" + "url": "https://repo.magento.com/archives/magento/module-page-cache/magento-module-page-cache-100.3.6.0.zip", + "shasum": "b1ea6cda1108f7742176fcd42494466ae3660367" }, "require": { "magento/framework": "102.0.*", @@ -10950,11 +11034,11 @@ }, { "name": "magento/module-payment", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-payment/magento-module-payment-100.3.5.0.zip", - "shasum": "2ba5a4fc32d0abc41a9ee15c9fd951b60a14f279" + "url": "https://repo.magento.com/archives/magento/module-payment/magento-module-payment-100.3.6.0.zip", + "shasum": "a7ad27dd0f167becf119f6bba933abc5703eb70a" }, "require": { "magento/framework": "102.0.*", @@ -10983,11 +11067,11 @@ }, { "name": "magento/module-paypal", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-paypal/magento-module-paypal-100.3.5.0.zip", - "shasum": "fecb00a2d07fb7c29f370d9381239a6c255c334d" + "url": "https://repo.magento.com/archives/magento/module-paypal/magento-module-paypal-100.3.6.0.zip", + "shasum": "5aa34096fe4c435aabbb83b4ab6ee9a46aca2c9c" }, "require": { "lib-libxml": "*", @@ -11127,11 +11211,11 @@ }, { "name": "magento/module-persistent", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-persistent/magento-module-persistent-100.3.5.0.zip", - "shasum": "fff2b8564b689ee03390402f420655050da21e64" + "url": "https://repo.magento.com/archives/magento/module-persistent/magento-module-persistent-100.3.6.0.zip", + "shasum": "79f96718b546a9ccd22418258205360585bcf080" }, "require": { "magento/framework": "102.0.*", @@ -11160,11 +11244,11 @@ }, { "name": "magento/module-product-alert", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-product-alert/magento-module-product-alert-100.3.5.0.zip", - "shasum": "09671613f8eed2b5df5502addae25a92146aca9b" + "url": "https://repo.magento.com/archives/magento/module-product-alert/magento-module-product-alert-100.3.6.0.zip", + "shasum": "5ba5c1ed395eccea76f57cf214cdc69c54cf121a" }, "require": { "magento/framework": "102.0.*", @@ -11172,6 +11256,7 @@ "magento/module-catalog": "103.0.*", "magento/module-customer": "102.0.*", "magento/module-store": "101.0.*", + "magento/module-theme": "101.0.*", "php": "~7.1.3||~7.2.0||~7.3.0" }, "suggest": { @@ -11194,11 +11279,11 @@ }, { "name": "magento/module-product-video", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-product-video/magento-module-product-video-100.3.5.0.zip", - "shasum": "d14b870b6979f68c499f0790847c20b69045432c" + "url": "https://repo.magento.com/archives/magento/module-product-video/magento-module-product-video-100.3.6.0.zip", + "shasum": "8766c6fd3f36449b6e6848d6a4d6e7ef2322e079" }, "require": { "magento/framework": "102.0.*", @@ -11231,11 +11316,11 @@ }, { "name": "magento/module-quote", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-quote/magento-module-quote-101.1.5.0.zip", - "shasum": "3e155895b482f01197c841eecde3c4bd159d992e" + "url": "https://repo.magento.com/archives/magento/module-quote/magento-module-quote-101.1.6.0.zip", + "shasum": "2043b611b8f314b8d66aa001411e4bd157e7dbcf" }, "require": { "magento/framework": "102.0.*", @@ -11275,11 +11360,11 @@ }, { "name": "magento/module-quote-analytics", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-quote-analytics/magento-module-quote-analytics-100.3.4.0.zip", - "shasum": "040351b47b6b44b4682015ea6a7369c19ef2eda8" + "url": "https://repo.magento.com/archives/magento/module-quote-analytics/magento-module-quote-analytics-100.3.5.0.zip", + "shasum": "9d35bf6a1058deac8effbda4d041f6e23bb22c89" }, "require": { "magento/framework": "102.0.*", @@ -11304,11 +11389,11 @@ }, { "name": "magento/module-quote-graph-ql", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-quote-graph-ql/magento-module-quote-graph-ql-100.3.5.0.zip", - "shasum": "59a9dee66844f2e149c3008c7093729f4ab0e656" + "url": "https://repo.magento.com/archives/magento/module-quote-graph-ql/magento-module-quote-graph-ql-100.3.6.0.zip", + "shasum": "198f8952f988947c9f2f0de7bdea5b2252743406" }, "require": { "magento/framework": "102.0.*", @@ -11408,11 +11493,11 @@ }, { "name": "magento/module-reports", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-reports/magento-module-reports-100.3.5.0.zip", - "shasum": "21d76a652705a242465f9d62649cd8e1413cb131" + "url": "https://repo.magento.com/archives/magento/module-reports/magento-module-reports-100.3.6.0.zip", + "shasum": "e454141ac1454839cda044205fa1aa4a910b1646" }, "require": { "magento/framework": "102.0.*", @@ -11478,11 +11563,11 @@ }, { "name": "magento/module-review", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-review/magento-module-review-100.3.5.0.zip", - "shasum": "1d8c8db3b53d09be9619e08d539da30a9a84ca98" + "url": "https://repo.magento.com/archives/magento/module-review/magento-module-review-100.3.6.0.zip", + "shasum": "e8308b1447b60080a8d4195a5c387f47a87823e1" }, "require": { "magento/framework": "102.0.*", @@ -11639,11 +11724,11 @@ }, { "name": "magento/module-sales", - "version": "102.0.5", + "version": "102.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sales/magento-module-sales-102.0.5.0.zip", - "shasum": "4b4f42cb0d3cc86b8db60b4da22bc47be52648bc" + "url": "https://repo.magento.com/archives/magento/module-sales/magento-module-sales-102.0.6.0.zip", + "shasum": "d370bdda0693544e74b83e0ae7aa2a53488ca530" }, "require": { "magento/framework": "102.0.*", @@ -11782,11 +11867,11 @@ }, { "name": "magento/module-sales-rule", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sales-rule/magento-module-sales-rule-101.1.5.0.zip", - "shasum": "c69b5ff1a1740574f5f212deb985709e5dcebb9d" + "url": "https://repo.magento.com/archives/magento/module-sales-rule/magento-module-sales-rule-101.1.6.0.zip", + "shasum": "c50bb0d32a3063779a916922af01ee1efd539938" }, "require": { "magento/framework": "102.0.*", @@ -11889,11 +11974,11 @@ }, { "name": "magento/module-search", - "version": "101.0.5", + "version": "101.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-search/magento-module-search-101.0.5.0.zip", - "shasum": "bfef11ff4d00ab02e174cf200642f6cbf6ac9ec9" + "url": "https://repo.magento.com/archives/magento/module-search/magento-module-search-101.0.6.0.zip", + "shasum": "806907e8ebdeeab0571e465187507b5c40f6b144" }, "require": { "magento/framework": "102.0.*", @@ -12101,11 +12186,11 @@ }, { "name": "magento/module-sitemap", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sitemap/magento-module-sitemap-100.3.5.0.zip", - "shasum": "e039b87d1ef93b114f1f1eed8bfcb6b4fd7c68ff" + "url": "https://repo.magento.com/archives/magento/module-sitemap/magento-module-sitemap-100.3.6.0.zip", + "shasum": "44582749734f7f418e8b451afb898f8641b04b6d" }, "require": { "magento/framework": "102.0.*", @@ -12140,11 +12225,11 @@ }, { "name": "magento/module-store", - "version": "101.0.5", + "version": "101.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-store/magento-module-store-101.0.5.0.zip", - "shasum": "d7c0eefb2f7c5c3d09bc337193a46ef7eb60540b" + "url": "https://repo.magento.com/archives/magento/module-store/magento-module-store-101.0.6.0.zip", + "shasum": "9a793146e8c8d3c40f1ed447478438d217406535" }, "require": { "magento/framework": "102.0.*", @@ -12293,11 +12378,11 @@ }, { "name": "magento/module-swatches", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-swatches/magento-module-swatches-100.3.5.0.zip", - "shasum": "ed376fb0d0e1f8ef82793a5fbb32524eb203b1ce" + "url": "https://repo.magento.com/archives/magento/module-swatches/magento-module-swatches-100.3.6.0.zip", + "shasum": "077072098a6cd90f0ed970f5d6d0126b6bc25cb2" }, "require": { "magento/framework": "102.0.*", @@ -12394,11 +12479,11 @@ }, { "name": "magento/module-tax", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-tax/magento-module-tax-100.3.5.0.zip", - "shasum": "f610f8ae48e1d193187a270df28f8d1614cc656e" + "url": "https://repo.magento.com/archives/magento/module-tax/magento-module-tax-100.3.6.0.zip", + "shasum": "1a5d655aadf90b3bbb6337aed21888c178cc1bb0" }, "require": { "magento/framework": "102.0.*", @@ -12499,11 +12584,11 @@ }, { "name": "magento/module-theme", - "version": "101.0.5", + "version": "101.0.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-theme/magento-module-theme-101.0.5.0.zip", - "shasum": "d7485f7189914fe59a490dcd89867cfe53447dea" + "url": "https://repo.magento.com/archives/magento/module-theme/magento-module-theme-101.0.6.0.zip", + "shasum": "d7e663c6b2ea003b0b88a8341553e67ecf274aec" }, "require": { "magento/framework": "102.0.*", @@ -12571,11 +12656,11 @@ }, { "name": "magento/module-tinymce-3", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-tinymce-3/magento-module-tinymce-3-100.3.5.0.zip", - "shasum": "8ce8b1fbe6e9ea03336aaf9aeb90594eb319ca0b" + "url": "https://repo.magento.com/archives/magento/module-tinymce-3/magento-module-tinymce-3-100.3.6.0.zip", + "shasum": "67046d180ed5ed97ecff1ede122af6ccc1e3982d" }, "require": { "magento/framework": "102.0.*", @@ -12606,11 +12691,11 @@ }, { "name": "magento/module-translation", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-translation/magento-module-translation-100.3.5.0.zip", - "shasum": "22f0c984fabba7ee04a953ee9a2e6e4f76a97665" + "url": "https://repo.magento.com/archives/magento/module-translation/magento-module-translation-100.3.6.0.zip", + "shasum": "3b2bd37e991700567d812f9d3fdef63cbeefa8bf" }, "require": { "magento/framework": "102.0.*", @@ -12640,11 +12725,11 @@ }, { "name": "magento/module-ui", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-ui/magento-module-ui-101.1.5.0.zip", - "shasum": "ae1eefd94eb62e8e0ce32d24b96f5b6099b4a607" + "url": "https://repo.magento.com/archives/magento/module-ui/magento-module-ui-101.1.6.0.zip", + "shasum": "2517b9dcd24f279697dbdbaab8447a61ddaf69f5" }, "require": { "magento/framework": "102.0.*", @@ -12676,11 +12761,11 @@ }, { "name": "magento/module-ups", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-ups/magento-module-ups-100.3.5.0.zip", - "shasum": "19e923673638558daa46f216a7423ec641dc9ec1" + "url": "https://repo.magento.com/archives/magento/module-ups/magento-module-ups-100.3.6.0.zip", + "shasum": "467289aeed56a6d67dfc72cd8587a54a2f00e536" }, "require": { "magento/framework": "102.0.*", @@ -12746,11 +12831,11 @@ }, { "name": "magento/module-url-rewrite-graph-ql", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-url-rewrite-graph-ql/magento-module-url-rewrite-graph-ql-100.3.5.0.zip", - "shasum": "08d7837f658bc08e4a279030d4029a2c6f7bda2c" + "url": "https://repo.magento.com/archives/magento/module-url-rewrite-graph-ql/magento-module-url-rewrite-graph-ql-100.3.6.0.zip", + "shasum": "9618f81614ed43e38a421cbc664c98d8707faccb" }, "require": { "magento/framework": "102.0.*", @@ -12777,11 +12862,11 @@ }, { "name": "magento/module-user", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-user/magento-module-user-101.1.5.0.zip", - "shasum": "423be90044cb3c3c8c5239f0a8a2fa1eef26fa8c" + "url": "https://repo.magento.com/archives/magento/module-user/magento-module-user-101.1.6.0.zip", + "shasum": "6b73cd893c4b3ee4ff236969896262ba2c029084" }, "require": { "magento/framework": "102.0.*", @@ -12877,11 +12962,11 @@ }, { "name": "magento/module-vault", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-vault/magento-module-vault-101.1.5.0.zip", - "shasum": "00e602a862274666f4770e12eb9b128c7e64d420" + "url": "https://repo.magento.com/archives/magento/module-vault/magento-module-vault-101.1.6.0.zip", + "shasum": "263be5b1bba742578ff63273b3fa79084ef45897" }, "require": { "magento/framework": "102.0.*", @@ -12966,11 +13051,11 @@ }, { "name": "magento/module-webapi", - "version": "100.3.4", + "version": "100.3.5", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-webapi/magento-module-webapi-100.3.4.0.zip", - "shasum": "91fdd2b46466e69c88fce02d69c0596104d24d08" + "url": "https://repo.magento.com/archives/magento/module-webapi/magento-module-webapi-100.3.5.0.zip", + "shasum": "a44c5801c04c7749966b7f92b4cf9b01ba3a348f" }, "require": { "magento/framework": "102.0.*", @@ -13001,11 +13086,11 @@ }, { "name": "magento/module-webapi-async", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-webapi-async/magento-module-webapi-async-100.3.5.0.zip", - "shasum": "ca9f17d104dafc32a56f8a3b97d2b4e95b27ea70" + "url": "https://repo.magento.com/archives/magento/module-webapi-async/magento-module-webapi-async-100.3.6.0.zip", + "shasum": "bbfe4feccba768f2c4f8b8592c7c72e69a7fbc64" }, "require": { "magento/framework": "102.0.*", @@ -13173,11 +13258,11 @@ }, { "name": "magento/module-wishlist", - "version": "101.1.5", + "version": "101.1.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-wishlist/magento-module-wishlist-101.1.5.0.zip", - "shasum": "e0921f64c20dc7922b2f1f00400fa9e66bbbbb22" + "url": "https://repo.magento.com/archives/magento/module-wishlist/magento-module-wishlist-101.1.6.0.zip", + "shasum": "3582146188e83f3c0df5b55a502cedc8066bf0f3" }, "require": { "magento/framework": "102.0.*", @@ -13278,21 +13363,21 @@ }, { "name": "magento/product-community-edition", - "version": "2.3.5", + "version": "2.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/product-community-edition/magento-product-community-edition-2.3.5.0.zip", - "shasum": "0580c9dce5982bdf780cb9102d9aa357659d58e3" + "url": "https://repo.magento.com/archives/magento/product-community-edition/magento-product-community-edition-2.3.6.0.zip", + "shasum": "464614b41bc8eaf2520327cad579904cdf9d1b72" }, "require": { - "amzn/amazon-pay-and-login-magento-2-module": "3.4.1", + "amzn/amazon-pay-and-login-magento-2-module": "3.4.1-p3", "braintree/braintree_php": "3.35.0", "colinmollenhour/cache-backend-file": "~1.4.1", "colinmollenhour/cache-backend-redis": "1.10.6", "colinmollenhour/credis": "1.10.0", "colinmollenhour/php-redis-session-abstract": "~1.4.0", "composer/composer": "^1.9", - "dotmailer/dotmailer-magento2-extension-package": "4.4.0", + "dotmailer/dotmailer-magento2-extension-package": "4.4.1", "elasticsearch/elasticsearch": "~2.0||~5.1||~6.1||~7.6", "ext-bcmath": "*", "ext-ctype": "*", @@ -13310,7 +13395,7 @@ "ext-xsl": "*", "ext-zip": "*", "guzzlehttp/guzzle": "^6.3.3", - "klarna/m2-payments": "7.5.0", + "klarna/m2-payments": "7.6.1", "laminas/laminas-captcha": "^2.7.1", "laminas/laminas-code": "~3.3.0", "laminas/laminas-config": "^2.6.0", @@ -13341,14 +13426,14 @@ "laminas/laminas-validator": "^2.6.0", "laminas/laminas-view": "~2.11.2", "lib-libxml": "*", - "magento/adobe-stock-integration": "1.0.1", + "magento/adobe-stock-integration": "1.0.2", "magento/composer": "~1.5.0", - "magento/framework": "102.0.5", + "magento/framework": "102.0.6", "magento/framework-amqp": "100.3.5", "magento/framework-bulk": "100.3.5", - "magento/framework-message-queue": "100.3.5", - "magento/google-shopping-ads": "3.0.2", - "magento/inventory-composer-metapackage": "1.1.5", + "magento/framework-message-queue": "100.3.6", + "magento/google-shopping-ads": "4.0.1", + "magento/inventory-composer-metapackage": "1.1.6", "magento/language-de_de": "100.3.4", "magento/language-en_us": "100.3.4", "magento/language-es_es": "100.3.4", @@ -13357,183 +13442,184 @@ "magento/language-pt_br": "100.3.4", "magento/language-zh_hans_cn": "100.3.4", "magento/magento-composer-installer": ">=0.1.11", - "magento/magento2-base": "2.3.5", + "magento/magento2-base": "2.3.6", "magento/module-admin-analytics": "100.3.2", "magento/module-admin-notification": "100.3.5", "magento/module-advanced-pricing-import-export": "100.3.4", "magento/module-advanced-search": "100.3.4", "magento/module-amqp": "100.3.4", "magento/module-amqp-store": "100.3.1", - "magento/module-analytics": "100.3.5", - "magento/module-asynchronous-operations": "100.3.5", - "magento/module-authorization": "100.3.4", + "magento/module-analytics": "100.3.6", + "magento/module-asynchronous-operations": "100.3.6", + "magento/module-authorization": "100.3.5", "magento/module-authorizenet": "100.3.5", "magento/module-authorizenet-acceptjs": "100.3.4", "magento/module-authorizenet-cardinal": "100.3.1", "magento/module-authorizenet-graph-ql": "100.3.2", - "magento/module-backend": "101.0.5", + "magento/module-backend": "101.0.6", "magento/module-backup": "100.3.5", - "magento/module-braintree": "100.3.5", - "magento/module-braintree-graph-ql": "100.3.2", - "magento/module-bundle": "100.3.5", + "magento/module-braintree": "100.3.6", + "magento/module-braintree-graph-ql": "100.3.3", + "magento/module-bundle": "100.3.6", "magento/module-bundle-graph-ql": "100.3.4", - "magento/module-bundle-import-export": "100.3.4", + "magento/module-bundle-import-export": "100.3.5", "magento/module-cache-invalidate": "100.3.4", - "magento/module-captcha": "100.3.5", + "magento/module-captcha": "100.3.6", "magento/module-cardinal-commerce": "100.3.2", - "magento/module-catalog": "103.0.5", + "magento/module-catalog": "103.0.6", "magento/module-catalog-analytics": "100.3.4", "magento/module-catalog-cms-graph-ql": "100.3.0", "magento/module-catalog-customer-graph-ql": "100.3.0", - "magento/module-catalog-graph-ql": "100.3.5", - "magento/module-catalog-import-export": "101.0.5", - "magento/module-catalog-inventory": "100.3.5", + "magento/module-catalog-graph-ql": "100.3.6", + "magento/module-catalog-import-export": "101.0.6", + "magento/module-catalog-inventory": "100.3.6", "magento/module-catalog-inventory-graph-ql": "100.3.4", - "magento/module-catalog-rule": "101.1.5", + "magento/module-catalog-rule": "101.1.6", "magento/module-catalog-rule-configurable": "100.3.5", - "magento/module-catalog-search": "101.0.5", - "magento/module-catalog-url-rewrite": "100.3.5", + "magento/module-catalog-rule-graph-ql": "100.3.0", + "magento/module-catalog-search": "101.0.6", + "magento/module-catalog-url-rewrite": "100.3.6", "magento/module-catalog-url-rewrite-graph-ql": "100.3.5", - "magento/module-catalog-widget": "100.3.5", - "magento/module-checkout": "100.3.5", + "magento/module-catalog-widget": "100.3.6", + "magento/module-checkout": "100.3.6", "magento/module-checkout-agreements": "100.3.5", "magento/module-checkout-agreements-graph-ql": "100.3.1", - "magento/module-cms": "103.0.5", + "magento/module-cms": "103.0.6", "magento/module-cms-graph-ql": "100.3.4", - "magento/module-cms-url-rewrite": "100.3.4", + "magento/module-cms-url-rewrite": "100.3.5", "magento/module-cms-url-rewrite-graph-ql": "100.3.4", - "magento/module-config": "101.1.5", + "magento/module-config": "101.1.6", "magento/module-configurable-import-export": "100.3.4", - "magento/module-configurable-product": "100.3.5", + "magento/module-configurable-product": "100.3.6", "magento/module-configurable-product-graph-ql": "100.3.5", "magento/module-configurable-product-sales": "100.3.4", - "magento/module-contact": "100.3.5", + "magento/module-contact": "100.3.6", "magento/module-cookie": "100.3.5", "magento/module-cron": "100.3.5", "magento/module-csp": "100.3.0", "magento/module-currency-symbol": "100.3.5", - "magento/module-customer": "102.0.5", + "magento/module-customer": "102.0.6", "magento/module-customer-analytics": "100.3.4", "magento/module-customer-downloadable-graph-ql": "100.3.0", "magento/module-customer-graph-ql": "100.3.5", - "magento/module-customer-import-export": "100.3.5", - "magento/module-deploy": "100.3.4", + "magento/module-customer-import-export": "100.3.6", + "magento/module-deploy": "100.3.5", "magento/module-developer": "100.3.5", "magento/module-dhl": "100.3.5", - "magento/module-directory": "100.3.5", + "magento/module-directory": "100.3.6", "magento/module-directory-graph-ql": "100.3.3", - "magento/module-downloadable": "100.3.5", + "magento/module-downloadable": "100.3.6", "magento/module-downloadable-graph-ql": "100.3.4", - "magento/module-downloadable-import-export": "100.3.5", - "magento/module-eav": "102.0.5", + "magento/module-downloadable-import-export": "100.3.6", + "magento/module-eav": "102.0.6", "magento/module-eav-graph-ql": "100.3.4", - "magento/module-elasticsearch": "100.3.5", - "magento/module-elasticsearch-6": "100.3.4", - "magento/module-elasticsearch-7": "100.3.0", - "magento/module-email": "101.0.5", + "magento/module-elasticsearch": "100.3.6", + "magento/module-elasticsearch-6": "100.3.5", + "magento/module-elasticsearch-7": "100.3.1", + "magento/module-email": "101.0.6", "magento/module-encryption-key": "100.3.5", - "magento/module-fedex": "100.3.4", + "magento/module-fedex": "100.3.5", "magento/module-gift-message": "100.3.4", "magento/module-google-adwords": "100.3.5", "magento/module-google-analytics": "100.3.4", - "magento/module-google-optimizer": "100.3.4", + "magento/module-google-optimizer": "100.3.5", "magento/module-graph-ql": "100.3.5", "magento/module-graph-ql-cache": "100.3.2", "magento/module-grouped-catalog-inventory": "100.3.3", "magento/module-grouped-import-export": "100.3.4", - "magento/module-grouped-product": "100.3.5", - "magento/module-grouped-product-graph-ql": "100.3.4", - "magento/module-import-export": "100.3.5", - "magento/module-indexer": "100.3.5", - "magento/module-instant-purchase": "100.3.5", + "magento/module-grouped-product": "100.3.6", + "magento/module-grouped-product-graph-ql": "100.3.5", + "magento/module-import-export": "100.3.6", + "magento/module-indexer": "100.3.6", + "magento/module-instant-purchase": "100.3.6", "magento/module-integration": "100.3.5", "magento/module-layered-navigation": "100.3.4", "magento/module-marketplace": "100.3.4", "magento/module-media-gallery": "100.3.1", "magento/module-media-gallery-api": "100.3.0", - "magento/module-media-storage": "100.3.5", - "magento/module-message-queue": "100.3.4", + "magento/module-media-storage": "100.3.6", + "magento/module-message-queue": "100.3.5", "magento/module-msrp": "100.3.5", "magento/module-msrp-configurable-product": "100.3.3", - "magento/module-msrp-grouped-product": "100.3.3", - "magento/module-multishipping": "100.3.5", + "magento/module-msrp-grouped-product": "100.3.4", + "magento/module-multishipping": "100.3.6", "magento/module-mysql-mq": "100.3.4", "magento/module-new-relic-reporting": "100.3.4", - "magento/module-newsletter": "100.3.5", + "magento/module-newsletter": "100.3.6", "magento/module-offline-payments": "100.3.4", "magento/module-offline-shipping": "100.3.5", - "magento/module-page-cache": "100.3.5", - "magento/module-payment": "100.3.5", - "magento/module-paypal": "100.3.5", + "magento/module-page-cache": "100.3.6", + "magento/module-payment": "100.3.6", + "magento/module-paypal": "100.3.6", "magento/module-paypal-captcha": "100.3.2", "magento/module-paypal-graph-ql": "100.3.1", "magento/module-paypal-recaptcha": "1.0.1", - "magento/module-persistent": "100.3.5", - "magento/module-product-alert": "100.3.5", - "magento/module-product-video": "100.3.5", - "magento/module-quote": "101.1.5", - "magento/module-quote-analytics": "100.3.4", - "magento/module-quote-graph-ql": "100.3.5", + "magento/module-persistent": "100.3.6", + "magento/module-product-alert": "100.3.6", + "magento/module-product-video": "100.3.6", + "magento/module-quote": "101.1.6", + "magento/module-quote-analytics": "100.3.5", + "magento/module-quote-graph-ql": "100.3.6", "magento/module-related-product-graph-ql": "100.3.1", "magento/module-release-notification": "100.3.4", - "magento/module-reports": "100.3.5", + "magento/module-reports": "100.3.6", "magento/module-require-js": "100.3.4", - "magento/module-review": "100.3.5", + "magento/module-review": "100.3.6", "magento/module-review-analytics": "100.3.4", "magento/module-robots": "101.0.4", "magento/module-rss": "100.3.4", "magento/module-rule": "100.3.5", - "magento/module-sales": "102.0.5", + "magento/module-sales": "102.0.6", "magento/module-sales-analytics": "100.3.4", "magento/module-sales-graph-ql": "100.3.3", "magento/module-sales-inventory": "100.3.4", - "magento/module-sales-rule": "101.1.5", + "magento/module-sales-rule": "101.1.6", "magento/module-sales-sequence": "100.3.4", "magento/module-sample-data": "100.3.4", - "magento/module-search": "101.0.5", + "magento/module-search": "101.0.6", "magento/module-security": "100.3.5", "magento/module-send-friend": "100.3.4", "magento/module-send-friend-graph-ql": "100.3.3", "magento/module-shipping": "100.3.5", "magento/module-signifyd": "100.3.5", - "magento/module-sitemap": "100.3.5", - "magento/module-store": "101.0.5", + "magento/module-sitemap": "100.3.6", + "magento/module-store": "101.0.6", "magento/module-store-graph-ql": "100.3.4", "magento/module-swagger": "100.3.5", "magento/module-swagger-webapi": "100.3.4", "magento/module-swagger-webapi-async": "100.3.4", - "magento/module-swatches": "100.3.5", + "magento/module-swatches": "100.3.6", "magento/module-swatches-graph-ql": "100.3.5", "magento/module-swatches-layered-navigation": "100.3.4", - "magento/module-tax": "100.3.5", + "magento/module-tax": "100.3.6", "magento/module-tax-graph-ql": "100.3.4", "magento/module-tax-import-export": "100.3.4", - "magento/module-theme": "101.0.5", + "magento/module-theme": "101.0.6", "magento/module-theme-graph-ql": "100.3.3", - "magento/module-tinymce-3": "100.3.5", - "magento/module-translation": "100.3.5", - "magento/module-ui": "101.1.5", - "magento/module-ups": "100.3.5", + "magento/module-tinymce-3": "100.3.6", + "magento/module-translation": "100.3.6", + "magento/module-ui": "101.1.6", + "magento/module-ups": "100.3.6", "magento/module-url-rewrite": "101.1.5", - "magento/module-url-rewrite-graph-ql": "100.3.5", - "magento/module-user": "101.1.5", + "magento/module-url-rewrite-graph-ql": "100.3.6", + "magento/module-user": "101.1.6", "magento/module-usps": "100.3.5", "magento/module-variable": "100.3.4", - "magento/module-vault": "101.1.5", + "magento/module-vault": "101.1.6", "magento/module-vault-graph-ql": "100.3.2", "magento/module-version": "100.3.4", - "magento/module-webapi": "100.3.4", - "magento/module-webapi-async": "100.3.5", + "magento/module-webapi": "100.3.5", + "magento/module-webapi-async": "100.3.6", "magento/module-webapi-security": "100.3.4", "magento/module-weee": "100.3.5", "magento/module-weee-graph-ql": "100.3.4", "magento/module-widget": "101.1.4", - "magento/module-wishlist": "101.1.5", + "magento/module-wishlist": "101.1.6", "magento/module-wishlist-analytics": "100.3.4", "magento/module-wishlist-graph-ql": "100.3.3", "magento/theme-adminhtml-backend": "100.3.5", - "magento/theme-frontend-blank": "100.3.5", - "magento/theme-frontend-luma": "100.3.5", + "magento/theme-frontend-blank": "100.3.6", + "magento/theme-frontend-luma": "100.3.6", "magento/zendframework1": "~1.14.2", "monolog/monolog": "^1.17", "msp/recaptcha": "2.2.3", @@ -13551,7 +13637,7 @@ "tedivm/jshrink": "~1.3.0", "temando/module-shipping": "2.0.0", "tubalmartin/cssmin": "4.1.1", - "vertex/product-magento-module": "3.4.0", + "vertex/product-magento-module": "3.4.3", "webonyx/graphql-php": "^0.13.8", "wikimedia/less.php": "~1.8.0", "yotpo/magento2-module-yotpo-reviews-bundle": "3.1.0" @@ -13589,11 +13675,11 @@ }, { "name": "magento/theme-frontend-blank", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/theme-frontend-blank/magento-theme-frontend-blank-100.3.5.0.zip", - "shasum": "f0e75444b5b01011d429ffccdf36e4c8635cb8f9" + "url": "https://repo.magento.com/archives/magento/theme-frontend-blank/magento-theme-frontend-blank-100.3.6.0.zip", + "shasum": "d66b2b8d303e265edc461d27825053e98c59c4d9" }, "require": { "magento/framework": "102.0.*", @@ -13613,11 +13699,11 @@ }, { "name": "magento/theme-frontend-luma", - "version": "100.3.5", + "version": "100.3.6", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/theme-frontend-luma/magento-theme-frontend-luma-100.3.5.0.zip", - "shasum": "b538c03c982a1329fe87c0d8d4e2c2de90c3f57b" + "url": "https://repo.magento.com/archives/magento/theme-frontend-luma/magento-theme-frontend-luma-100.3.6.0.zip", + "shasum": "d5b9670c351389a0c67545f29f933fc61b6374dc" }, "require": { "magento/framework": "102.0.*", @@ -14270,16 +14356,16 @@ }, { "name": "phpseclib/phpseclib", - "version": "2.0.28", + "version": "2.0.29", "source": { "type": "git", "url": "https://github.com/phpseclib/phpseclib.git", - "reference": "d1ca58cf33cb21046d702ae3a7b14fdacd9f3260" + "reference": "497856a8d997f640b4a516062f84228a772a48a8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/d1ca58cf33cb21046d702ae3a7b14fdacd9f3260", - "reference": "d1ca58cf33cb21046d702ae3a7b14fdacd9f3260", + "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/497856a8d997f640b4a516062f84228a772a48a8", + "reference": "497856a8d997f640b4a516062f84228a772a48a8", "shasum": "" }, "require": { @@ -14288,7 +14374,6 @@ "require-dev": { "phing/phing": "~2.7", "phpunit/phpunit": "^4.8.35|^5.7|^6.0", - "sami/sami": "~2.0", "squizlabs/php_codesniffer": "~2.0" }, "suggest": { @@ -14372,7 +14457,7 @@ "type": "tidelift" } ], - "time": "2020-07-08T09:08:33+00:00" + "time": "2020-09-08T04:24:43+00:00" }, { "name": "psr/container", @@ -14690,16 +14775,16 @@ }, { "name": "seld/jsonlint", - "version": "1.8.0", + "version": "1.8.2", "source": { "type": "git", "url": "https://github.com/Seldaek/jsonlint.git", - "reference": "ff2aa5420bfbc296cf6a0bc785fa5b35736de7c1" + "reference": "590cfec960b77fd55e39b7d9246659e95dd6d337" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/ff2aa5420bfbc296cf6a0bc785fa5b35736de7c1", - "reference": "ff2aa5420bfbc296cf6a0bc785fa5b35736de7c1", + "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/590cfec960b77fd55e39b7d9246659e95dd6d337", + "reference": "590cfec960b77fd55e39b7d9246659e95dd6d337", "shasum": "" }, "require": { @@ -14745,7 +14830,7 @@ "type": "tidelift" } ], - "time": "2020-04-30T19:05:18+00:00" + "time": "2020-08-25T06:56:57+00:00" }, { "name": "seld/phar-utils", @@ -14857,16 +14942,16 @@ }, { "name": "symfony/console", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "55d07021da933dd0d633ffdab6f45d5b230c7e02" + "reference": "90933b39c7b312fc3ceaa1ddeac7eb48cb953124" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/55d07021da933dd0d633ffdab6f45d5b230c7e02", - "reference": "55d07021da933dd0d633ffdab6f45d5b230c7e02", + "url": "https://api.github.com/repos/symfony/console/zipball/90933b39c7b312fc3ceaa1ddeac7eb48cb953124", + "reference": "90933b39c7b312fc3ceaa1ddeac7eb48cb953124", "shasum": "" }, "require": { @@ -14944,11 +15029,11 @@ "type": "tidelift" } ], - "time": "2020-07-06T13:18:39+00:00" + "time": "2020-09-15T07:58:55+00:00" }, { "name": "symfony/css-selector", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", @@ -15015,16 +15100,16 @@ }, { "name": "symfony/event-dispatcher", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "6140fc7047dafc5abbe84ba16a34a86c0b0229b8" + "reference": "e17bb5e0663dc725f7cdcafc932132735b4725cd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/6140fc7047dafc5abbe84ba16a34a86c0b0229b8", - "reference": "6140fc7047dafc5abbe84ba16a34a86c0b0229b8", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/e17bb5e0663dc725f7cdcafc932132735b4725cd", + "reference": "e17bb5e0663dc725f7cdcafc932132735b4725cd", "shasum": "" }, "require": { @@ -15042,6 +15127,7 @@ "psr/log": "~1.0", "symfony/config": "^3.4|^4.0|^5.0", "symfony/dependency-injection": "^3.4|^4.0|^5.0", + "symfony/error-handler": "~3.4|~4.4", "symfony/expression-language": "^3.4|^4.0|^5.0", "symfony/http-foundation": "^3.4|^4.0|^5.0", "symfony/service-contracts": "^1.1|^2", @@ -15095,7 +15181,7 @@ "type": "tidelift" } ], - "time": "2020-06-18T17:59:13+00:00" + "time": "2020-09-18T14:07:46+00:00" }, { "name": "symfony/event-dispatcher-contracts", @@ -15175,16 +15261,16 @@ }, { "name": "symfony/filesystem", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "b27f491309db5757816db672b256ea2e03677d30" + "reference": "ebc51494739d3b081ea543ed7c462fa73a4f74db" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/b27f491309db5757816db672b256ea2e03677d30", - "reference": "b27f491309db5757816db672b256ea2e03677d30", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/ebc51494739d3b081ea543ed7c462fa73a4f74db", + "reference": "ebc51494739d3b081ea543ed7c462fa73a4f74db", "shasum": "" }, "require": { @@ -15235,20 +15321,20 @@ "type": "tidelift" } ], - "time": "2020-05-30T18:50:54+00:00" + "time": "2020-09-27T13:54:16+00:00" }, { "name": "symfony/finder", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "2727aa35fddfada1dd37599948528e9b152eb742" + "reference": "60d08560f9aa72997c44077c40d47aa28a963230" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/2727aa35fddfada1dd37599948528e9b152eb742", - "reference": "2727aa35fddfada1dd37599948528e9b152eb742", + "url": "https://api.github.com/repos/symfony/finder/zipball/60d08560f9aa72997c44077c40d47aa28a963230", + "reference": "60d08560f9aa72997c44077c40d47aa28a963230", "shasum": "" }, "require": { @@ -15298,20 +15384,20 @@ "type": "tidelift" } ], - "time": "2020-07-05T09:39:30+00:00" + "time": "2020-10-02T07:34:48+00:00" }, { "name": "symfony/options-resolver", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", - "reference": "376bd3a02e7946dbf90b01563361b47dde425025" + "reference": "02b120a79ff06b779819f1594a300226bfc75105" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/options-resolver/zipball/376bd3a02e7946dbf90b01563361b47dde425025", - "reference": "376bd3a02e7946dbf90b01563361b47dde425025", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/02b120a79ff06b779819f1594a300226bfc75105", + "reference": "02b120a79ff06b779819f1594a300226bfc75105", "shasum": "" }, "require": { @@ -15366,7 +15452,7 @@ "type": "tidelift" } ], - "time": "2020-07-10T09:12:14+00:00" + "time": "2020-09-24T16:40:22+00:00" }, { "name": "symfony/polyfill-ctype", @@ -16217,16 +16303,16 @@ }, { "name": "symfony/process", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "65e70bab62f3da7089a8d4591fb23fbacacb3479" + "reference": "9b887acc522935f77555ae8813495958c7771ba7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/65e70bab62f3da7089a8d4591fb23fbacacb3479", - "reference": "65e70bab62f3da7089a8d4591fb23fbacacb3479", + "url": "https://api.github.com/repos/symfony/process/zipball/9b887acc522935f77555ae8813495958c7771ba7", + "reference": "9b887acc522935f77555ae8813495958c7771ba7", "shasum": "" }, "require": { @@ -16276,20 +16362,20 @@ "type": "tidelift" } ], - "time": "2020-07-23T08:31:43+00:00" + "time": "2020-09-02T16:08:58+00:00" }, { "name": "symfony/property-access", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/property-access.git", - "reference": "eb617a57fc38f43bf4208dcbdb2dab3c14d9cbd9" + "reference": "4c43f7ff784e1e3ee1c96e15f76b342af6617b39" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/property-access/zipball/eb617a57fc38f43bf4208dcbdb2dab3c14d9cbd9", - "reference": "eb617a57fc38f43bf4208dcbdb2dab3c14d9cbd9", + "url": "https://api.github.com/repos/symfony/property-access/zipball/4c43f7ff784e1e3ee1c96e15f76b342af6617b39", + "reference": "4c43f7ff784e1e3ee1c96e15f76b342af6617b39", "shasum": "" }, "require": { @@ -16358,20 +16444,20 @@ "type": "tidelift" } ], - "time": "2020-07-03T07:49:29+00:00" + "time": "2020-09-02T16:23:27+00:00" }, { "name": "symfony/property-info", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/property-info.git", - "reference": "0c4813930953f6db6c62ebec8ee695a897b89020" + "reference": "22518930091e0bdb249694efc509e3697f7e325e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/property-info/zipball/0c4813930953f6db6c62ebec8ee695a897b89020", - "reference": "0c4813930953f6db6c62ebec8ee695a897b89020", + "url": "https://api.github.com/repos/symfony/property-info/zipball/22518930091e0bdb249694efc509e3697f7e325e", + "reference": "22518930091e0bdb249694efc509e3697f7e325e", "shasum": "" }, "require": { @@ -16449,20 +16535,20 @@ "type": "tidelift" } ], - "time": "2020-06-18T21:19:28+00:00" + "time": "2020-09-07T05:10:28+00:00" }, { "name": "symfony/service-contracts", - "version": "v2.1.3", + "version": "v2.2.0", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "58c7475e5457c5492c26cc740cc0ad7464be9442" + "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/58c7475e5457c5492c26cc740cc0ad7464be9442", - "reference": "58c7475e5457c5492c26cc740cc0ad7464be9442", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1", + "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1", "shasum": "" }, "require": { @@ -16475,7 +16561,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.1-dev" + "dev-master": "2.2-dev" }, "thanks": { "name": "symfony/contracts", @@ -16525,20 +16611,20 @@ "type": "tidelift" } ], - "time": "2020-07-06T13:23:11+00:00" + "time": "2020-09-07T11:33:47+00:00" }, { "name": "symfony/string", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "f629ba9b611c76224feb21fe2bcbf0b6f992300b" + "reference": "4a9afe9d07bac506f75bcee8ed3ce76da5a9343e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/f629ba9b611c76224feb21fe2bcbf0b6f992300b", - "reference": "f629ba9b611c76224feb21fe2bcbf0b6f992300b", + "url": "https://api.github.com/repos/symfony/string/zipball/4a9afe9d07bac506f75bcee8ed3ce76da5a9343e", + "reference": "4a9afe9d07bac506f75bcee8ed3ce76da5a9343e", "shasum": "" }, "require": { @@ -16610,7 +16696,7 @@ "type": "tidelift" } ], - "time": "2020-07-08T08:27:49+00:00" + "time": "2020-09-15T12:23:47+00:00" }, { "name": "tedivm/jshrink", @@ -16806,11 +16892,11 @@ }, { "name": "vertex/module-address-validation", - "version": "1.1.0", + "version": "1.1.2", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/vertex/module-address-validation/vertex-module-address-validation-1.1.0.0.zip", - "shasum": "5ea30b8c087a9631f6dd6a3e83996f41e314d8d5" + "url": "https://repo.magento.com/archives/vertex/module-address-validation/vertex-module-address-validation-1.1.2.0.zip", + "shasum": "4a878033de8bf793e5f994aa0aaa17136010f2c3" }, "require": { "ext-json": "*", @@ -16823,7 +16909,7 @@ "magento/module-store": "^100|^101", "magento/module-tax": "^100", "php": "^7.0", - "vertex/module-tax": "^3.4.0" + "vertex/module-tax": "^3.4.2" }, "require-dev": { "ext-dom": "*", @@ -16848,11 +16934,11 @@ }, { "name": "vertex/module-tax", - "version": "3.4.0", + "version": "3.4.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/vertex/module-tax/vertex-module-tax-3.4.0.0.zip", - "shasum": "7762da2cba9ec285fed2b2eac6c872fe27770e36" + "url": "https://repo.magento.com/archives/vertex/module-tax/vertex-module-tax-3.4.3.0.zip", + "shasum": "6479c6679532204f8ad29e77fe3e83c941ce52a5" }, "require": { "ext-intl": "*", @@ -16868,7 +16954,7 @@ "magento/module-customer": "^100|^101|^102", "magento/module-directory": "^100", "magento/module-eav": "^100|^101|^102", - "magento/module-quote": ">=101.1.0 <= 101.1.5 || 101.2.0", + "magento/module-quote": ">=101.1.0 <= 101.1.6 || 101.2.0", "magento/module-sales": "^100|^101|^102", "magento/module-shipping": "^100", "magento/module-store": "^100|^101", @@ -16912,20 +16998,28 @@ }, { "name": "vertex/product-magento-module", - "version": "3.4.0", + "version": "3.4.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/vertex/product-magento-module/vertex-product-magento-module-3.4.0.0.zip", - "shasum": "2e22c0e3ce6d60cfcacc90274027d695fc4de537" + "url": "https://repo.magento.com/archives/vertex/product-magento-module/vertex-product-magento-module-3.4.3.0.zip", + "shasum": "4b1cf3666acb71ff92827cfd5c5d4e592ecb8f9a" }, "require": { - "vertex/module-address-validation": "1.1.0", - "vertex/module-tax": "3.4.0" + "vertex/module-address-validation": "1.1.2", + "vertex/module-tax": "3.4.3" }, "type": "metapackage", "license": [ "proprietary" ], + "authors": [ + { + "name": "Mediotype", + "email": "diveinto@mediotype.com", + "homepage": "http://www.mediotype.com/", + "role": "Development Company" + } + ], "description": "Vertex Tax Links for Magento 2", "homepage": "http://go.vertexsmb.com/magento_cbe", "keywords": [ @@ -16935,11 +17029,11 @@ }, { "name": "vertex/sdk", - "version": "1.2.5", + "version": "1.2.7", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/vertex/sdk/vertex-sdk-1.2.5.0.zip", - "shasum": "1d2cab94f393be238516799fc7077c336829fae4" + "url": "https://repo.magento.com/archives/vertex/sdk/vertex-sdk-1.2.7.0.zip", + "shasum": "821465662cc2d8ec186e2baf138a7c3075fcf3ee" }, "require": { "ext-mbstring": "*", @@ -16948,9 +17042,11 @@ "php": "^5.4|^7" }, "require-dev": { - "php": "^7.1", + "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2", + "magento/magento-coding-standard": "^5.0", + "php": "^7.3", "phpmd/phpmd": "^2.6", - "phpunit/phpunit": "^7.2", + "phpunit/phpunit": "^9", "squizlabs/php_codesniffer": "^3.3" }, "type": "library", @@ -16964,6 +17060,61 @@ ], "description": "Tools for communicating with Vertex Cloud and Vertex O-Series" }, + { + "name": "webimpress/safe-writer", + "version": "2.1.0", + "source": { + "type": "git", + "url": "https://github.com/webimpress/safe-writer.git", + "reference": "5cfafdec5873c389036f14bf832a5efc9390dcdd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/webimpress/safe-writer/zipball/5cfafdec5873c389036f14bf832a5efc9390dcdd", + "reference": "5cfafdec5873c389036f14bf832a5efc9390dcdd", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.8 || ^9.3.7", + "vimeo/psalm": "^3.14.2", + "webimpress/coding-standard": "^1.1.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1.x-dev", + "dev-develop": "2.2.x-dev", + "dev-release-1.0": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Webimpress\\SafeWriter\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-2-Clause" + ], + "description": "Tool to write files safely, to avoid race conditions", + "keywords": [ + "concurrent write", + "file writer", + "race condition", + "safe writer", + "webimpress" + ], + "funding": [ + { + "url": "https://github.com/michalbundyra", + "type": "github" + } + ], + "time": "2020-08-25T07:21:11+00:00" + }, { "name": "webonyx/graphql-php", "version": "v0.13.9", @@ -17337,16 +17488,16 @@ }, { "name": "aws/aws-sdk-php", - "version": "3.148.1", + "version": "3.158.6", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "56caf889ddc8dcc5b6999c234998f3b945d787e3" + "reference": "4e912c1ae4d4b3538ada36ac1478f980f9bdf329" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/56caf889ddc8dcc5b6999c234998f3b945d787e3", - "reference": "56caf889ddc8dcc5b6999c234998f3b945d787e3", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/4e912c1ae4d4b3538ada36ac1478f980f9bdf329", + "reference": "4e912c1ae4d4b3538ada36ac1478f980f9bdf329", "shasum": "" }, "require": { @@ -17418,7 +17569,7 @@ "s3", "sdk" ], - "time": "2020-08-10T18:14:21+00:00" + "time": "2020-10-09T18:11:48+00:00" }, { "name": "behat/gherkin", @@ -17665,16 +17816,16 @@ }, { "name": "codeception/phpunit-wrapper", - "version": "6.8.1", + "version": "6.8.2", "source": { "type": "git", "url": "https://github.com/Codeception/phpunit-wrapper.git", - "reference": "ca6e94c6dadc19db05698d4e0d84214e570ce045" + "reference": "372f1b5c1b0842dfc1fb491175ea22861a42ba13" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/ca6e94c6dadc19db05698d4e0d84214e570ce045", - "reference": "ca6e94c6dadc19db05698d4e0d84214e570ce045", + "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/372f1b5c1b0842dfc1fb491175ea22861a42ba13", + "reference": "372f1b5c1b0842dfc1fb491175ea22861a42ba13", "shasum": "" }, "require": { @@ -17707,7 +17858,7 @@ } ], "description": "PHPUnit classes used by Codeception", - "time": "2020-03-20T08:05:05+00:00" + "time": "2020-10-11T18:17:59+00:00" }, { "name": "codeception/stub", @@ -18309,6 +18460,7 @@ } ], "description": "JSONPath implementation for parsing, searching and flattening arrays", + "abandoned": "softcreatr/jsonpath", "time": "2019-07-15T17:23:22+00:00" }, { @@ -18626,16 +18778,16 @@ }, { "name": "league/flysystem", - "version": "1.1.0", + "version": "1.1.3", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "481c0174b9c99b189959e2bb9d6f52188ed1f692" + "reference": "9be3b16c877d477357c015cec057548cf9b2a14a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/481c0174b9c99b189959e2bb9d6f52188ed1f692", - "reference": "481c0174b9c99b189959e2bb9d6f52188ed1f692", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a", + "reference": "9be3b16c877d477357c015cec057548cf9b2a14a", "shasum": "" }, "require": { @@ -18713,20 +18865,20 @@ "type": "other" } ], - "time": "2020-08-09T15:57:10+00:00" + "time": "2020-08-23T07:39:11+00:00" }, { "name": "league/mime-type-detection", - "version": "1.4.0", + "version": "1.5.0", "source": { "type": "git", "url": "https://github.com/thephpleague/mime-type-detection.git", - "reference": "fda190b62b962d96a069fcc414d781db66d65b69" + "reference": "ea2fbfc988bade315acd5967e6d02274086d0f28" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/fda190b62b962d96a069fcc414d781db66d65b69", - "reference": "fda190b62b962d96a069fcc414d781db66d65b69", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ea2fbfc988bade315acd5967e6d02274086d0f28", + "reference": "ea2fbfc988bade315acd5967e6d02274086d0f28", "shasum": "" }, "require": { @@ -18764,7 +18916,7 @@ "type": "tidelift" } ], - "time": "2020-08-09T10:34:01+00:00" + "time": "2020-09-21T18:10:53+00:00" }, { "name": "lusitanian/oauth", @@ -19308,23 +19460,23 @@ }, { "name": "php-cs-fixer/diff", - "version": "v1.3.0", + "version": "v1.3.1", "source": { "type": "git", "url": "https://github.com/PHP-CS-Fixer/diff.git", - "reference": "78bb099e9c16361126c86ce82ec4405ebab8e756" + "reference": "dbd31aeb251639ac0b9e7e29405c1441907f5759" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHP-CS-Fixer/diff/zipball/78bb099e9c16361126c86ce82ec4405ebab8e756", - "reference": "78bb099e9c16361126c86ce82ec4405ebab8e756", + "url": "https://api.github.com/repos/PHP-CS-Fixer/diff/zipball/dbd31aeb251639ac0b9e7e29405c1441907f5759", + "reference": "dbd31aeb251639ac0b9e7e29405c1441907f5759", "shasum": "" }, "require": { - "php": "^5.6 || ^7.0" + "php": "^5.6 || ^7.0 || ^8.0" }, "require-dev": { - "phpunit/phpunit": "^5.7.23 || ^6.4.3", + "phpunit/phpunit": "^5.7.23 || ^6.4.3 || ^7.0", "symfony/process": "^3.3" }, "type": "library", @@ -19338,14 +19490,14 @@ "BSD-3-Clause" ], "authors": [ - { - "name": "Kore Nordmann", - "email": "mail@kore-nordmann.de" - }, { "name": "Sebastian Bergmann", "email": "sebastian@phpunit.de" }, + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" + }, { "name": "SpacePossum" } @@ -19355,7 +19507,7 @@ "keywords": [ "diff" ], - "time": "2018-02-15T16:58:55+00:00" + "time": "2020-10-14T08:39:05+00:00" }, { "name": "php-webdriver/webdriver", @@ -19579,16 +19731,16 @@ }, { "name": "phpdocumentor/reflection-docblock", - "version": "5.2.0", + "version": "5.2.2", "source": { "type": "git", "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "3170448f5769fe19f456173d833734e0ff1b84df" + "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/3170448f5769fe19f456173d833734e0ff1b84df", - "reference": "3170448f5769fe19f456173d833734e0ff1b84df", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556", + "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556", "shasum": "" }, "require": { @@ -19627,20 +19779,20 @@ } ], "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", - "time": "2020-07-20T20:05:34+00:00" + "time": "2020-09-03T19:13:55+00:00" }, { "name": "phpdocumentor/type-resolver", - "version": "1.3.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://github.com/phpDocumentor/TypeResolver.git", - "reference": "e878a14a65245fbe78f8080eba03b47c3b705651" + "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/e878a14a65245fbe78f8080eba03b47c3b705651", - "reference": "e878a14a65245fbe78f8080eba03b47c3b705651", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0", + "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0", "shasum": "" }, "require": { @@ -19672,7 +19824,7 @@ } ], "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", - "time": "2020-06-27T10:12:23+00:00" + "time": "2020-09-17T18:55:26+00:00" }, { "name": "phpmd/phpmd", @@ -19872,16 +20024,16 @@ }, { "name": "phpstan/phpstan", - "version": "0.12.37", + "version": "0.12.49", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "5e16d83e6eb2dd784fbdaeaece5e2bca72e4f68a" + "reference": "9a6136c2b39d5214da78de37128d5fe08e5d5b05" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/5e16d83e6eb2dd784fbdaeaece5e2bca72e4f68a", - "reference": "5e16d83e6eb2dd784fbdaeaece5e2bca72e4f68a", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/9a6136c2b39d5214da78de37128d5fe08e5d5b05", + "reference": "9a6136c2b39d5214da78de37128d5fe08e5d5b05", "shasum": "" }, "require": { @@ -19924,7 +20076,7 @@ "type": "tidelift" } ], - "time": "2020-08-09T14:32:41+00:00" + "time": "2020-10-12T14:10:44+00:00" }, { "name": "phpunit/php-code-coverage", @@ -20173,6 +20325,7 @@ "keywords": [ "tokenizer" ], + "abandoned": true, "time": "2017-11-27T05:48:46+00:00" }, { @@ -20732,6 +20885,7 @@ ], "description": "FinderFacade is a convenience wrapper for Symfony's Finder component.", "homepage": "https://github.com/sebastianbergmann/finder-facade", + "abandoned": true, "time": "2020-01-16T08:08:45+00:00" }, { @@ -21118,16 +21272,16 @@ }, { "name": "symfony/browser-kit", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/browser-kit.git", - "reference": "f53310646af9901292488b2ff36e26ea10f545f5" + "reference": "9a1786e5020783605a30cff2ceed9aca030e8d80" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/browser-kit/zipball/f53310646af9901292488b2ff36e26ea10f545f5", - "reference": "f53310646af9901292488b2ff36e26ea10f545f5", + "url": "https://api.github.com/repos/symfony/browser-kit/zipball/9a1786e5020783605a30cff2ceed9aca030e8d80", + "reference": "9a1786e5020783605a30cff2ceed9aca030e8d80", "shasum": "" }, "require": { @@ -21187,20 +21341,20 @@ "type": "tidelift" } ], - "time": "2020-05-22T17:28:00+00:00" + "time": "2020-10-02T08:38:15+00:00" }, { "name": "symfony/config", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "b1d8f0d9341ea1d378b8b043ba90739f37c49d36" + "reference": "7c5a1002178a612787c291a4f515f87b19176b61" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/b1d8f0d9341ea1d378b8b043ba90739f37c49d36", - "reference": "b1d8f0d9341ea1d378b8b043ba90739f37c49d36", + "url": "https://api.github.com/repos/symfony/config/zipball/7c5a1002178a612787c291a4f515f87b19176b61", + "reference": "7c5a1002178a612787c291a4f515f87b19176b61", "shasum": "" }, "require": { @@ -21265,20 +21419,20 @@ "type": "tidelift" } ], - "time": "2020-07-15T08:27:46+00:00" + "time": "2020-10-02T07:34:48+00:00" }, { "name": "symfony/dependency-injection", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "f33a28edd42708ed579377391b3a556bcd6a626d" + "reference": "89274c8847dff2ed703e481843eb9159ca25cc6e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/f33a28edd42708ed579377391b3a556bcd6a626d", - "reference": "f33a28edd42708ed579377391b3a556bcd6a626d", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/89274c8847dff2ed703e481843eb9159ca25cc6e", + "reference": "89274c8847dff2ed703e481843eb9159ca25cc6e", "shasum": "" }, "require": { @@ -21352,20 +21506,20 @@ "type": "tidelift" } ], - "time": "2020-07-23T08:31:43+00:00" + "time": "2020-09-10T10:08:39+00:00" }, { "name": "symfony/dom-crawler", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/dom-crawler.git", - "reference": "72b3a65ddd5052cf6d65eac6669748ed311f39bf" + "reference": "bdcb7633a501770a0daefbf81d2e6b28c3864f2b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/72b3a65ddd5052cf6d65eac6669748ed311f39bf", - "reference": "72b3a65ddd5052cf6d65eac6669748ed311f39bf", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/bdcb7633a501770a0daefbf81d2e6b28c3864f2b", + "reference": "bdcb7633a501770a0daefbf81d2e6b28c3864f2b", "shasum": "" }, "require": { @@ -21427,20 +21581,20 @@ "type": "tidelift" } ], - "time": "2020-07-23T08:31:43+00:00" + "time": "2020-10-02T07:34:48+00:00" }, { "name": "symfony/http-foundation", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "3675676b6a47f3e71d3ab10bcf53fb9239eb77e6" + "reference": "10683b407c3b6087c64619ebc97a87e36ea62c92" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3675676b6a47f3e71d3ab10bcf53fb9239eb77e6", - "reference": "3675676b6a47f3e71d3ab10bcf53fb9239eb77e6", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/10683b407c3b6087c64619ebc97a87e36ea62c92", + "reference": "10683b407c3b6087c64619ebc97a87e36ea62c92", "shasum": "" }, "require": { @@ -21496,20 +21650,20 @@ "type": "tidelift" } ], - "time": "2020-07-23T09:48:09+00:00" + "time": "2020-09-27T14:14:06+00:00" }, { "name": "symfony/mime", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "cb00d7210bc096f997e63189a62b5e35d72babac" + "reference": "42df2507eb8e6cd9795f51c99dd52bab543a918f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/cb00d7210bc096f997e63189a62b5e35d72babac", - "reference": "cb00d7210bc096f997e63189a62b5e35d72babac", + "url": "https://api.github.com/repos/symfony/mime/zipball/42df2507eb8e6cd9795f51c99dd52bab543a918f", + "reference": "42df2507eb8e6cd9795f51c99dd52bab543a918f", "shasum": "" }, "require": { @@ -21572,20 +21726,20 @@ "type": "tidelift" } ], - "time": "2020-07-22T12:10:07+00:00" + "time": "2020-09-02T16:08:58+00:00" }, { "name": "symfony/stopwatch", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/stopwatch.git", - "reference": "f51fb90df1154a7f75987198a9689e28f91e6a50" + "reference": "6f89e19772cf61b3c65bab329fe0e318259fbd91" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/stopwatch/zipball/f51fb90df1154a7f75987198a9689e28f91e6a50", - "reference": "f51fb90df1154a7f75987198a9689e28f91e6a50", + "url": "https://api.github.com/repos/symfony/stopwatch/zipball/6f89e19772cf61b3c65bab329fe0e318259fbd91", + "reference": "6f89e19772cf61b3c65bab329fe0e318259fbd91", "shasum": "" }, "require": { @@ -21636,20 +21790,20 @@ "type": "tidelift" } ], - "time": "2020-05-20T08:37:50+00:00" + "time": "2020-09-02T16:08:58+00:00" }, { "name": "symfony/yaml", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "c2d2cc66e892322cfcc03f8f12f8340dbd7a3f8a" + "reference": "c7885964b1eceb70b0981556d0a9b01d2d97c8d1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/c2d2cc66e892322cfcc03f8f12f8340dbd7a3f8a", - "reference": "c2d2cc66e892322cfcc03f8f12f8340dbd7a3f8a", + "url": "https://api.github.com/repos/symfony/yaml/zipball/c7885964b1eceb70b0981556d0a9b01d2d97c8d1", + "reference": "c7885964b1eceb70b0981556d0a9b01d2d97c8d1", "shasum": "" }, "require": { @@ -21709,7 +21863,7 @@ "type": "tidelift" } ], - "time": "2020-05-20T08:37:50+00:00" + "time": "2020-09-27T03:36:23+00:00" }, { "name": "theseer/fdomdocument", diff --git a/src/_data/codebase/v2_4/cloud/composer_lock.json b/src/_data/codebase/v2_4/cloud/composer_lock.json index fbca47d6c77..1eaddf16b56 100644 --- a/src/_data/codebase/v2_4/cloud/composer_lock.json +++ b/src/_data/codebase/v2_4/cloud/composer_lock.json @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "17131e99a0a133d4fe676b584f79cdaf", + "content-hash": "11cf91b3c3075e1fdadf99ec51e011e8", "packages": [ { "name": "2tvenom/cborencode", @@ -49,16 +49,16 @@ }, { "name": "amzn/amazon-pay-and-login-magento-2-module", - "version": "4.0.2", + "version": "4.0.4", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/amzn/amazon-pay-and-login-magento-2-module/amzn-amazon-pay-and-login-magento-2-module-4.0.2.0.zip", - "shasum": "1fb726b3424fe9f006dfb6442df5fbb25bbc0053" + "url": "https://repo.magento.com/archives/amzn/amazon-pay-and-login-magento-2-module/amzn-amazon-pay-and-login-magento-2-module-4.0.4.0.zip", + "shasum": "f2fd46eae1287b3a870981c6db98ad6faaed77be" }, "require": { - "amzn/amazon-pay-and-login-with-amazon-core-module": "4.0.2", - "amzn/amazon-pay-module": "4.0.2", - "amzn/login-with-amazon-module": "4.0.2" + "amzn/amazon-pay-and-login-with-amazon-core-module": "4.0.4", + "amzn/amazon-pay-module": "4.0.4", + "amzn/login-with-amazon-module": "4.0.4" }, "type": "metapackage", "license": [ @@ -68,11 +68,11 @@ }, { "name": "amzn/amazon-pay-and-login-with-amazon-core-module", - "version": "4.0.2", + "version": "4.0.4", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/amzn/amazon-pay-and-login-with-amazon-core-module/amzn-amazon-pay-and-login-with-amazon-core-module-4.0.2.0.zip", - "shasum": "2ceab6d9226b15f20af17090e46c7c30fd64fbc9" + "url": "https://repo.magento.com/archives/amzn/amazon-pay-and-login-with-amazon-core-module/amzn-amazon-pay-and-login-with-amazon-core-module-4.0.4.0.zip", + "shasum": "b2b8a2d134e93377f29950a5e512824f63beca12" }, "require": { "amzn/amazon-pay-sdk-php": "^3.2.0", @@ -107,15 +107,15 @@ }, { "name": "amzn/amazon-pay-module", - "version": "4.0.2", + "version": "4.0.4", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/amzn/amazon-pay-module/amzn-amazon-pay-module-4.0.2.0.zip", - "shasum": "6ed5ad082c21756b7ce6698c4d58ae6baba70cfb" + "url": "https://repo.magento.com/archives/amzn/amazon-pay-module/amzn-amazon-pay-module-4.0.4.0.zip", + "shasum": "85dec4b75da4301eebf12ed6de4cd1f93129437d" }, "require": { - "amzn/amazon-pay-and-login-with-amazon-core-module": "^4.0.2", - "amzn/login-with-amazon-module": "^4.0.2", + "amzn/amazon-pay-and-login-with-amazon-core-module": "^4.0.4", + "amzn/login-with-amazon-module": "^4.0.4", "magento/framework": "*", "magento/module-backend": "*", "magento/module-catalog": "*", @@ -201,14 +201,14 @@ }, { "name": "amzn/login-with-amazon-module", - "version": "4.0.2", + "version": "4.0.4", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/amzn/login-with-amazon-module/amzn-login-with-amazon-module-4.0.2.0.zip", - "shasum": "4db680418aefd94153d05501d4c42e7b32bc16c9" + "url": "https://repo.magento.com/archives/amzn/login-with-amazon-module/amzn-login-with-amazon-module-4.0.4.0.zip", + "shasum": "3706a86e6e199b14757c7f5a05f3f58214cea034" }, "require": { - "amzn/amazon-pay-and-login-with-amazon-core-module": "^4.0.2", + "amzn/amazon-pay-and-login-with-amazon-core-module": "^4.0.4", "magento/framework": "*", "magento/module-checkout": "*", "magento/module-checkout-agreements": "*", @@ -383,16 +383,16 @@ }, { "name": "braintree/braintree_php", - "version": "4.5.0", + "version": "5.2.0", "source": { "type": "git", "url": "https://github.com/braintree/braintree_php.git", - "reference": "4aa200601e126183a572133d7ea2037de44b3d2d" + "reference": "6cf3447ecd0303caa6f2d4f22b653dc5c71b4589" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/braintree/braintree_php/zipball/4aa200601e126183a572133d7ea2037de44b3d2d", - "reference": "4aa200601e126183a572133d7ea2037de44b3d2d", + "url": "https://api.github.com/repos/braintree/braintree_php/zipball/6cf3447ecd0303caa6f2d4f22b653dc5c71b4589", + "reference": "6cf3447ecd0303caa6f2d4f22b653dc5c71b4589", "shasum": "" }, "require": { @@ -408,9 +408,6 @@ }, "type": "library", "autoload": { - "psr-0": { - "Braintree": "lib/" - }, "psr-4": { "Braintree\\": "lib/Braintree" } @@ -426,7 +423,7 @@ } ], "description": "Braintree PHP Client Library", - "time": "2019-10-28T16:05:37+00:00" + "time": "2020-06-15T19:02:23+00:00" }, { "name": "christian-riesen/base32", @@ -594,21 +591,21 @@ }, { "name": "colinmollenhour/php-redis-session-abstract", - "version": "v1.4.2", + "version": "v1.4.3", "source": { "type": "git", "url": "https://github.com/colinmollenhour/php-redis-session-abstract.git", - "reference": "669521218794f125c7b668252f4f576eda65e1e4" + "reference": "39ca38da5e0a981bc1a7e39a86693c128784a513" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/colinmollenhour/php-redis-session-abstract/zipball/669521218794f125c7b668252f4f576eda65e1e4", - "reference": "669521218794f125c7b668252f4f576eda65e1e4", + "url": "https://api.github.com/repos/colinmollenhour/php-redis-session-abstract/zipball/39ca38da5e0a981bc1a7e39a86693c128784a513", + "reference": "39ca38da5e0a981bc1a7e39a86693c128784a513", "shasum": "" }, "require": { "colinmollenhour/credis": "~1.6", - "php": "^5.5 || ^7.0" + "php": "^5.5 || ^7.0|| ^7.1 || ^7.2" }, "type": "library", "autoload": { @@ -627,20 +624,20 @@ ], "description": "A Redis-based session handler with optimistic locking", "homepage": "https://github.com/colinmollenhour/php-redis-session-abstract", - "time": "2020-01-08T17:41:01+00:00" + "time": "2020-10-07T09:47:22+00:00" }, { "name": "composer/ca-bundle", - "version": "1.2.7", + "version": "1.2.8", "source": { "type": "git", "url": "https://github.com/composer/ca-bundle.git", - "reference": "95c63ab2117a72f48f5a55da9740a3273d45b7fd" + "reference": "8a7ecad675253e4654ea05505233285377405215" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/95c63ab2117a72f48f5a55da9740a3273d45b7fd", - "reference": "95c63ab2117a72f48f5a55da9740a3273d45b7fd", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/8a7ecad675253e4654ea05505233285377405215", + "reference": "8a7ecad675253e4654ea05505233285377405215", "shasum": "" }, "require": { @@ -688,25 +685,29 @@ "url": "https://packagist.com", "type": "custom" }, + { + "url": "https://github.com/composer", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/composer/composer", "type": "tidelift" } ], - "time": "2020-04-08T08:27:21+00:00" + "time": "2020-08-23T12:54:47+00:00" }, { "name": "composer/composer", - "version": "1.10.10", + "version": "1.10.15", "source": { "type": "git", "url": "https://github.com/composer/composer.git", - "reference": "32966a3b1d48bc01472a8321fd6472b44fad033a" + "reference": "547c9ee73fe26c77af09a0ea16419176b1cdbd12" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/composer/zipball/32966a3b1d48bc01472a8321fd6472b44fad033a", - "reference": "32966a3b1d48bc01472a8321fd6472b44fad033a", + "url": "https://api.github.com/repos/composer/composer/zipball/547c9ee73fe26c77af09a0ea16419176b1cdbd12", + "reference": "547c9ee73fe26c77af09a0ea16419176b1cdbd12", "shasum": "" }, "require": { @@ -787,20 +788,20 @@ "type": "tidelift" } ], - "time": "2020-08-03T09:35:19+00:00" + "time": "2020-10-13T13:59:09+00:00" }, { "name": "composer/semver", - "version": "1.5.1", + "version": "1.7.1", "source": { "type": "git", "url": "https://github.com/composer/semver.git", - "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de" + "reference": "38276325bd896f90dfcfe30029aa5db40df387a7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/semver/zipball/c6bea70230ef4dd483e6bbcab6005f682ed3a8de", - "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de", + "url": "https://api.github.com/repos/composer/semver/zipball/38276325bd896f90dfcfe30029aa5db40df387a7", + "reference": "38276325bd896f90dfcfe30029aa5db40df387a7", "shasum": "" }, "require": { @@ -848,7 +849,21 @@ "validation", "versioning" ], - "time": "2020-01-13T12:06:48+00:00" + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2020-09-27T13:13:07+00:00" }, { "name": "composer/spdx-licenses", @@ -926,16 +941,16 @@ }, { "name": "composer/xdebug-handler", - "version": "1.4.2", + "version": "1.4.3", "source": { "type": "git", "url": "https://github.com/composer/xdebug-handler.git", - "reference": "fa2aaf99e2087f013a14f7432c1cd2dd7d8f1f51" + "reference": "ebd27a9866ae8254e873866f795491f02418c5a5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/fa2aaf99e2087f013a14f7432c1cd2dd7d8f1f51", - "reference": "fa2aaf99e2087f013a14f7432c1cd2dd7d8f1f51", + "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ebd27a9866ae8254e873866f795491f02418c5a5", + "reference": "ebd27a9866ae8254e873866f795491f02418c5a5", "shasum": "" }, "require": { @@ -980,7 +995,7 @@ "type": "tidelift" } ], - "time": "2020-06-04T11:16:35+00:00" + "time": "2020-08-19T10:27:58+00:00" }, { "name": "container-interop/container-interop", @@ -1016,16 +1031,16 @@ }, { "name": "dasprid/enum", - "version": "1.0.2", + "version": "1.0.3", "source": { "type": "git", "url": "https://github.com/DASPRiD/Enum.git", - "reference": "6ccc0d7141a7f149e3c56cb0ce5f05d9152cfd07" + "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/6ccc0d7141a7f149e3c56cb0ce5f05d9152cfd07", - "reference": "6ccc0d7141a7f149e3c56cb0ce5f05d9152cfd07", + "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2", + "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2", "shasum": "" }, "require-dev": { @@ -1055,7 +1070,7 @@ "enum", "map" ], - "time": "2020-07-30T16:37:13+00:00" + "time": "2020-10-02T16:03:48+00:00" }, { "name": "doctrine/inflector", @@ -1151,16 +1166,16 @@ }, { "name": "donatj/phpuseragentparser", - "version": "v0.16.0", + "version": "v0.17.0", "source": { "type": "git", "url": "https://github.com/donatj/PhpUserAgent.git", - "reference": "b3551112ed84524aef6542a8778a3f812c8098ce" + "reference": "e159493010d4b71c9620a43fd05f8284f29dcfeb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/donatj/PhpUserAgent/zipball/b3551112ed84524aef6542a8778a3f812c8098ce", - "reference": "b3551112ed84524aef6542a8778a3f812c8098ce", + "url": "https://api.github.com/repos/donatj/PhpUserAgent/zipball/e159493010d4b71c9620a43fd05f8284f29dcfeb", + "reference": "e159493010d4b71c9620a43fd05f8284f29dcfeb", "shasum": "" }, "require": { @@ -1208,18 +1223,19 @@ "type": "github" } ], - "time": "2020-04-07T15:47:30+00:00" + "time": "2020-09-01T16:15:49+00:00" }, { "name": "dotmailer/dotmailer-magento2-extension", - "version": "4.6.0", + "version": "4.8.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension/dotmailer-dotmailer-magento2-extension-4.6.0.0.zip", - "shasum": "9d16976f52bbb3aee2356687a8bc7c7028a4e51d" + "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension/dotmailer-dotmailer-magento2-extension-4.8.0.0.zip", + "shasum": "936e7cb91b6c1d981f4c6c195130603288b3284d" }, "require": { "magento/framework": ">=101 <104", + "magento/module-authorization": "100.4.*", "magento/module-backend": ">=100 <103", "magento/module-bundle": ">=100 <102", "magento/module-catalog": ">=101 <105", @@ -1271,14 +1287,15 @@ }, { "name": "dotmailer/dotmailer-magento2-extension-chat", - "version": "1.1.0", + "version": "1.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-chat/dotmailer-dotmailer-magento2-extension-chat-1.1.0.0.zip", - "shasum": "70c2a165be11b865dd8de7a8e2cd2b867aa8dce6" + "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-chat/dotmailer-dotmailer-magento2-extension-chat-1.2.0.0.zip", + "shasum": "f70ba21b96985e6826ff208cefc3b0a88f26146c" }, "require": { "dotmailer/dotmailer-magento2-extension": "^4.3.1", + "magento/framework": ">=101 <104", "magento/module-backend": ">=100 <103", "magento/module-checkout": "100.*", "magento/module-config": ">=100 <103", @@ -1303,17 +1320,18 @@ }, { "name": "dotmailer/dotmailer-magento2-extension-enterprise", - "version": "1.1.0", + "version": "1.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-enterprise/dotmailer-dotmailer-magento2-extension-enterprise-1.1.0.0.zip", - "shasum": "e92e6824a562ba2655751b5f9e56aeac09f92211" + "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-enterprise/dotmailer-dotmailer-magento2-extension-enterprise-1.2.0.0.zip", + "shasum": "dd76b9175957e213cb5c534e5af73fd283839464" }, "require": { - "dotmailer/dotmailer-magento2-extension": "^4.3.1", + "dotmailer/dotmailer-magento2-extension": "^4.8.0", "magento/module-customer-segment": ">=100 <103", "magento/module-reward": ">=100 <102", - "magento/module-store": ">=100 <102" + "magento/module-store": ">=100 <102", + "magento/page-builder-commerce": "^1.4" }, "type": "magento2-module", "autoload": { @@ -1331,16 +1349,16 @@ }, { "name": "dotmailer/dotmailer-magento2-extension-enterprise-package", - "version": "4.6.0", + "version": "4.8.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-enterprise-package/dotmailer-dotmailer-magento2-extension-enterprise-package-4.6.0.0.zip", - "shasum": "fc7c26d33c529705b3487f237543c2e5d484fd6d" + "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-enterprise-package/dotmailer-dotmailer-magento2-extension-enterprise-package-4.8.0.0.zip", + "shasum": "e7b8c8c589f00daf62a52b4d7689c5e489b7e185" }, "require": { - "dotmailer/dotmailer-magento2-extension": "4.6.0", - "dotmailer/dotmailer-magento2-extension-chat": "1.1.0", - "dotmailer/dotmailer-magento2-extension-enterprise": "1.1.0" + "dotmailer/dotmailer-magento2-extension": "4.8.0", + "dotmailer/dotmailer-magento2-extension-chat": "1.2.0", + "dotmailer/dotmailer-magento2-extension-enterprise": "1.2.0" }, "type": "metapackage", "license": [ @@ -1350,15 +1368,15 @@ }, { "name": "dotmailer/dotmailer-magento2-extension-package", - "version": "4.6.0", + "version": "4.8.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-package/dotmailer-dotmailer-magento2-extension-package-4.6.0.0.zip", - "shasum": "d00023ec7e379b215db599f0133f2106f3dea31a" + "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-package/dotmailer-dotmailer-magento2-extension-package-4.8.0.0.zip", + "shasum": "ed68af95837c3cea0be8cad328a4fd0682451356" }, "require": { - "dotmailer/dotmailer-magento2-extension": "4.6.0", - "dotmailer/dotmailer-magento2-extension-chat": "1.1.0" + "dotmailer/dotmailer-magento2-extension": "4.8.0", + "dotmailer/dotmailer-magento2-extension-chat": "1.2.0" }, "type": "metapackage", "license": [ @@ -1431,16 +1449,16 @@ }, { "name": "endroid/qr-code", - "version": "3.9.1", + "version": "3.9.3", "source": { "type": "git", "url": "https://github.com/endroid/qr-code.git", - "reference": "8605e2c958ed568788da4e16bd8a9502e32f375f" + "reference": "58d5872ca46b99b5c2e72cd2c8dea09ce2988156" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/endroid/qr-code/zipball/8605e2c958ed568788da4e16bd8a9502e32f375f", - "reference": "8605e2c958ed568788da4e16bd8a9502e32f375f", + "url": "https://api.github.com/repos/endroid/qr-code/zipball/58d5872ca46b99b5c2e72cd2c8dea09ce2988156", + "reference": "58d5872ca46b99b5c2e72cd2c8dea09ce2988156", "shasum": "" }, "require": { @@ -1498,7 +1516,7 @@ "type": "github" } ], - "time": "2020-07-10T10:16:06+00:00" + "time": "2020-10-07T09:42:59+00:00" }, { "name": "ezimuel/guzzlestreams", @@ -1603,16 +1621,16 @@ }, { "name": "fastly/magento2", - "version": "1.2.144", + "version": "1.2.148", "source": { "type": "git", "url": "https://github.com/fastly/fastly-magento2.git", - "reference": "36065594588d95560d4282a127cd3da10e53e2d8" + "reference": "0a6bffa24431b6500b92ffd42388d1c91b820fed" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/fastly/fastly-magento2/zipball/36065594588d95560d4282a127cd3da10e53e2d8", - "reference": "36065594588d95560d4282a127cd3da10e53e2d8", + "url": "https://api.github.com/repos/fastly/fastly-magento2/zipball/0a6bffa24431b6500b92ffd42388d1c91b820fed", + "reference": "0a6bffa24431b6500b92ffd42388d1c91b820fed", "shasum": "" }, "require": { @@ -1638,7 +1656,7 @@ "BSD-3-Clause" ], "description": "Fastly CDN Module for Magento 2.x", - "time": "2020-07-31T14:01:38+00:00" + "time": "2020-09-30T20:30:22+00:00" }, { "name": "google/recaptcha", @@ -1810,23 +1828,23 @@ }, { "name": "guzzlehttp/promises", - "version": "v1.3.1", + "version": "1.4.0", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646" + "reference": "60d379c243457e073cff02bc323a2a86cb355631" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646", + "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631", + "reference": "60d379c243457e073cff02bc323a2a86cb355631", "shasum": "" }, "require": { - "php": ">=5.5.0" + "php": ">=5.5" }, "require-dev": { - "phpunit/phpunit": "^4.0" + "symfony/phpunit-bridge": "^4.4 || ^5.1" }, "type": "library", "extra": { @@ -1857,20 +1875,20 @@ "keywords": [ "promise" ], - "time": "2016-12-20T10:07:11+00:00" + "time": "2020-09-30T07:37:28+00:00" }, { "name": "guzzlehttp/psr7", - "version": "1.6.1", + "version": "1.7.0", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "239400de7a173fe9901b9ac7c06497751f00727a" + "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a", - "reference": "239400de7a173fe9901b9ac7c06497751f00727a", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3", + "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3", "shasum": "" }, "require": { @@ -1883,15 +1901,15 @@ }, "require-dev": { "ext-zlib": "*", - "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8" + "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10" }, "suggest": { - "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses" + "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.6-dev" + "dev-master": "1.7-dev" } }, "autoload": { @@ -1928,7 +1946,7 @@ "uri", "url" ], - "time": "2019-07-01T23:21:34+00:00" + "time": "2020-09-30T07:37:11+00:00" }, { "name": "illuminate/config", @@ -2197,17 +2215,18 @@ }, { "name": "klarna/m2-payments", - "version": "8.0.2", + "version": "8.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/klarna/m2-payments/klarna-m2-payments-8.0.2.0.zip", - "shasum": "81ed938d910a52c0df4181c464c62091f2a8a634" + "url": "https://repo.magento.com/archives/klarna/m2-payments/klarna-m2-payments-8.1.0.0.zip", + "shasum": "c31e4d0746cf9b281ee2058a0353ab8f5dcdf7b0" }, "require": { - "klarna/module-core": "6.0.1", - "klarna/module-kp": "7.0.1", - "klarna/module-onsitemessaging": "1.0.1", - "klarna/module-ordermanagement": "6.0.2" + "klarna/module-core": "6.0.2", + "klarna/module-kp": "7.1.0", + "klarna/module-kp-graph-ql": "0.9.0", + "klarna/module-onsitemessaging": "1.0.2", + "klarna/module-ordermanagement": "6.0.3" }, "require-dev": { "friendsofphp/php-cs-fixer": "~2.16.0", @@ -2219,7 +2238,7 @@ "pdepend/pdepend": "^2.5.2", "phploc/phploc": "^6.0", "phpmd/phpmd": "@stable", - "phpro/grumphp": "^0.14", + "phpro/grumphp": "^0.19", "phpunit/phpunit": "^9", "sebastian/phpcpd": "~5.0.0", "squizlabs/php_codesniffer": "~3.5.4" @@ -2232,16 +2251,16 @@ }, { "name": "klarna/module-core", - "version": "6.0.1", + "version": "6.0.2", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/klarna/module-core/klarna-module-core-6.0.1.0.zip", - "shasum": "782be784675bd9d586cda2d267053456e212f00f" + "url": "https://repo.magento.com/archives/klarna/module-core/klarna-module-core-6.0.2.0.zip", + "shasum": "d3878dc3a1a1d9c7e70681291412982dfa00b22e" }, "require": { "guzzlehttp/guzzle": "^6.0", "magento/framework": "^102|^103", - "magento/module-bundle": "^100.3 ||^101.0", + "magento/module-bundle": "^100.3||^101.0", "magento/module-catalog": "^103.0|^104.0", "magento/module-config": "^101.1", "magento/module-customer": "^102.0|^103.0", @@ -2319,11 +2338,11 @@ }, { "name": "klarna/module-kp", - "version": "7.0.1", + "version": "7.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/klarna/module-kp/klarna-module-kp-7.0.1.0.zip", - "shasum": "45082a499985c7fa9385b85abdd1bd1b49f81e3c" + "url": "https://repo.magento.com/archives/klarna/module-kp/klarna-module-kp-7.1.0.0.zip", + "shasum": "7266fec0ff572260945069c5f0360e18931b12c4" }, "require": { "klarna/module-core": "^6.0", @@ -2386,13 +2405,55 @@ ], "description": "Klarna Payments Magento 2 Extension" }, + { + "name": "klarna/module-kp-graph-ql", + "version": "0.9.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/klarna/module-kp-graph-ql/klarna-module-kp-graph-ql-0.9.0.0.zip", + "shasum": "a877f3b010cc16b026b2c82998184a88fd83d42b" + }, + "require": { + "klarna/module-kp": "^7.0.2", + "magento/framework": "^102|^103", + "magento/module-graph-ql": "^100", + "magento/module-payment": "^100.1", + "magento/module-quote-graph-ql": "^100", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Klarna\\KpGraphQl\\": "" + } + }, + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Dario Kassler", + "email": "dario.kassler@klarna.com", + "role": "Developer" + }, + { + "name": "Markus Simon", + "email": "markus.simon2@klarna.com", + "role": "Developer" + } + ], + "description": "Klarna KpGraphQl Magento 2 Extension" + }, { "name": "klarna/module-onsitemessaging", - "version": "1.0.1", + "version": "1.0.2", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/klarna/module-onsitemessaging/klarna-module-onsitemessaging-1.0.1.0.zip", - "shasum": "dade15bbef2ae9230b4612de5f0bc59cbeafb0f9" + "url": "https://repo.magento.com/archives/klarna/module-onsitemessaging/klarna-module-onsitemessaging-1.0.2.0.zip", + "shasum": "303e3b36a4720cda912128ec3bb33f9324d4c495" }, "require": { "klarna/module-core": "^6.0", @@ -2431,11 +2492,11 @@ }, { "name": "klarna/module-ordermanagement", - "version": "6.0.2", + "version": "6.0.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/klarna/module-ordermanagement/klarna-module-ordermanagement-6.0.2.0.zip", - "shasum": "aef328ea439f0b0f06760af9378b7005b4b0272e" + "url": "https://repo.magento.com/archives/klarna/module-ordermanagement/klarna-module-ordermanagement-6.0.3.0.zip", + "shasum": "4010e13db02da44929ff12f20091bb01f4c5c21f" }, "require": { "klarna/module-core": "^6.0", @@ -3077,41 +3138,41 @@ }, { "name": "laminas/laminas-eventmanager", - "version": "3.2.1", + "version": "3.3.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-eventmanager.git", - "reference": "ce4dc0bdf3b14b7f9815775af9dfee80a63b4748" + "reference": "1940ccf30e058b2fd66f5a9d696f1b5e0027b082" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-eventmanager/zipball/ce4dc0bdf3b14b7f9815775af9dfee80a63b4748", - "reference": "ce4dc0bdf3b14b7f9815775af9dfee80a63b4748", + "url": "https://api.github.com/repos/laminas/laminas-eventmanager/zipball/1940ccf30e058b2fd66f5a9d696f1b5e0027b082", + "reference": "1940ccf30e058b2fd66f5a9d696f1b5e0027b082", "shasum": "" }, "require": { "laminas/laminas-zendframework-bridge": "^1.0", - "php": "^5.6 || ^7.0" + "php": "^7.3 || ^8.0" }, "replace": { - "zendframework/zend-eventmanager": "self.version" + "zendframework/zend-eventmanager": "^3.2.1" }, "require-dev": { - "athletic/athletic": "^0.1", - "container-interop/container-interop": "^1.1.0", + "container-interop/container-interop": "^1.1", "laminas/laminas-coding-standard": "~1.0.0", "laminas/laminas-stdlib": "^2.7.3 || ^3.0", - "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2" + "phpbench/phpbench": "^0.17.1", + "phpunit/phpunit": "^8.5.8" }, "suggest": { - "container-interop/container-interop": "^1.1.0, to use the lazy listeners feature", + "container-interop/container-interop": "^1.1, to use the lazy listeners feature", "laminas/laminas-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.2-dev", - "dev-develop": "3.3-dev" + "dev-master": "3.3.x-dev", + "dev-develop": "3.4.x-dev" } }, "autoload": { @@ -3131,20 +3192,26 @@ "events", "laminas" ], - "time": "2019-12-31T16:44:52+00:00" + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2020-08-25T11:10:44+00:00" }, { "name": "laminas/laminas-feed", - "version": "2.12.2", + "version": "2.12.3", "source": { "type": "git", "url": "https://github.com/laminas/laminas-feed.git", - "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654" + "reference": "3c91415633cb1be6f9d78683d69b7dcbfe6b4012" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/8a193ac96ebcb3e16b6ee754ac2a889eefacb654", - "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654", + "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/3c91415633cb1be6f9d78683d69b7dcbfe6b4012", + "reference": "3c91415633cb1be6f9d78683d69b7dcbfe6b4012", "shasum": "" }, "require": { @@ -3198,7 +3265,13 @@ "feed", "laminas" ], - "time": "2020-03-29T12:36:29+00:00" + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2020-08-18T13:45:04+00:00" }, { "name": "laminas/laminas-filter", @@ -3359,16 +3432,16 @@ }, { "name": "laminas/laminas-http", - "version": "2.12.0", + "version": "2.13.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-http.git", - "reference": "48bd06ffa3a6875e2b77d6852405eb7b1589d575" + "reference": "33b7942f51ce905ce9bfc8bf28badc501d3904b5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-http/zipball/48bd06ffa3a6875e2b77d6852405eb7b1589d575", - "reference": "48bd06ffa3a6875e2b77d6852405eb7b1589d575", + "url": "https://api.github.com/repos/laminas/laminas-http/zipball/33b7942f51ce905ce9bfc8bf28badc501d3904b5", + "reference": "33b7942f51ce905ce9bfc8bf28badc501d3904b5", "shasum": "" }, "require": { @@ -3391,12 +3464,6 @@ "paragonie/certainty": "For automated management of cacert.pem" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.12.x-dev", - "dev-develop": "2.13.x-dev" - } - }, "autoload": { "psr-4": { "Laminas\\Http\\": "src/" @@ -3419,7 +3486,7 @@ "type": "community_bridge" } ], - "time": "2020-06-23T15:14:37+00:00" + "time": "2020-08-18T17:11:58+00:00" }, { "name": "laminas/laminas-hydrator", @@ -3805,16 +3872,16 @@ }, { "name": "laminas/laminas-mail", - "version": "2.12.2", + "version": "2.12.3", "source": { "type": "git", "url": "https://github.com/laminas/laminas-mail.git", - "reference": "a85bd6ec20ebc382498cc1d3086dfe3fa201849b" + "reference": "c154a733b122539ac2c894561996c770db289f70" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-mail/zipball/a85bd6ec20ebc382498cc1d3086dfe3fa201849b", - "reference": "a85bd6ec20ebc382498cc1d3086dfe3fa201849b", + "url": "https://api.github.com/repos/laminas/laminas-mail/zipball/c154a733b122539ac2c894561996c770db289f70", + "reference": "c154a733b122539ac2c894561996c770db289f70", "shasum": "" }, "require": { @@ -3869,7 +3936,7 @@ "type": "community_bridge" } ], - "time": "2020-08-06T14:33:28+00:00" + "time": "2020-08-12T14:51:33+00:00" }, { "name": "laminas/laminas-math", @@ -3981,16 +4048,16 @@ }, { "name": "laminas/laminas-modulemanager", - "version": "2.8.4", + "version": "2.9.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-modulemanager.git", - "reference": "92b1cde1aab5aef687b863face6dd5d9c6751c78" + "reference": "789bbd4ab391da9221f265f6bb2d594f8f11855b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-modulemanager/zipball/92b1cde1aab5aef687b863face6dd5d9c6751c78", - "reference": "92b1cde1aab5aef687b863face6dd5d9c6751c78", + "url": "https://api.github.com/repos/laminas/laminas-modulemanager/zipball/789bbd4ab391da9221f265f6bb2d594f8f11855b", + "reference": "789bbd4ab391da9221f265f6bb2d594f8f11855b", "shasum": "" }, "require": { @@ -3998,10 +4065,11 @@ "laminas/laminas-eventmanager": "^3.2 || ^2.6.3", "laminas/laminas-stdlib": "^3.1 || ^2.7", "laminas/laminas-zendframework-bridge": "^1.0", - "php": "^5.6 || ^7.0" + "php": "^5.6 || ^7.0", + "webimpress/safe-writer": "^1.0.2 || ^2.1" }, "replace": { - "zendframework/zend-modulemanager": "self.version" + "zendframework/zend-modulemanager": "^2.8.4" }, "require-dev": { "laminas/laminas-coding-standard": "~1.0.0", @@ -4021,8 +4089,8 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.8.x-dev", - "dev-develop": "2.9.x-dev" + "dev-master": "2.9.x-dev", + "dev-develop": "2.10.x-dev" } }, "autoload": { @@ -4040,7 +4108,13 @@ "laminas", "modulemanager" ], - "time": "2019-12-31T17:26:56+00:00" + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2020-08-25T09:29:22+00:00" }, { "name": "laminas/laminas-mvc", @@ -4490,35 +4564,35 @@ }, { "name": "laminas/laminas-stdlib", - "version": "3.2.1", + "version": "3.3.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-stdlib.git", - "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6" + "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/2b18347625a2f06a1a485acfbc870f699dbe51c6", - "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6", + "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/b9d84eaa39fde733356ea948cdef36c631f202b6", + "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6", "shasum": "" }, "require": { "laminas/laminas-zendframework-bridge": "^1.0", - "php": "^5.6 || ^7.0" + "php": "^7.3 || ^8.0" }, "replace": { - "zendframework/zend-stdlib": "self.version" + "zendframework/zend-stdlib": "^3.2.1" }, "require-dev": { "laminas/laminas-coding-standard": "~1.0.0", - "phpbench/phpbench": "^0.13", - "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2" + "phpbench/phpbench": "^0.17.1", + "phpunit/phpunit": "^9.3.7" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.2.x-dev", - "dev-develop": "3.3.x-dev" + "dev-master": "3.3.x-dev", + "dev-develop": "3.4.x-dev" } }, "autoload": { @@ -4536,7 +4610,13 @@ "laminas", "stdlib" ], - "time": "2019-12-31T17:51:15+00:00" + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2020-08-25T09:08:16+00:00" }, { "name": "laminas/laminas-text", @@ -4813,31 +4893,27 @@ }, { "name": "laminas/laminas-zendframework-bridge", - "version": "1.0.4", + "version": "1.1.1", "source": { "type": "git", "url": "https://github.com/laminas/laminas-zendframework-bridge.git", - "reference": "fcd87520e4943d968557803919523772475e8ea3" + "reference": "6ede70583e101030bcace4dcddd648f760ddf642" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3", - "reference": "fcd87520e4943d968557803919523772475e8ea3", + "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/6ede70583e101030bcace4dcddd648f760ddf642", + "reference": "6ede70583e101030bcace4dcddd648f760ddf642", "shasum": "" }, "require": { - "php": "^5.6 || ^7.0" + "php": "^5.6 || ^7.0 || ^8.0" }, "require-dev": { - "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1", + "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^9.3", "squizlabs/php_codesniffer": "^3.5" }, "type": "library", "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev", - "dev-develop": "1.1.x-dev" - }, "laminas": { "module": "Laminas\\ZendFrameworkBridge" } @@ -4867,7 +4943,7 @@ "type": "community_bridge" } ], - "time": "2020-05-20T16:45:56+00:00" + "time": "2020-09-14T14:23:00+00:00" }, { "name": "league/iso3166", @@ -4923,37 +4999,42 @@ ], "time": "2020-01-29T07:08:12+00:00" }, + { + "name": "magento/adobe-ims", + "version": "2.1.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/adobe-ims/magento-adobe-ims-2.1.0.0.zip", + "shasum": "4c47779423d0bbe55951a3cfd08134e5cddfdbe9" + }, + "require": { + "magento/module-adobe-ims": "2.1.0", + "magento/module-adobe-ims-api": "2.1.0" + }, + "type": "metapackage", + "description": "Adobe IMS Integration" + }, { "name": "magento/adobe-stock-integration", - "version": "2.0.0", + "version": "2.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/adobe-stock-integration/magento-adobe-stock-integration-2.0.0.0.zip", - "shasum": "2da07f38b1316a518b1a5a87baa63aef9843b2be" - }, - "require": { - "magento/module-adobe-ims": "1.1.0", - "magento/module-adobe-ims-api": "2.0.0", - "magento/module-adobe-stock-admin-ui": "1.1.0", - "magento/module-adobe-stock-asset": "1.1.0", - "magento/module-adobe-stock-asset-api": "1.1.0", - "magento/module-adobe-stock-client": "1.1.0", - "magento/module-adobe-stock-client-api": "1.1.0", - "magento/module-adobe-stock-image": "1.1.0", - "magento/module-adobe-stock-image-admin-ui": "1.1.0", - "magento/module-adobe-stock-image-api": "1.1.0", - "magento/module-media-content-synchronization": "1.0.0", - "magento/module-media-content-synchronization-api": "1.0.0", - "magento/module-media-content-synchronization-catalog": "1.0.0", - "magento/module-media-content-synchronization-cms": "1.0.0", - "magento/module-media-gallery-integration": "1.0.0", - "magento/module-media-gallery-synchronization": "1.0.0", - "magento/module-media-gallery-synchronization-api": "1.0.0", - "magento/module-media-gallery-ui": "1.0.0", - "magento/module-media-gallery-ui-api": "1.0.0" + "url": "https://repo.magento.com/archives/magento/adobe-stock-integration/magento-adobe-stock-integration-2.1.0.0.zip", + "shasum": "c8f38ee734f6706b8d6ecfe593e000e9b87951ac" + }, + "require": { + "magento/adobe-ims": "2.1.0", + "magento/module-adobe-stock-admin-ui": "1.2.0", + "magento/module-adobe-stock-asset": "1.2.0", + "magento/module-adobe-stock-asset-api": "1.2.0", + "magento/module-adobe-stock-client": "1.2.0", + "magento/module-adobe-stock-client-api": "2.0.0", + "magento/module-adobe-stock-image": "1.2.0", + "magento/module-adobe-stock-image-admin-ui": "1.2.0", + "magento/module-adobe-stock-image-api": "1.2.0" }, "type": "metapackage", - "description": "Adobe Stock integration" + "description": "Adobe Stock Integration" }, { "name": "magento/composer", @@ -5061,11 +5142,11 @@ }, { "name": "magento/framework", - "version": "103.0.0", + "version": "103.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/framework/magento-framework-103.0.0.0.zip", - "shasum": "c6f70138f0048dca680d57aafe33778771b096bf" + "url": "https://repo.magento.com/archives/magento/framework/magento-framework-103.0.1.0.zip", + "shasum": "a26164efffe0cdb5ed2f821a1b6a599a74b957ff" }, "require": { "colinmollenhour/php-redis-session-abstract": "~1.4.0", @@ -5105,12 +5186,12 @@ }, "type": "magento2-library", "autoload": { - "psr-4": { - "Magento\\Framework\\": "" - }, "files": [ "registration.php" - ] + ], + "psr-4": { + "Magento\\Framework\\": "" + } }, "license": [ "OSL-3.0", @@ -5202,11 +5283,11 @@ }, { "name": "magento/framework-message-queue", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/framework-message-queue/magento-framework-message-queue-100.4.0.0.zip", - "shasum": "d15ab4611e564e86e2635f9e026babd434e69650" + "url": "https://repo.magento.com/archives/magento/framework-message-queue/magento-framework-message-queue-100.4.1.0.zip", + "shasum": "84002f5f98e987902b1378be040c3cd46cbe92d2" }, "require": { "magento/framework": "103.0.*", @@ -5214,12 +5295,12 @@ }, "type": "magento2-library", "autoload": { - "psr-4": { - "Magento\\Framework\\MessageQueue\\": "" - }, "files": [ "registration.php" - ] + ], + "psr-4": { + "Magento\\Framework\\MessageQueue\\": "" + } }, "license": [ "OSL-3.0", @@ -5287,16 +5368,16 @@ }, { "name": "magento/inventory-metapackage", - "version": "1.2.0", + "version": "1.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/inventory-metapackage/magento-inventory-metapackage-1.2.0.0.zip", - "shasum": "3474c67672b7c9bca13cd5dfb4249385dafd8fec" + "url": "https://repo.magento.com/archives/magento/inventory-metapackage/magento-inventory-metapackage-1.2.1.0.zip", + "shasum": "819bfcfeb6d72493274419b3a095be26b233f019" }, "require": { "magento/inventory-composer-installer": "1.1.0", - "magento/module-inventory": "1.1.0", - "magento/module-inventory-admin-ui": "1.1.0", + "magento/module-inventory": "1.1.1", + "magento/module-inventory-admin-ui": "1.1.2", "magento/module-inventory-advanced-checkout": "1.1.0", "magento/module-inventory-api": "1.1.0", "magento/module-inventory-bundle-import-export": "1.0.0", @@ -5304,8 +5385,8 @@ "magento/module-inventory-bundle-product-admin-ui": "1.1.0", "magento/module-inventory-bundle-product-indexer": "1.0.0", "magento/module-inventory-cache": "1.1.0", - "magento/module-inventory-catalog": "1.1.0", - "magento/module-inventory-catalog-admin-ui": "1.1.0", + "magento/module-inventory-catalog": "1.1.1", + "magento/module-inventory-catalog-admin-ui": "1.1.2", "magento/module-inventory-catalog-api": "1.2.0", "magento/module-inventory-catalog-search": "1.1.0", "magento/module-inventory-configurable-product": "1.1.0", @@ -5323,11 +5404,11 @@ "magento/module-inventory-grouped-product": "1.1.0", "magento/module-inventory-grouped-product-admin-ui": "1.1.0", "magento/module-inventory-grouped-product-indexer": "1.1.0", - "magento/module-inventory-import-export": "1.1.0", - "magento/module-inventory-in-store-pickup": "1.0.0", - "magento/module-inventory-in-store-pickup-admin-ui": "1.0.0", + "magento/module-inventory-import-export": "1.1.1", + "magento/module-inventory-in-store-pickup": "1.0.1", + "magento/module-inventory-in-store-pickup-admin-ui": "1.0.1", "magento/module-inventory-in-store-pickup-api": "1.0.0", - "magento/module-inventory-in-store-pickup-frontend": "1.0.0", + "magento/module-inventory-in-store-pickup-frontend": "1.0.1", "magento/module-inventory-in-store-pickup-graph-ql": "1.0.0", "magento/module-inventory-in-store-pickup-multishipping": "1.0.0", "magento/module-inventory-in-store-pickup-quote": "1.0.0", @@ -5340,25 +5421,26 @@ "magento/module-inventory-in-store-pickup-shipping-api": "1.0.0", "magento/module-inventory-in-store-pickup-webapi-extension": "1.0.0", "magento/module-inventory-indexer": "2.0.0", - "magento/module-inventory-low-quantity-notification": "1.1.0", - "magento/module-inventory-low-quantity-notification-admin-ui": "1.1.0", + "magento/module-inventory-low-quantity-notification": "1.1.1", + "magento/module-inventory-low-quantity-notification-admin-ui": "1.1.1", "magento/module-inventory-low-quantity-notification-api": "1.1.0", "magento/module-inventory-multi-dimensional-indexer-api": "1.1.0", "magento/module-inventory-product-alert": "1.1.0", "magento/module-inventory-requisition-list": "1.1.0", - "magento/module-inventory-reservation-cli": "1.1.0", - "magento/module-inventory-reservations": "1.1.0", + "magento/module-inventory-reservation-cli": "1.1.1", + "magento/module-inventory-reservations": "1.1.1", "magento/module-inventory-reservations-api": "1.1.0", - "magento/module-inventory-sales": "1.1.0", + "magento/module-inventory-sales": "1.1.1", "magento/module-inventory-sales-admin-ui": "1.1.0", "magento/module-inventory-sales-api": "1.1.0", "magento/module-inventory-sales-frontend-ui": "1.1.0", "magento/module-inventory-setup-fixture-generator": "1.1.0", - "magento/module-inventory-shipping": "1.1.0", + "magento/module-inventory-shipping": "1.1.1", "magento/module-inventory-shipping-admin-ui": "1.1.0", "magento/module-inventory-source-deduction-api": "1.1.0", "magento/module-inventory-source-selection": "1.1.0", - "magento/module-inventory-source-selection-api": "1.3.0" + "magento/module-inventory-source-selection-api": "1.3.1", + "magento/module-inventory-visual-merchandiser": "1.0.0" }, "type": "metapackage", "description": "Metapackage with Magento Inventory modules for simple installation" @@ -5526,11 +5608,11 @@ }, { "name": "magento/magento-cloud-components", - "version": "1.0.6", + "version": "1.0.7", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/magento-cloud-components/magento-magento-cloud-components-1.0.6.0.zip", - "shasum": "291926a7210ba72eabe45c0220e2bad11b84569e" + "url": "https://repo.magento.com/archives/magento/magento-cloud-components/magento-magento-cloud-components-1.0.7.0.zip", + "shasum": "bc663be7930e70b2ceec6172d7c6fc7407025cfd" }, "require": { "colinmollenhour/cache-backend-redis": "^1.9", @@ -5543,7 +5625,7 @@ "consolidation/robo": "^1.2", "phpmd/phpmd": "@stable", "phpstan/phpstan": "^0.11", - "phpunit/phpunit": "^6.2", + "phpunit/phpunit": "^7.2", "squizlabs/php_codesniffer": "^3.0" }, "suggest": { @@ -5565,11 +5647,11 @@ }, { "name": "magento/magento-cloud-docker", - "version": "1.1.1", + "version": "1.1.2", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/magento-cloud-docker/magento-magento-cloud-docker-1.1.1.0.zip", - "shasum": "9abb937c2bd3a3e557ef1602620297377886926b" + "url": "https://repo.magento.com/archives/magento/magento-cloud-docker/magento-magento-cloud-docker-1.1.2.0.zip", + "shasum": "dc97c4c2f5e5c0e082531d3be1c9707655d9566c" }, "require": { "composer/composer": "^1.0", @@ -5655,17 +5737,17 @@ }, { "name": "magento/magento-cloud-metapackage", - "version": "2.4.0", + "version": "2.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/magento-cloud-metapackage/magento-magento-cloud-metapackage-2.4.0.0.zip", - "shasum": "81480f70ed6a711f57db0225a8d19498a7112aea" + "url": "https://repo.magento.com/archives/magento/magento-cloud-metapackage/magento-magento-cloud-metapackage-2.4.1.0.zip", + "shasum": "6bc9b32da713dee47b1b499cd81a6a2d287e394b" }, "require": { "fastly/magento2": "^1.2.34", "magento/ece-tools": "^2002.1.0", "magento/module-paypal-on-boarding": "~100.4.0", - "magento/product-enterprise-edition": ">=2.4.0 <2.4.1" + "magento/product-enterprise-edition": ">=2.4.1 <2.4.2" }, "type": "metapackage", "license": [ @@ -5675,25 +5757,25 @@ }, { "name": "magento/magento-cloud-patches", - "version": "1.0.6", + "version": "1.0.8", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/magento-cloud-patches/magento-magento-cloud-patches-1.0.6.0.zip", - "shasum": "7e98bf341fb4b80df0231930cd659e972dd06b0c" + "url": "https://repo.magento.com/archives/magento/magento-cloud-patches/magento-magento-cloud-patches-1.0.8.0.zip", + "shasum": "16b1d026dc273c01aad76fe9e01c777f208f967f" }, "require": { "composer/composer": "@stable", "composer/semver": "^1.5", "ext-json": "*", - "magento/quality-patches": "^1.0.0", + "magento/quality-patches": "^1.0.7", "monolog/monolog": "^1.16", "php": "^7.0", - "symfony/config": "^3.3||^4.4", - "symfony/console": "^2.6||^4.0", - "symfony/dependency-injection": "^3.3||^4.3", - "symfony/process": "^2.1||^4.1", - "symfony/proxy-manager-bridge": "^3.3||^4.3", - "symfony/yaml": "^3.3||^4.0" + "symfony/config": "^3.3||^4.4||^5.1", + "symfony/console": "^2.6||^4.0||^5.1", + "symfony/dependency-injection": "^3.3||^4.3||^5.1", + "symfony/process": "^2.1||^4.1||^5.1", + "symfony/proxy-manager-bridge": "^3.3||^4.3||^5.1", + "symfony/yaml": "^3.3||^4.0||^5.1" }, "require-dev": { "codeception/codeception": "^2.5.3", @@ -5799,11 +5881,11 @@ }, { "name": "magento/magento2-base", - "version": "2.4.0", + "version": "2.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/magento2-base/magento-magento2-base-2.4.0.0.zip", - "shasum": "c3244337e2d0f20022766749ea6e02c509e33255" + "url": "https://repo.magento.com/archives/magento/magento2-base/magento-magento2-base-2.4.1.0.zip", + "shasum": "2e62201dde82607daa5a9d56db9bea3e5535f93d" }, "require": { "composer/composer": "^1.9", @@ -5856,27 +5938,29 @@ }, "type": "magento2-component", "extra": { + "chmod": [ + { + "mask": "0755", + "path": "bin/magento" + } + ], "component_paths": { - "trentrichardson/jquery-timepicker-addon": "lib/web/jquery/jquery-ui-timepicker-addon.js", + "blueimp/jquery-file-upload": "lib/web/jquery/fileUploader", "components/jquery": [ "lib/web/jquery.js", "lib/web/jquery/jquery.min.js", "lib/web/jquery/jquery-migrate.js" ], - "blueimp/jquery-file-upload": "lib/web/jquery/fileUploader", "components/jqueryui": "lib/web/jquery/jquery-ui.js", - "twbs/bootstrap": "lib/web/jquery/jquery.tabs.js", - "tinymce/tinymce": "lib/web/tiny_mce_4" + "tinymce/tinymce": "lib/web/tiny_mce_4", + "trentrichardson/jquery-timepicker-addon": "lib/web/jquery/jquery-ui-timepicker-addon.js", + "twbs/bootstrap": "lib/web/jquery/jquery.tabs.js" }, "map": [ [ ".editorconfig", ".editorconfig" ], - [ - ".github", - ".github" - ], [ ".htaccess", ".htaccess" @@ -6165,14 +6249,14 @@ "lib/web/images", "lib/web/images" ], - [ - "lib/web/jquery.js", - "lib/web/jquery.js" - ], [ "lib/web/jquery", "lib/web/jquery" ], + [ + "lib/web/jquery.js", + "lib/web/jquery.js" + ], [ "lib/web/knockoutjs", "lib/web/knockoutjs" @@ -6309,14 +6393,14 @@ "pub/opt", "pub/opt" ], - [ - "pub/static.php", - "pub/static.php" - ], [ "pub/static/.htaccess", "pub/static/.htaccess" ], + [ + "pub/static.php", + "pub/static.php" + ], [ "setup", "setup" @@ -6329,12 +6413,6 @@ "vendor/.htaccess", "vendor/.htaccess" ] - ], - "chmod": [ - { - "mask": "0755", - "path": "bin/magento" - } ] }, "license": [ @@ -6345,11 +6423,11 @@ }, { "name": "magento/magento2-ee-base", - "version": "2.4.0", + "version": "2.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/magento2-ee-base/magento-magento2-ee-base-2.4.0.0.zip", - "shasum": "2374e3f9c0399133e54428854d61e079ed36fe97" + "url": "https://repo.magento.com/archives/magento/magento2-ee-base/magento-magento2-ee-base-2.4.1.0.zip", + "shasum": "fe407d88bfddeae3eea2994fcc8d5389ca553bc5" }, "require": { "composer/composer": "^1.9", @@ -6394,11 +6472,13 @@ }, "type": "magento2-component", "extra": { + "chmod": [ + { + "mask": "0755", + "path": "bin/magento" + } + ], "map": [ - [ - ".github", - ".github" - ], [ "LICENSE_EE.txt", "LICENSE_EE.txt" @@ -6451,12 +6531,6 @@ "setup", "setup" ] - ], - "chmod": [ - { - "mask": "0755", - "path": "bin/magento" - } ] }, "license": [ @@ -6466,11 +6540,11 @@ }, { "name": "magento/module-admin-analytics", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-admin-analytics/magento-module-admin-analytics-100.4.0.0.zip", - "shasum": "bf83acd2288effd433438d20b38bdeec49ac8bdd" + "url": "https://repo.magento.com/archives/magento/module-admin-analytics/magento-module-admin-analytics-100.4.1.0.zip", + "shasum": "c7d3d0f138c18f00482f0af3a75dcd6c3de277ed" }, "require": { "magento/framework": "103.0.*", @@ -6497,11 +6571,11 @@ }, { "name": "magento/module-admin-gws", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-admin-gws/magento-module-admin-gws-100.4.0.0.zip", - "shasum": "ea598334db44200163a44051b1c20593120cda06" + "url": "https://repo.magento.com/archives/magento/module-admin-gws/magento-module-admin-gws-100.4.1.0.zip", + "shasum": "e5f6c30da8d2298870a483e42272255f8760f8c4" }, "require": { "magento/framework": "103.0.*", @@ -6541,6 +6615,34 @@ ], "description": "N/A" }, + { + "name": "magento/module-admin-gws-configurable-product", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-admin-gws-configurable-product/magento-module-admin-gws-configurable-product-100.4.0.0.zip", + "shasum": "e815b10dbc7875c6c8b2c2af151db6bdcae96f89" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-admin-gws": "100.4.*", + "magento/module-configurable-product": "100.4.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\AdminGwsConfigurableProduct\\": "" + } + }, + "license": [ + "proprietary" + ], + "description": "N/A" + }, { "name": "magento/module-admin-gws-staging", "version": "100.4.0", @@ -6605,15 +6707,15 @@ }, { "name": "magento/module-adobe-ims", - "version": "1.1.0", + "version": "2.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-ims/magento-module-adobe-ims-1.1.0.0.zip", - "shasum": "17147174448ab48ef5119d70c2a1f9e12e64b2d8" + "url": "https://repo.magento.com/archives/magento/module-adobe-ims/magento-module-adobe-ims-2.1.0.0.zip", + "shasum": "90fa1d2e45978e2a5e023293f1f3ba6820be7f65" }, "require": { "magento/framework": "*", - "magento/module-adobe-ims-api": "2.0.*", + "magento/module-adobe-ims-api": "2.1.*", "magento/module-authorization": "*", "magento/module-backend": "*", "magento/module-config": "*", @@ -6637,11 +6739,11 @@ }, { "name": "magento/module-adobe-ims-api", - "version": "2.0.0", + "version": "2.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-ims-api/magento-module-adobe-ims-api-2.0.0.0.zip", - "shasum": "b73c31968fecdcb6bf28fb19731709e2108acb30" + "url": "https://repo.magento.com/archives/magento/module-adobe-ims-api/magento-module-adobe-ims-api-2.1.0.0.zip", + "shasum": "d2d6efb45a10cecb2c6370d15d42b1139a314b81" }, "require": { "magento/framework": "*", @@ -6664,16 +6766,16 @@ }, { "name": "magento/module-adobe-stock-admin-ui", - "version": "1.1.0", + "version": "1.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-admin-ui/magento-module-adobe-stock-admin-ui-1.1.0.0.zip", - "shasum": "dabbf54b359fe7fb144f4f2efa49a6eacc9da981" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-admin-ui/magento-module-adobe-stock-admin-ui-1.2.0.0.zip", + "shasum": "23f516262484ee476eef26e8eec3b42da0745276" }, "require": { "magento/framework": "*", - "magento/module-adobe-ims-api": "2.0.*", - "magento/module-adobe-stock-client-api": "1.1.*", + "magento/module-adobe-ims-api": "2.1.*", + "magento/module-adobe-stock-client-api": "2.0.*", "magento/module-backend": "*", "magento/module-config": "*", "php": "~7.3.0||~7.4.0" @@ -6698,16 +6800,16 @@ }, { "name": "magento/module-adobe-stock-asset", - "version": "1.1.0", + "version": "1.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-asset/magento-module-adobe-stock-asset-1.1.0.0.zip", - "shasum": "e3e51bdc87ff8e5904a31aeed2b8b7d1d0f82344" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-asset/magento-module-adobe-stock-asset-1.2.0.0.zip", + "shasum": "7f6f041099cc7972fbaa589ef979311db743785f" }, "require": { "magento/framework": "*", - "magento/module-adobe-stock-asset-api": "1.1.*", - "magento/module-adobe-stock-client-api": "1.1.*", + "magento/module-adobe-stock-asset-api": "1.2.*", + "magento/module-adobe-stock-client-api": "2.0.*", "magento/module-config": "*", "magento/module-media-gallery": "*", "magento/module-media-gallery-api": "*", @@ -6730,11 +6832,11 @@ }, { "name": "magento/module-adobe-stock-asset-api", - "version": "1.1.0", + "version": "1.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-asset-api/magento-module-adobe-stock-asset-api-1.1.0.0.zip", - "shasum": "9c7d33acaf9e049b06d568fe6480a867ff57e251" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-asset-api/magento-module-adobe-stock-asset-api-1.2.0.0.zip", + "shasum": "9f9cd8863ffbbd3f16debf9be7d78f58f03f0e5d" }, "require": { "magento/framework": "*", @@ -6757,17 +6859,17 @@ }, { "name": "magento/module-adobe-stock-client", - "version": "1.1.0", + "version": "1.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-client/magento-module-adobe-stock-client-1.1.0.0.zip", - "shasum": "cc1d94f91106f98e08b5938a66a1b8de57679b49" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-client/magento-module-adobe-stock-client-1.2.0.0.zip", + "shasum": "dc90ad4a134df1d4afd6afe80c0882e3287e90d2" }, "require": { "astock/stock-api-libphp": "^1.1.2", "magento/framework": "*", - "magento/module-adobe-ims-api": "2.0.*", - "magento/module-adobe-stock-client-api": "1.1.*", + "magento/module-adobe-ims-api": "2.1.*", + "magento/module-adobe-stock-client-api": "2.0.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -6787,11 +6889,11 @@ }, { "name": "magento/module-adobe-stock-client-api", - "version": "1.1.0", + "version": "2.0.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-client-api/magento-module-adobe-stock-client-api-1.1.0.0.zip", - "shasum": "e1e986652ff89e41824d0546a8947925d033efda" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-client-api/magento-module-adobe-stock-client-api-2.0.0.0.zip", + "shasum": "37eb6691c4c7926a0293661a3a4a6f021b2d8e9c" }, "require": { "magento/framework": "*", @@ -6814,19 +6916,19 @@ }, { "name": "magento/module-adobe-stock-image", - "version": "1.1.0", + "version": "1.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image/magento-module-adobe-stock-image-1.1.0.0.zip", - "shasum": "fcbc4468a86d3fc84c8bdbb9f75d481075bb7093" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image/magento-module-adobe-stock-image-1.2.0.0.zip", + "shasum": "364603aa22c544b3e40e4d3f8f7edde6d487e068" }, "require": { "magento/framework": "*", - "magento/module-adobe-stock-asset-api": "1.1.*", - "magento/module-adobe-stock-client-api": "1.1.*", - "magento/module-adobe-stock-image-api": "1.1.*", - "magento/module-cms": "*", + "magento/module-adobe-stock-asset-api": "1.2.*", + "magento/module-adobe-stock-client-api": "2.0.*", + "magento/module-adobe-stock-image-api": "1.2.*", "magento/module-media-gallery-api": "*", + "magento/module-media-gallery-synchronization-api": "*", "php": "~7.3.0||~7.4.0" }, "suggest": { @@ -6849,21 +6951,22 @@ }, { "name": "magento/module-adobe-stock-image-admin-ui", - "version": "1.1.0", + "version": "1.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image-admin-ui/magento-module-adobe-stock-image-admin-ui-1.1.0.0.zip", - "shasum": "7e10f45d9cc42b79bd60fe8269182d2df87318b7" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image-admin-ui/magento-module-adobe-stock-image-admin-ui-1.2.0.0.zip", + "shasum": "9009bda4867a288317434ef130ee325c182bceb7" }, "require": { "magento/framework": "*", - "magento/module-adobe-ims": "1.1.*", - "magento/module-adobe-ims-api": "2.0.*", - "magento/module-adobe-stock-asset-api": "1.1.*", - "magento/module-adobe-stock-client-api": "1.1.*", - "magento/module-adobe-stock-image-api": "1.1.*", + "magento/module-adobe-ims": "2.1.*", + "magento/module-adobe-ims-api": "2.1.*", + "magento/module-adobe-stock-asset-api": "1.2.*", + "magento/module-adobe-stock-client-api": "2.0.*", + "magento/module-adobe-stock-image-api": "1.2.*", "magento/module-backend": "*", - "magento/module-media-gallery-ui": "1.0.*", + "magento/module-media-gallery-api": "*", + "magento/module-media-gallery-ui": "*", "magento/module-ui": "*", "php": "~7.3.0||~7.4.0" }, @@ -6887,11 +6990,11 @@ }, { "name": "magento/module-adobe-stock-image-api", - "version": "1.1.0", + "version": "1.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image-api/magento-module-adobe-stock-image-api-1.1.0.0.zip", - "shasum": "f0731af35a21ca09d51750741413da0bd56e43d9" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image-api/magento-module-adobe-stock-image-api-1.2.0.0.zip", + "shasum": "b6a894607df2d38446dde2efe928483d1ce058cd" }, "require": { "magento/framework": "*", @@ -6944,11 +7047,11 @@ }, { "name": "magento/module-advanced-checkout", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-advanced-checkout/magento-module-advanced-checkout-100.4.0.0.zip", - "shasum": "4f91e4a7a9e7af31d6ed963fd6405de616a9e315" + "url": "https://repo.magento.com/archives/magento/module-advanced-checkout/magento-module-advanced-checkout-100.4.1.0.zip", + "shasum": "2f0210d5ce31e881e9c02700f494099096da682c" }, "require": { "magento/framework": "103.0.*", @@ -6989,11 +7092,11 @@ }, { "name": "magento/module-advanced-pricing-import-export", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-advanced-pricing-import-export/magento-module-advanced-pricing-import-export-100.4.0.0.zip", - "shasum": "1e17693cbf4b71688c353e57ef1371e9d194fd7a" + "url": "https://repo.magento.com/archives/magento/module-advanced-pricing-import-export/magento-module-advanced-pricing-import-export-100.4.1.0.zip", + "shasum": "507279ac2b39e9f8c9e95e92d7dcf0d6095aeee3" }, "require": { "magento/framework": "103.0.*", @@ -7181,11 +7284,11 @@ }, { "name": "magento/module-analytics", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-analytics/magento-module-analytics-100.4.0.0.zip", - "shasum": "cc706617851941292d53867117785c101cd98ad4" + "url": "https://repo.magento.com/archives/magento/module-analytics/magento-module-analytics-100.4.1.0.zip", + "shasum": "0d8d21cd754db18be3ec001063c16a5d09d440ce" }, "require": { "magento/framework": "103.0.*", @@ -7212,11 +7315,11 @@ }, { "name": "magento/module-asynchronous-operations", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-asynchronous-operations/magento-module-asynchronous-operations-100.4.0.0.zip", - "shasum": "6a56ce8d20f38a832ceb558bc0f58a77905be22c" + "url": "https://repo.magento.com/archives/magento/module-asynchronous-operations/magento-module-asynchronous-operations-100.4.1.0.zip", + "shasum": "814fe86466644ab4542e5e0bbddd7a217d532b4f" }, "require": { "magento/framework": "103.0.*", @@ -7229,7 +7332,7 @@ }, "suggest": { "magento/module-admin-notification": "100.4.*", - "magento/module-logging": "101.2.*" + "magento/module-logging": "*" }, "type": "magento2-module", "autoload": { @@ -7248,11 +7351,11 @@ }, { "name": "magento/module-authorization", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-authorization/magento-module-authorization-100.4.0.0.zip", - "shasum": "6b0409ed55a82662097db7e35f20f7a13d57e30b" + "url": "https://repo.magento.com/archives/magento/module-authorization/magento-module-authorization-100.4.1.0.zip", + "shasum": "0b41ed63fdf10d5f9553c8a310d0499d65d3c39f" }, "require": { "magento/framework": "103.0.*", @@ -7276,11 +7379,11 @@ }, { "name": "magento/module-backend", - "version": "102.0.0", + "version": "102.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-backend/magento-module-backend-102.0.0.0.zip", - "shasum": "8a1bf66c5e6dd2279f99340145c2afb582fb986f" + "url": "https://repo.magento.com/archives/magento/module-backend/magento-module-backend-102.0.1.0.zip", + "shasum": "bbb52b121acd7107abc6e846fa3400283b5519c6" }, "require": { "magento/framework": "103.0.*", @@ -7322,11 +7425,11 @@ }, { "name": "magento/module-backup", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-backup/magento-module-backup-100.4.0.0.zip", - "shasum": "99f602843baf059c5e74ebf0c9344e2890faaff9" + "url": "https://repo.magento.com/archives/magento/module-backup/magento-module-backup-100.4.1.0.zip", + "shasum": "543a2dffcdc0e1fd4d9e7a2ae7b1979aa6d79fb7" }, "require": { "magento/framework": "103.0.*", @@ -7352,11 +7455,11 @@ }, { "name": "magento/module-banner", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-banner/magento-module-banner-101.2.0.0.zip", - "shasum": "a0b3afb158e2eac50158c6a221955164f7c72224" + "url": "https://repo.magento.com/archives/magento/module-banner/magento-module-banner-101.2.1.0.zip", + "shasum": "d53f82e0b9a4bb0bcadd46cc3373fa21ca4208fa" }, "require": { "magento/framework": "103.0.*", @@ -7418,21 +7521,21 @@ }, { "name": "magento/module-banner-page-builder", - "version": "2.0.0", + "version": "2.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-banner-page-builder/magento-module-banner-page-builder-2.0.0.0.zip", - "shasum": "9fb1f3b5352b29aa35320be269b7387503806a6c" + "url": "https://repo.magento.com/archives/magento/module-banner-page-builder/magento-module-banner-page-builder-2.1.0.0.zip", + "shasum": "7a3ea1ebf2b0d3ccbbfeb616aefea8c32fc1b2d6" }, "require": { - "magento/framework": "~103.0.0-beta2", - "magento/module-backend": "~102.0.0-beta2", - "magento/module-banner": "~101.2.0-beta2", - "magento/module-banner-customer-segment": "~100.4.0-beta2", + "magento/framework": "~103.0.1-alpha2", + "magento/module-backend": "~102.0.1-alpha2", + "magento/module-banner": "~101.2.1-alpha2", + "magento/module-banner-customer-segment": "~100.4.0", "magento/module-catalog-rule": "*", - "magento/module-customer-segment": "~102.1.0-beta2", - "magento/module-page-builder": "2.0.*", - "magento/module-sales-rule": "~101.2.0-beta2", + "magento/module-customer-segment": "~102.1.1-alpha2", + "magento/module-page-builder": "2.1.*", + "magento/module-sales-rule": "~101.2.1-alpha2", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -7451,16 +7554,16 @@ }, { "name": "magento/module-banner-page-builder-analytics", - "version": "1.4.0", + "version": "1.5.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-banner-page-builder-analytics/magento-module-banner-page-builder-analytics-1.4.0.0.zip", - "shasum": "d407267ec12210a8b86ea3b46e14e20c9a3e1f4f" + "url": "https://repo.magento.com/archives/magento/module-banner-page-builder-analytics/magento-module-banner-page-builder-analytics-1.5.0.0.zip", + "shasum": "7233768d087683328e444f9a438495f478967404" }, "require": { - "magento/framework": "~103.0.0-beta2", - "magento/module-banner": "~101.2.0-beta2", - "magento/module-page-builder-analytics": "1.4.*", + "magento/framework": "~103.0.1-alpha2", + "magento/module-banner": "~101.2.1-alpha2", + "magento/module-page-builder-analytics": "1.5.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -7479,11 +7582,11 @@ }, { "name": "magento/module-bundle", - "version": "101.0.0", + "version": "101.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-bundle/magento-module-bundle-101.0.0.0.zip", - "shasum": "6be53d368f6b64ecf49d6daabad98a08a0b0baf8" + "url": "https://repo.magento.com/archives/magento/module-bundle/magento-module-bundle-101.0.1.0.zip", + "shasum": "4dca663bbc5f6835c2e3a12e88d9416c9edfa206" }, "require": { "magento/framework": "103.0.*", @@ -7526,11 +7629,11 @@ }, { "name": "magento/module-bundle-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-bundle-graph-ql/magento-module-bundle-graph-ql-100.4.0.0.zip", - "shasum": "dace13e9da2be339bb5fd7dd6dea1184af1f1666" + "url": "https://repo.magento.com/archives/magento/module-bundle-graph-ql/magento-module-bundle-graph-ql-100.4.1.0.zip", + "shasum": "816cc1ec4c5f0cee0283fbeb9f4dba178917b0ec" }, "require": { "magento/framework": "103.0.*", @@ -7539,6 +7642,8 @@ "magento/module-catalog-graph-ql": "100.4.*", "magento/module-quote": "101.2.*", "magento/module-quote-graph-ql": "100.4.*", + "magento/module-sales": "103.0.*", + "magento/module-sales-graph-ql": "100.4.*", "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, @@ -7622,11 +7727,11 @@ }, { "name": "magento/module-bundle-staging", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-bundle-staging/magento-module-bundle-staging-100.4.0.0.zip", - "shasum": "8cd5da7d204f64e8719cce70d1cb88bb504ac71e" + "url": "https://repo.magento.com/archives/magento/module-bundle-staging/magento-module-bundle-staging-100.4.1.0.zip", + "shasum": "e9cee4b6238d932acdd90f91944ed7f6bc58a1ed" }, "require": { "magento/framework": "103.0.*", @@ -7682,17 +7787,18 @@ }, { "name": "magento/module-captcha", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-captcha/magento-module-captcha-100.4.0.0.zip", - "shasum": "e86d5696144577a7d7b9ba7c36ac435a1c4b02d1" + "url": "https://repo.magento.com/archives/magento/module-captcha/magento-module-captcha-100.4.1.0.zip", + "shasum": "38f7925b06310d50c87d062d53bbdc2fdc5920f5" }, "require": { "laminas/laminas-captcha": "^2.7.1", "laminas/laminas-db": "^2.8.2", "laminas/laminas-session": "^2.7.3", "magento/framework": "103.0.*", + "magento/module-authorization": "100.4.*", "magento/module-backend": "102.0.*", "magento/module-checkout": "100.4.*", "magento/module-customer": "103.0.*", @@ -7746,11 +7852,11 @@ }, { "name": "magento/module-catalog", - "version": "104.0.0", + "version": "104.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog/magento-module-catalog-104.0.0.0.zip", - "shasum": "36c1174284754b3fa992e5a832643af195ed7082" + "url": "https://repo.magento.com/archives/magento/module-catalog/magento-module-catalog-104.0.1.0.zip", + "shasum": "573c5c090fac813941027a797bc14d0690fd41a8" }, "require": { "magento/framework": "103.0.*", @@ -7866,11 +7972,11 @@ }, { "name": "magento/module-catalog-customer-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-customer-graph-ql/magento-module-catalog-customer-graph-ql-100.4.0.0.zip", - "shasum": "5ed7beed2acc812145f325baa646b7ca392d97ee" + "url": "https://repo.magento.com/archives/magento/module-catalog-customer-graph-ql/magento-module-catalog-customer-graph-ql-100.4.1.0.zip", + "shasum": "dddbec549a3a9546cf437cec95bf3a4909294d89" }, "require": { "magento/framework": "103.0.*", @@ -7897,11 +8003,11 @@ }, { "name": "magento/module-catalog-event", - "version": "101.1.0", + "version": "101.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-event/magento-module-catalog-event-101.1.0.0.zip", - "shasum": "aadf02b7f5bb81eaee6dfd5de71c8269ddae4501" + "url": "https://repo.magento.com/archives/magento/module-catalog-event/magento-module-catalog-event-101.1.1.0.zip", + "shasum": "1d2dc820537a2ea7effe8713a050f1fcde7c1e50" }, "require": { "magento/framework": "103.0.*", @@ -7933,11 +8039,11 @@ }, { "name": "magento/module-catalog-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-graph-ql/magento-module-catalog-graph-ql-100.4.0.0.zip", - "shasum": "e0171524c27ccfcabe0641e7e49f825eccf8a691" + "url": "https://repo.magento.com/archives/magento/module-catalog-graph-ql/magento-module-catalog-graph-ql-100.4.1.0.zip", + "shasum": "d17c9d14142d2723f3e57c9e5bde98a9f1b665aa" }, "require": { "magento/framework": "103.0.*", @@ -7946,12 +8052,12 @@ "magento/module-catalog-search": "102.0.*", "magento/module-eav": "102.1.*", "magento/module-eav-graph-ql": "100.4.*", + "magento/module-graph-ql": "100.4.*", "magento/module-search": "101.1.*", "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-graph-ql": "100.4.*", "magento/module-graph-ql-cache": "100.4.*", "magento/module-store-graph-ql": "100.4.*" }, @@ -7972,11 +8078,11 @@ }, { "name": "magento/module-catalog-import-export", - "version": "101.1.0", + "version": "101.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-import-export/magento-module-catalog-import-export-101.1.0.0.zip", - "shasum": "9588ebc86f35d4363ee0f0fd051de36ebbbda966" + "url": "https://repo.magento.com/archives/magento/module-catalog-import-export/magento-module-catalog-import-export-101.1.1.0.zip", + "shasum": "e6761f2f46b78234d49c8f251b1a29f485832928" }, "require": { "ext-ctype": "*", @@ -8042,11 +8148,11 @@ }, { "name": "magento/module-catalog-inventory", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-inventory/magento-module-catalog-inventory-100.4.0.0.zip", - "shasum": "660af2a2b58dc795e87d56abf4d25e63da3acd42" + "url": "https://repo.magento.com/archives/magento/module-catalog-inventory/magento-module-catalog-inventory-100.4.1.0.zip", + "shasum": "7736d83444b73dec7b0c5c6035739739013763bf" }, "require": { "magento/framework": "103.0.*", @@ -8140,16 +8246,16 @@ }, { "name": "magento/module-catalog-page-builder-analytics", - "version": "1.4.0", + "version": "1.5.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-page-builder-analytics/magento-module-catalog-page-builder-analytics-1.4.0.0.zip", - "shasum": "aacda66e19f77e2121cf9eaf87c814b297e5ed9f" + "url": "https://repo.magento.com/archives/magento/module-catalog-page-builder-analytics/magento-module-catalog-page-builder-analytics-1.5.0.0.zip", + "shasum": "190a16c88e509f2d8dcb0140cabe24905c941de7" }, "require": { - "magento/framework": "~103.0.0-beta2", - "magento/module-catalog": "~104.0.0-beta2", - "magento/module-page-builder-analytics": "1.4.*", + "magento/framework": "~103.0.1-alpha2", + "magento/module-catalog": "~104.0.1-alpha2", + "magento/module-page-builder-analytics": "1.5.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -8168,16 +8274,16 @@ }, { "name": "magento/module-catalog-page-builder-analytics-staging", - "version": "1.4.0", + "version": "1.5.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-page-builder-analytics-staging/magento-module-catalog-page-builder-analytics-staging-1.4.0.0.zip", - "shasum": "34b25ad4bbb390969c4901f3e905b21eb34936b1" + "url": "https://repo.magento.com/archives/magento/module-catalog-page-builder-analytics-staging/magento-module-catalog-page-builder-analytics-staging-1.5.0.0.zip", + "shasum": "30e208d8fac93a32ed5c47a0fb7d4c8e75b0c3ce" }, "require": { - "magento/framework": "~103.0.0-beta2", - "magento/module-catalog": "~104.0.0-beta2", - "magento/module-page-builder-analytics": "1.4.*", + "magento/framework": "~103.0.1-alpha2", + "magento/module-catalog": "~104.0.1-alpha2", + "magento/module-page-builder-analytics": "1.5.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -8196,11 +8302,11 @@ }, { "name": "magento/module-catalog-permissions", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-permissions/magento-module-catalog-permissions-100.4.0.0.zip", - "shasum": "59f38cd259334ef6284425104468fdd0fe9179dd" + "url": "https://repo.magento.com/archives/magento/module-catalog-permissions/magento-module-catalog-permissions-100.4.1.0.zip", + "shasum": "b1d519aca1261ffe98bcf6725392cbaf2fa12776" }, "require": { "magento/framework": "103.0.*", @@ -8232,13 +8338,45 @@ ], "description": "N/A" }, + { + "name": "magento/module-catalog-permissions-graph-ql", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-catalog-permissions-graph-ql/magento-module-catalog-permissions-graph-ql-100.4.0.0.zip", + "shasum": "dd522b4eb930ff984a52504e65e6f00a45328251" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-catalog": "104.0.*", + "magento/module-catalog-graph-ql": "100.4.*", + "magento/module-catalog-permissions": "100.4.*", + "magento/module-customer": "103.0.*", + "magento/module-graph-ql": "100.4.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\CatalogPermissionsGraphQl\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "N/A" + }, { "name": "magento/module-catalog-rule", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-rule/magento-module-catalog-rule-101.2.0.0.zip", - "shasum": "dff3d586a4b9b18fc9b493839cfc403c8138a22c" + "url": "https://repo.magento.com/archives/magento/module-catalog-rule/magento-module-catalog-rule-101.2.1.0.zip", + "shasum": "96be335eaf75ac296f745e4d09160748f06ce191" }, "require": { "magento/framework": "103.0.*", @@ -8336,11 +8474,11 @@ }, { "name": "magento/module-catalog-rule-staging", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-rule-staging/magento-module-catalog-rule-staging-100.4.0.0.zip", - "shasum": "e89179fd47b21fe2d0e1c662918e15938153764a" + "url": "https://repo.magento.com/archives/magento/module-catalog-rule-staging/magento-module-catalog-rule-staging-100.4.1.0.zip", + "shasum": "fd7f44506152c0b57399a7585915a8b2a8941ab2" }, "require": { "magento/framework": "103.0.*", @@ -8371,11 +8509,11 @@ }, { "name": "magento/module-catalog-search", - "version": "102.0.0", + "version": "102.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-search/magento-module-catalog-search-102.0.0.0.zip", - "shasum": "a9b74ae5689d0a81e6b33aa62858c6dba4926808" + "url": "https://repo.magento.com/archives/magento/module-catalog-search/magento-module-catalog-search-102.0.1.0.zip", + "shasum": "435a36afe5f8bfdbb0c81c68470a7c8859c7b55d" }, "require": { "magento/framework": "103.0.*", @@ -8412,11 +8550,11 @@ }, { "name": "magento/module-catalog-staging", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-staging/magento-module-catalog-staging-100.4.0.0.zip", - "shasum": "d449e80a4882bfecd9c9d761b77fae2061a19bb4" + "url": "https://repo.magento.com/archives/magento/module-catalog-staging/magento-module-catalog-staging-100.4.1.0.zip", + "shasum": "dc441a2d6e5610cdea5a5936b3bb1712ff78cb10" }, "require": { "lib-libxml": "*", @@ -8464,15 +8602,16 @@ }, { "name": "magento/module-catalog-staging-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-staging-graph-ql/magento-module-catalog-staging-graph-ql-100.4.0.0.zip", - "shasum": "f1538aa461154c8f4f8be5605a128d519bd43b73" + "url": "https://repo.magento.com/archives/magento/module-catalog-staging-graph-ql/magento-module-catalog-staging-graph-ql-100.4.1.0.zip", + "shasum": "3b55b3bd51530075b00ed415aeddd9e0385527d0" }, "require": { "magento/framework": "103.0.*", "magento/module-catalog-graph-ql": "100.4.*", + "magento/module-graph-ql": "100.4.*", "magento/module-staging": "101.2.*", "php": "~7.3.0||~7.4.0" }, @@ -8496,14 +8635,14 @@ }, { "name": "magento/module-catalog-staging-page-builder", - "version": "1.4.0", + "version": "1.5.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-staging-page-builder/magento-module-catalog-staging-page-builder-1.4.0.0.zip", - "shasum": "5191968cd3b5c94916547f3614eb949bbc59f27b" + "url": "https://repo.magento.com/archives/magento/module-catalog-staging-page-builder/magento-module-catalog-staging-page-builder-1.5.0.0.zip", + "shasum": "7bdc01d8c4a3a0fcbaada7e1321a69069debb03b" }, "require": { - "magento/framework": "~103.0.0-beta2", + "magento/framework": "~103.0.1-alpha2", "php": "~7.3.0||~7.4.0" }, "suggest": { @@ -8526,11 +8665,11 @@ }, { "name": "magento/module-catalog-url-rewrite", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-url-rewrite/magento-module-catalog-url-rewrite-100.4.0.0.zip", - "shasum": "dc06042f8b61a64a81b2660f504d414f5a026fa5" + "url": "https://repo.magento.com/archives/magento/module-catalog-url-rewrite/magento-module-catalog-url-rewrite-100.4.1.0.zip", + "shasum": "61f50535c4826e65d72af9823d48c7414c8b9237" }, "require": { "magento/framework": "103.0.*", @@ -8629,11 +8768,11 @@ }, { "name": "magento/module-catalog-widget", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-widget/magento-module-catalog-widget-100.4.0.0.zip", - "shasum": "6a998f268e7399f26f0f556428aed6e35d38053f" + "url": "https://repo.magento.com/archives/magento/module-catalog-widget/magento-module-catalog-widget-100.4.1.0.zip", + "shasum": "93d26be38f7e7ea94f4f716bcf7a5ff6874e867d" }, "require": { "magento/framework": "103.0.*", @@ -8665,14 +8804,15 @@ }, { "name": "magento/module-checkout", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-checkout/magento-module-checkout-100.4.0.0.zip", - "shasum": "e4e5025d992740cb726aec7f65e8dc27a3ad671c" + "url": "https://repo.magento.com/archives/magento/module-checkout/magento-module-checkout-100.4.1.0.zip", + "shasum": "2a5734afe062bdd1d2bcd75be1d3207600d4b1cd" }, "require": { "magento/framework": "103.0.*", + "magento/module-authorization": "100.4.*", "magento/module-captcha": "100.4.*", "magento/module-catalog": "104.0.*", "magento/module-catalog-inventory": "100.4.*", @@ -8871,11 +9011,11 @@ }, { "name": "magento/module-cms", - "version": "104.0.0", + "version": "104.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-cms/magento-module-cms-104.0.0.0.zip", - "shasum": "2e0c9a3eb8c7aa83a4e2856d1ccef89dc071fb63" + "url": "https://repo.magento.com/archives/magento/module-cms/magento-module-cms-104.0.1.0.zip", + "shasum": "1c5c8d11502dbac51f396a800318c300166d30a9" }, "require": { "magento/framework": "103.0.*", @@ -8945,16 +9085,16 @@ }, { "name": "magento/module-cms-page-builder-analytics", - "version": "1.4.0", + "version": "1.5.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-cms-page-builder-analytics/magento-module-cms-page-builder-analytics-1.4.0.0.zip", - "shasum": "d977e8e7d58502f70310f945c0e23f111d84014f" + "url": "https://repo.magento.com/archives/magento/module-cms-page-builder-analytics/magento-module-cms-page-builder-analytics-1.5.0.0.zip", + "shasum": "168b2c817e9a57c0de763dc6ed8405137338eafb" }, "require": { - "magento/framework": "~103.0.0-beta2", + "magento/framework": "~103.0.1-alpha2", "magento/module-cms": "*", - "magento/module-page-builder-analytics": "1.4.*", + "magento/module-page-builder-analytics": "1.5.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -8973,16 +9113,16 @@ }, { "name": "magento/module-cms-page-builder-analytics-staging", - "version": "1.4.0", + "version": "1.5.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-cms-page-builder-analytics-staging/magento-module-cms-page-builder-analytics-staging-1.4.0.0.zip", - "shasum": "e45a093e68832ef7a2e907df892eeea2f5464788" + "url": "https://repo.magento.com/archives/magento/module-cms-page-builder-analytics-staging/magento-module-cms-page-builder-analytics-staging-1.5.0.0.zip", + "shasum": "d59cdb07dce1b3528e9484fdbb3ecdbbc1cabe13" }, "require": { - "magento/framework": "~103.0.0-beta2", + "magento/framework": "~103.0.1-alpha2", "magento/module-cms": "*", - "magento/module-page-builder-analytics": "1.4.*", + "magento/module-page-builder-analytics": "1.5.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -9001,11 +9141,11 @@ }, { "name": "magento/module-cms-staging", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-cms-staging/magento-module-cms-staging-100.4.0.0.zip", - "shasum": "8cf9725b09615d01e974dc6c0d1ac4214d7409db" + "url": "https://repo.magento.com/archives/magento/module-cms-staging/magento-module-cms-staging-100.4.1.0.zip", + "shasum": "9835e79b60904a610c467698198c2db61db2e4a6" }, "require": { "magento/framework": "103.0.*", @@ -9032,11 +9172,11 @@ }, { "name": "magento/module-cms-url-rewrite", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-cms-url-rewrite/magento-module-cms-url-rewrite-100.4.0.0.zip", - "shasum": "19dcfaf8658f4f5c855fc4b290cdcad88199b809" + "url": "https://repo.magento.com/archives/magento/module-cms-url-rewrite/magento-module-cms-url-rewrite-100.4.1.0.zip", + "shasum": "7d0078ba3fc02de9414c2d21e2fa2c1b42694467" }, "require": { "magento/framework": "103.0.*", @@ -9096,11 +9236,11 @@ }, { "name": "magento/module-config", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-config/magento-module-config-101.2.0.0.zip", - "shasum": "2a4de22a1af83fee9531c09f4ddef93ed28a634a" + "url": "https://repo.magento.com/archives/magento/module-config/magento-module-config-101.2.1.0.zip", + "shasum": "05bb2df12fa2f13ba476a327a8a313394fa6743e" }, "require": { "magento/framework": "103.0.*", @@ -9163,11 +9303,11 @@ }, { "name": "magento/module-configurable-product", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-configurable-product/magento-module-configurable-product-100.4.0.0.zip", - "shasum": "bd9cd79cfce3fee88f4bc135a3b9872f5a6ab88a" + "url": "https://repo.magento.com/archives/magento/module-configurable-product/magento-module-configurable-product-100.4.1.0.zip", + "shasum": "5fd6c7ced2356129cc09e6837dc2d77c79d7e006" }, "require": { "magento/framework": "103.0.*", @@ -9210,17 +9350,18 @@ }, { "name": "magento/module-configurable-product-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-configurable-product-graph-ql/magento-module-configurable-product-graph-ql-100.4.0.0.zip", - "shasum": "f2f6f35eda676b7c2e923beb0d918bdb88856a7c" + "url": "https://repo.magento.com/archives/magento/module-configurable-product-graph-ql/magento-module-configurable-product-graph-ql-100.4.1.0.zip", + "shasum": "12c44fae9964a4f27926df978f688461075e52cf" }, "require": { "magento/framework": "103.0.*", "magento/module-catalog": "104.0.*", "magento/module-catalog-graph-ql": "100.4.*", "magento/module-configurable-product": "100.4.*", + "magento/module-graph-ql": "100.4.*", "magento/module-quote": "101.2.*", "magento/module-quote-graph-ql": "100.4.*", "php": "~7.3.0||~7.4.0" @@ -9310,11 +9451,11 @@ }, { "name": "magento/module-contact", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-contact/magento-module-contact-100.4.0.0.zip", - "shasum": "9ea0606355a83c45f3d225b3abe28e0780992402" + "url": "https://repo.magento.com/archives/magento/module-contact/magento-module-contact-100.4.1.0.zip", + "shasum": "d4c5baccc6de5a296a80a73d787126d137f1b2a4" }, "require": { "magento/framework": "103.0.*", @@ -9341,11 +9482,11 @@ }, { "name": "magento/module-cookie", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-cookie/magento-module-cookie-100.4.0.0.zip", - "shasum": "d2fde4538540900f60677db6eba33ecc9797a17b" + "url": "https://repo.magento.com/archives/magento/module-cookie/magento-module-cookie-100.4.1.0.zip", + "shasum": "4a912c43b535cfbcf758b7eb6a600220278f2c93" }, "require": { "magento/framework": "103.0.*", @@ -9372,11 +9513,11 @@ }, { "name": "magento/module-cron", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-cron/magento-module-cron-100.4.0.0.zip", - "shasum": "6afa4ea3198c535b5685fb3900a388cf85b0085a" + "url": "https://repo.magento.com/archives/magento/module-cron/magento-module-cron-100.4.1.0.zip", + "shasum": "ad1d4c544ba2d9d923ba5c9fe81f58fcfd67e4fa" }, "require": { "magento/framework": "103.0.*", @@ -9493,11 +9634,11 @@ }, { "name": "magento/module-customer", - "version": "103.0.0", + "version": "103.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-customer/magento-module-customer-103.0.0.0.zip", - "shasum": "f57f04a8edcb876fa2823aeabaee3875647c3fed" + "url": "https://repo.magento.com/archives/magento/module-customer/magento-module-customer-103.0.1.0.zip", + "shasum": "f1d77e157bf64730d8504eede550a62eac2fe6b6" }, "require": { "magento/framework": "103.0.*", @@ -9571,11 +9712,11 @@ }, { "name": "magento/module-customer-balance", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-customer-balance/magento-module-customer-balance-100.4.0.0.zip", - "shasum": "c7a24b7d3abbadb24636ac73d889613fb70702df" + "url": "https://repo.magento.com/archives/magento/module-customer-balance/magento-module-customer-balance-100.4.1.0.zip", + "shasum": "0484dafd3871f11c761ffd52ea77baf0d64061d0" }, "require": { "magento/framework": "103.0.*", @@ -9641,11 +9782,11 @@ }, { "name": "magento/module-customer-custom-attributes", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-customer-custom-attributes/magento-module-customer-custom-attributes-100.4.0.0.zip", - "shasum": "285bc69d5819719b0efc196cf887030339424c03" + "url": "https://repo.magento.com/archives/magento/module-customer-custom-attributes/magento-module-customer-custom-attributes-100.4.1.0.zip", + "shasum": "3103412f001f506d8247f60848ca42ce0c943a58" }, "require": { "magento/framework": "103.0.*", @@ -9746,11 +9887,11 @@ }, { "name": "magento/module-customer-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-customer-graph-ql/magento-module-customer-graph-ql-100.4.0.0.zip", - "shasum": "be17e25e7ac89f75e4c8b1f68a960f6f8e046bec" + "url": "https://repo.magento.com/archives/magento/module-customer-graph-ql/magento-module-customer-graph-ql-100.4.1.0.zip", + "shasum": "01eb382b847513213d6bcf859e540af748f47410" }, "require": { "magento/framework": "103.0.*", @@ -9781,11 +9922,11 @@ }, { "name": "magento/module-customer-import-export", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-customer-import-export/magento-module-customer-import-export-100.4.0.0.zip", - "shasum": "b038805e05c313e517211d2c61f06e5ba43f2db2" + "url": "https://repo.magento.com/archives/magento/module-customer-import-export/magento-module-customer-import-export-100.4.1.0.zip", + "shasum": "96b6fed38ea9965b4c73bed9484c0f18565d608b" }, "require": { "magento/framework": "103.0.*", @@ -9814,18 +9955,20 @@ }, { "name": "magento/module-customer-segment", - "version": "102.1.0", + "version": "102.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-customer-segment/magento-module-customer-segment-102.1.0.0.zip", - "shasum": "824b8667ac0d8d849d4a83ad9890dc04377b975f" + "url": "https://repo.magento.com/archives/magento/module-customer-segment/magento-module-customer-segment-102.1.1.0.zip", + "shasum": "99bed2eac0dcaf187b325704bd425350e8b0ceb2" }, "require": { "magento/framework": "103.0.*", + "magento/framework-bulk": "101.0.*", "magento/module-advanced-rule": "100.4.*", + "magento/module-asynchronous-operations": "100.4.*", + "magento/module-authorization": "100.4.*", "magento/module-backend": "102.0.*", "magento/module-catalog": "104.0.*", - "magento/module-catalog-rule": "101.2.*", "magento/module-config": "101.2.*", "magento/module-customer": "103.0.*", "magento/module-directory": "100.4.*", @@ -9857,11 +10000,11 @@ }, { "name": "magento/module-deploy", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-deploy/magento-module-deploy-100.4.0.0.zip", - "shasum": "a96d2ee89198e2c56aad0a660334dfb8d4a532bb" + "url": "https://repo.magento.com/archives/magento/module-deploy/magento-module-deploy-100.4.1.0.zip", + "shasum": "e3243986149cc97e12ab89d6453a84252f70223c" }, "require": { "magento/framework": "103.0.*", @@ -9889,11 +10032,11 @@ }, { "name": "magento/module-developer", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-developer/magento-module-developer-100.4.0.0.zip", - "shasum": "ecf9dda2e67a8d12b7e4872848b0034d6e421c1f" + "url": "https://repo.magento.com/archives/magento/module-developer/magento-module-developer-100.4.1.0.zip", + "shasum": "6df9bee93b7977dccaa72512e4b136a74993c3ef" }, "require": { "magento/framework": "103.0.*", @@ -9958,11 +10101,11 @@ }, { "name": "magento/module-directory", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-directory/magento-module-directory-100.4.0.0.zip", - "shasum": "236cd6cfed6e4edbbfb22035153c311768f4feef" + "url": "https://repo.magento.com/archives/magento/module-directory/magento-module-directory-100.4.1.0.zip", + "shasum": "a3e502a836af07e820b9b81dd62a79970442300a" }, "require": { "lib-libxml": "*", @@ -10019,11 +10162,11 @@ }, { "name": "magento/module-downloadable", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-downloadable/magento-module-downloadable-100.4.0.0.zip", - "shasum": "572dcd214f12c936161ca6a7d7a7e170087b0521" + "url": "https://repo.magento.com/archives/magento/module-downloadable/magento-module-downloadable-100.4.1.0.zip", + "shasum": "e8b3d64d3aa6851f7dab3401694109f01cfe8b1c" }, "require": { "magento/framework": "103.0.*", @@ -10065,11 +10208,11 @@ }, { "name": "magento/module-downloadable-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-downloadable-graph-ql/magento-module-downloadable-graph-ql-100.4.0.0.zip", - "shasum": "05469df18674e6a3d9564a789e48b2b9e4b1623e" + "url": "https://repo.magento.com/archives/magento/module-downloadable-graph-ql/magento-module-downloadable-graph-ql-100.4.1.0.zip", + "shasum": "cf287ee98ba85d490748fa7210f04f985cbfe2d1" }, "require": { "magento/framework": "103.0.*", @@ -10077,10 +10220,13 @@ "magento/module-downloadable": "100.4.*", "magento/module-quote": "101.2.*", "magento/module-quote-graph-ql": "100.4.*", + "magento/module-sales": "103.0.*", + "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-catalog-graph-ql": "100.4.*" + "magento/module-catalog-graph-ql": "100.4.*", + "magento/module-sales-graph-ql": "100.4.*" }, "type": "magento2-module", "autoload": { @@ -10165,11 +10311,11 @@ }, { "name": "magento/module-eav", - "version": "102.1.0", + "version": "102.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-eav/magento-module-eav-102.1.0.0.zip", - "shasum": "0d9cdb60c5f15afe85721bac2256cead89d07640" + "url": "https://repo.magento.com/archives/magento/module-eav/magento-module-eav-102.1.1.0.zip", + "shasum": "03b2b59ec72a4ae0840da7ad054282a3ee3b48f2" }, "require": { "magento/framework": "103.0.*", @@ -10228,11 +10374,11 @@ }, { "name": "magento/module-elasticsearch", - "version": "101.0.0", + "version": "101.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-elasticsearch/magento-module-elasticsearch-101.0.0.0.zip", - "shasum": "f6dfe5646a1011e7059daf54d0041c6e64e1a0c5" + "url": "https://repo.magento.com/archives/magento/module-elasticsearch/magento-module-elasticsearch-101.0.1.0.zip", + "shasum": "f495fe004d07b435ee750b983a70ca6cbaa3ebe7" }, "require": { "elasticsearch/elasticsearch": "~7.7.0", @@ -10267,11 +10413,11 @@ }, { "name": "magento/module-elasticsearch-6", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-elasticsearch-6/magento-module-elasticsearch-6-100.4.0.0.zip", - "shasum": "d67f6b116afd206098248c7b6945684e9ca2f22c" + "url": "https://repo.magento.com/archives/magento/module-elasticsearch-6/magento-module-elasticsearch-6-100.4.1.0.zip", + "shasum": "a00dfdb1aab3a49d1bf1ee3e356c61993e13ca6f" }, "require": { "elasticsearch/elasticsearch": "~7.7.0", @@ -10302,11 +10448,11 @@ }, { "name": "magento/module-elasticsearch-7", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-elasticsearch-7/magento-module-elasticsearch-7-100.4.0.0.zip", - "shasum": "bee1e7f5b15660414feba6dd5110df2c8b3f2fda" + "url": "https://repo.magento.com/archives/magento/module-elasticsearch-7/magento-module-elasticsearch-7-100.4.1.0.zip", + "shasum": "205981031bec3dd5084ec40298de75394abb60ba" }, "require": { "elasticsearch/elasticsearch": "~7.7.0", @@ -10373,11 +10519,11 @@ }, { "name": "magento/module-email", - "version": "101.1.0", + "version": "101.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-email/magento-module-email-101.1.0.0.zip", - "shasum": "7947b2ce88d2800162a697913c009fa48348f4a6" + "url": "https://repo.magento.com/archives/magento/module-email/magento-module-email-101.1.1.0.zip", + "shasum": "42887f4bd3c92634aa83c3dfeb110a2872bc0995" }, "require": { "magento/framework": "103.0.*", @@ -10494,11 +10640,11 @@ }, { "name": "magento/module-fedex", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-fedex/magento-module-fedex-100.4.0.0.zip", - "shasum": "63b17a564f337f88d7c3d1671ce5ba1457f3a8cd" + "url": "https://repo.magento.com/archives/magento/module-fedex/magento-module-fedex-100.4.1.0.zip", + "shasum": "43cfaafd20695314930c14213d26d4aa3a733faa" }, "require": { "lib-libxml": "*", @@ -10530,11 +10676,11 @@ }, { "name": "magento/module-gift-card", - "version": "101.3.0", + "version": "101.3.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-gift-card/magento-module-gift-card-101.3.0.0.zip", - "shasum": "caf1a58e578bb6ab1431fe18ed2cc5f435be3bc9" + "url": "https://repo.magento.com/archives/magento/module-gift-card/magento-module-gift-card-101.3.1.0.zip", + "shasum": "867e242cbe1fccea7eac95afc96f04312381de79" }, "require": { "magento/framework": "103.0.*", @@ -10579,11 +10725,11 @@ }, { "name": "magento/module-gift-card-account", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-gift-card-account/magento-module-gift-card-account-101.2.0.0.zip", - "shasum": "85a4695f10e9eec4d3c0653edec3404031aa23ef" + "url": "https://repo.magento.com/archives/magento/module-gift-card-account/magento-module-gift-card-account-101.2.1.0.zip", + "shasum": "8eea7101956214b0ae7eff6c5874a0f19a98ce24" }, "require": { "magento/framework": "103.0.*", @@ -10646,21 +10792,25 @@ }, { "name": "magento/module-gift-card-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-gift-card-graph-ql/magento-module-gift-card-graph-ql-100.4.0.0.zip", - "shasum": "e3cc389e69118c38d0769b8960431f4df24ab19e" + "url": "https://repo.magento.com/archives/magento/module-gift-card-graph-ql/magento-module-gift-card-graph-ql-100.4.1.0.zip", + "shasum": "b00febeb874c9bbe1f3c4d445fa59c6f8c05dd08" }, "require": { "magento/framework": "103.0.*", "magento/module-catalog": "104.0.*", "magento/module-gift-card": "101.3.*", + "magento/module-quote": "101.2.*", + "magento/module-quote-graph-ql": "100.4.*", + "magento/module-sales": "103.0.*", "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-catalog-graph-ql": "100.4.*" + "magento/module-catalog-graph-ql": "100.4.*", + "magento/module-sales-graph-ql": "100.4.*" }, "type": "magento2-module", "autoload": { @@ -10672,8 +10822,7 @@ } }, "license": [ - "OSL-3.0", - "AFL-3.0" + "proprietary" ], "description": "N/A" }, @@ -10776,6 +10925,37 @@ ], "description": "N/A" }, + { + "name": "magento/module-gift-message-graph-ql", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-gift-message-graph-ql/magento-module-gift-message-graph-ql-100.4.0.0.zip", + "shasum": "3657cead0c7c969fbc4e9b99d2d4fef72e0b6cf0" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-gift-message": "100.4.*", + "php": "~7.3.0||~7.4.0" + }, + "suggest": { + "magento/module-graph-ql": "100.4.*" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\GiftMessageGraphQl\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "N/A" + }, { "name": "magento/module-gift-message-staging", "version": "100.4.0", @@ -10810,11 +10990,11 @@ }, { "name": "magento/module-gift-registry", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-gift-registry/magento-module-gift-registry-101.2.0.0.zip", - "shasum": "835ce6e68a14e0f503c65d8ad6b42a08cebdb14f" + "url": "https://repo.magento.com/archives/magento/module-gift-registry/magento-module-gift-registry-101.2.1.0.zip", + "shasum": "97a7dbe5413917e8a3e63aed11e18393f76e7670" }, "require": { "magento/framework": "103.0.*", @@ -10892,6 +11072,39 @@ ], "description": "N/A" }, + { + "name": "magento/module-gift-wrapping-graph-ql", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-gift-wrapping-graph-ql/magento-module-gift-wrapping-graph-ql-100.4.0.0.zip", + "shasum": "66e875b451fd6b4868e044d80573c4df5692e3ad" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-gift-message": "100.4.*", + "magento/module-gift-wrapping": "101.2.*", + "magento/module-quote": "101.2.*", + "magento/module-quote-graph-ql": "100.4.*", + "magento/module-sales": "103.0.*", + "magento/module-store": "101.1.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\GiftWrappingGraphQl\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "N/A" + }, { "name": "magento/module-gift-wrapping-staging", "version": "100.4.0", @@ -10988,11 +11201,11 @@ }, { "name": "magento/module-google-optimizer", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-google-optimizer/magento-module-google-optimizer-100.4.0.0.zip", - "shasum": "e48c7b3eae7dea7b0ba2948c2a53320a839f32f5" + "url": "https://repo.magento.com/archives/magento/module-google-optimizer/magento-module-google-optimizer-100.4.1.0.zip", + "shasum": "704e95284b292b70c155feba5430c7b1121862a2" }, "require": { "magento/framework": "103.0.*", @@ -11053,11 +11266,11 @@ }, { "name": "magento/module-google-tag-manager", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-google-tag-manager/magento-module-google-tag-manager-100.4.0.0.zip", - "shasum": "5d40a0daa5fd88856e2a05dee830709e4e47512b" + "url": "https://repo.magento.com/archives/magento/module-google-tag-manager/magento-module-google-tag-manager-100.4.1.0.zip", + "shasum": "e8a79d02717fa96c6e6919245e6a3ac7378924ca" }, "require": { "magento/framework": "103.0.*", @@ -11093,20 +11306,20 @@ }, { "name": "magento/module-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-graph-ql/magento-module-graph-ql-100.4.0.0.zip", - "shasum": "1e55fb05d13c0368ce4b1cc60135155376de4763" + "url": "https://repo.magento.com/archives/magento/module-graph-ql/magento-module-graph-ql-100.4.1.0.zip", + "shasum": "a8634f6da7a37c9fbec98ce9af0d38aec0d79b76" }, "require": { "magento/framework": "103.0.*", "magento/module-eav": "102.1.*", + "magento/module-webapi": "100.4.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-graph-ql-cache": "100.4.*", - "magento/module-webapi": "100.4.*" + "magento/module-graph-ql-cache": "100.4.*" }, "type": "magento2-module", "autoload": { @@ -11216,11 +11429,11 @@ }, { "name": "magento/module-grouped-product", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-grouped-product/magento-module-grouped-product-100.4.0.0.zip", - "shasum": "25968382e595e0cc0a27b399a627abc1d65a2758" + "url": "https://repo.magento.com/archives/magento/module-grouped-product/magento-module-grouped-product-100.4.1.0.zip", + "shasum": "da1b6dc8680e006e552ce291889bfd4f1185023e" }, "require": { "magento/framework": "103.0.*", @@ -11259,11 +11472,11 @@ }, { "name": "magento/module-grouped-product-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-grouped-product-graph-ql/magento-module-grouped-product-graph-ql-100.4.0.0.zip", - "shasum": "a3e2e69ff935c33c140b86e4aa875b9fe4652edc" + "url": "https://repo.magento.com/archives/magento/module-grouped-product-graph-ql/magento-module-grouped-product-graph-ql-100.4.1.0.zip", + "shasum": "b3ab99fcaa83024d3e811960b5dd9d2dd9814fbc" }, "require": { "magento/framework": "103.0.*", @@ -11323,11 +11536,11 @@ }, { "name": "magento/module-import-export", - "version": "101.0.0", + "version": "101.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-import-export/magento-module-import-export-101.0.0.0.zip", - "shasum": "d6399fe4ee4e02292c64d470b072283b7fac9e0d" + "url": "https://repo.magento.com/archives/magento/module-import-export/magento-module-import-export-101.0.1.0.zip", + "shasum": "09c23354fa38a3e3efe9e8a8747cfcb23828b879" }, "require": { "ext-ctype": "*", @@ -11357,11 +11570,11 @@ }, { "name": "magento/module-indexer", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-indexer/magento-module-indexer-100.4.0.0.zip", - "shasum": "e301e2e47f054de057dcb4bb4e72dcdb28e36e65" + "url": "https://repo.magento.com/archives/magento/module-indexer/magento-module-indexer-100.4.1.0.zip", + "shasum": "fc3c7a58d2644ea12fb6bfe8fc871dedd5cda4c9" }, "require": { "magento/framework": "103.0.*", @@ -11419,11 +11632,11 @@ }, { "name": "magento/module-integration", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-integration/magento-module-integration-100.4.0.0.zip", - "shasum": "be468bb54a51e52bfe828ca0cb48e19293cda81b" + "url": "https://repo.magento.com/archives/magento/module-integration/magento-module-integration-100.4.1.0.zip", + "shasum": "b8d7f364be6908ccfc2dea0fc513e8763e579131" }, "require": { "magento/framework": "103.0.*", @@ -11453,11 +11666,11 @@ }, { "name": "magento/module-inventory", - "version": "1.1.0", + "version": "1.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory/magento-module-inventory-1.1.0.0.zip", - "shasum": "5109cf1b25101ab64c693799a424b9cf1e48234b" + "url": "https://repo.magento.com/archives/magento/module-inventory/magento-module-inventory-1.1.1.0.zip", + "shasum": "431857698e06daaf33a2beb2159d04d63de9816d" }, "require": { "magento/framework": "*", @@ -11481,11 +11694,11 @@ }, { "name": "magento/module-inventory-admin-ui", - "version": "1.1.0", + "version": "1.1.2", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-admin-ui/magento-module-inventory-admin-ui-1.1.0.0.zip", - "shasum": "b29fa8a4a1dc318a96ca1f07e7ae9d267d8685f0" + "url": "https://repo.magento.com/archives/magento/module-inventory-admin-ui/magento-module-inventory-admin-ui-1.1.2.0.zip", + "shasum": "af49d87f5d76980bc229e05432df986dc4a79931" }, "require": { "magento/framework": "*", @@ -11743,11 +11956,11 @@ }, { "name": "magento/module-inventory-catalog", - "version": "1.1.0", + "version": "1.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-catalog/magento-module-inventory-catalog-1.1.0.0.zip", - "shasum": "16633c4c505b3043dda41460c97f23772f223147" + "url": "https://repo.magento.com/archives/magento/module-inventory-catalog/magento-module-inventory-catalog-1.1.1.0.zip", + "shasum": "5f7b3d99861612627b0999246e097235932e1161" }, "require": { "magento/framework": "*", @@ -11783,11 +11996,11 @@ }, { "name": "magento/module-inventory-catalog-admin-ui", - "version": "1.1.0", + "version": "1.1.2", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-catalog-admin-ui/magento-module-inventory-catalog-admin-ui-1.1.0.0.zip", - "shasum": "e8af992a00280d2458aeaf671d66be93ab8a0611" + "url": "https://repo.magento.com/archives/magento/module-inventory-catalog-admin-ui/magento-module-inventory-catalog-admin-ui-1.1.2.0.zip", + "shasum": "8327eeca9aa27d0044ea5315f593a6af70fd1c2f" }, "require": { "magento/framework": "*", @@ -12359,11 +12572,11 @@ }, { "name": "magento/module-inventory-import-export", - "version": "1.1.0", + "version": "1.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-import-export/magento-module-inventory-import-export-1.1.0.0.zip", - "shasum": "5d72aada4e3d05ecf99733260c1a99d5c14a6849" + "url": "https://repo.magento.com/archives/magento/module-inventory-import-export/magento-module-inventory-import-export-1.1.1.0.zip", + "shasum": "b25f146acdf7dd718499b01b863c3d418aa7a2f1" }, "require": { "magento/framework": "*", @@ -12395,11 +12608,11 @@ }, { "name": "magento/module-inventory-in-store-pickup", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-in-store-pickup/magento-module-inventory-in-store-pickup-1.0.0.0.zip", - "shasum": "303ed46a86984384d8f24c78f76031fb965cc13f" + "url": "https://repo.magento.com/archives/magento/module-inventory-in-store-pickup/magento-module-inventory-in-store-pickup-1.0.1.0.zip", + "shasum": "5f45ecc169e80d329e4206881184eb4b27270039" }, "require": { "magento/framework": "*", @@ -12430,11 +12643,11 @@ }, { "name": "magento/module-inventory-in-store-pickup-admin-ui", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-in-store-pickup-admin-ui/magento-module-inventory-in-store-pickup-admin-ui-1.0.0.0.zip", - "shasum": "2c33271b20b1ee5e3f58175de64f978975c3e89d" + "url": "https://repo.magento.com/archives/magento/module-inventory-in-store-pickup-admin-ui/magento-module-inventory-in-store-pickup-admin-ui-1.0.1.0.zip", + "shasum": "3e2daff9b30770102bca878473bbb7b38a9b3451" }, "require": { "magento/framework": "*", @@ -12490,11 +12703,11 @@ }, { "name": "magento/module-inventory-in-store-pickup-frontend", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-in-store-pickup-frontend/magento-module-inventory-in-store-pickup-frontend-1.0.0.0.zip", - "shasum": "457dc03470e7aa12062e59e90d4936490a691b61" + "url": "https://repo.magento.com/archives/magento/module-inventory-in-store-pickup-frontend/magento-module-inventory-in-store-pickup-frontend-1.0.1.0.zip", + "shasum": "59bd37f5111dc4884572f4310b6042ad7bd5bd28" }, "require": { "magento/framework": "*", @@ -12900,11 +13113,11 @@ }, { "name": "magento/module-inventory-low-quantity-notification", - "version": "1.1.0", + "version": "1.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-low-quantity-notification/magento-module-inventory-low-quantity-notification-1.1.0.0.zip", - "shasum": "245640a404b8e5dd7e4d1a77a917d12aade61d16" + "url": "https://repo.magento.com/archives/magento/module-inventory-low-quantity-notification/magento-module-inventory-low-quantity-notification-1.1.1.0.zip", + "shasum": "4ca2aec356fe6d3d9c03b5433912b0de558713c1" }, "require": { "magento/framework": "*", @@ -12936,11 +13149,11 @@ }, { "name": "magento/module-inventory-low-quantity-notification-admin-ui", - "version": "1.1.0", + "version": "1.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-low-quantity-notification-admin-ui/magento-module-inventory-low-quantity-notification-admin-ui-1.1.0.0.zip", - "shasum": "d4e5c2c08203a39d981e4ad4f1f20c718f2dcefb" + "url": "https://repo.magento.com/archives/magento/module-inventory-low-quantity-notification-admin-ui/magento-module-inventory-low-quantity-notification-admin-ui-1.1.1.0.zip", + "shasum": "4ff086bea7b4aea18a6bffe413b433a65e0d364a" }, "require": { "magento/framework": "*", @@ -13094,11 +13307,11 @@ }, { "name": "magento/module-inventory-reservation-cli", - "version": "1.1.0", + "version": "1.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-reservation-cli/magento-module-inventory-reservation-cli-1.1.0.0.zip", - "shasum": "4bce06cb6a0d3e9a6bc877737980f7c71797af5c" + "url": "https://repo.magento.com/archives/magento/module-inventory-reservation-cli/magento-module-inventory-reservation-cli-1.1.1.0.zip", + "shasum": "c1f5c90b878bd6d751d4ddd1395f108626892415" }, "require": { "magento/framework": "*", @@ -13126,11 +13339,11 @@ }, { "name": "magento/module-inventory-reservations", - "version": "1.1.0", + "version": "1.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-reservations/magento-module-inventory-reservations-1.1.0.0.zip", - "shasum": "fcaa8a85a3881a0b03e521ce5e04cd4018faa046" + "url": "https://repo.magento.com/archives/magento/module-inventory-reservations/magento-module-inventory-reservations-1.1.1.0.zip", + "shasum": "d6bfb7c8b5929faa55c09fad0b4ba2fda74a5860" }, "require": { "magento/framework": "*", @@ -13181,11 +13394,11 @@ }, { "name": "magento/module-inventory-sales", - "version": "1.1.0", + "version": "1.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-sales/magento-module-inventory-sales-1.1.0.0.zip", - "shasum": "0ee4c05493a210473d327cbf9b922df787d23a10" + "url": "https://repo.magento.com/archives/magento/module-inventory-sales/magento-module-inventory-sales-1.1.1.0.zip", + "shasum": "0fd6213eea798b0b15d0df9dcd741ba4133b2809" }, "require": { "magento/framework": "*", @@ -13350,11 +13563,11 @@ }, { "name": "magento/module-inventory-shipping", - "version": "1.1.0", + "version": "1.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-shipping/magento-module-inventory-shipping-1.1.0.0.zip", - "shasum": "1102bd299e0ce31366baa24e2f32738ba69b3d0a" + "url": "https://repo.magento.com/archives/magento/module-inventory-shipping/magento-module-inventory-shipping-1.1.1.0.zip", + "shasum": "002159ce58342e8f786cd4c2c809c3fe743bf874" }, "require": { "magento/framework": "*", @@ -13479,11 +13692,11 @@ }, { "name": "magento/module-inventory-source-selection-api", - "version": "1.3.0", + "version": "1.3.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-source-selection-api/magento-module-inventory-source-selection-api-1.3.0.0.zip", - "shasum": "c074fbdfa96de014265c7b3419a854854884dc47" + "url": "https://repo.magento.com/archives/magento/module-inventory-source-selection-api/magento-module-inventory-source-selection-api-1.3.1.0.zip", + "shasum": "c7bd51bb40f2ec0840f3f77a93fe76279f0e528c" }, "require": { "magento/framework": "*", @@ -13508,6 +13721,46 @@ ], "description": "N/A" }, + { + "name": "magento/module-inventory-visual-merchandiser", + "version": "1.0.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-inventory-visual-merchandiser/magento-module-inventory-visual-merchandiser-1.0.0.0.zip", + "shasum": "16530dfa034151b341658d41f5baa7e37411b669" + }, + "require": { + "magento/framework": "*", + "magento/module-catalog": "*", + "magento/module-inventory": "1.1.*", + "magento/module-inventory-catalog-api": "1.2.*", + "magento/module-inventory-indexer": "2.0.*", + "magento/module-inventory-sales-api": "1.1.*", + "magento/module-store": "*", + "php": "~7.3.0||~7.4.0" + }, + "require-dev": { + "magento/module-inventory-api": "*", + "magento/module-inventory-configuration-api": "*" + }, + "suggest": { + "magento/module-visual-merchandiser": "*" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\InventoryVisualMerchandiser\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "N/A" + }, { "name": "magento/module-invitation", "version": "100.4.0", @@ -13548,11 +13801,11 @@ }, { "name": "magento/module-layered-navigation", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-layered-navigation/magento-module-layered-navigation-100.4.0.0.zip", - "shasum": "dbbeec3773fcd21cb868d39d6689ae1696572083" + "url": "https://repo.magento.com/archives/magento/module-layered-navigation/magento-module-layered-navigation-100.4.1.0.zip", + "shasum": "92087b1618edd369f7240b61b0964f2798bc8e20" }, "require": { "magento/framework": "103.0.*", @@ -13606,11 +13859,11 @@ }, { "name": "magento/module-logging", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-logging/magento-module-logging-101.2.0.0.zip", - "shasum": "a33c9ecdb65d56ebefec64de32f7a51887a921a6" + "url": "https://repo.magento.com/archives/magento/module-logging/magento-module-logging-101.2.1.0.zip", + "shasum": "3f8bc83719b7ada2e7a18394907184e45e08331a" }, "require": { "magento/framework": "103.0.*", @@ -13640,14 +13893,15 @@ }, { "name": "magento/module-login-as-customer", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-login-as-customer/magento-module-login-as-customer-100.4.0.0.zip", - "shasum": "72a3d2d69cca982c11f47f8e128426e8e791a432" + "url": "https://repo.magento.com/archives/magento/module-login-as-customer/magento-module-login-as-customer-100.4.1.0.zip", + "shasum": "ed1916a23ce7e593a2b2493a1a7d32580bf21ad0" }, "require": { "magento/framework": "103.0.*", + "magento/module-backend": "102.0.*", "magento/module-customer": "103.0.*", "magento/module-login-as-customer-api": "100.4.*", "php": "~7.3.0||~7.4.0" @@ -13672,11 +13926,11 @@ }, { "name": "magento/module-login-as-customer-admin-ui", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-login-as-customer-admin-ui/magento-module-login-as-customer-admin-ui-100.4.0.0.zip", - "shasum": "49fc4007d1407b82fa701c4633b0fb5e1edd24ac" + "url": "https://repo.magento.com/archives/magento/module-login-as-customer-admin-ui/magento-module-login-as-customer-admin-ui-100.4.1.0.zip", + "shasum": "ca449e85a8e0a9a0c92cd51aa0f790e39202f305" }, "require": { "magento/framework": "103.0.*", @@ -13684,6 +13938,7 @@ "magento/module-customer": "103.0.*", "magento/module-login-as-customer-api": "100.4.*", "magento/module-login-as-customer-frontend-ui": "100.4.*", + "magento/module-sales": "103.0.*", "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, @@ -13706,11 +13961,11 @@ }, { "name": "magento/module-login-as-customer-api", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-login-as-customer-api/magento-module-login-as-customer-api-100.4.0.0.zip", - "shasum": "41a46864df031407d7c977369f8c0ecdc5e421b0" + "url": "https://repo.magento.com/archives/magento/module-login-as-customer-api/magento-module-login-as-customer-api-100.4.1.0.zip", + "shasum": "4196200cf12a2419ca4145790997bcfbe9eb2ec2" }, "require": { "magento/framework": "103.0.*", @@ -13732,27 +13987,32 @@ "description": "Allow for admin to enter a customer account" }, { - "name": "magento/module-login-as-customer-frontend-ui", + "name": "magento/module-login-as-customer-assistance", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-login-as-customer-frontend-ui/magento-module-login-as-customer-frontend-ui-100.4.0.0.zip", - "shasum": "8fb328e705ce499ecd13d660a070f2bc46f90d93" + "url": "https://repo.magento.com/archives/magento/module-login-as-customer-assistance/magento-module-login-as-customer-assistance-100.4.0.0.zip", + "shasum": "d1983cd39e2477e2193b1394d611009c0885fcac" }, "require": { "magento/framework": "103.0.*", + "magento/module-backend": "102.0.*", "magento/module-customer": "103.0.*", + "magento/module-login-as-customer": "100.4.*", "magento/module-login-as-customer-api": "100.4.*", "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, + "suggest": { + "magento/module-login-as-customer-admin-ui": "100.4.*" + }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\LoginAsCustomerFrontendUi\\": "" + "Magento\\LoginAsCustomerAssistance\\": "" } }, "license": [ @@ -13761,16 +14021,45 @@ ] }, { - "name": "magento/module-login-as-customer-log", - "version": "100.4.0", + "name": "magento/module-login-as-customer-frontend-ui", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-login-as-customer-log/magento-module-login-as-customer-log-100.4.0.0.zip", - "shasum": "e2d4cce5ac3fe2cc619c5556913288dc1b8aeb75" + "url": "https://repo.magento.com/archives/magento/module-login-as-customer-frontend-ui/magento-module-login-as-customer-frontend-ui-100.4.1.0.zip", + "shasum": "ed163897b44a78ea346e2387d66018e075a7d337" }, "require": { "magento/framework": "103.0.*", - "magento/module-backend": "102.0.*", + "magento/module-customer": "103.0.*", + "magento/module-login-as-customer-api": "100.4.*", + "magento/module-store": "101.1.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\LoginAsCustomerFrontendUi\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ] + }, + { + "name": "magento/module-login-as-customer-log", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-login-as-customer-log/magento-module-login-as-customer-log-100.4.0.0.zip", + "shasum": "e2d4cce5ac3fe2cc619c5556913288dc1b8aeb75" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-backend": "102.0.*", "magento/module-customer": "103.0.*", "magento/module-login-as-customer-api": "100.4.*", "magento/module-ui": "101.2.*", @@ -13796,11 +14085,11 @@ }, { "name": "magento/module-login-as-customer-logging", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-login-as-customer-logging/magento-module-login-as-customer-logging-100.4.0.0.zip", - "shasum": "deab861519726fd3cfa09ff08e59aa0372c7f551" + "url": "https://repo.magento.com/archives/magento/module-login-as-customer-logging/magento-module-login-as-customer-logging-100.4.1.0.zip", + "shasum": "6cd9c65f775901657ce0d2e3ce54edb293f4f602" }, "require": { "magento/framework": "103.0.*", @@ -13830,15 +14119,15 @@ }, { "name": "magento/module-login-as-customer-page-cache", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-login-as-customer-page-cache/magento-module-login-as-customer-page-cache-100.4.0.0.zip", - "shasum": "986e4679536ee24a8ea50d508d04ff8455109c03" + "url": "https://repo.magento.com/archives/magento/module-login-as-customer-page-cache/magento-module-login-as-customer-page-cache-100.4.1.0.zip", + "shasum": "b817b36aa7f9ef8eb92f6ef5efb4bd571de3ef64" }, "require": { "magento/framework": "103.0.*", - "magento/module-customer": "103.0.*", + "magento/module-login-as-customer-api": "100.4.*", "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, @@ -13893,16 +14182,16 @@ }, { "name": "magento/module-login-as-customer-sales", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-login-as-customer-sales/magento-module-login-as-customer-sales-100.4.0.0.zip", - "shasum": "b0af6cb9cbd317de758590288ac93d6303c1ec11" + "url": "https://repo.magento.com/archives/magento/module-login-as-customer-sales/magento-module-login-as-customer-sales-100.4.1.0.zip", + "shasum": "df840f1c190c40dc3dae5d33578051a3dd250ce7" }, "require": { "magento/framework": "103.0.*", "magento/module-backend": "102.0.*", - "magento/module-customer": "103.0.*", + "magento/module-login-as-customer-api": "100.4.*", "magento/module-user": "101.2.*", "php": "~7.3.0||~7.4.0" }, @@ -13925,14 +14214,19 @@ }, { "name": "magento/module-login-as-customer-website-restriction", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-login-as-customer-website-restriction/magento-module-login-as-customer-website-restriction-100.4.0.0.zip", - "shasum": "9cc33968b56d0d306a2086722e0eaa2e81277e52" + "url": "https://repo.magento.com/archives/magento/module-login-as-customer-website-restriction/magento-module-login-as-customer-website-restriction-100.4.1.0.zip", + "shasum": "cf75667be62d844484c7ee5e6d21e5ace6b8c3f0" }, "require": { "magento/framework": "103.0.*", + "magento/module-customer": "103.0.*", + "magento/module-login-as-customer": "100.4.*", + "magento/module-login-as-customer-api": "100.4.*", + "magento/module-store": "101.1.*", + "magento/module-website-restriction": "100.4.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -13979,11 +14273,11 @@ }, { "name": "magento/module-media-content", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-content/magento-module-media-content-100.4.0.0.zip", - "shasum": "ec7927ffff864b341c5533c952742c3d13244242" + "url": "https://repo.magento.com/archives/magento/module-media-content/magento-module-media-content-100.4.1.0.zip", + "shasum": "fecea4462c80337ede954d301cd209325e61f0a8" }, "require": { "magento/framework": "103.0.*", @@ -14008,11 +14302,11 @@ }, { "name": "magento/module-media-content-api", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-content-api/magento-module-media-content-api-100.4.0.0.zip", - "shasum": "c5da1a6080670675591bbd395b28e0f21b794b0e" + "url": "https://repo.magento.com/archives/magento/module-media-content-api/magento-module-media-content-api-100.4.1.0.zip", + "shasum": "e94bddc8514c0fe5e52f14dd82da996f098418f9" }, "require": { "magento/framework": "103.0.*", @@ -14036,17 +14330,18 @@ }, { "name": "magento/module-media-content-catalog", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-content-catalog/magento-module-media-content-catalog-100.4.0.0.zip", - "shasum": "567dd79b973da79d7b22e44abecee611c7eab3b3" + "url": "https://repo.magento.com/archives/magento/module-media-content-catalog/magento-module-media-content-catalog-100.4.1.0.zip", + "shasum": "5c0045b8695d16a9c4be3c13c23bf250c9ae79f3" }, "require": { "magento/framework": "103.0.*", "magento/module-catalog": "104.0.*", "magento/module-eav": "102.1.*", "magento/module-media-content-api": "100.4.*", + "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -14096,11 +14391,11 @@ }, { "name": "magento/module-media-content-cms", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-content-cms/magento-module-media-content-cms-100.4.0.0.zip", - "shasum": "f35b451d666cb5f783c37595ddd564b7c4622614" + "url": "https://repo.magento.com/archives/magento/module-media-content-cms/magento-module-media-content-cms-100.4.1.0.zip", + "shasum": "cfae369321712081a9258535fddc20d97924092f" }, "require": { "magento/framework": "103.0.*", @@ -14125,20 +14420,21 @@ }, { "name": "magento/module-media-content-synchronization", - "version": "1.0.0", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-content-synchronization/magento-module-media-content-synchronization-1.0.0.0.zip", - "shasum": "3242e80e2f814431636d8bd8a0b4abeb7698d394" + "url": "https://repo.magento.com/archives/magento/module-media-content-synchronization/magento-module-media-content-synchronization-100.4.0.0.zip", + "shasum": "3783cce2c3642cb24fb2cac6933237157c84bbcb" }, "require": { - "magento/framework": "*", - "magento/framework-message-queue": "*", - "magento/module-media-content-synchronization-api": "1.0.*", + "magento/framework": "103.0.*", + "magento/framework-message-queue": "100.4.*", + "magento/module-media-content-api": "100.4.*", + "magento/module-media-content-synchronization-api": "100.4.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-media-gallery-synchronization": "1.0.*" + "magento/module-media-gallery-synchronization": "100.4.*" }, "type": "magento2-module", "autoload": { @@ -14157,14 +14453,14 @@ }, { "name": "magento/module-media-content-synchronization-api", - "version": "1.0.0", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-content-synchronization-api/magento-module-media-content-synchronization-api-1.0.0.0.zip", - "shasum": "b5a3dca7b54114d59111e1f5f0e1d72a6f1cce49" + "url": "https://repo.magento.com/archives/magento/module-media-content-synchronization-api/magento-module-media-content-synchronization-api-100.4.0.0.zip", + "shasum": "1d4737df3ec742b8cb2fa47d0e026740d99ec9f6" }, "require": { - "magento/framework": "*", + "magento/framework": "103.0.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -14184,17 +14480,17 @@ }, { "name": "magento/module-media-content-synchronization-catalog", - "version": "1.0.0", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-content-synchronization-catalog/magento-module-media-content-synchronization-catalog-1.0.0.0.zip", - "shasum": "ebd6207bc81cf9b3a88c269b9cc028ea3419b05c" + "url": "https://repo.magento.com/archives/magento/module-media-content-synchronization-catalog/magento-module-media-content-synchronization-catalog-100.4.0.0.zip", + "shasum": "6bdf3215d98a450169fefe0127d6cb70d7c5f387" }, "require": { - "magento/framework": "*", - "magento/module-media-content-api": "*", - "magento/module-media-content-synchronization-api": "1.0.*", - "magento/module-media-gallery-synchronization-api": "1.0.*", + "magento/framework": "103.0.*", + "magento/module-media-content-api": "100.4.*", + "magento/module-media-content-synchronization-api": "100.4.*", + "magento/module-media-gallery-synchronization-api": "100.4.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -14214,17 +14510,17 @@ }, { "name": "magento/module-media-content-synchronization-cms", - "version": "1.0.0", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-content-synchronization-cms/magento-module-media-content-synchronization-cms-1.0.0.0.zip", - "shasum": "98d07914a1e9dfe8eee4157ec2881a593ebce665" + "url": "https://repo.magento.com/archives/magento/module-media-content-synchronization-cms/magento-module-media-content-synchronization-cms-100.4.0.0.zip", + "shasum": "09fc182163ee8cb434f43cb72537cb17d0181187" }, "require": { - "magento/framework": "*", - "magento/module-media-content-api": "*", - "magento/module-media-content-synchronization-api": "1.0.*", - "magento/module-media-gallery-synchronization-api": "1.0.*", + "magento/framework": "103.0.*", + "magento/module-media-content-api": "100.4.*", + "magento/module-media-content-synchronization-api": "100.4.*", + "magento/module-media-gallery-synchronization-api": "100.4.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -14244,11 +14540,11 @@ }, { "name": "magento/module-media-gallery", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-gallery/magento-module-media-gallery-100.4.0.0.zip", - "shasum": "5764d22b998dddae5b7c18582ac5807a78fd4d2f" + "url": "https://repo.magento.com/archives/magento/module-media-gallery/magento-module-media-gallery-100.4.1.0.zip", + "shasum": "b1a5c8bd0e280ab993f3b903850a567e219f8dbd" }, "require": { "magento/framework": "103.0.*", @@ -14273,11 +14569,11 @@ }, { "name": "magento/module-media-gallery-api", - "version": "101.0.0", + "version": "101.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-gallery-api/magento-module-media-gallery-api-101.0.0.0.zip", - "shasum": "a16c2906a46f8e5d86f423d9f58b015de42b749c" + "url": "https://repo.magento.com/archives/magento/module-media-gallery-api/magento-module-media-gallery-api-101.0.1.0.zip", + "shasum": "1afad98a4d25563f1c3f21bf23c91651728fdc58" }, "require": { "magento/framework": "103.0.*", @@ -14327,24 +14623,123 @@ ], "description": "Magento module responsible for catalog gallery processor delete operation handling" }, + { + "name": "magento/module-media-gallery-catalog-integration", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-media-gallery-catalog-integration/magento-module-media-gallery-catalog-integration-100.4.0.0.zip", + "shasum": "d59c80944de882c9c4e610e8ce397e5c74ce5e5d" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-cms": "104.0.*", + "magento/module-media-gallery-api": "101.0.*", + "magento/module-media-gallery-synchronization-api": "100.4.*", + "magento/module-media-gallery-ui-api": "100.4.*", + "php": "~7.3.0||~7.4.0" + }, + "suggest": { + "magento/module-catalog": "104.0.*" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\MediaGalleryCatalogIntegration\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "Magento module responsible for extending catalog image uploader functionality" + }, + { + "name": "magento/module-media-gallery-catalog-ui", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-media-gallery-catalog-ui/magento-module-media-gallery-catalog-ui-100.4.0.0.zip", + "shasum": "797ca4ca5a0b17b6b7b31b40ef5e0d633ae9e4f7" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-backend": "102.0.*", + "magento/module-catalog": "104.0.*", + "magento/module-cms": "104.0.*", + "magento/module-store": "101.1.*", + "magento/module-ui": "101.2.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\MediaGalleryCatalogUi\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "Magento module that implement category grid for media gallery." + }, + { + "name": "magento/module-media-gallery-cms-ui", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-media-gallery-cms-ui/magento-module-media-gallery-cms-ui-100.4.0.0.zip", + "shasum": "5f91c8f981e94210da69e0f37f9f15c04556219b" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-backend": "102.0.*", + "magento/module-cms": "104.0.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\MediaGalleryCmsUi\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "Cms related UI elements in the magento media gallery" + }, { "name": "magento/module-media-gallery-integration", - "version": "1.0.0", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-gallery-integration/magento-module-media-gallery-integration-1.0.0.0.zip", - "shasum": "aca1404e6e392a389236e6fc1211de566ad13c44" + "url": "https://repo.magento.com/archives/magento/module-media-gallery-integration/magento-module-media-gallery-integration-100.4.0.0.zip", + "shasum": "f5bb6edce6b7c28d1efd05fa969d7d13ea2ff070" }, "require": { - "magento/framework": "*", - "magento/module-cms": "*", - "magento/module-media-gallery-api": "*", - "magento/module-media-gallery-synchronization": "1.0.*", - "magento/module-media-gallery-ui-api": "1.0.*", + "magento/framework": "103.0.*", + "magento/module-media-gallery-api": "101.0.*", + "magento/module-media-gallery-synchronization-api": "100.4.*", + "magento/module-media-gallery-ui-api": "100.4.*", + "magento/module-ui": "101.2.*", "php": "~7.3.0||~7.4.0" }, + "require-dev": { + "magento/module-cms": "*" + }, "suggest": { - "magento/module-catalog": "*" + "magento/module-catalog": "104.0.*", + "magento/module-cms": "104.0.*" }, "type": "magento2-module", "autoload": { @@ -14361,19 +14756,74 @@ ], "description": "Magento module responsible for integration of enhanced media gallery" }, + { + "name": "magento/module-media-gallery-metadata", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-media-gallery-metadata/magento-module-media-gallery-metadata-100.4.0.0.zip", + "shasum": "cc2470c5131e1899b27383c54405eea1f456e571" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-media-gallery-metadata-api": "100.4.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\MediaGalleryMetadata\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "Magento module responsible for images metadata processing" + }, + { + "name": "magento/module-media-gallery-metadata-api", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-media-gallery-metadata-api/magento-module-media-gallery-metadata-api-100.4.0.0.zip", + "shasum": "a8c6a1c1497581cb1839cab46fc61ef9a67b1dbd" + }, + "require": { + "magento/framework": "103.0.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\MediaGalleryMetadataApi\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "Magento module responsible for media gallery metadata implementation API" + }, { "name": "magento/module-media-gallery-synchronization", - "version": "1.0.0", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-gallery-synchronization/magento-module-media-gallery-synchronization-1.0.0.0.zip", - "shasum": "1a0087f50e693d39704d0f0602cb50bcf06a6e30" + "url": "https://repo.magento.com/archives/magento/module-media-gallery-synchronization/magento-module-media-gallery-synchronization-100.4.0.0.zip", + "shasum": "eb535793174f15330db45a19ce85c588ec2b9f91" }, "require": { - "magento/framework": "*", - "magento/framework-message-queue": "*", - "magento/module-media-gallery-api": "*", - "magento/module-media-gallery-synchronization-api": "1.0.*", + "magento/framework": "103.0.*", + "magento/framework-message-queue": "100.4.*", + "magento/module-media-gallery-api": "101.0.*", + "magento/module-media-gallery-synchronization-api": "100.4.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -14393,14 +14843,15 @@ }, { "name": "magento/module-media-gallery-synchronization-api", - "version": "1.0.0", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-gallery-synchronization-api/magento-module-media-gallery-synchronization-api-1.0.0.0.zip", - "shasum": "709986991c673e1d5b09be0976342ccd7c049fae" + "url": "https://repo.magento.com/archives/magento/module-media-gallery-synchronization-api/magento-module-media-gallery-synchronization-api-100.4.0.0.zip", + "shasum": "7585408242ad5bf0b7cc97fc671c836256733e3e" }, "require": { - "magento/framework": "*", + "magento/framework": "103.0.*", + "magento/module-media-gallery-api": "101.0.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -14418,25 +14869,55 @@ ], "description": "Magento module responsible for the media gallery synchronization implementation API" }, + { + "name": "magento/module-media-gallery-synchronization-metadata", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-media-gallery-synchronization-metadata/magento-module-media-gallery-synchronization-metadata-100.4.0.0.zip", + "shasum": "c60bbe9ea155cc64d7cea0cf63e296e0f8b237e1" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-media-gallery-api": "101.0.*", + "magento/module-media-gallery-metadata-api": "100.4.*", + "magento/module-media-gallery-synchronization-api": "100.4.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\MediaGallerySynchronizationMetadata\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "Magento module responsible for images metadata synchronization" + }, { "name": "magento/module-media-gallery-ui", - "version": "1.0.0", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-gallery-ui/magento-module-media-gallery-ui-1.0.0.0.zip", - "shasum": "5e3581423f8a66a4bafa2b239b1bb7515c470fc9" + "url": "https://repo.magento.com/archives/magento/module-media-gallery-ui/magento-module-media-gallery-ui-100.4.0.0.zip", + "shasum": "832e615e417436f97a41cdbb824559efaabd0d71" }, "require": { - "magento/framework": "*", - "magento/module-backend": "*", - "magento/module-cms": "*", - "magento/module-media-content-api": "*", - "magento/module-media-gallery-api": "*", - "magento/module-media-gallery-synchronization": "1.0.*", - "magento/module-media-gallery-synchronization-api": "1.0.*", - "magento/module-media-gallery-ui-api": "1.0.*", - "magento/module-store": "*", - "magento/module-ui": "*", + "magento/framework": "103.0.*", + "magento/module-backend": "102.0.*", + "magento/module-cms": "104.0.*", + "magento/module-media-content-api": "100.4.*", + "magento/module-media-gallery-api": "101.0.*", + "magento/module-media-gallery-metadata-api": "100.4.*", + "magento/module-media-gallery-synchronization-api": "100.4.*", + "magento/module-media-gallery-ui-api": "100.4.*", + "magento/module-store": "101.1.*", + "magento/module-ui": "101.2.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -14456,14 +14937,14 @@ }, { "name": "magento/module-media-gallery-ui-api", - "version": "1.0.0", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-gallery-ui-api/magento-module-media-gallery-ui-api-1.0.0.0.zip", - "shasum": "61c4058da2521f007851fe769cf63675d2bf4a64" + "url": "https://repo.magento.com/archives/magento/module-media-gallery-ui-api/magento-module-media-gallery-ui-api-100.4.0.0.zip", + "shasum": "014d1bcd24264b0dcd08ec977d1bba3ecc37b5fd" }, "require": { - "magento/framework": "*", + "magento/framework": "103.0.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -14518,11 +14999,11 @@ }, { "name": "magento/module-message-queue", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-message-queue/magento-module-message-queue-100.4.0.0.zip", - "shasum": "540b0b266e2bd9c9a5b3078ff84398d422461039" + "url": "https://repo.magento.com/archives/magento/module-message-queue/magento-module-message-queue-100.4.1.0.zip", + "shasum": "137eafed34c6f12aed51daf399e5297649f1459b" }, "require": { "magento/framework": "103.0.*", @@ -14675,11 +15156,11 @@ }, { "name": "magento/module-multiple-wishlist", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-multiple-wishlist/magento-module-multiple-wishlist-100.4.0.0.zip", - "shasum": "b894ca8f4db2a9d0a1a8f4eda3f857f05b71ce82" + "url": "https://repo.magento.com/archives/magento/module-multiple-wishlist/magento-module-multiple-wishlist-100.4.1.0.zip", + "shasum": "4dbf7f05a087e0d0fe705df93a06a5388c644f93" }, "require": { "magento/framework": "103.0.*", @@ -14691,6 +15172,7 @@ "magento/module-customer": "103.0.*", "magento/module-sales": "103.0.*", "magento/module-store": "101.1.*", + "magento/module-theme": "101.1.*", "magento/module-widget": "101.2.*", "magento/module-wishlist": "101.2.*", "php": "~7.3.0||~7.4.0" @@ -14715,14 +15197,15 @@ }, { "name": "magento/module-multishipping", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-multishipping/magento-module-multishipping-100.4.0.0.zip", - "shasum": "6611a9c16190d4f6b9721b7a749ef5c338e67bc3" + "url": "https://repo.magento.com/archives/magento/module-multishipping/magento-module-multishipping-100.4.1.0.zip", + "shasum": "127f7ac9700422be364744d7e29fae796e2c61e4" }, "require": { "magento/framework": "103.0.*", + "magento/module-captcha": "100.4.*", "magento/module-checkout": "100.4.*", "magento/module-customer": "103.0.*", "magento/module-directory": "100.4.*", @@ -14815,11 +15298,11 @@ }, { "name": "magento/module-newsletter", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-newsletter/magento-module-newsletter-100.4.0.0.zip", - "shasum": "94d4535b429478f31d5ae3719321882d7c43ba37" + "url": "https://repo.magento.com/archives/magento/module-newsletter/magento-module-newsletter-100.4.1.0.zip", + "shasum": "35c4500d83eafae25bbb6c1ac0b372fb08fb9191" }, "require": { "magento/framework": "103.0.*", @@ -14849,6 +15332,39 @@ ], "description": "N/A" }, + { + "name": "magento/module-newsletter-graph-ql", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-newsletter-graph-ql/magento-module-newsletter-graph-ql-100.4.0.0.zip", + "shasum": "e5585c22858a6e8c7733f30161aa185570cc32f2" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-customer": "103.0.*", + "magento/module-newsletter": "100.4.*", + "magento/module-store": "101.1.*", + "php": "~7.3.0||~7.4.0" + }, + "suggest": { + "magento/module-graph-ql": "100.4.*" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\NewsletterGraphQl\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "Provides GraphQl functionality for the newsletter subscriptions." + }, { "name": "magento/module-offline-payments", "version": "100.4.0", @@ -14923,27 +15439,27 @@ }, { "name": "magento/module-page-builder", - "version": "2.0.0", + "version": "2.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-page-builder/magento-module-page-builder-2.0.0.0.zip", - "shasum": "94a2405e64643d67d3b3443adff9e03dfa60871c" + "url": "https://repo.magento.com/archives/magento/module-page-builder/magento-module-page-builder-2.1.0.0.zip", + "shasum": "bd1ec9f4275a73811275b825d217225d37d75fcc" }, "require": { - "magento/framework": "~103.0.0-beta2", - "magento/module-backend": "~102.0.0-beta2", - "magento/module-catalog": "~104.0.0-beta2", + "magento/framework": "~103.0.1-alpha2", + "magento/module-backend": "~102.0.1-alpha2", + "magento/module-catalog": "~104.0.1-alpha2", "magento/module-catalog-inventory": "*", "magento/module-catalog-widget": "*", "magento/module-cms": "*", - "magento/module-config": "~101.2.0-beta2", - "magento/module-directory": "~100.4.0-beta2", + "magento/module-config": "~101.2.1-alpha2", + "magento/module-directory": "~100.4.1-alpha2", "magento/module-eav": "*", "magento/module-email": "*", "magento/module-media-storage": "*", "magento/module-require-js": "*", - "magento/module-rule": "~100.4.0-beta2", - "magento/module-store": "~101.1.0-beta2", + "magento/module-rule": "~100.4.0", + "magento/module-store": "~101.1.1-alpha2", "magento/module-theme": "*", "magento/module-ui": "*", "magento/module-variable": "*", @@ -14972,18 +15488,48 @@ ], "description": "Page Builder module" }, + { + "name": "magento/module-page-builder-admin-analytics", + "version": "1.0.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-page-builder-admin-analytics/magento-module-page-builder-admin-analytics-1.0.0.0.zip", + "shasum": "d27cefc91e0fe95caf7dd2939aafd972d487e752" + }, + "require": { + "magento/framework": "~103.0.1-alpha2", + "php": "~7.3.0||~7.4.0" + }, + "suggest": { + "magento/module-admin-analytics": "*", + "magento/module-page-builder": "*" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\PageBuilderAdminAnalytics\\": "" + } + }, + "license": [ + "proprietary" + ], + "description": "Page Builder Admin Analytics module" + }, { "name": "magento/module-page-builder-analytics", - "version": "1.4.0", + "version": "1.5.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-page-builder-analytics/magento-module-page-builder-analytics-1.4.0.0.zip", - "shasum": "206088af3943c3b5f14d8bb8f914382c36914472" + "url": "https://repo.magento.com/archives/magento/module-page-builder-analytics/magento-module-page-builder-analytics-1.5.0.0.zip", + "shasum": "7258f86bce29afa61e9869fdf62f2ef53d2f5d85" }, "require": { - "magento/framework": "~103.0.0-beta2", - "magento/module-analytics": "~100.4.0-beta2", - "magento/module-page-builder": "2.0.*", + "magento/framework": "~103.0.1-alpha2", + "magento/module-analytics": "~100.4.1-alpha2", + "magento/module-page-builder": "2.1.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -15002,11 +15548,11 @@ }, { "name": "magento/module-page-cache", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-page-cache/magento-module-page-cache-100.4.0.0.zip", - "shasum": "123419536c1409d9c35f74620252243d37274cdd" + "url": "https://repo.magento.com/archives/magento/module-page-cache/magento-module-page-cache-100.4.1.0.zip", + "shasum": "8a99f0c727a647af8168adf4fb96690c2c1daa1a" }, "require": { "magento/framework": "103.0.*", @@ -15032,11 +15578,11 @@ }, { "name": "magento/module-payment", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-payment/magento-module-payment-100.4.0.0.zip", - "shasum": "ecc5c41cf4085a0c60fccc940bc952724c58e4b9" + "url": "https://repo.magento.com/archives/magento/module-payment/magento-module-payment-100.4.1.0.zip", + "shasum": "64407e124c23d19c67a0b7054e5a1ad5d870a528" }, "require": { "magento/framework": "103.0.*", @@ -15098,11 +15644,11 @@ }, { "name": "magento/module-paypal", - "version": "101.0.0", + "version": "101.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-paypal/magento-module-paypal-101.0.0.0.zip", - "shasum": "a08238a74023ad3c42c22001874a3bdfb11abf02" + "url": "https://repo.magento.com/archives/magento/module-paypal/magento-module-paypal-101.0.1.0.zip", + "shasum": "77473632069350fcf5a971b1c9862c95ba80fd3e" }, "require": { "lib-libxml": "*", @@ -15178,11 +15724,11 @@ }, { "name": "magento/module-paypal-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-paypal-graph-ql/magento-module-paypal-graph-ql-100.4.0.0.zip", - "shasum": "fc6e2fd0348bb09205246c533e93ba214cf3e155" + "url": "https://repo.magento.com/archives/magento/module-paypal-graph-ql/magento-module-paypal-graph-ql-100.4.1.0.zip", + "shasum": "7ad5496ea6418cdcf9dbf82e6915c925614308f6" }, "require": { "magento/framework": "103.0.*", @@ -15193,10 +15739,12 @@ "magento/module-quote-graph-ql": "100.4.*", "magento/module-sales": "103.0.*", "magento/module-store": "101.1.*", + "magento/module-vault": "101.2.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-graph-ql": "100.4.*" + "magento/module-graph-ql": "100.4.*", + "magento/module-store-graph-ql": "100.4.*" }, "type": "magento2-module", "autoload": { @@ -15215,11 +15763,11 @@ }, { "name": "magento/module-paypal-on-boarding", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-paypal-on-boarding/magento-module-paypal-on-boarding-100.4.0.0.zip", - "shasum": "c5d912ab743e25ee7ed17898cc8a9d6c2fcc2761" + "url": "https://repo.magento.com/archives/magento/module-paypal-on-boarding/magento-module-paypal-on-boarding-100.4.1.0.zip", + "shasum": "3124c854f0b7a036c0f28343e6bf646b80fbd779" }, "require": { "magento/framework": "103.0.*", @@ -15245,11 +15793,11 @@ }, { "name": "magento/module-persistent", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-persistent/magento-module-persistent-100.4.0.0.zip", - "shasum": "65f0b213725c661c3168b3cdfc5a8e8e2e5bb43c" + "url": "https://repo.magento.com/archives/magento/module-persistent/magento-module-persistent-100.4.1.0.zip", + "shasum": "f8a54bfed9db62c618b180a735a9c9e3d31239fb" }, "require": { "magento/framework": "103.0.*", @@ -15354,11 +15902,11 @@ }, { "name": "magento/module-product-alert", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-product-alert/magento-module-product-alert-100.4.0.0.zip", - "shasum": "2d1f5364fd3322d76c46c117f4e6c3749df7f82a" + "url": "https://repo.magento.com/archives/magento/module-product-alert/magento-module-product-alert-100.4.1.0.zip", + "shasum": "1945570a5bb73b1aa264a9a7fa1ba6e007a70690" }, "require": { "magento/framework": "103.0.*", @@ -15389,11 +15937,11 @@ }, { "name": "magento/module-product-video", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-product-video/magento-module-product-video-100.4.0.0.zip", - "shasum": "0499a054bf9ded45622da6c14f419f73c5a031e9" + "url": "https://repo.magento.com/archives/magento/module-product-video/magento-module-product-video-100.4.1.0.zip", + "shasum": "43e25564c5fd9da795108e412037004afc020134" }, "require": { "magento/framework": "103.0.*", @@ -15492,59 +16040,172 @@ }, { "name": "magento/module-quote", - "version": "101.2.0", + "version": "101.2.1", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-quote/magento-module-quote-101.2.1.0.zip", + "shasum": "75623438d1c4167a0283f3fb1793d45dc7151178" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-authorization": "100.4.*", + "magento/module-backend": "102.0.*", + "magento/module-catalog": "104.0.*", + "magento/module-catalog-inventory": "100.4.*", + "magento/module-checkout": "100.4.*", + "magento/module-customer": "103.0.*", + "magento/module-directory": "100.4.*", + "magento/module-eav": "102.1.*", + "magento/module-payment": "100.4.*", + "magento/module-sales": "103.0.*", + "magento/module-sales-sequence": "100.4.*", + "magento/module-shipping": "100.4.*", + "magento/module-store": "101.1.*", + "magento/module-tax": "100.4.*", + "php": "~7.3.0||~7.4.0" + }, + "suggest": { + "magento/module-webapi": "100.4.*" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\Quote\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "N/A" + }, + { + "name": "magento/module-quote-analytics", + "version": "100.4.1", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-quote-analytics/magento-module-quote-analytics-100.4.1.0.zip", + "shasum": "05ee2b4e81f5a5b4003fb96ed18f3b901413bb8c" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-analytics": "100.4.*", + "magento/module-quote": "101.2.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\QuoteAnalytics\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "N/A" + }, + { + "name": "magento/module-quote-bundle-options", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-quote-bundle-options/magento-module-quote-bundle-options-100.4.0.0.zip", + "shasum": "600b519b3bbb05d4b3c9f4b16630e6dfc1fa4a6f" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-quote": "101.2.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\QuoteBundleOptions\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "Magento module provides data provider for creating buy request for bundle products" + }, + { + "name": "magento/module-quote-configurable-options", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-quote-configurable-options/magento-module-quote-configurable-options-100.4.0.0.zip", + "shasum": "45320a2c671d3f4a41840c9c96f21bf2b127e7dc" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-quote": "101.2.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\QuoteConfigurableOptions\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "Magento module provides data provider for creating buy request for configurable products" + }, + { + "name": "magento/module-quote-downloadable-links", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-quote/magento-module-quote-101.2.0.0.zip", - "shasum": "b3b20916a7fbc286801b2bd2ce36bcb64199d124" + "url": "https://repo.magento.com/archives/magento/module-quote-downloadable-links/magento-module-quote-downloadable-links-100.4.0.0.zip", + "shasum": "dce1745d88c4e13de89ed114b86c242e1c0f5221" }, "require": { "magento/framework": "103.0.*", - "magento/module-authorization": "100.4.*", - "magento/module-backend": "102.0.*", - "magento/module-catalog": "104.0.*", - "magento/module-catalog-inventory": "100.4.*", - "magento/module-checkout": "100.4.*", - "magento/module-customer": "103.0.*", - "magento/module-directory": "100.4.*", - "magento/module-eav": "102.1.*", - "magento/module-payment": "100.4.*", - "magento/module-sales": "103.0.*", - "magento/module-sales-sequence": "100.4.*", - "magento/module-shipping": "100.4.*", - "magento/module-store": "101.1.*", - "magento/module-tax": "100.4.*", + "magento/module-quote": "101.2.*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-webapi": "100.4.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\Quote\\": "" + "Magento\\QuoteDownloadableLinks\\": "" } }, "license": [ "OSL-3.0", "AFL-3.0" ], - "description": "N/A" + "description": "Magento module provides data provider for creating buy request for links of downloadable products" }, { - "name": "magento/module-quote-analytics", + "name": "magento/module-quote-gift-card-options", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-quote-analytics/magento-module-quote-analytics-100.4.0.0.zip", - "shasum": "bbbd89971918862af4aa5868f58fd8c87800d1f6" + "url": "https://repo.magento.com/archives/magento/module-quote-gift-card-options/magento-module-quote-gift-card-options-100.4.0.0.zip", + "shasum": "94a6b166d0c6317d5a436b39eb9817159a30644d" }, "require": { "magento/framework": "103.0.*", - "magento/module-analytics": "100.4.*", + "magento/module-gift-card": "101.3.*", "magento/module-quote": "101.2.*", "php": "~7.3.0||~7.4.0" }, @@ -15554,22 +16215,21 @@ "registration.php" ], "psr-4": { - "Magento\\QuoteAnalytics\\": "" + "Magento\\QuoteGiftCardOptions\\": "" } }, "license": [ - "OSL-3.0", - "AFL-3.0" + "proprietary" ], - "description": "N/A" + "description": "Magento module provides data provider for creating buy request for gift card products" }, { "name": "magento/module-quote-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-quote-graph-ql/magento-module-quote-graph-ql-100.4.0.0.zip", - "shasum": "ae58d39019962a34b246f0fe94180cc72ec7a4f5" + "url": "https://repo.magento.com/archives/magento/module-quote-graph-ql/magento-module-quote-graph-ql-100.4.1.0.zip", + "shasum": "7dfaa9fad320206a8b5c939e6f4a455cf5065c22" }, "require": { "magento/framework": "103.0.*", @@ -15578,6 +16238,7 @@ "magento/module-customer": "103.0.*", "magento/module-customer-graph-ql": "100.4.*", "magento/module-directory": "100.4.*", + "magento/module-gift-message": "100.4.*", "magento/module-graph-ql": "100.4.*", "magento/module-quote": "101.2.*", "magento/module-sales": "103.0.*", @@ -15604,16 +16265,17 @@ }, { "name": "magento/module-re-captcha-admin-ui", - "version": "1.0.0", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-admin-ui/magento-module-re-captcha-admin-ui-1.0.0.0.zip", - "shasum": "fda64de870bd54381489319ab071ce8b4a4a1715" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-admin-ui/magento-module-re-captcha-admin-ui-1.1.0.0.zip", + "shasum": "f88ca56de721ba40a3b57f49a6f98fcceacd8c91" }, "require": { "magento/framework": "*", "magento/module-config": "*", - "magento/module-re-captcha-ui": "*", + "magento/module-re-captcha-ui": "1.1.*", + "magento/module-store": "*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -15632,16 +16294,16 @@ }, { "name": "magento/module-re-captcha-checkout", - "version": "1.0.0", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-checkout/magento-module-re-captcha-checkout-1.0.0.0.zip", - "shasum": "1ced533bc16fba1fb3b326e4eb3d4cc8335c11c0" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-checkout/magento-module-re-captcha-checkout-1.1.0.0.zip", + "shasum": "6d55c828dc35a8b5a870d17a6ec9e754d682f4de" }, "require": { "magento/framework": "*", "magento/module-checkout": "*", - "magento/module-re-captcha-ui": "*", + "magento/module-re-captcha-ui": "1.1.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -15660,15 +16322,15 @@ }, { "name": "magento/module-re-captcha-contact", - "version": "1.0.0", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-contact/magento-module-re-captcha-contact-1.0.0.0.zip", - "shasum": "8a6fa9fd7890a5bfd78b3dac145ad8c52f5d29a5" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-contact/magento-module-re-captcha-contact-1.1.0.0.zip", + "shasum": "3ceb2b5c3e3afd6a0655378aa69b7803675d5429" }, "require": { "magento/framework": "*", - "magento/module-re-captcha-ui": "*", + "magento/module-re-captcha-ui": "1.1.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -15687,17 +16349,17 @@ }, { "name": "magento/module-re-captcha-customer", - "version": "1.0.0", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-customer/magento-module-re-captcha-customer-1.0.0.0.zip", - "shasum": "b1964a538f7c0c53b15408a14c1c9aa4da49b7a6" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-customer/magento-module-re-captcha-customer-1.1.0.0.zip", + "shasum": "5d475ec29193f61386ea06e1f71d39213142b6f3" }, "require": { "magento/framework": "*", "magento/module-customer": "*", - "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.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -15716,15 +16378,15 @@ }, { "name": "magento/module-re-captcha-frontend-ui", - "version": "1.0.0", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-frontend-ui/magento-module-re-captcha-frontend-ui-1.0.0.0.zip", - "shasum": "d4da31edac5626333ec03bbcdefa53f8d8cc581f" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-frontend-ui/magento-module-re-captcha-frontend-ui-1.1.0.0.zip", + "shasum": "d1aa622ee1e4428fe830dbeb4e9131f736842a15" }, "require": { "magento/framework": "*", - "magento/module-re-captcha-ui": "*", + "magento/module-re-captcha-ui": "1.1.*", "magento/module-store": "*", "php": "~7.3.0||~7.4.0" }, @@ -15744,11 +16406,11 @@ }, { "name": "magento/module-re-captcha-migration", - "version": "1.0.0", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-migration/magento-module-re-captcha-migration-1.0.0.0.zip", - "shasum": "5572a2f825dced7650ba3ce1e732956824ec925e" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-migration/magento-module-re-captcha-migration-1.1.0.0.zip", + "shasum": "f2e9e44a089ce344078e5fd4b4c41c74c1f3d6e3" }, "require": { "magento/framework": "*", @@ -15771,15 +16433,15 @@ }, { "name": "magento/module-re-captcha-newsletter", - "version": "1.0.0", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-newsletter/magento-module-re-captcha-newsletter-1.0.0.0.zip", - "shasum": "9da6f608ba440c84a99f2732ace1c74446629ded" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-newsletter/magento-module-re-captcha-newsletter-1.1.0.0.zip", + "shasum": "b3ffbe9785e530a1a1b7f4f71e3fe151efabc708" }, "require": { "magento/framework": "*", - "magento/module-re-captcha-ui": "*", + "magento/module-re-captcha-ui": "1.1.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -15798,17 +16460,17 @@ }, { "name": "magento/module-re-captcha-paypal", - "version": "1.0.0", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-paypal/magento-module-re-captcha-paypal-1.0.0.0.zip", - "shasum": "8da4a3e4ea311405bda83baafea0d838040d811f" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-paypal/magento-module-re-captcha-paypal-1.1.0.0.zip", + "shasum": "b2d68dc57ced68c60ced8c9f939688464889c1cd" }, "require": { "magento/framework": "*", "magento/module-checkout": "*", - "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.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -15827,15 +16489,15 @@ }, { "name": "magento/module-re-captcha-review", - "version": "1.0.0", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-review/magento-module-re-captcha-review-1.0.0.0.zip", - "shasum": "2cc148c7315de455755ad16a48834aac68dddf21" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-review/magento-module-re-captcha-review-1.1.0.0.zip", + "shasum": "1534a0431995fc48ba6e076695eed57017a077c5" }, "require": { "magento/framework": "*", - "magento/module-re-captcha-ui": "*", + "magento/module-re-captcha-ui": "1.1.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -15854,15 +16516,15 @@ }, { "name": "magento/module-re-captcha-send-friend", - "version": "1.0.0", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-send-friend/magento-module-re-captcha-send-friend-1.0.0.0.zip", - "shasum": "48f87e21458c2ec554403f53a521f660313a5383" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-send-friend/magento-module-re-captcha-send-friend-1.1.0.0.zip", + "shasum": "bea1720bec4686a5257325fc71fb1d56b61fa1f4" }, "require": { "magento/framework": "*", - "magento/module-re-captcha-ui": "*", + "magento/module-re-captcha-ui": "1.1.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -15881,15 +16543,15 @@ }, { "name": "magento/module-re-captcha-ui", - "version": "1.0.0", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-ui/magento-module-re-captcha-ui-1.0.0.0.zip", - "shasum": "ff154ea5529e53eff2a5f4fa24f406444bb4743e" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-ui/magento-module-re-captcha-ui-1.1.0.0.zip", + "shasum": "21b9c5e3b70c6181a913debae9c0da20bb44f13e" }, "require": { "magento/framework": "*", - "magento/module-re-captcha-validation-api": "*", + "magento/module-re-captcha-validation-api": "1.1.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -15914,16 +16576,16 @@ }, { "name": "magento/module-re-captcha-user", - "version": "1.0.0", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-user/magento-module-re-captcha-user-1.0.0.0.zip", - "shasum": "87340c47919cf825877dc1b5b9bfff44bdbf63aa" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-user/magento-module-re-captcha-user-1.1.0.0.zip", + "shasum": "caa712bfd103beec01c22a20dfb4ce90106e9417" }, "require": { "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.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -15942,16 +16604,16 @@ }, { "name": "magento/module-re-captcha-validation", - "version": "1.0.0", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-validation/magento-module-re-captcha-validation-1.0.0.0.zip", - "shasum": "7442ac656dc5a79d75973f331403e9762a98e7a7" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-validation/magento-module-re-captcha-validation-1.1.0.0.zip", + "shasum": "1f084fb5089071b9ce0af780f30223ec3107a0f6" }, "require": { "google/recaptcha": "^1.2", "magento/framework": "*", - "magento/module-re-captcha-validation-api": "*", + "magento/module-re-captcha-validation-api": "1.1.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -15970,11 +16632,11 @@ }, { "name": "magento/module-re-captcha-validation-api", - "version": "1.0.0", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-validation-api/magento-module-re-captcha-validation-api-1.0.0.0.zip", - "shasum": "12a6b6124020338c2849f3f656c7a31994b8ee54" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-validation-api/magento-module-re-captcha-validation-api-1.1.0.0.zip", + "shasum": "6fa06fe393f30ccc25d29341e7bc3f47203ed14d" }, "require": { "magento/framework": "*", @@ -15996,22 +16658,22 @@ }, { "name": "magento/module-re-captcha-version-2-checkbox", - "version": "1.0.0", + "version": "2.0.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-version-2-checkbox/magento-module-re-captcha-version-2-checkbox-1.0.0.0.zip", - "shasum": "a8a25db92f6600bf0466f0946efb3a9adfc059db" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-version-2-checkbox/magento-module-re-captcha-version-2-checkbox-2.0.0.0.zip", + "shasum": "8b499934e07d259e273b56d56a230d6dee080d68" }, "require": { "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-store": "*", "php": "~7.3.0||~7.4.0" }, "suggest": { "magento/module-config": "*", - "magento/module-re-captcha-admin-ui": "1.0.*" + "magento/module-re-captcha-admin-ui": "1.1.*" }, "type": "magento2-module", "autoload": { @@ -16029,22 +16691,22 @@ }, { "name": "magento/module-re-captcha-version-2-invisible", - "version": "1.0.0", + "version": "2.0.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-version-2-invisible/magento-module-re-captcha-version-2-invisible-1.0.0.0.zip", - "shasum": "5e3aa45c68c85182cdea47dfcb19498496277cd1" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-version-2-invisible/magento-module-re-captcha-version-2-invisible-2.0.0.0.zip", + "shasum": "58ec898769fb85b11593d5d49b22149ce517f91f" }, "require": { "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-store": "*", "php": "~7.3.0||~7.4.0" }, "suggest": { "magento/module-config": "*", - "magento/module-re-captcha-admin-ui": "1.0.*" + "magento/module-re-captcha-admin-ui": "1.1.*" }, "type": "magento2-module", "autoload": { @@ -16062,22 +16724,22 @@ }, { "name": "magento/module-re-captcha-version-3-invisible", - "version": "1.0.0", + "version": "2.0.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-version-3-invisible/magento-module-re-captcha-version-3-invisible-1.0.0.0.zip", - "shasum": "1f2696f83f5dace6bc4c1b5d7c48ee3d2317ba58" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-version-3-invisible/magento-module-re-captcha-version-3-invisible-2.0.0.0.zip", + "shasum": "1214fdf89a58c7e2ed267f1c33a55c40f1ec1054" }, "require": { "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-store": "*", "php": "~7.3.0||~7.4.0" }, "suggest": { "magento/module-config": "*", - "magento/module-re-captcha-admin-ui": "1.0.*" + "magento/module-re-captcha-admin-ui": "1.1.*" }, "type": "magento2-module", "autoload": { @@ -16197,11 +16859,11 @@ }, { "name": "magento/module-reports", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-reports/magento-module-reports-100.4.0.0.zip", - "shasum": "d5bfac444ac991aff16e88d12bb9619aa25e4090" + "url": "https://repo.magento.com/archives/magento/module-reports/magento-module-reports-100.4.1.0.zip", + "shasum": "507a4841a101d08e0b29cf33ff73e1c2072fa27d" }, "require": { "magento/framework": "103.0.*", @@ -16293,11 +16955,11 @@ }, { "name": "magento/module-review", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-review/magento-module-review-100.4.0.0.zip", - "shasum": "26de6f8b816476df517cbafc0ef582f027f37c24" + "url": "https://repo.magento.com/archives/magento/module-review/magento-module-review-100.4.1.0.zip", + "shasum": "3b53f164707f690daba2c344fa9f342d51ca8063" }, "require": { "magento/framework": "103.0.*", @@ -16359,6 +17021,40 @@ ], "description": "N/A" }, + { + "name": "magento/module-review-graph-ql", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-review-graph-ql/magento-module-review-graph-ql-100.4.0.0.zip", + "shasum": "b02dc8dfb8e39c8602ac38337e64eb8c60c5f492" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-catalog": "104.0.*", + "magento/module-review": "100.4.*", + "magento/module-store": "101.1.*", + "php": "~7.3.0||~7.4.0" + }, + "suggest": { + "magento/module-graph-ql": "100.4.*", + "magento/module-graph-ql-cache": "100.4.*" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\ReviewGraphQl\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "N/A" + }, { "name": "magento/module-review-staging", "version": "100.4.0", @@ -16394,11 +17090,11 @@ }, { "name": "magento/module-reward", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-reward/magento-module-reward-101.2.0.0.zip", - "shasum": "a2145ba6172a215aecde20cedf09a30862dd6d81" + "url": "https://repo.magento.com/archives/magento/module-reward/magento-module-reward-101.2.1.0.zip", + "shasum": "456ee538a8c3b8c5b7af419ddd400bb14927deea" }, "require": { "magento/framework": "103.0.*", @@ -16440,19 +17136,24 @@ }, { "name": "magento/module-reward-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-reward-graph-ql/magento-module-reward-graph-ql-100.4.0.0.zip", - "shasum": "82e7fc3da138434aa87a6397f5614001e4473d32" + "url": "https://repo.magento.com/archives/magento/module-reward-graph-ql/magento-module-reward-graph-ql-100.4.1.0.zip", + "shasum": "5045291e31458a5324a7b3afeace172073544450" }, "require": { "magento/framework": "103.0.*", + "magento/module-customer": "103.0.*", + "magento/module-quote": "101.2.*", + "magento/module-quote-graph-ql": "100.4.*", + "magento/module-reward": "101.2.*", + "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, "suggest": { "magento/module-customer-graph-ql": "100.4.*", - "magento/module-reward": "101.2.*" + "magento/module-graph-ql": "100.4.*" }, "type": "magento2-module", "autoload": { @@ -16503,11 +17204,11 @@ }, { "name": "magento/module-rma", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-rma/magento-module-rma-101.2.0.0.zip", - "shasum": "778b624a5ff75d7c3c53b4259e3459cc647bc772" + "url": "https://repo.magento.com/archives/magento/module-rma/magento-module-rma-101.2.1.0.zip", + "shasum": "16b135dd749844f12d9134ee215bf9b989a343c3" }, "require": { "ext-gd": "*", @@ -16710,11 +17411,11 @@ }, { "name": "magento/module-sales", - "version": "103.0.0", + "version": "103.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sales/magento-module-sales-103.0.0.0.zip", - "shasum": "1ec4b2bba3a0f89ab4641a9e9ab4531485dea645" + "url": "https://repo.magento.com/archives/magento/module-sales/magento-module-sales-103.0.1.0.zip", + "shasum": "94d8a3b1e45b223fcaebd8da4dda7f91368d8c42" }, "require": { "magento/framework": "103.0.*", @@ -16825,16 +17526,21 @@ }, { "name": "magento/module-sales-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sales-graph-ql/magento-module-sales-graph-ql-100.4.0.0.zip", - "shasum": "4edf4c0befdaf06f45b705e409b886cc860397b0" + "url": "https://repo.magento.com/archives/magento/module-sales-graph-ql/magento-module-sales-graph-ql-100.4.1.0.zip", + "shasum": "ffd609d0daa15c4798f08fee141bbe4b7058b166" }, "require": { "magento/framework": "103.0.*", + "magento/module-catalog": "104.0.*", "magento/module-graph-ql": "100.4.*", + "magento/module-quote": "101.2.*", "magento/module-sales": "103.0.*", + "magento/module-shipping": "100.4.*", + "magento/module-store": "101.1.*", + "magento/module-tax": "100.4.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -16885,11 +17591,11 @@ }, { "name": "magento/module-sales-rule", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sales-rule/magento-module-sales-rule-101.2.0.0.zip", - "shasum": "6c5064668400a2d3cb447f0b762f7daab2b9a09f" + "url": "https://repo.magento.com/archives/magento/module-sales-rule/magento-module-sales-rule-101.2.1.0.zip", + "shasum": "35c495f50571d4fbca942fdeb29f7e5f8724513f" }, "require": { "magento/framework": "103.0.*", @@ -16970,11 +17676,11 @@ }, { "name": "magento/module-sales-sequence", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sales-sequence/magento-module-sales-sequence-100.4.0.0.zip", - "shasum": "17c6d19b579f082e0fd5b7d1abcf21a11b60e85a" + "url": "https://repo.magento.com/archives/magento/module-sales-sequence/magento-module-sales-sequence-100.4.1.0.zip", + "shasum": "5508458a59641dccd017849f68a79573c41a4808" }, "require": { "magento/framework": "103.0.*", @@ -16997,11 +17703,11 @@ }, { "name": "magento/module-sample-data", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sample-data/magento-module-sample-data-100.4.0.0.zip", - "shasum": "ae4dd0d30a7a1938143253484ef582ad9bb3ef87" + "url": "https://repo.magento.com/archives/magento/module-sample-data/magento-module-sample-data-100.4.1.0.zip", + "shasum": "b576fe30e9fd28b6d332aaebb16a03def6c039bf" }, "require": { "magento/framework": "103.0.*", @@ -17122,11 +17828,11 @@ }, { "name": "magento/module-scheduled-import-export", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-scheduled-import-export/magento-module-scheduled-import-export-101.2.0.0.zip", - "shasum": "e3a5a34cc8bd530ce976c58e301b2fe794180825" + "url": "https://repo.magento.com/archives/magento/module-scheduled-import-export/magento-module-scheduled-import-export-101.2.1.0.zip", + "shasum": "346e39ae71588d6d57970a69270c50fad46a36eb" }, "require": { "magento/framework": "103.0.*", @@ -17154,11 +17860,11 @@ }, { "name": "magento/module-search", - "version": "101.1.0", + "version": "101.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-search/magento-module-search-101.1.0.0.zip", - "shasum": "e0b7555bd350ab0620f25c79bd4883d9e01e6294" + "url": "https://repo.magento.com/archives/magento/module-search/magento-module-search-101.1.1.0.zip", + "shasum": "bf9ed39a53d22eb3b903ed1f32eb9cbf74d808d6" }, "require": { "magento/framework": "103.0.*", @@ -17215,11 +17921,11 @@ }, { "name": "magento/module-security", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-security/magento-module-security-100.4.0.0.zip", - "shasum": "4ce36b7765f2ccaedd06d6b37a57f794861a4a4a" + "url": "https://repo.magento.com/archives/magento/module-security/magento-module-security-100.4.1.0.zip", + "shasum": "b6953177562c9cb4a4f3d4d625482fb060e8eb5b" }, "require": { "magento/framework": "103.0.*", @@ -17248,11 +17954,11 @@ }, { "name": "magento/module-securitytxt", - "version": "1.0.0", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-securitytxt/magento-module-securitytxt-1.0.0.0.zip", - "shasum": "301d85665c96a260b6fc9762585fcc0997a0c6cc" + "url": "https://repo.magento.com/archives/magento/module-securitytxt/magento-module-securitytxt-1.1.0.0.zip", + "shasum": "123186217c5e8ff358e266eb5157fff8b64fddff" }, "require": { "magento/framework": "*", @@ -17346,11 +18052,11 @@ }, { "name": "magento/module-shipping", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-shipping/magento-module-shipping-100.4.0.0.zip", - "shasum": "7e2aafcc5f38a8cb26b26175465d28d33c051ff8" + "url": "https://repo.magento.com/archives/magento/module-shipping/magento-module-shipping-100.4.1.0.zip", + "shasum": "cd84f8168196fd6470d1399dd1122a2ab23984a0" }, "require": { "ext-gd": "*", @@ -17392,11 +18098,11 @@ }, { "name": "magento/module-sitemap", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sitemap/magento-module-sitemap-100.4.0.0.zip", - "shasum": "7f414420b8dbe5e4ff7dcef1b2d2851b1fde2b7d" + "url": "https://repo.magento.com/archives/magento/module-sitemap/magento-module-sitemap-100.4.1.0.zip", + "shasum": "abb5185f1adc722a3dd9ebee9f0c0c91fb5666be" }, "require": { "magento/framework": "103.0.*", @@ -17431,11 +18137,11 @@ }, { "name": "magento/module-staging", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-staging/magento-module-staging-101.2.0.0.zip", - "shasum": "ff072da453aff91c4e197928cb25eb3f5ed65ed4" + "url": "https://repo.magento.com/archives/magento/module-staging/magento-module-staging-101.2.1.0.zip", + "shasum": "850a4203992e667f28a0adb2a813cd6627e8486b" }, "require": { "lib-libxml": "*", @@ -17498,14 +18204,14 @@ }, { "name": "magento/module-staging-page-builder", - "version": "2.0.0", + "version": "2.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-staging-page-builder/magento-module-staging-page-builder-2.0.0.0.zip", - "shasum": "14ab9f02c7c2f51b815c53ba866f38904633ace5" + "url": "https://repo.magento.com/archives/magento/module-staging-page-builder/magento-module-staging-page-builder-2.1.0.0.zip", + "shasum": "e218f7e00025ca88eeb47f3b5b660e8c4c4c514c" }, "require": { - "magento/framework": "~103.0.0-beta2", + "magento/framework": "~103.0.1-alpha2", "php": "~7.3.0||~7.4.0" }, "suggest": { @@ -17528,11 +18234,11 @@ }, { "name": "magento/module-store", - "version": "101.1.0", + "version": "101.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-store/magento-module-store-101.1.0.0.zip", - "shasum": "3a19d9c63531f77916fb19d8e5c9c34291c978c3" + "url": "https://repo.magento.com/archives/magento/module-store/magento-module-store-101.1.1.0.zip", + "shasum": "3bdbc7289b6e4a2e4d6a3c27a53015ed2ceb0d39" }, "require": { "magento/framework": "103.0.*", @@ -17566,11 +18272,11 @@ }, { "name": "magento/module-store-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-store-graph-ql/magento-module-store-graph-ql-100.4.0.0.zip", - "shasum": "a9111e9e748a7f24262488aae5117fa086fb3097" + "url": "https://repo.magento.com/archives/magento/module-store-graph-ql/magento-module-store-graph-ql-100.4.1.0.zip", + "shasum": "69699feda3fe1d21bbe2082f3cd3bdfa2d403999" }, "require": { "magento/framework": "103.0.*", @@ -17727,12 +18433,40 @@ "description": "N/A" }, { - "name": "magento/module-swatches", + "name": "magento/module-swat", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-swatches/magento-module-swatches-100.4.0.0.zip", - "shasum": "dba6085416a1ed78c8d60548858181406d8e7589" + "url": "https://repo.magento.com/archives/magento/module-swat/magento-module-swat-100.4.0.0.zip", + "shasum": "bf326977244ae9b883b588cf27731da4edde83f6" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-backend": "102.0.*", + "magento/module-user": "101.2.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\Swat\\": "" + } + }, + "license": [ + "proprietary" + ], + "description": "N/A" + }, + { + "name": "magento/module-swatches", + "version": "100.4.1", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-swatches/magento-module-swatches-100.4.1.0.zip", + "shasum": "7db3f519e490de8c8ed5e34a51d965265c432912" }, "require": { "magento/framework": "103.0.*", @@ -17769,21 +18503,19 @@ }, { "name": "magento/module-swatches-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-swatches-graph-ql/magento-module-swatches-graph-ql-100.4.0.0.zip", - "shasum": "a664d436a73f676c9e515a5f676bafce666b9464" + "url": "https://repo.magento.com/archives/magento/module-swatches-graph-ql/magento-module-swatches-graph-ql-100.4.1.0.zip", + "shasum": "4788f5e071c9cd64276072474582d2ae45bfa8d7" }, "require": { "magento/framework": "103.0.*", "magento/module-catalog": "104.0.*", + "magento/module-catalog-graph-ql": "100.4.*", "magento/module-swatches": "100.4.*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-catalog-graph-ql": "100.4.*" - }, "type": "magento2-module", "autoload": { "files": [ @@ -17829,11 +18561,11 @@ }, { "name": "magento/module-target-rule", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-target-rule/magento-module-target-rule-101.2.0.0.zip", - "shasum": "f8755a800a590af790bdec1d8d4e26fba969d640" + "url": "https://repo.magento.com/archives/magento/module-target-rule/magento-module-target-rule-101.2.1.0.zip", + "shasum": "5a62dd0f00dc0db129edcc5d51ff5c099a0472cf" }, "require": { "magento/framework": "103.0.*", @@ -17869,12 +18601,42 @@ "description": "N/A" }, { - "name": "magento/module-tax", + "name": "magento/module-target-rule-graph-ql", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-tax/magento-module-tax-100.4.0.0.zip", - "shasum": "eeee9793b16140314f57f47e03331e494693241e" + "url": "https://repo.magento.com/archives/magento/module-target-rule-graph-ql/magento-module-target-rule-graph-ql-100.4.0.0.zip", + "shasum": "3899fef5d931aab506137c86c92bb28bec4f028a" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-catalog": "104.0.*", + "magento/module-catalog-graph-ql": "100.4.*", + "magento/module-related-product-graph-ql": "100.4.*", + "magento/module-target-rule": "101.2.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\TargetRuleGraphQl\\": "" + } + }, + "license": [ + "proprietary" + ], + "description": "N/A" + }, + { + "name": "magento/module-tax", + "version": "100.4.1", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-tax/magento-module-tax-100.4.1.0.zip", + "shasum": "29eb56e51551199ce0b17e948e4ba9d4b673c590" }, "require": { "magento/framework": "103.0.*", @@ -17945,11 +18707,11 @@ }, { "name": "magento/module-tax-import-export", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-tax-import-export/magento-module-tax-import-export-100.4.0.0.zip", - "shasum": "b7e75d55aec11250aac048ddf68d5ac1cff11c1d" + "url": "https://repo.magento.com/archives/magento/module-tax-import-export/magento-module-tax-import-export-100.4.1.0.zip", + "shasum": "bdc4b5a29c380a0e010dbd7e3a3e27551f8519ec" }, "require": { "magento/framework": "103.0.*", @@ -17977,11 +18739,11 @@ }, { "name": "magento/module-theme", - "version": "101.1.0", + "version": "101.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-theme/magento-module-theme-101.1.0.0.zip", - "shasum": "2a0f4c62f42941af6e3e49c4c775fd85c55937c0" + "url": "https://repo.magento.com/archives/magento/module-theme/magento-module-theme-101.1.1.0.zip", + "shasum": "8f02c7613fbccba355ec5a4271f22221d18ebc60" }, "require": { "magento/framework": "103.0.*", @@ -18049,11 +18811,11 @@ }, { "name": "magento/module-tinymce-3", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-tinymce-3/magento-module-tinymce-3-100.4.0.0.zip", - "shasum": "e26848511ebe2f02073e5b3f16d35e8bc583b407" + "url": "https://repo.magento.com/archives/magento/module-tinymce-3/magento-module-tinymce-3-100.4.1.0.zip", + "shasum": "8e6445a4ef4ebe913fa326818bdb25d47e91af4f" }, "require": { "magento/framework": "103.0.*", @@ -18113,11 +18875,11 @@ }, { "name": "magento/module-translation", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-translation/magento-module-translation-100.4.0.0.zip", - "shasum": "9bf9a6081484de21db1e388e7d123a91457a1281" + "url": "https://repo.magento.com/archives/magento/module-translation/magento-module-translation-100.4.1.0.zip", + "shasum": "2279f7b98ad66c1176528ce18331ceb90bdad361" }, "require": { "magento/framework": "103.0.*", @@ -18147,11 +18909,11 @@ }, { "name": "magento/module-two-factor-auth", - "version": "1.0.0", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-two-factor-auth/magento-module-two-factor-auth-1.0.0.0.zip", - "shasum": "2cac3b59970a5ec3890154856e3f1e56ff4e8836" + "url": "https://repo.magento.com/archives/magento/module-two-factor-auth/magento-module-two-factor-auth-1.1.0.0.zip", + "shasum": "8cdb7265c9268a06654c229fe5b5e7d588810297" }, "require": { "2tvenom/cborencode": "^1.0", @@ -18187,11 +18949,11 @@ }, { "name": "magento/module-ui", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-ui/magento-module-ui-101.2.0.0.zip", - "shasum": "9bf33f8e9f60efc8fad04d65df58b47046468c72" + "url": "https://repo.magento.com/archives/magento/module-ui/magento-module-ui-101.2.1.0.zip", + "shasum": "f66f3ff72cf8b5d754b93221f733b75566d67ea0" }, "require": { "magento/framework": "103.0.*", @@ -18222,11 +18984,11 @@ }, { "name": "magento/module-ups", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-ups/magento-module-ups-100.4.0.0.zip", - "shasum": "441d79e3453f9b4f6e315d4862dcb7d7627c92b3" + "url": "https://repo.magento.com/archives/magento/module-ups/magento-module-ups-100.4.1.0.zip", + "shasum": "c1ab7b037dd915018c562c4d62d680b726d514f0" }, "require": { "magento/framework": "103.0.*", @@ -18259,11 +19021,11 @@ }, { "name": "magento/module-url-rewrite", - "version": "102.0.0", + "version": "102.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-url-rewrite/magento-module-url-rewrite-102.0.0.0.zip", - "shasum": "ab97bb625606c2e639a3f0b45d503adbfcf82f3f" + "url": "https://repo.magento.com/archives/magento/module-url-rewrite/magento-module-url-rewrite-102.0.1.0.zip", + "shasum": "9e27a79511124a3b4bb54635149df7259544677d" }, "require": { "magento/framework": "103.0.*", @@ -18324,11 +19086,11 @@ }, { "name": "magento/module-user", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-user/magento-module-user-101.2.0.0.zip", - "shasum": "0caaaa786e222f0ffe67ba4c4fe88d6fdbc6f643" + "url": "https://repo.magento.com/archives/magento/module-user/magento-module-user-101.2.1.0.zip", + "shasum": "a3f2951b2e8f03464bbca5a15024c3b4a072c51f" }, "require": { "magento/framework": "103.0.*", @@ -18425,11 +19187,11 @@ }, { "name": "magento/module-vault", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-vault/magento-module-vault-101.2.0.0.zip", - "shasum": "c959aa06935d83745efe96dd5a27f50450eb0c98" + "url": "https://repo.magento.com/archives/magento/module-vault/magento-module-vault-101.2.1.0.zip", + "shasum": "e35e0d8dc742aabc00dd56e09f089e4b7c71db30" }, "require": { "magento/framework": "103.0.*", @@ -18514,11 +19276,11 @@ }, { "name": "magento/module-versions-cms", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-versions-cms/magento-module-versions-cms-101.2.0.0.zip", - "shasum": "de1a66d74903227c450403d02d3a3a6bfb445508" + "url": "https://repo.magento.com/archives/magento/module-versions-cms/magento-module-versions-cms-101.2.1.0.zip", + "shasum": "f72c9d30da83c4152e57f1d56052047a6b16173e" }, "require": { "magento/framework": "103.0.*", @@ -18576,11 +19338,11 @@ }, { "name": "magento/module-visual-merchandiser", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-visual-merchandiser/magento-module-visual-merchandiser-100.4.0.0.zip", - "shasum": "3d7653cede5d01e5e7fc6ffa76241f6dc270a5f8" + "url": "https://repo.magento.com/archives/magento/module-visual-merchandiser/magento-module-visual-merchandiser-100.4.1.0.zip", + "shasum": "ae4d2891b27623152d0aee00ddcb87fed8abbde2" }, "require": { "magento/framework": "103.0.*", @@ -18708,11 +19470,11 @@ }, { "name": "magento/module-website-restriction", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-website-restriction/magento-module-website-restriction-100.4.0.0.zip", - "shasum": "a40523dc49b253d1c54fc7dcfae86aaed38da6aa" + "url": "https://repo.magento.com/archives/magento/module-website-restriction/magento-module-website-restriction-100.4.1.0.zip", + "shasum": "4206511e7196ce518784ba3c7031fa588d160e86" }, "require": { "magento/framework": "103.0.*", @@ -18740,11 +19502,11 @@ }, { "name": "magento/module-weee", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-weee/magento-module-weee-100.4.0.0.zip", - "shasum": "36f8d7bfe0f77bd4afb3c2623903561306006f67" + "url": "https://repo.magento.com/archives/magento/module-weee/magento-module-weee-100.4.1.0.zip", + "shasum": "a4ffe3fbab088fc50788d909b189e4a27badd7c0" }, "require": { "magento/framework": "103.0.*", @@ -18848,11 +19610,11 @@ }, { "name": "magento/module-widget", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-widget/magento-module-widget-101.2.0.0.zip", - "shasum": "06981a9bf8d55cd83616648be8436d954f5bfffe" + "url": "https://repo.magento.com/archives/magento/module-widget/magento-module-widget-101.2.1.0.zip", + "shasum": "ed113b57bb9c093d5361c873f5920c92fc72c4ac" }, "require": { "magento/framework": "103.0.*", @@ -18885,11 +19647,11 @@ }, { "name": "magento/module-wishlist", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-wishlist/magento-module-wishlist-101.2.0.0.zip", - "shasum": "c5116be562966727b8fa72d46b966b9f35ad1893" + "url": "https://repo.magento.com/archives/magento/module-wishlist/magento-module-wishlist-101.2.1.0.zip", + "shasum": "0214c64d46496945913ff9e22d7925c5231993f5" }, "require": { "magento/framework": "103.0.*", @@ -18960,11 +19722,11 @@ }, { "name": "magento/module-wishlist-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-wishlist-graph-ql/magento-module-wishlist-graph-ql-100.4.0.0.zip", - "shasum": "d9da626ccfe7c150ef6f923c48e1d700088d8bd0" + "url": "https://repo.magento.com/archives/magento/module-wishlist-graph-ql/magento-module-wishlist-graph-ql-100.4.1.0.zip", + "shasum": "1d59c07d6f052fbe9fa9fa7cfa3ced3ac70d8e98" }, "require": { "magento/framework": "103.0.*", @@ -18990,43 +19752,44 @@ }, { "name": "magento/page-builder-commerce", - "version": "1.4.0", + "version": "1.5.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/page-builder-commerce/magento-page-builder-commerce-1.4.0.0.zip", - "shasum": "e20aa17225f11645842803b68b642383967810f0" + "url": "https://repo.magento.com/archives/magento/page-builder-commerce/magento-page-builder-commerce-1.5.0.0.zip", + "shasum": "95e59997a5c52e3a7bbb1dc5733f23c926af6cca" }, "require": { - "magento/module-banner-page-builder": "2.0.0", - "magento/module-banner-page-builder-analytics": "1.4.0", - "magento/module-catalog-page-builder-analytics": "1.4.0", - "magento/module-catalog-page-builder-analytics-staging": "1.4.0", - "magento/module-catalog-staging-page-builder": "1.4.0", - "magento/module-cms-page-builder-analytics": "1.4.0", - "magento/module-cms-page-builder-analytics-staging": "1.4.0", - "magento/module-page-builder": "2.0.0", - "magento/module-page-builder-analytics": "1.4.0", - "magento/module-staging-page-builder": "2.0.0" + "magento/module-banner-page-builder": "2.1.0", + "magento/module-banner-page-builder-analytics": "1.5.0", + "magento/module-catalog-page-builder-analytics": "1.5.0", + "magento/module-catalog-page-builder-analytics-staging": "1.5.0", + "magento/module-catalog-staging-page-builder": "1.5.0", + "magento/module-cms-page-builder-analytics": "1.5.0", + "magento/module-cms-page-builder-analytics-staging": "1.5.0", + "magento/module-page-builder": "2.1.0", + "magento/module-page-builder-admin-analytics": "1.0.0", + "magento/module-page-builder-analytics": "1.5.0", + "magento/module-staging-page-builder": "2.1.0" }, "type": "metapackage", "description": "Page Builder Commerce metapackage" }, { "name": "magento/product-community-edition", - "version": "2.4.0", + "version": "2.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/product-community-edition/magento-product-community-edition-2.4.0.0.zip", - "shasum": "9306dd594ac714c29e5a8728e07fb03fcae7afde" + "url": "https://repo.magento.com/archives/magento/product-community-edition/magento-product-community-edition-2.4.1.0.zip", + "shasum": "7eefebc4396277fdfabdb079828488393a70cc83" }, "require": { - "amzn/amazon-pay-and-login-magento-2-module": "4.0.2", + "amzn/amazon-pay-and-login-magento-2-module": "4.0.4", "colinmollenhour/cache-backend-file": "~1.4.1", "colinmollenhour/cache-backend-redis": "1.11.0", "colinmollenhour/credis": "1.11.1", "colinmollenhour/php-redis-session-abstract": "~1.4.0", "composer/composer": "^1.9", - "dotmailer/dotmailer-magento2-extension-package": "4.6.0", + "dotmailer/dotmailer-magento2-extension-package": "4.8.0", "elasticsearch/elasticsearch": "~7.7.0", "ext-bcmath": "*", "ext-ctype": "*", @@ -19044,7 +19807,7 @@ "ext-xsl": "*", "ext-zip": "*", "guzzlehttp/guzzle": "^6.3.3", - "klarna/m2-payments": "8.0.2", + "klarna/m2-payments": "8.1.0", "laminas/laminas-captcha": "^2.7.1", "laminas/laminas-code": "~3.4.1", "laminas/laminas-config": "^2.6.0", @@ -19075,14 +19838,14 @@ "laminas/laminas-validator": "^2.6.0", "laminas/laminas-view": "~2.11.2", "lib-libxml": "*", - "magento/adobe-stock-integration": "2.0.0", + "magento/adobe-stock-integration": "2.1.0", "magento/composer": "1.6.0", - "magento/framework": "103.0.0", + "magento/framework": "103.0.1", "magento/framework-amqp": "100.4.0", "magento/framework-bulk": "101.0.0", - "magento/framework-message-queue": "100.4.0", + "magento/framework-message-queue": "100.4.1", "magento/google-shopping-ads": "4.0.1", - "magento/inventory-metapackage": "1.2.0", + "magento/inventory-metapackage": "1.2.1", "magento/language-de_de": "100.4.0", "magento/language-en_us": "100.4.0", "magento/language-es_es": "100.4.0", @@ -19091,194 +19854,216 @@ "magento/language-pt_br": "100.4.0", "magento/language-zh_hans_cn": "100.4.0", "magento/magento-composer-installer": ">=0.1.11", - "magento/magento2-base": "2.4.0", - "magento/module-admin-analytics": "100.4.0", + "magento/magento2-base": "2.4.1", + "magento/module-admin-analytics": "100.4.1", "magento/module-admin-notification": "100.4.0", - "magento/module-advanced-pricing-import-export": "100.4.0", + "magento/module-advanced-pricing-import-export": "100.4.1", "magento/module-advanced-search": "100.4.0", "magento/module-amqp": "100.4.0", "magento/module-amqp-store": "100.4.0", - "magento/module-analytics": "100.4.0", - "magento/module-asynchronous-operations": "100.4.0", - "magento/module-authorization": "100.4.0", - "magento/module-backend": "102.0.0", - "magento/module-backup": "100.4.0", - "magento/module-bundle": "101.0.0", - "magento/module-bundle-graph-ql": "100.4.0", + "magento/module-analytics": "100.4.1", + "magento/module-asynchronous-operations": "100.4.1", + "magento/module-authorization": "100.4.1", + "magento/module-backend": "102.0.1", + "magento/module-backup": "100.4.1", + "magento/module-bundle": "101.0.1", + "magento/module-bundle-graph-ql": "100.4.1", "magento/module-bundle-import-export": "100.4.0", "magento/module-cache-invalidate": "100.4.0", - "magento/module-captcha": "100.4.0", + "magento/module-captcha": "100.4.1", "magento/module-cardinal-commerce": "100.4.0", - "magento/module-catalog": "104.0.0", + "magento/module-catalog": "104.0.1", "magento/module-catalog-analytics": "100.4.0", "magento/module-catalog-cms-graph-ql": "100.4.0", - "magento/module-catalog-customer-graph-ql": "100.4.0", - "magento/module-catalog-graph-ql": "100.4.0", - "magento/module-catalog-import-export": "101.1.0", - "magento/module-catalog-inventory": "100.4.0", + "magento/module-catalog-customer-graph-ql": "100.4.1", + "magento/module-catalog-graph-ql": "100.4.1", + "magento/module-catalog-import-export": "101.1.1", + "magento/module-catalog-inventory": "100.4.1", "magento/module-catalog-inventory-graph-ql": "100.4.0", - "magento/module-catalog-rule": "101.2.0", + "magento/module-catalog-rule": "101.2.1", "magento/module-catalog-rule-configurable": "100.4.0", "magento/module-catalog-rule-graph-ql": "100.4.0", - "magento/module-catalog-search": "102.0.0", - "magento/module-catalog-url-rewrite": "100.4.0", + "magento/module-catalog-search": "102.0.1", + "magento/module-catalog-url-rewrite": "100.4.1", "magento/module-catalog-url-rewrite-graph-ql": "100.4.0", - "magento/module-catalog-widget": "100.4.0", - "magento/module-checkout": "100.4.0", + "magento/module-catalog-widget": "100.4.1", + "magento/module-checkout": "100.4.1", "magento/module-checkout-agreements": "100.4.0", "magento/module-checkout-agreements-graph-ql": "100.4.0", - "magento/module-cms": "104.0.0", + "magento/module-cms": "104.0.1", "magento/module-cms-graph-ql": "100.4.0", - "magento/module-cms-url-rewrite": "100.4.0", + "magento/module-cms-url-rewrite": "100.4.1", "magento/module-cms-url-rewrite-graph-ql": "100.4.0", - "magento/module-config": "101.2.0", + "magento/module-config": "101.2.1", "magento/module-configurable-import-export": "100.4.0", - "magento/module-configurable-product": "100.4.0", - "magento/module-configurable-product-graph-ql": "100.4.0", + "magento/module-configurable-product": "100.4.1", + "magento/module-configurable-product-graph-ql": "100.4.1", "magento/module-configurable-product-sales": "100.4.0", - "magento/module-contact": "100.4.0", - "magento/module-cookie": "100.4.0", - "magento/module-cron": "100.4.0", + "magento/module-contact": "100.4.1", + "magento/module-cookie": "100.4.1", + "magento/module-cron": "100.4.1", "magento/module-csp": "100.4.0", "magento/module-currency-symbol": "100.4.0", - "magento/module-customer": "103.0.0", + "magento/module-customer": "103.0.1", "magento/module-customer-analytics": "100.4.0", "magento/module-customer-downloadable-graph-ql": "100.4.0", - "magento/module-customer-graph-ql": "100.4.0", - "magento/module-customer-import-export": "100.4.0", - "magento/module-deploy": "100.4.0", - "magento/module-developer": "100.4.0", + "magento/module-customer-graph-ql": "100.4.1", + "magento/module-customer-import-export": "100.4.1", + "magento/module-deploy": "100.4.1", + "magento/module-developer": "100.4.1", "magento/module-dhl": "100.4.0", - "magento/module-directory": "100.4.0", + "magento/module-directory": "100.4.1", "magento/module-directory-graph-ql": "100.4.0", - "magento/module-downloadable": "100.4.0", - "magento/module-downloadable-graph-ql": "100.4.0", + "magento/module-downloadable": "100.4.1", + "magento/module-downloadable-graph-ql": "100.4.1", "magento/module-downloadable-import-export": "100.4.0", - "magento/module-eav": "102.1.0", + "magento/module-eav": "102.1.1", "magento/module-eav-graph-ql": "100.4.0", - "magento/module-elasticsearch": "101.0.0", - "magento/module-elasticsearch-6": "100.4.0", - "magento/module-elasticsearch-7": "100.4.0", - "magento/module-email": "101.1.0", + "magento/module-elasticsearch": "101.0.1", + "magento/module-elasticsearch-6": "100.4.1", + "magento/module-elasticsearch-7": "100.4.1", + "magento/module-email": "101.1.1", "magento/module-encryption-key": "100.4.0", - "magento/module-fedex": "100.4.0", + "magento/module-fedex": "100.4.1", "magento/module-gift-message": "100.4.0", + "magento/module-gift-message-graph-ql": "100.4.0", "magento/module-google-adwords": "100.4.0", "magento/module-google-analytics": "100.4.0", - "magento/module-google-optimizer": "100.4.0", - "magento/module-graph-ql": "100.4.0", + "magento/module-google-optimizer": "100.4.1", + "magento/module-graph-ql": "100.4.1", "magento/module-graph-ql-cache": "100.4.0", "magento/module-grouped-catalog-inventory": "100.4.0", "magento/module-grouped-import-export": "100.4.0", - "magento/module-grouped-product": "100.4.0", - "magento/module-grouped-product-graph-ql": "100.4.0", - "magento/module-import-export": "101.0.0", - "magento/module-indexer": "100.4.0", + "magento/module-grouped-product": "100.4.1", + "magento/module-grouped-product-graph-ql": "100.4.1", + "magento/module-import-export": "101.0.1", + "magento/module-indexer": "100.4.1", "magento/module-instant-purchase": "100.4.0", - "magento/module-integration": "100.4.0", - "magento/module-layered-navigation": "100.4.0", - "magento/module-login-as-customer": "100.4.0", - "magento/module-login-as-customer-admin-ui": "100.4.0", - "magento/module-login-as-customer-api": "100.4.0", - "magento/module-login-as-customer-frontend-ui": "100.4.0", + "magento/module-integration": "100.4.1", + "magento/module-layered-navigation": "100.4.1", + "magento/module-login-as-customer": "100.4.1", + "magento/module-login-as-customer-admin-ui": "100.4.1", + "magento/module-login-as-customer-api": "100.4.1", + "magento/module-login-as-customer-assistance": "100.4.0", + "magento/module-login-as-customer-frontend-ui": "100.4.1", "magento/module-login-as-customer-log": "100.4.0", - "magento/module-login-as-customer-page-cache": "100.4.0", + "magento/module-login-as-customer-page-cache": "100.4.1", "magento/module-login-as-customer-quote": "100.4.0", - "magento/module-login-as-customer-sales": "100.4.0", + "magento/module-login-as-customer-sales": "100.4.1", "magento/module-marketplace": "100.4.0", - "magento/module-media-content": "100.4.0", - "magento/module-media-content-api": "100.4.0", - "magento/module-media-content-catalog": "100.4.0", - "magento/module-media-content-cms": "100.4.0", - "magento/module-media-gallery": "100.4.0", - "magento/module-media-gallery-api": "101.0.0", + "magento/module-media-content": "100.4.1", + "magento/module-media-content-api": "100.4.1", + "magento/module-media-content-catalog": "100.4.1", + "magento/module-media-content-cms": "100.4.1", + "magento/module-media-content-synchronization": "100.4.0", + "magento/module-media-content-synchronization-api": "100.4.0", + "magento/module-media-content-synchronization-catalog": "100.4.0", + "magento/module-media-content-synchronization-cms": "100.4.0", + "magento/module-media-gallery": "100.4.1", + "magento/module-media-gallery-api": "101.0.1", "magento/module-media-gallery-catalog": "100.4.0", + "magento/module-media-gallery-catalog-integration": "100.4.0", + "magento/module-media-gallery-catalog-ui": "100.4.0", + "magento/module-media-gallery-cms-ui": "100.4.0", + "magento/module-media-gallery-integration": "100.4.0", + "magento/module-media-gallery-metadata": "100.4.0", + "magento/module-media-gallery-metadata-api": "100.4.0", + "magento/module-media-gallery-synchronization": "100.4.0", + "magento/module-media-gallery-synchronization-api": "100.4.0", + "magento/module-media-gallery-synchronization-metadata": "100.4.0", + "magento/module-media-gallery-ui": "100.4.0", + "magento/module-media-gallery-ui-api": "100.4.0", "magento/module-media-storage": "100.4.0", - "magento/module-message-queue": "100.4.0", + "magento/module-message-queue": "100.4.1", "magento/module-msrp": "100.4.0", "magento/module-msrp-configurable-product": "100.4.0", "magento/module-msrp-grouped-product": "100.4.0", - "magento/module-multishipping": "100.4.0", + "magento/module-multishipping": "100.4.1", "magento/module-mysql-mq": "100.4.0", "magento/module-new-relic-reporting": "100.4.0", - "magento/module-newsletter": "100.4.0", + "magento/module-newsletter": "100.4.1", + "magento/module-newsletter-graph-ql": "100.4.0", "magento/module-offline-payments": "100.4.0", "magento/module-offline-shipping": "100.4.0", - "magento/module-page-cache": "100.4.0", - "magento/module-payment": "100.4.0", - "magento/module-paypal": "101.0.0", + "magento/module-page-cache": "100.4.1", + "magento/module-payment": "100.4.1", + "magento/module-paypal": "101.0.1", "magento/module-paypal-captcha": "100.4.0", - "magento/module-paypal-graph-ql": "100.4.0", - "magento/module-persistent": "100.4.0", - "magento/module-product-alert": "100.4.0", - "magento/module-product-video": "100.4.0", - "magento/module-quote": "101.2.0", - "magento/module-quote-analytics": "100.4.0", - "magento/module-quote-graph-ql": "100.4.0", + "magento/module-paypal-graph-ql": "100.4.1", + "magento/module-persistent": "100.4.1", + "magento/module-product-alert": "100.4.1", + "magento/module-product-video": "100.4.1", + "magento/module-quote": "101.2.1", + "magento/module-quote-analytics": "100.4.1", + "magento/module-quote-bundle-options": "100.4.0", + "magento/module-quote-configurable-options": "100.4.0", + "magento/module-quote-downloadable-links": "100.4.0", + "magento/module-quote-graph-ql": "100.4.1", "magento/module-related-product-graph-ql": "100.4.0", "magento/module-release-notification": "100.4.0", - "magento/module-reports": "100.4.0", + "magento/module-reports": "100.4.1", "magento/module-require-js": "100.4.0", - "magento/module-review": "100.4.0", + "magento/module-review": "100.4.1", "magento/module-review-analytics": "100.4.0", + "magento/module-review-graph-ql": "100.4.0", "magento/module-robots": "101.1.0", "magento/module-rss": "100.4.0", "magento/module-rule": "100.4.0", - "magento/module-sales": "103.0.0", + "magento/module-sales": "103.0.1", "magento/module-sales-analytics": "100.4.0", - "magento/module-sales-graph-ql": "100.4.0", + "magento/module-sales-graph-ql": "100.4.1", "magento/module-sales-inventory": "100.4.0", - "magento/module-sales-rule": "101.2.0", - "magento/module-sales-sequence": "100.4.0", - "magento/module-sample-data": "100.4.0", - "magento/module-search": "101.1.0", - "magento/module-security": "100.4.0", + "magento/module-sales-rule": "101.2.1", + "magento/module-sales-sequence": "100.4.1", + "magento/module-sample-data": "100.4.1", + "magento/module-search": "101.1.1", + "magento/module-security": "100.4.1", "magento/module-send-friend": "100.4.0", "magento/module-send-friend-graph-ql": "100.4.0", - "magento/module-shipping": "100.4.0", - "magento/module-sitemap": "100.4.0", - "magento/module-store": "101.1.0", - "magento/module-store-graph-ql": "100.4.0", + "magento/module-shipping": "100.4.1", + "magento/module-sitemap": "100.4.1", + "magento/module-store": "101.1.1", + "magento/module-store-graph-ql": "100.4.1", "magento/module-swagger": "100.4.0", "magento/module-swagger-webapi": "100.4.0", "magento/module-swagger-webapi-async": "100.4.0", - "magento/module-swatches": "100.4.0", - "magento/module-swatches-graph-ql": "100.4.0", + "magento/module-swatches": "100.4.1", + "magento/module-swatches-graph-ql": "100.4.1", "magento/module-swatches-layered-navigation": "100.4.0", - "magento/module-tax": "100.4.0", + "magento/module-tax": "100.4.1", "magento/module-tax-graph-ql": "100.4.0", - "magento/module-tax-import-export": "100.4.0", - "magento/module-theme": "101.1.0", + "magento/module-tax-import-export": "100.4.1", + "magento/module-theme": "101.1.1", "magento/module-theme-graph-ql": "100.4.0", - "magento/module-tinymce-3": "100.4.0", - "magento/module-translation": "100.4.0", - "magento/module-ui": "101.2.0", - "magento/module-ups": "100.4.0", - "magento/module-url-rewrite": "102.0.0", + "magento/module-tinymce-3": "100.4.1", + "magento/module-translation": "100.4.1", + "magento/module-ui": "101.2.1", + "magento/module-ups": "100.4.1", + "magento/module-url-rewrite": "102.0.1", "magento/module-url-rewrite-graph-ql": "100.4.0", - "magento/module-user": "101.2.0", + "magento/module-user": "101.2.1", "magento/module-usps": "100.4.0", "magento/module-variable": "100.4.0", - "magento/module-vault": "101.2.0", + "magento/module-vault": "101.2.1", "magento/module-vault-graph-ql": "100.4.0", "magento/module-version": "100.4.0", "magento/module-webapi": "100.4.0", "magento/module-webapi-async": "100.4.0", "magento/module-webapi-security": "100.4.0", - "magento/module-weee": "100.4.0", + "magento/module-weee": "100.4.1", "magento/module-weee-graph-ql": "100.4.0", - "magento/module-widget": "101.2.0", - "magento/module-wishlist": "101.2.0", + "magento/module-widget": "101.2.1", + "magento/module-wishlist": "101.2.1", "magento/module-wishlist-analytics": "100.4.0", - "magento/module-wishlist-graph-ql": "100.4.0", - "magento/security-package": "1.0.0", - "magento/theme-adminhtml-backend": "100.4.0", - "magento/theme-frontend-blank": "100.4.0", - "magento/theme-frontend-luma": "100.4.0", + "magento/module-wishlist-graph-ql": "100.4.1", + "magento/security-package": "1.1.0", + "magento/theme-adminhtml-backend": "100.4.1", + "magento/theme-frontend-blank": "100.4.1", + "magento/theme-frontend-luma": "100.4.1", "magento/zendframework1": "~1.14.2", "monolog/monolog": "^1.17", "paragonie/sodium_compat": "^1.6", - "paypal/module-braintree": "4.1.0", + "paypal/module-braintree": "4.2.0", "pelago/emogrifier": "^3.1.0", "php": "~7.3.0||~7.4.0", "php-amqplib/php-amqplib": "~2.10.0", @@ -19291,10 +20076,10 @@ "tedivm/jshrink": "~1.3.0", "temando/module-shipping": "2.0.0", "tubalmartin/cssmin": "4.1.1", - "vertex/product-magento-module": "4.0.0", + "vertex/product-magento-module": "4.1.0", "webonyx/graphql-php": "^0.13.8", "wikimedia/less.php": "~1.8.0", - "yotpo/magento2-module-yotpo-reviews-bundle": "3.1.1" + "yotpo/magento2-module-yotpo-reviews-bundle": "3.1.2" }, "type": "metapackage", "license": [ @@ -19305,20 +20090,19 @@ }, { "name": "magento/product-enterprise-edition", - "version": "2.4.0", + "version": "2.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/product-enterprise-edition/magento-product-enterprise-edition-2.4.0.0.zip", - "shasum": "1fafd8ae2b1620733ffb8b955acaea52cfff41d5" + "url": "https://repo.magento.com/archives/magento/product-enterprise-edition/magento-product-enterprise-edition-2.4.1.0.zip", + "shasum": "20aaf9284bac091ee8cb4d3737a015a977c19f93" }, "require": { - "amzn/amazon-pay-and-login-magento-2-module": "4.0.2", "colinmollenhour/cache-backend-file": "~1.4.1", "colinmollenhour/cache-backend-redis": "1.11.0", "colinmollenhour/credis": "1.11.1", "colinmollenhour/php-redis-session-abstract": "~1.4.0", "composer/composer": "^1.9", - "dotmailer/dotmailer-magento2-extension-enterprise-package": "4.6.0", + "dotmailer/dotmailer-magento2-extension-enterprise-package": "4.8.0", "elasticsearch/elasticsearch": "~7.7.0", "ext-bcmath": "*", "ext-ctype": "*", @@ -19337,7 +20121,6 @@ "ext-xsl": "*", "ext-zip": "*", "guzzlehttp/guzzle": "^6.3.3", - "klarna/m2-payments": "8.0.2", "laminas/laminas-captcha": "^2.7.1", "laminas/laminas-code": "~3.4.1", "laminas/laminas-config": "^2.6.0", @@ -19368,78 +20151,79 @@ "laminas/laminas-validator": "^2.6.0", "laminas/laminas-view": "~2.11.2", "lib-libxml": "*", - "magento/adobe-stock-integration": "2.0.0", "magento/composer": "1.6.0", "magento/framework-foreign-key": "100.4.0", - "magento/google-shopping-ads": "4.0.1", - "magento/inventory-metapackage": "1.2.0", "magento/magento-composer-installer": ">=0.1.11", - "magento/magento2-ee-base": "2.4.0", - "magento/module-admin-gws": "100.4.0", + "magento/magento2-ee-base": "2.4.1", + "magento/module-admin-gws": "100.4.1", + "magento/module-admin-gws-configurable-product": "100.4.0", "magento/module-admin-gws-staging": "100.4.0", "magento/module-advanced-catalog": "100.4.0", - "magento/module-advanced-checkout": "100.4.0", + "magento/module-advanced-checkout": "100.4.1", "magento/module-advanced-rule": "100.4.0", "magento/module-advanced-sales-rule": "100.4.0", - "magento/module-banner": "101.2.0", + "magento/module-banner": "101.2.1", "magento/module-banner-customer-segment": "100.4.0", "magento/module-bundle-import-export-staging": "100.4.0", - "magento/module-bundle-staging": "100.4.0", - "magento/module-catalog-event": "101.1.0", + "magento/module-bundle-staging": "100.4.1", + "magento/module-catalog-event": "101.1.1", "magento/module-catalog-import-export-staging": "100.4.0", "magento/module-catalog-inventory-staging": "100.4.0", - "magento/module-catalog-permissions": "100.4.0", - "magento/module-catalog-rule-staging": "100.4.0", - "magento/module-catalog-staging": "100.4.0", - "magento/module-catalog-staging-graph-ql": "100.4.0", + "magento/module-catalog-permissions": "100.4.1", + "magento/module-catalog-permissions-graph-ql": "100.4.0", + "magento/module-catalog-rule-staging": "100.4.1", + "magento/module-catalog-staging": "100.4.1", + "magento/module-catalog-staging-graph-ql": "100.4.1", "magento/module-catalog-url-rewrite-staging": "100.4.0", "magento/module-checkout-address-search": "100.4.0", "magento/module-checkout-address-search-gift-registry": "100.4.0", "magento/module-checkout-staging": "100.4.0", - "magento/module-cms-staging": "100.4.0", + "magento/module-cms-staging": "100.4.1", "magento/module-configurable-product-staging": "100.4.0", "magento/module-custom-attribute-management": "100.4.0", - "magento/module-customer-balance": "100.4.0", + "magento/module-customer-balance": "100.4.1", "magento/module-customer-balance-graph-ql": "100.4.0", - "magento/module-customer-custom-attributes": "100.4.0", + "magento/module-customer-custom-attributes": "100.4.1", "magento/module-customer-finance": "100.4.0", - "magento/module-customer-segment": "102.1.0", + "magento/module-customer-segment": "102.1.1", "magento/module-downloadable-staging": "100.4.0", "magento/module-elasticsearch-catalog-permissions": "100.4.0", "magento/module-enterprise": "100.4.0", - "magento/module-gift-card": "101.3.0", - "magento/module-gift-card-account": "101.2.0", + "magento/module-gift-card": "101.3.1", + "magento/module-gift-card-account": "101.2.1", "magento/module-gift-card-account-graph-ql": "100.4.0", - "magento/module-gift-card-graph-ql": "100.4.0", + "magento/module-gift-card-graph-ql": "100.4.1", "magento/module-gift-card-import-export": "100.4.0", "magento/module-gift-card-staging": "100.4.0", "magento/module-gift-message-staging": "100.4.0", - "magento/module-gift-registry": "101.2.0", + "magento/module-gift-registry": "101.2.1", "magento/module-gift-wrapping": "101.2.0", + "magento/module-gift-wrapping-graph-ql": "100.4.0", "magento/module-gift-wrapping-staging": "100.4.0", "magento/module-google-optimizer-staging": "100.4.0", - "magento/module-google-tag-manager": "100.4.0", + "magento/module-google-tag-manager": "100.4.1", "magento/module-grouped-product-staging": "100.4.0", "magento/module-invitation": "100.4.0", "magento/module-layered-navigation-staging": "100.4.0", - "magento/module-logging": "101.2.0", - "magento/module-login-as-customer-logging": "100.4.0", - "magento/module-login-as-customer-website-restriction": "100.4.0", + "magento/module-logging": "101.2.1", + "magento/module-login-as-customer-logging": "100.4.1", + "magento/module-login-as-customer-website-restriction": "100.4.1", "magento/module-media-content-catalog-staging": "100.4.0", "magento/module-msrp-staging": "100.4.0", - "magento/module-multiple-wishlist": "100.4.0", + "magento/module-multiple-wishlist": "100.4.1", "magento/module-payment-staging": "100.4.0", "magento/module-persistent-history": "100.4.0", "magento/module-price-permissions": "100.4.0", "magento/module-product-video-staging": "100.4.0", "magento/module-promotion-permissions": "100.4.0", + "magento/module-quote-gift-card-options": "100.4.0", "magento/module-reminder": "101.2.0", "magento/module-resource-connections": "100.4.0", "magento/module-review-staging": "100.4.0", - "magento/module-reward": "101.2.0", - "magento/module-reward-graph-ql": "100.4.0", + "magento/module-reward": "101.2.1", + "magento/module-reward-graph-ql": "100.4.1", "magento/module-reward-staging": "100.4.0", - "magento/module-rma": "101.2.0", + "magento/module-rma": "101.2.1", "magento/module-rma-graph-ql": "100.4.0", "magento/module-rma-staging": "100.4.0", "magento/module-sales-archive": "101.0.0", @@ -19447,25 +20231,25 @@ "magento/module-scalable-checkout": "100.4.0", "magento/module-scalable-inventory": "100.4.0", "magento/module-scalable-oms": "100.4.0", - "magento/module-scheduled-import-export": "101.2.0", + "magento/module-scheduled-import-export": "101.2.1", "magento/module-search-staging": "100.4.0", - "magento/module-staging": "101.2.0", + "magento/module-staging": "101.2.1", "magento/module-staging-graph-ql": "100.4.0", "magento/module-support": "101.2.0", - "magento/module-target-rule": "101.2.0", + "magento/module-swat": "100.4.0", + "magento/module-target-rule": "101.2.1", + "magento/module-target-rule-graph-ql": "100.4.0", "magento/module-tinymce-3-banner": "100.4.0", - "magento/module-versions-cms": "101.2.0", + "magento/module-versions-cms": "101.2.1", "magento/module-versions-cms-url-rewrite": "100.4.0", - "magento/module-visual-merchandiser": "100.4.0", - "magento/module-website-restriction": "100.4.0", + "magento/module-visual-merchandiser": "100.4.1", + "magento/module-website-restriction": "100.4.1", "magento/module-weee-staging": "100.4.0", - "magento/page-builder-commerce": "1.4.0", - "magento/product-community-edition": "2.4.0", - "magento/security-package": "1.0.0", + "magento/page-builder-commerce": "1.5.0", + "magento/product-community-edition": "2.4.1", "magento/zendframework1": "~1.14.2", "monolog/monolog": "^1.17", "paragonie/sodium_compat": "^1.6", - "paypal/module-braintree": "4.1.0", "pelago/emogrifier": "^3.1.0", "php": "~7.3.0||~7.4.0", "php-amqplib/php-amqplib": "~2.7.0||~2.10.0", @@ -19476,12 +20260,9 @@ "symfony/event-dispatcher": "~4.4.0", "symfony/process": "~4.4.0", "tedivm/jshrink": "~1.3.0", - "temando/module-shipping": "2.0.0", "tubalmartin/cssmin": "4.1.1", - "vertex/product-magento-module": "4.0.0", "webonyx/graphql-php": "^0.13.8", - "wikimedia/less.php": "~1.8.0", - "yotpo/magento2-module-yotpo-reviews-bundle": "3.1.1" + "wikimedia/less.php": "~1.8.0" }, "type": "metapackage", "license": [ @@ -19491,11 +20272,11 @@ }, { "name": "magento/quality-patches", - "version": "1.0.1", + "version": "1.0.7", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/quality-patches/magento-quality-patches-1.0.1.0.zip", - "shasum": "6b4e81499a68d6ee484f20c31ac71b3bfcd93098" + "url": "https://repo.magento.com/archives/magento/quality-patches/magento-quality-patches-1.0.7.0.zip", + "shasum": "cc23243da343d5b84acb8d221f2e8337640805b1" }, "require": { "ext-json": "*", @@ -19525,43 +20306,44 @@ }, { "name": "magento/security-package", - "version": "1.0.0", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/security-package/magento-security-package-1.0.0.0.zip", - "shasum": "35744adb8548c112800798579da82bfd35d8c39f" - }, - "require": { - "magento/module-re-captcha-admin-ui": "1.0.0", - "magento/module-re-captcha-checkout": "1.0.0", - "magento/module-re-captcha-contact": "1.0.0", - "magento/module-re-captcha-customer": "1.0.0", - "magento/module-re-captcha-frontend-ui": "1.0.0", - "magento/module-re-captcha-migration": "1.0.0", - "magento/module-re-captcha-newsletter": "1.0.0", - "magento/module-re-captcha-paypal": "1.0.0", - "magento/module-re-captcha-review": "1.0.0", - "magento/module-re-captcha-send-friend": "1.0.0", - "magento/module-re-captcha-ui": "1.0.0", - "magento/module-re-captcha-user": "1.0.0", - "magento/module-re-captcha-validation": "1.0.0", - "magento/module-re-captcha-validation-api": "1.0.0", - "magento/module-re-captcha-version-2-checkbox": "1.0.0", - "magento/module-re-captcha-version-2-invisible": "1.0.0", - "magento/module-re-captcha-version-3-invisible": "1.0.0", - "magento/module-securitytxt": "1.0.0", - "magento/module-two-factor-auth": "1.0.0" + "url": "https://repo.magento.com/archives/magento/security-package/magento-security-package-1.1.0.0.zip", + "shasum": "a3719d48b34ac464ee8692c7c5a2f155800430b3" + }, + "require": { + "google/recaptcha": "^1.2", + "magento/module-re-captcha-admin-ui": "1.1.0", + "magento/module-re-captcha-checkout": "1.1.0", + "magento/module-re-captcha-contact": "1.1.0", + "magento/module-re-captcha-customer": "1.1.0", + "magento/module-re-captcha-frontend-ui": "1.1.0", + "magento/module-re-captcha-migration": "1.1.0", + "magento/module-re-captcha-newsletter": "1.1.0", + "magento/module-re-captcha-paypal": "1.1.0", + "magento/module-re-captcha-review": "1.1.0", + "magento/module-re-captcha-send-friend": "1.1.0", + "magento/module-re-captcha-ui": "1.1.0", + "magento/module-re-captcha-user": "1.1.0", + "magento/module-re-captcha-validation": "1.1.0", + "magento/module-re-captcha-validation-api": "1.1.0", + "magento/module-re-captcha-version-2-checkbox": "2.0.0", + "magento/module-re-captcha-version-2-invisible": "2.0.0", + "magento/module-re-captcha-version-3-invisible": "2.0.0", + "magento/module-securitytxt": "1.1.0", + "magento/module-two-factor-auth": "1.1.0" }, "type": "metapackage", "description": "Magento Security Package" }, { "name": "magento/theme-adminhtml-backend", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/theme-adminhtml-backend/magento-theme-adminhtml-backend-100.4.0.0.zip", - "shasum": "b575cba61fa73982f3e5469ff65bd57fe78cc321" + "url": "https://repo.magento.com/archives/magento/theme-adminhtml-backend/magento-theme-adminhtml-backend-100.4.1.0.zip", + "shasum": "73398c0478f0e4dd5c2c25a40577cc554552a917" }, "require": { "magento/framework": "103.0.*", @@ -19581,11 +20363,11 @@ }, { "name": "magento/theme-frontend-blank", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/theme-frontend-blank/magento-theme-frontend-blank-100.4.0.0.zip", - "shasum": "d38bc758f681a7aee6706306bb1aa00f06360bfe" + "url": "https://repo.magento.com/archives/magento/theme-frontend-blank/magento-theme-frontend-blank-100.4.1.0.zip", + "shasum": "8f6187a999cabee73e5968b3a98519fbdf080531" }, "require": { "magento/framework": "103.0.*", @@ -19605,11 +20387,11 @@ }, { "name": "magento/theme-frontend-luma", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/theme-frontend-luma/magento-theme-frontend-luma-100.4.0.0.zip", - "shasum": "9d3a2014796dd36e2ff0224ee367fb4e05a2cca5" + "url": "https://repo.magento.com/archives/magento/theme-frontend-luma/magento-theme-frontend-luma-100.4.1.0.zip", + "shasum": "38cf4b18eed6542e4f32cd894277389f2a57e856" }, "require": { "magento/framework": "103.0.*", @@ -19810,16 +20592,16 @@ }, { "name": "nesbot/carbon", - "version": "2.38.0", + "version": "2.41.3", "source": { "type": "git", "url": "https://github.com/briannesbitt/Carbon.git", - "reference": "d8f6a6a91d1eb9304527b040500f61923e97674b" + "reference": "e148788eeae9b9b7b87996520358b86faad37b52" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/d8f6a6a91d1eb9304527b040500f61923e97674b", - "reference": "d8f6a6a91d1eb9304527b040500f61923e97674b", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/e148788eeae9b9b7b87996520358b86faad37b52", + "reference": "e148788eeae9b9b7b87996520358b86faad37b52", "shasum": "" }, "require": { @@ -19832,7 +20614,7 @@ "doctrine/orm": "^2.7", "friendsofphp/php-cs-fixer": "^2.14 || ^3.0", "kylekatarnls/multi-tester": "^2.0", - "phpmd/phpmd": "^2.8", + "phpmd/phpmd": "^2.9", "phpstan/extension-installer": "^1.0", "phpstan/phpstan": "^0.12.35", "phpunit/phpunit": "^7.5 || ^8.0", @@ -19895,7 +20677,7 @@ "type": "tidelift" } ], - "time": "2020-08-04T19:12:46+00:00" + "time": "2020-10-12T20:36:09+00:00" }, { "name": "ocramius/package-versions", @@ -20234,15 +21016,15 @@ }, { "name": "paypal/module-braintree", - "version": "4.1.0", + "version": "4.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/paypal/module-braintree/paypal-module-braintree-4.1.0.0.zip", - "shasum": "abb52b4930cbc91c5116bbf19b8044bb356a463c" + "url": "https://repo.magento.com/archives/paypal/module-braintree/paypal-module-braintree-4.2.0.0.zip", + "shasum": "7a13c18488bab661e6c06c862e9df371eee6f8a4" }, "require": { - "paypal/module-braintree-core": "4.1.0", - "paypal/module-braintree-graph-ql": "4.1.0" + "paypal/module-braintree-core": "4.2.0", + "paypal/module-braintree-graph-ql": "4.1.1" }, "type": "metapackage", "license": [ @@ -20252,14 +21034,14 @@ }, { "name": "paypal/module-braintree-core", - "version": "4.1.0", + "version": "4.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/paypal/module-braintree-core/paypal-module-braintree-core-4.1.0.0.zip", - "shasum": "28be379fc99016538d24d028d766b289cc522c41" + "url": "https://repo.magento.com/archives/paypal/module-braintree-core/paypal-module-braintree-core-4.2.0.0.zip", + "shasum": "dc646d71fb9a76c9ef2b37d8b0bfdd539ac19111" }, "require": { - "braintree/braintree_php": "4.5.0", + "braintree/braintree_php": "5.2.0", "ext-json": "*", "ext-simplexml": "*", "league/iso3166": "^2.1", @@ -20297,11 +21079,11 @@ }, { "name": "paypal/module-braintree-graph-ql", - "version": "4.1.0", + "version": "4.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/paypal/module-braintree-graph-ql/paypal-module-braintree-graph-ql-4.1.0.0.zip", - "shasum": "c9f7e844d807f10e1bfb964e234d747d755ad3fb" + "url": "https://repo.magento.com/archives/paypal/module-braintree-graph-ql/paypal-module-braintree-graph-ql-4.1.1.0.zip", + "shasum": "c9ec37feb321b5a2a4fc4c355e20c2206084b33c" }, "require": { "magento/framework": "^102||^103", @@ -20650,16 +21432,16 @@ }, { "name": "phpseclib/phpseclib", - "version": "2.0.28", + "version": "2.0.29", "source": { "type": "git", "url": "https://github.com/phpseclib/phpseclib.git", - "reference": "d1ca58cf33cb21046d702ae3a7b14fdacd9f3260" + "reference": "497856a8d997f640b4a516062f84228a772a48a8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/d1ca58cf33cb21046d702ae3a7b14fdacd9f3260", - "reference": "d1ca58cf33cb21046d702ae3a7b14fdacd9f3260", + "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/497856a8d997f640b4a516062f84228a772a48a8", + "reference": "497856a8d997f640b4a516062f84228a772a48a8", "shasum": "" }, "require": { @@ -20668,7 +21450,6 @@ "require-dev": { "phing/phing": "~2.7", "phpunit/phpunit": "^4.8.35|^5.7|^6.0", - "sami/sami": "~2.0", "squizlabs/php_codesniffer": "~2.0" }, "suggest": { @@ -20752,7 +21533,7 @@ "type": "tidelift" } ], - "time": "2020-07-08T09:08:33+00:00" + "time": "2020-09-08T04:24:43+00:00" }, { "name": "psr/container", @@ -21118,16 +21899,16 @@ }, { "name": "seld/jsonlint", - "version": "1.8.0", + "version": "1.8.2", "source": { "type": "git", "url": "https://github.com/Seldaek/jsonlint.git", - "reference": "ff2aa5420bfbc296cf6a0bc785fa5b35736de7c1" + "reference": "590cfec960b77fd55e39b7d9246659e95dd6d337" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/ff2aa5420bfbc296cf6a0bc785fa5b35736de7c1", - "reference": "ff2aa5420bfbc296cf6a0bc785fa5b35736de7c1", + "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/590cfec960b77fd55e39b7d9246659e95dd6d337", + "reference": "590cfec960b77fd55e39b7d9246659e95dd6d337", "shasum": "" }, "require": { @@ -21173,7 +21954,7 @@ "type": "tidelift" } ], - "time": "2020-04-30T19:05:18+00:00" + "time": "2020-08-25T06:56:57+00:00" }, { "name": "seld/phar-utils", @@ -21292,16 +22073,16 @@ }, { "name": "symfony/config", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "b1d8f0d9341ea1d378b8b043ba90739f37c49d36" + "reference": "7c5a1002178a612787c291a4f515f87b19176b61" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/b1d8f0d9341ea1d378b8b043ba90739f37c49d36", - "reference": "b1d8f0d9341ea1d378b8b043ba90739f37c49d36", + "url": "https://api.github.com/repos/symfony/config/zipball/7c5a1002178a612787c291a4f515f87b19176b61", + "reference": "7c5a1002178a612787c291a4f515f87b19176b61", "shasum": "" }, "require": { @@ -21366,20 +22147,20 @@ "type": "tidelift" } ], - "time": "2020-07-15T08:27:46+00:00" + "time": "2020-10-02T07:34:48+00:00" }, { "name": "symfony/console", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "55d07021da933dd0d633ffdab6f45d5b230c7e02" + "reference": "90933b39c7b312fc3ceaa1ddeac7eb48cb953124" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/55d07021da933dd0d633ffdab6f45d5b230c7e02", - "reference": "55d07021da933dd0d633ffdab6f45d5b230c7e02", + "url": "https://api.github.com/repos/symfony/console/zipball/90933b39c7b312fc3ceaa1ddeac7eb48cb953124", + "reference": "90933b39c7b312fc3ceaa1ddeac7eb48cb953124", "shasum": "" }, "require": { @@ -21457,11 +22238,11 @@ "type": "tidelift" } ], - "time": "2020-07-06T13:18:39+00:00" + "time": "2020-09-15T07:58:55+00:00" }, { "name": "symfony/css-selector", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", @@ -21528,16 +22309,16 @@ }, { "name": "symfony/dependency-injection", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "f33a28edd42708ed579377391b3a556bcd6a626d" + "reference": "89274c8847dff2ed703e481843eb9159ca25cc6e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/f33a28edd42708ed579377391b3a556bcd6a626d", - "reference": "f33a28edd42708ed579377391b3a556bcd6a626d", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/89274c8847dff2ed703e481843eb9159ca25cc6e", + "reference": "89274c8847dff2ed703e481843eb9159ca25cc6e", "shasum": "" }, "require": { @@ -21611,20 +22392,20 @@ "type": "tidelift" } ], - "time": "2020-07-23T08:31:43+00:00" + "time": "2020-09-10T10:08:39+00:00" }, { "name": "symfony/deprecation-contracts", - "version": "v2.1.3", + "version": "v2.2.0", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "5e20b83385a77593259c9f8beb2c43cd03b2ac14" + "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5e20b83385a77593259c9f8beb2c43cd03b2ac14", - "reference": "5e20b83385a77593259c9f8beb2c43cd03b2ac14", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665", + "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665", "shasum": "" }, "require": { @@ -21633,7 +22414,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.1-dev" + "dev-master": "2.2-dev" }, "thanks": { "name": "symfony/contracts", @@ -21675,20 +22456,20 @@ "type": "tidelift" } ], - "time": "2020-06-06T08:49:21+00:00" + "time": "2020-09-07T11:33:47+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "6140fc7047dafc5abbe84ba16a34a86c0b0229b8" + "reference": "e17bb5e0663dc725f7cdcafc932132735b4725cd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/6140fc7047dafc5abbe84ba16a34a86c0b0229b8", - "reference": "6140fc7047dafc5abbe84ba16a34a86c0b0229b8", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/e17bb5e0663dc725f7cdcafc932132735b4725cd", + "reference": "e17bb5e0663dc725f7cdcafc932132735b4725cd", "shasum": "" }, "require": { @@ -21706,6 +22487,7 @@ "psr/log": "~1.0", "symfony/config": "^3.4|^4.0|^5.0", "symfony/dependency-injection": "^3.4|^4.0|^5.0", + "symfony/error-handler": "~3.4|~4.4", "symfony/expression-language": "^3.4|^4.0|^5.0", "symfony/http-foundation": "^3.4|^4.0|^5.0", "symfony/service-contracts": "^1.1|^2", @@ -21759,7 +22541,7 @@ "type": "tidelift" } ], - "time": "2020-06-18T17:59:13+00:00" + "time": "2020-09-18T14:07:46+00:00" }, { "name": "symfony/event-dispatcher-contracts", @@ -21839,16 +22621,16 @@ }, { "name": "symfony/filesystem", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "6e4320f06d5f2cce0d96530162491f4465179157" + "reference": "1a8697545a8d87b9f2f6b1d32414199cc5e20aae" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/6e4320f06d5f2cce0d96530162491f4465179157", - "reference": "6e4320f06d5f2cce0d96530162491f4465179157", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/1a8697545a8d87b9f2f6b1d32414199cc5e20aae", + "reference": "1a8697545a8d87b9f2f6b1d32414199cc5e20aae", "shasum": "" }, "require": { @@ -21899,20 +22681,20 @@ "type": "tidelift" } ], - "time": "2020-05-30T20:35:19+00:00" + "time": "2020-09-27T14:02:37+00:00" }, { "name": "symfony/finder", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "4298870062bfc667cb78d2b379be4bf5dec5f187" + "reference": "2c3ba7ad6884e6c4451ce2340e2dc23f6fa3e0d8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/4298870062bfc667cb78d2b379be4bf5dec5f187", - "reference": "4298870062bfc667cb78d2b379be4bf5dec5f187", + "url": "https://api.github.com/repos/symfony/finder/zipball/2c3ba7ad6884e6c4451ce2340e2dc23f6fa3e0d8", + "reference": "2c3ba7ad6884e6c4451ce2340e2dc23f6fa3e0d8", "shasum": "" }, "require": { @@ -21962,20 +22744,20 @@ "type": "tidelift" } ], - "time": "2020-05-20T17:43:50+00:00" + "time": "2020-09-02T16:23:27+00:00" }, { "name": "symfony/options-resolver", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", - "reference": "9ff59517938f88d90b6e65311fef08faa640f681" + "reference": "4c7e155bf7d93ea4ba3824d5a14476694a5278dd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/options-resolver/zipball/9ff59517938f88d90b6e65311fef08faa640f681", - "reference": "9ff59517938f88d90b6e65311fef08faa640f681", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/4c7e155bf7d93ea4ba3824d5a14476694a5278dd", + "reference": "4c7e155bf7d93ea4ba3824d5a14476694a5278dd", "shasum": "" }, "require": { @@ -22032,7 +22814,7 @@ "type": "tidelift" } ], - "time": "2020-07-12T12:58:00+00:00" + "time": "2020-09-27T03:44:28+00:00" }, { "name": "symfony/polyfill-ctype", @@ -22739,16 +23521,16 @@ }, { "name": "symfony/process", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "65e70bab62f3da7089a8d4591fb23fbacacb3479" + "reference": "9b887acc522935f77555ae8813495958c7771ba7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/65e70bab62f3da7089a8d4591fb23fbacacb3479", - "reference": "65e70bab62f3da7089a8d4591fb23fbacacb3479", + "url": "https://api.github.com/repos/symfony/process/zipball/9b887acc522935f77555ae8813495958c7771ba7", + "reference": "9b887acc522935f77555ae8813495958c7771ba7", "shasum": "" }, "require": { @@ -22798,20 +23580,20 @@ "type": "tidelift" } ], - "time": "2020-07-23T08:31:43+00:00" + "time": "2020-09-02T16:08:58+00:00" }, { "name": "symfony/property-access", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/property-access.git", - "reference": "eb617a57fc38f43bf4208dcbdb2dab3c14d9cbd9" + "reference": "4c43f7ff784e1e3ee1c96e15f76b342af6617b39" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/property-access/zipball/eb617a57fc38f43bf4208dcbdb2dab3c14d9cbd9", - "reference": "eb617a57fc38f43bf4208dcbdb2dab3c14d9cbd9", + "url": "https://api.github.com/repos/symfony/property-access/zipball/4c43f7ff784e1e3ee1c96e15f76b342af6617b39", + "reference": "4c43f7ff784e1e3ee1c96e15f76b342af6617b39", "shasum": "" }, "require": { @@ -22880,20 +23662,20 @@ "type": "tidelift" } ], - "time": "2020-07-03T07:49:29+00:00" + "time": "2020-09-02T16:23:27+00:00" }, { "name": "symfony/property-info", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/property-info.git", - "reference": "0c4813930953f6db6c62ebec8ee695a897b89020" + "reference": "22518930091e0bdb249694efc509e3697f7e325e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/property-info/zipball/0c4813930953f6db6c62ebec8ee695a897b89020", - "reference": "0c4813930953f6db6c62ebec8ee695a897b89020", + "url": "https://api.github.com/repos/symfony/property-info/zipball/22518930091e0bdb249694efc509e3697f7e325e", + "reference": "22518930091e0bdb249694efc509e3697f7e325e", "shasum": "" }, "require": { @@ -22971,20 +23753,20 @@ "type": "tidelift" } ], - "time": "2020-06-18T21:19:28+00:00" + "time": "2020-09-07T05:10:28+00:00" }, { "name": "symfony/proxy-manager-bridge", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/proxy-manager-bridge.git", - "reference": "3f42656c548a373b9ffa212fb16f11e6cda2e0c6" + "reference": "3d698b01104bfca5b0776637cdfae6e1c8f658f1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/proxy-manager-bridge/zipball/3f42656c548a373b9ffa212fb16f11e6cda2e0c6", - "reference": "3f42656c548a373b9ffa212fb16f11e6cda2e0c6", + "url": "https://api.github.com/repos/symfony/proxy-manager-bridge/zipball/3d698b01104bfca5b0776637cdfae6e1c8f658f1", + "reference": "3d698b01104bfca5b0776637cdfae6e1c8f658f1", "shasum": "" }, "require": { @@ -23042,20 +23824,20 @@ "type": "tidelift" } ], - "time": "2020-05-20T08:37:50+00:00" + "time": "2020-09-02T16:08:58+00:00" }, { "name": "symfony/serializer", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/serializer.git", - "reference": "0fe47b7aa55ff28b1b781e380120c0731e2d36c7" + "reference": "8e97a9cfc5a48de83437f286d6d0ab4a2a2c22b0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/serializer/zipball/0fe47b7aa55ff28b1b781e380120c0731e2d36c7", - "reference": "0fe47b7aa55ff28b1b781e380120c0731e2d36c7", + "url": "https://api.github.com/repos/symfony/serializer/zipball/8e97a9cfc5a48de83437f286d6d0ab4a2a2c22b0", + "reference": "8e97a9cfc5a48de83437f286d6d0ab4a2a2c22b0", "shasum": "" }, "require": { @@ -23138,20 +23920,20 @@ "type": "tidelift" } ], - "time": "2020-07-21T15:17:25+00:00" + "time": "2020-10-02T20:12:42+00:00" }, { "name": "symfony/service-contracts", - "version": "v2.1.3", + "version": "v2.2.0", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "58c7475e5457c5492c26cc740cc0ad7464be9442" + "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/58c7475e5457c5492c26cc740cc0ad7464be9442", - "reference": "58c7475e5457c5492c26cc740cc0ad7464be9442", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1", + "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1", "shasum": "" }, "require": { @@ -23164,7 +23946,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.1-dev" + "dev-master": "2.2-dev" }, "thanks": { "name": "symfony/contracts", @@ -23214,20 +23996,20 @@ "type": "tidelift" } ], - "time": "2020-07-06T13:23:11+00:00" + "time": "2020-09-07T11:33:47+00:00" }, { "name": "symfony/string", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "f629ba9b611c76224feb21fe2bcbf0b6f992300b" + "reference": "4a9afe9d07bac506f75bcee8ed3ce76da5a9343e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/f629ba9b611c76224feb21fe2bcbf0b6f992300b", - "reference": "f629ba9b611c76224feb21fe2bcbf0b6f992300b", + "url": "https://api.github.com/repos/symfony/string/zipball/4a9afe9d07bac506f75bcee8ed3ce76da5a9343e", + "reference": "4a9afe9d07bac506f75bcee8ed3ce76da5a9343e", "shasum": "" }, "require": { @@ -23299,20 +24081,20 @@ "type": "tidelift" } ], - "time": "2020-07-08T08:27:49+00:00" + "time": "2020-09-15T12:23:47+00:00" }, { "name": "symfony/translation", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "a8ea9d97353294eb6783f2894ef8cee99a045822" + "reference": "8494fa1bbf9d77fe1e7d50ac8ccfb80a858a98bd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/a8ea9d97353294eb6783f2894ef8cee99a045822", - "reference": "a8ea9d97353294eb6783f2894ef8cee99a045822", + "url": "https://api.github.com/repos/symfony/translation/zipball/8494fa1bbf9d77fe1e7d50ac8ccfb80a858a98bd", + "reference": "8494fa1bbf9d77fe1e7d50ac8ccfb80a858a98bd", "shasum": "" }, "require": { @@ -23389,20 +24171,20 @@ "type": "tidelift" } ], - "time": "2020-07-23T08:31:43+00:00" + "time": "2020-10-02T07:34:48+00:00" }, { "name": "symfony/translation-contracts", - "version": "v2.1.3", + "version": "v2.3.0", "source": { "type": "git", "url": "https://github.com/symfony/translation-contracts.git", - "reference": "616a9773c853097607cf9dd6577d5b143ffdcd63" + "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/616a9773c853097607cf9dd6577d5b143ffdcd63", - "reference": "616a9773c853097607cf9dd6577d5b143ffdcd63", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105", + "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105", "shasum": "" }, "require": { @@ -23414,7 +24196,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.1-dev" + "dev-master": "2.3-dev" }, "thanks": { "name": "symfony/contracts", @@ -23464,20 +24246,20 @@ "type": "tidelift" } ], - "time": "2020-07-06T13:23:11+00:00" + "time": "2020-09-28T13:05:58+00:00" }, { "name": "symfony/yaml", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "c2d2cc66e892322cfcc03f8f12f8340dbd7a3f8a" + "reference": "c7885964b1eceb70b0981556d0a9b01d2d97c8d1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/c2d2cc66e892322cfcc03f8f12f8340dbd7a3f8a", - "reference": "c2d2cc66e892322cfcc03f8f12f8340dbd7a3f8a", + "url": "https://api.github.com/repos/symfony/yaml/zipball/c7885964b1eceb70b0981556d0a9b01d2d97c8d1", + "reference": "c7885964b1eceb70b0981556d0a9b01d2d97c8d1", "shasum": "" }, "require": { @@ -23537,7 +24319,7 @@ "type": "tidelift" } ], - "time": "2020-05-20T08:37:50+00:00" + "time": "2020-09-27T03:36:23+00:00" }, { "name": "tedivm/jshrink", @@ -23634,16 +24416,16 @@ }, { "name": "thecodingmachine/safe", - "version": "v1.1.3", + "version": "v1.3.1", "source": { "type": "git", "url": "https://github.com/thecodingmachine/safe.git", - "reference": "9f277171e296a3c8629c04ac93ec95ff0f208ccb" + "reference": "a6b795aeb367c90cc6ed88dadb4cdcac436377c2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thecodingmachine/safe/zipball/9f277171e296a3c8629c04ac93ec95ff0f208ccb", - "reference": "9f277171e296a3c8629c04ac93ec95ff0f208ccb", + "url": "https://api.github.com/repos/thecodingmachine/safe/zipball/a6b795aeb367c90cc6ed88dadb4cdcac436377c2", + "reference": "a6b795aeb367c90cc6ed88dadb4cdcac436377c2", "shasum": "" }, "require": { @@ -23664,15 +24446,21 @@ "psr-4": { "Safe\\": [ "lib/", + "deprecated/", "generated/" ] }, "files": [ + "deprecated/apc.php", + "deprecated/libevent.php", + "deprecated/mssql.php", + "deprecated/stats.php", + "lib/special_cases.php", "generated/apache.php", - "generated/apc.php", "generated/apcu.php", "generated/array.php", "generated/bzip2.php", + "generated/calendar.php", "generated/classobj.php", "generated/com.php", "generated/cubrid.php", @@ -23701,14 +24489,12 @@ "generated/inotify.php", "generated/json.php", "generated/ldap.php", - "generated/libevent.php", "generated/libxml.php", "generated/lzf.php", "generated/mailparse.php", "generated/mbstring.php", "generated/misc.php", "generated/msql.php", - "generated/mssql.php", "generated/mysql.php", "generated/mysqli.php", "generated/mysqlndMs.php", @@ -23740,7 +24526,6 @@ "generated/sqlsrv.php", "generated/ssdeep.php", "generated/ssh2.php", - "generated/stats.php", "generated/stream.php", "generated/strings.php", "generated/swoole.php", @@ -23754,8 +24539,7 @@ "generated/yaml.php", "generated/yaz.php", "generated/zip.php", - "generated/zlib.php", - "lib/special_cases.php" + "generated/zlib.php" ] }, "notification-url": "https://packagist.org/downloads/", @@ -23763,7 +24547,7 @@ "MIT" ], "description": "PHP core functions that throw exceptions instead of returning FALSE on error", - "time": "2020-07-10T09:34:29+00:00" + "time": "2020-10-08T08:40:29+00:00" }, { "name": "true/punycode", @@ -23866,11 +24650,11 @@ }, { "name": "vertex/module-address-validation", - "version": "2.0.0", + "version": "2.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/vertex/module-address-validation/vertex-module-address-validation-2.0.0.0.zip", - "shasum": "24bbeaba65d0f940ad649e3b3871eb89673420b5" + "url": "https://repo.magento.com/archives/vertex/module-address-validation/vertex-module-address-validation-2.1.0.0.zip", + "shasum": "9023166c5a152f3884322cde5af1b4e9f3854e71" }, "require": { "ext-json": "*", @@ -23879,18 +24663,18 @@ "magento/framework": "^100|^101|^102|^103", "magento/module-checkout": "^100", "magento/module-config": "^101", - "magento/module-quote": "^100|^101|^102", + "magento/module-quote": "^100|^101", "magento/module-store": "^100|^101", "magento/module-tax": "^100", "php": "^7.0", + "vertex/module-address-validation-api": "^1", "vertex/module-tax": "^4" }, "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2", "ext-dom": "*", - "ext-simplexml": "*", - "magento/marketplace-eqp": "^1.0", - "magento/module-offline-shipping": "^100.2", - "magento/module-usps": "^100.2" + "magento/magento-coding-standard": "^5.0", + "roave/security-advisories": "dev-master" }, "type": "magento2-module", "autoload": { @@ -23906,13 +24690,49 @@ ], "description": "Vertex Address Validation module for Magento 2" }, + { + "name": "vertex/module-address-validation-api", + "version": "1.0.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/vertex/module-address-validation-api/vertex-module-address-validation-api-1.0.0.0.zip", + "shasum": "85bcd6896132e132e0098db915eb9d506569646e" + }, + "require": { + "magento/framework": "^100|^101|^102|^103", + "magento/module-store": "^100|^101", + "php": "^7.1", + "vertex/sdk": "^1" + }, + "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2", + "magento/magento-coding-standard": "^5.0", + "roave/security-advisories": "dev-master" + }, + "suggest": { + "magento/module-webapi": "^100" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Vertex\\AddressValidationApi\\": "" + } + }, + "license": [ + "proprietary" + ], + "description": "Vertex Address Cleansing module for Magento 2 API" + }, { "name": "vertex/module-tax", - "version": "4.0.0", + "version": "4.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/vertex/module-tax/vertex-module-tax-4.0.0.0.zip", - "shasum": "da54bf6f1d37f9ab94573ca9094b5408e40b2c2e" + "url": "https://repo.magento.com/archives/vertex/module-tax/vertex-module-tax-4.1.0.0.zip", + "shasum": "bca2e2d6a19294edf066c032ce26edd8dcc2f692" }, "require": { "ext-intl": "*", @@ -23927,8 +24747,8 @@ "magento/module-cron": "^100", "magento/module-customer": "^100|^101|^102|^103", "magento/module-directory": "^100", - "magento/module-eav": "^100|^101|^102|^103", - "magento/module-quote": "^100|^101|^102 ", + "magento/module-eav": "^100|^101|^102", + "magento/module-quote": ">=101.1.0 <= 101.1.5 || ^101.2", "magento/module-sales": "^100|^101|^102|^103", "magento/module-shipping": "^100", "magento/module-store": "^100|^101", @@ -23944,6 +24764,7 @@ "vertex/tax-ee": "*" }, "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2", "ext-dom": "*", "ext-simplexml": "*", "magento/magento-coding-standard": "^5", @@ -23972,15 +24793,15 @@ }, { "name": "vertex/product-magento-module", - "version": "4.0.0", + "version": "4.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/vertex/product-magento-module/vertex-product-magento-module-4.0.0.0.zip", - "shasum": "6048ffc711bb6635fc0288345b87724225345481" + "url": "https://repo.magento.com/archives/vertex/product-magento-module/vertex-product-magento-module-4.1.0.0.zip", + "shasum": "ef350f455be0e3e6784e86987e89b78be984f056" }, "require": { - "vertex/module-address-validation": "2.0.0", - "vertex/module-tax": "4.0.0" + "vertex/module-address-validation": "2.1.0", + "vertex/module-tax": "4.1.0" }, "type": "metapackage", "license": [ @@ -24003,11 +24824,11 @@ }, { "name": "vertex/sdk", - "version": "1.2.4", + "version": "1.2.7", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/vertex/sdk/vertex-sdk-1.2.4.0.zip", - "shasum": "2b9fd3deb46f45930b90d4e020f3236d8256cd4a" + "url": "https://repo.magento.com/archives/vertex/sdk/vertex-sdk-1.2.7.0.zip", + "shasum": "821465662cc2d8ec186e2baf138a7c3075fcf3ee" }, "require": { "ext-mbstring": "*", @@ -24016,6 +24837,8 @@ "php": "^5.4|^7" }, "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2", + "magento/magento-coding-standard": "^5.0", "php": "^7.3", "phpmd/phpmd": "^2.6", "phpunit/phpunit": "^9", @@ -24034,30 +24857,31 @@ }, { "name": "webimpress/safe-writer", - "version": "2.0.1", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/webimpress/safe-writer.git", - "reference": "d6e879960febb307c112538997316371f1e95b12" + "reference": "5cfafdec5873c389036f14bf832a5efc9390dcdd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webimpress/safe-writer/zipball/d6e879960febb307c112538997316371f1e95b12", - "reference": "d6e879960febb307c112538997316371f1e95b12", + "url": "https://api.github.com/repos/webimpress/safe-writer/zipball/5cfafdec5873c389036f14bf832a5efc9390dcdd", + "reference": "5cfafdec5873c389036f14bf832a5efc9390dcdd", "shasum": "" }, "require": { - "php": "^7.2" + "php": "^7.2 || ^8.0" }, "require-dev": { - "phpunit/phpunit": "^8.5.2 || ^9.0.1", - "webimpress/coding-standard": "^1.1.4" + "phpunit/phpunit": "^8.5.8 || ^9.3.7", + "vimeo/psalm": "^3.14.2", + "webimpress/coding-standard": "^1.1.5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0.x-dev", - "dev-develop": "2.1.x-dev", + "dev-master": "2.1.x-dev", + "dev-develop": "2.2.x-dev", "dev-release-1.0": "1.0.x-dev" } }, @@ -24084,7 +24908,7 @@ "type": "github" } ], - "time": "2020-03-21T15:49:08+00:00" + "time": "2020-08-25T07:21:11+00:00" }, { "name": "webonyx/graphql-php", @@ -24207,11 +25031,11 @@ }, { "name": "yotpo/magento2-module-yotpo-reviews", - "version": "3.1.1", + "version": "3.1.2", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/yotpo/magento2-module-yotpo-reviews/yotpo-magento2-module-yotpo-reviews-3.1.1.0.zip", - "shasum": "2a7c0636c17d5b698b89d49cadd429709a2b477b" + "url": "https://repo.magento.com/archives/yotpo/magento2-module-yotpo-reviews/yotpo-magento2-module-yotpo-reviews-3.1.2.0.zip", + "shasum": "686436cac2a13758388d720bc5c388517422e774" }, "require": { "magento/framework": "103.0.*", @@ -24248,14 +25072,14 @@ }, { "name": "yotpo/magento2-module-yotpo-reviews-bundle", - "version": "3.1.1", + "version": "3.1.2", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/yotpo/magento2-module-yotpo-reviews-bundle/yotpo-magento2-module-yotpo-reviews-bundle-3.1.1.0.zip", - "shasum": "72da94c9906f5a140aeead630c7cbd2cafecf2f2" + "url": "https://repo.magento.com/archives/yotpo/magento2-module-yotpo-reviews-bundle/yotpo-magento2-module-yotpo-reviews-bundle-3.1.2.0.zip", + "shasum": "fb070323fec2763df00062bab4a0b0b67eed60d1" }, "require": { - "yotpo/magento2-module-yotpo-reviews": "3.1.1" + "yotpo/magento2-module-yotpo-reviews": "3.1.2" }, "type": "metapackage", "license": [ diff --git a/src/_data/codebase/v2_4/commerce/composer_lock.json b/src/_data/codebase/v2_4/commerce/composer_lock.json index 28d62aad9a3..6e6c3bb2c35 100644 --- a/src/_data/codebase/v2_4/commerce/composer_lock.json +++ b/src/_data/codebase/v2_4/commerce/composer_lock.json @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "bb275e3ab1f651bb58c057a36ac78203", + "content-hash": "ece6b9228f9a7a93dd7d47d951aac907", "packages": [ { "name": "2tvenom/cborencode", @@ -49,16 +49,16 @@ }, { "name": "amzn/amazon-pay-and-login-magento-2-module", - "version": "4.0.2", + "version": "4.0.4", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/amzn/amazon-pay-and-login-magento-2-module/amzn-amazon-pay-and-login-magento-2-module-4.0.2.0.zip", - "shasum": "1fb726b3424fe9f006dfb6442df5fbb25bbc0053" + "url": "https://repo.magento.com/archives/amzn/amazon-pay-and-login-magento-2-module/amzn-amazon-pay-and-login-magento-2-module-4.0.4.0.zip", + "shasum": "f2fd46eae1287b3a870981c6db98ad6faaed77be" }, "require": { - "amzn/amazon-pay-and-login-with-amazon-core-module": "4.0.2", - "amzn/amazon-pay-module": "4.0.2", - "amzn/login-with-amazon-module": "4.0.2" + "amzn/amazon-pay-and-login-with-amazon-core-module": "4.0.4", + "amzn/amazon-pay-module": "4.0.4", + "amzn/login-with-amazon-module": "4.0.4" }, "type": "metapackage", "license": [ @@ -68,11 +68,11 @@ }, { "name": "amzn/amazon-pay-and-login-with-amazon-core-module", - "version": "4.0.2", + "version": "4.0.4", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/amzn/amazon-pay-and-login-with-amazon-core-module/amzn-amazon-pay-and-login-with-amazon-core-module-4.0.2.0.zip", - "shasum": "2ceab6d9226b15f20af17090e46c7c30fd64fbc9" + "url": "https://repo.magento.com/archives/amzn/amazon-pay-and-login-with-amazon-core-module/amzn-amazon-pay-and-login-with-amazon-core-module-4.0.4.0.zip", + "shasum": "b2b8a2d134e93377f29950a5e512824f63beca12" }, "require": { "amzn/amazon-pay-sdk-php": "^3.2.0", @@ -107,15 +107,15 @@ }, { "name": "amzn/amazon-pay-module", - "version": "4.0.2", + "version": "4.0.4", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/amzn/amazon-pay-module/amzn-amazon-pay-module-4.0.2.0.zip", - "shasum": "6ed5ad082c21756b7ce6698c4d58ae6baba70cfb" + "url": "https://repo.magento.com/archives/amzn/amazon-pay-module/amzn-amazon-pay-module-4.0.4.0.zip", + "shasum": "85dec4b75da4301eebf12ed6de4cd1f93129437d" }, "require": { - "amzn/amazon-pay-and-login-with-amazon-core-module": "^4.0.2", - "amzn/login-with-amazon-module": "^4.0.2", + "amzn/amazon-pay-and-login-with-amazon-core-module": "^4.0.4", + "amzn/login-with-amazon-module": "^4.0.4", "magento/framework": "*", "magento/module-backend": "*", "magento/module-catalog": "*", @@ -201,14 +201,14 @@ }, { "name": "amzn/login-with-amazon-module", - "version": "4.0.2", + "version": "4.0.4", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/amzn/login-with-amazon-module/amzn-login-with-amazon-module-4.0.2.0.zip", - "shasum": "4db680418aefd94153d05501d4c42e7b32bc16c9" + "url": "https://repo.magento.com/archives/amzn/login-with-amazon-module/amzn-login-with-amazon-module-4.0.4.0.zip", + "shasum": "3706a86e6e199b14757c7f5a05f3f58214cea034" }, "require": { - "amzn/amazon-pay-and-login-with-amazon-core-module": "^4.0.2", + "amzn/amazon-pay-and-login-with-amazon-core-module": "^4.0.4", "magento/framework": "*", "magento/module-checkout": "*", "magento/module-checkout-agreements": "*", @@ -272,16 +272,16 @@ }, { "name": "bacon/bacon-qr-code", - "version": "2.0.1", + "version": "2.0.2", "source": { "type": "git", "url": "https://github.com/Bacon/BaconQrCode.git", - "reference": "6e53ced3d2499cee4a0ef23a7c4d6449607ac7da" + "reference": "add6d9ff97336b62f95a3b94f75cea4e085465b2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/6e53ced3d2499cee4a0ef23a7c4d6449607ac7da", - "reference": "6e53ced3d2499cee4a0ef23a7c4d6449607ac7da", + "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/add6d9ff97336b62f95a3b94f75cea4e085465b2", + "reference": "add6d9ff97336b62f95a3b94f75cea4e085465b2", "shasum": "" }, "require": { @@ -291,8 +291,8 @@ }, "require-dev": { "phly/keep-a-changelog": "^1.4", - "phpunit/phpunit": "^6.4", - "squizlabs/php_codesniffer": "^3.1" + "phpunit/phpunit": "^7 | ^8 | ^9", + "squizlabs/php_codesniffer": "^3.4" }, "suggest": { "ext-imagick": "to generate QR code images" @@ -311,13 +311,13 @@ { "name": "Ben Scholzen 'DASPRiD'", "email": "mail@dasprids.de", - "homepage": "http://www.dasprids.de", + "homepage": "https://dasprids.de/", "role": "Developer" } ], "description": "BaconQrCode is a QR code generator for PHP.", "homepage": "https://github.com/Bacon/BaconQrCode", - "time": "2020-07-14T11:04:05+00:00" + "time": "2020-07-30T16:40:58+00:00" }, { "name": "beberlei/assert", @@ -383,16 +383,16 @@ }, { "name": "braintree/braintree_php", - "version": "4.5.0", + "version": "5.2.0", "source": { "type": "git", "url": "https://github.com/braintree/braintree_php.git", - "reference": "4aa200601e126183a572133d7ea2037de44b3d2d" + "reference": "6cf3447ecd0303caa6f2d4f22b653dc5c71b4589" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/braintree/braintree_php/zipball/4aa200601e126183a572133d7ea2037de44b3d2d", - "reference": "4aa200601e126183a572133d7ea2037de44b3d2d", + "url": "https://api.github.com/repos/braintree/braintree_php/zipball/6cf3447ecd0303caa6f2d4f22b653dc5c71b4589", + "reference": "6cf3447ecd0303caa6f2d4f22b653dc5c71b4589", "shasum": "" }, "require": { @@ -408,9 +408,6 @@ }, "type": "library", "autoload": { - "psr-0": { - "Braintree": "lib/" - }, "psr-4": { "Braintree\\": "lib/Braintree" } @@ -426,7 +423,7 @@ } ], "description": "Braintree PHP Client Library", - "time": "2019-10-28T16:05:37+00:00" + "time": "2020-06-15T19:02:23+00:00" }, { "name": "christian-riesen/base32", @@ -594,21 +591,21 @@ }, { "name": "colinmollenhour/php-redis-session-abstract", - "version": "v1.4.2", + "version": "v1.4.3", "source": { "type": "git", "url": "https://github.com/colinmollenhour/php-redis-session-abstract.git", - "reference": "669521218794f125c7b668252f4f576eda65e1e4" + "reference": "39ca38da5e0a981bc1a7e39a86693c128784a513" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/colinmollenhour/php-redis-session-abstract/zipball/669521218794f125c7b668252f4f576eda65e1e4", - "reference": "669521218794f125c7b668252f4f576eda65e1e4", + "url": "https://api.github.com/repos/colinmollenhour/php-redis-session-abstract/zipball/39ca38da5e0a981bc1a7e39a86693c128784a513", + "reference": "39ca38da5e0a981bc1a7e39a86693c128784a513", "shasum": "" }, "require": { "colinmollenhour/credis": "~1.6", - "php": "^5.5 || ^7.0" + "php": "^5.5 || ^7.0|| ^7.1 || ^7.2" }, "type": "library", "autoload": { @@ -627,20 +624,20 @@ ], "description": "A Redis-based session handler with optimistic locking", "homepage": "https://github.com/colinmollenhour/php-redis-session-abstract", - "time": "2020-01-08T17:41:01+00:00" + "time": "2020-10-07T09:47:22+00:00" }, { "name": "composer/ca-bundle", - "version": "1.2.7", + "version": "1.2.8", "source": { "type": "git", "url": "https://github.com/composer/ca-bundle.git", - "reference": "95c63ab2117a72f48f5a55da9740a3273d45b7fd" + "reference": "8a7ecad675253e4654ea05505233285377405215" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/95c63ab2117a72f48f5a55da9740a3273d45b7fd", - "reference": "95c63ab2117a72f48f5a55da9740a3273d45b7fd", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/8a7ecad675253e4654ea05505233285377405215", + "reference": "8a7ecad675253e4654ea05505233285377405215", "shasum": "" }, "require": { @@ -688,12 +685,16 @@ "url": "https://packagist.com", "type": "custom" }, + { + "url": "https://github.com/composer", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/composer/composer", "type": "tidelift" } ], - "time": "2020-04-08T08:27:21+00:00" + "time": "2020-08-23T12:54:47+00:00" }, { "name": "composer/composer", @@ -788,16 +789,16 @@ }, { "name": "composer/semver", - "version": "1.5.1", + "version": "1.7.1", "source": { "type": "git", "url": "https://github.com/composer/semver.git", - "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de" + "reference": "38276325bd896f90dfcfe30029aa5db40df387a7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/semver/zipball/c6bea70230ef4dd483e6bbcab6005f682ed3a8de", - "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de", + "url": "https://api.github.com/repos/composer/semver/zipball/38276325bd896f90dfcfe30029aa5db40df387a7", + "reference": "38276325bd896f90dfcfe30029aa5db40df387a7", "shasum": "" }, "require": { @@ -845,7 +846,21 @@ "validation", "versioning" ], - "time": "2020-01-13T12:06:48+00:00" + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2020-09-27T13:13:07+00:00" }, { "name": "composer/spdx-licenses", @@ -923,16 +938,16 @@ }, { "name": "composer/xdebug-handler", - "version": "1.4.2", + "version": "1.4.3", "source": { "type": "git", "url": "https://github.com/composer/xdebug-handler.git", - "reference": "fa2aaf99e2087f013a14f7432c1cd2dd7d8f1f51" + "reference": "ebd27a9866ae8254e873866f795491f02418c5a5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/fa2aaf99e2087f013a14f7432c1cd2dd7d8f1f51", - "reference": "fa2aaf99e2087f013a14f7432c1cd2dd7d8f1f51", + "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ebd27a9866ae8254e873866f795491f02418c5a5", + "reference": "ebd27a9866ae8254e873866f795491f02418c5a5", "shasum": "" }, "require": { @@ -977,7 +992,7 @@ "type": "tidelift" } ], - "time": "2020-06-04T11:16:35+00:00" + "time": "2020-08-19T10:27:58+00:00" }, { "name": "container-interop/container-interop", @@ -1013,21 +1028,21 @@ }, { "name": "dasprid/enum", - "version": "1.0.0", + "version": "1.0.3", "source": { "type": "git", "url": "https://github.com/DASPRiD/Enum.git", - "reference": "631ef6e638e9494b0310837fa531bedd908fc22b" + "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/631ef6e638e9494b0310837fa531bedd908fc22b", - "reference": "631ef6e638e9494b0310837fa531bedd908fc22b", + "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2", + "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2", "shasum": "" }, "require-dev": { - "phpunit/phpunit": "^6.4", - "squizlabs/php_codesniffer": "^3.1" + "phpunit/phpunit": "^7 | ^8 | ^9", + "squizlabs/php_codesniffer": "^3.4" }, "type": "library", "autoload": { @@ -1043,7 +1058,8 @@ { "name": "Ben Scholzen 'DASPRiD'", "email": "mail@dasprids.de", - "homepage": "https://dasprids.de/" + "homepage": "https://dasprids.de/", + "role": "Developer" } ], "description": "PHP 7.1 enum implementation", @@ -1051,20 +1067,20 @@ "enum", "map" ], - "time": "2017-10-25T22:45:27+00:00" + "time": "2020-10-02T16:03:48+00:00" }, { "name": "donatj/phpuseragentparser", - "version": "v0.16.0", + "version": "v0.17.0", "source": { "type": "git", "url": "https://github.com/donatj/PhpUserAgent.git", - "reference": "b3551112ed84524aef6542a8778a3f812c8098ce" + "reference": "e159493010d4b71c9620a43fd05f8284f29dcfeb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/donatj/PhpUserAgent/zipball/b3551112ed84524aef6542a8778a3f812c8098ce", - "reference": "b3551112ed84524aef6542a8778a3f812c8098ce", + "url": "https://api.github.com/repos/donatj/PhpUserAgent/zipball/e159493010d4b71c9620a43fd05f8284f29dcfeb", + "reference": "e159493010d4b71c9620a43fd05f8284f29dcfeb", "shasum": "" }, "require": { @@ -1112,18 +1128,19 @@ "type": "github" } ], - "time": "2020-04-07T15:47:30+00:00" + "time": "2020-09-01T16:15:49+00:00" }, { "name": "dotmailer/dotmailer-magento2-extension", - "version": "4.6.0", + "version": "4.8.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension/dotmailer-dotmailer-magento2-extension-4.6.0.0.zip", - "shasum": "9d16976f52bbb3aee2356687a8bc7c7028a4e51d" + "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension/dotmailer-dotmailer-magento2-extension-4.8.0.0.zip", + "shasum": "936e7cb91b6c1d981f4c6c195130603288b3284d" }, "require": { "magento/framework": ">=101 <104", + "magento/module-authorization": "100.4.*", "magento/module-backend": ">=100 <103", "magento/module-bundle": ">=100 <102", "magento/module-catalog": ">=101 <105", @@ -1175,14 +1192,15 @@ }, { "name": "dotmailer/dotmailer-magento2-extension-chat", - "version": "1.1.0", + "version": "1.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-chat/dotmailer-dotmailer-magento2-extension-chat-1.1.0.0.zip", - "shasum": "70c2a165be11b865dd8de7a8e2cd2b867aa8dce6" + "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-chat/dotmailer-dotmailer-magento2-extension-chat-1.2.0.0.zip", + "shasum": "f70ba21b96985e6826ff208cefc3b0a88f26146c" }, "require": { "dotmailer/dotmailer-magento2-extension": "^4.3.1", + "magento/framework": ">=101 <104", "magento/module-backend": ">=100 <103", "magento/module-checkout": "100.*", "magento/module-config": ">=100 <103", @@ -1207,17 +1225,18 @@ }, { "name": "dotmailer/dotmailer-magento2-extension-enterprise", - "version": "1.1.0", + "version": "1.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-enterprise/dotmailer-dotmailer-magento2-extension-enterprise-1.1.0.0.zip", - "shasum": "e92e6824a562ba2655751b5f9e56aeac09f92211" + "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-enterprise/dotmailer-dotmailer-magento2-extension-enterprise-1.2.0.0.zip", + "shasum": "dd76b9175957e213cb5c534e5af73fd283839464" }, "require": { - "dotmailer/dotmailer-magento2-extension": "^4.3.1", + "dotmailer/dotmailer-magento2-extension": "^4.8.0", "magento/module-customer-segment": ">=100 <103", "magento/module-reward": ">=100 <102", - "magento/module-store": ">=100 <102" + "magento/module-store": ">=100 <102", + "magento/page-builder-commerce": "^1.4" }, "type": "magento2-module", "autoload": { @@ -1235,16 +1254,16 @@ }, { "name": "dotmailer/dotmailer-magento2-extension-enterprise-package", - "version": "4.6.0", + "version": "4.8.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-enterprise-package/dotmailer-dotmailer-magento2-extension-enterprise-package-4.6.0.0.zip", - "shasum": "fc7c26d33c529705b3487f237543c2e5d484fd6d" + "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-enterprise-package/dotmailer-dotmailer-magento2-extension-enterprise-package-4.8.0.0.zip", + "shasum": "e7b8c8c589f00daf62a52b4d7689c5e489b7e185" }, "require": { - "dotmailer/dotmailer-magento2-extension": "4.6.0", - "dotmailer/dotmailer-magento2-extension-chat": "1.1.0", - "dotmailer/dotmailer-magento2-extension-enterprise": "1.1.0" + "dotmailer/dotmailer-magento2-extension": "4.8.0", + "dotmailer/dotmailer-magento2-extension-chat": "1.2.0", + "dotmailer/dotmailer-magento2-extension-enterprise": "1.2.0" }, "type": "metapackage", "license": [ @@ -1254,15 +1273,15 @@ }, { "name": "dotmailer/dotmailer-magento2-extension-package", - "version": "4.6.0", + "version": "4.8.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-package/dotmailer-dotmailer-magento2-extension-package-4.6.0.0.zip", - "shasum": "d00023ec7e379b215db599f0133f2106f3dea31a" + "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-package/dotmailer-dotmailer-magento2-extension-package-4.8.0.0.zip", + "shasum": "ed68af95837c3cea0be8cad328a4fd0682451356" }, "require": { - "dotmailer/dotmailer-magento2-extension": "4.6.0", - "dotmailer/dotmailer-magento2-extension-chat": "1.1.0" + "dotmailer/dotmailer-magento2-extension": "4.8.0", + "dotmailer/dotmailer-magento2-extension-chat": "1.2.0" }, "type": "metapackage", "license": [ @@ -1335,16 +1354,16 @@ }, { "name": "endroid/qr-code", - "version": "3.9.1", + "version": "3.9.3", "source": { "type": "git", "url": "https://github.com/endroid/qr-code.git", - "reference": "8605e2c958ed568788da4e16bd8a9502e32f375f" + "reference": "58d5872ca46b99b5c2e72cd2c8dea09ce2988156" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/endroid/qr-code/zipball/8605e2c958ed568788da4e16bd8a9502e32f375f", - "reference": "8605e2c958ed568788da4e16bd8a9502e32f375f", + "url": "https://api.github.com/repos/endroid/qr-code/zipball/58d5872ca46b99b5c2e72cd2c8dea09ce2988156", + "reference": "58d5872ca46b99b5c2e72cd2c8dea09ce2988156", "shasum": "" }, "require": { @@ -1402,7 +1421,7 @@ "type": "github" } ], - "time": "2020-07-10T10:16:06+00:00" + "time": "2020-10-07T09:42:59+00:00" }, { "name": "ezimuel/guzzlestreams", @@ -1621,23 +1640,23 @@ }, { "name": "guzzlehttp/promises", - "version": "v1.3.1", + "version": "1.4.0", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646" + "reference": "60d379c243457e073cff02bc323a2a86cb355631" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646", + "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631", + "reference": "60d379c243457e073cff02bc323a2a86cb355631", "shasum": "" }, "require": { - "php": ">=5.5.0" + "php": ">=5.5" }, "require-dev": { - "phpunit/phpunit": "^4.0" + "symfony/phpunit-bridge": "^4.4 || ^5.1" }, "type": "library", "extra": { @@ -1668,20 +1687,20 @@ "keywords": [ "promise" ], - "time": "2016-12-20T10:07:11+00:00" + "time": "2020-09-30T07:37:28+00:00" }, { "name": "guzzlehttp/psr7", - "version": "1.6.1", + "version": "1.7.0", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "239400de7a173fe9901b9ac7c06497751f00727a" + "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a", - "reference": "239400de7a173fe9901b9ac7c06497751f00727a", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3", + "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3", "shasum": "" }, "require": { @@ -1694,15 +1713,15 @@ }, "require-dev": { "ext-zlib": "*", - "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8" + "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10" }, "suggest": { - "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses" + "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.6-dev" + "dev-master": "1.7-dev" } }, "autoload": { @@ -1739,7 +1758,7 @@ "uri", "url" ], - "time": "2019-07-01T23:21:34+00:00" + "time": "2020-09-30T07:37:11+00:00" }, { "name": "justinrainbow/json-schema", @@ -1859,17 +1878,18 @@ }, { "name": "klarna/m2-payments", - "version": "8.0.2", + "version": "8.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/klarna/m2-payments/klarna-m2-payments-8.0.2.0.zip", - "shasum": "81ed938d910a52c0df4181c464c62091f2a8a634" + "url": "https://repo.magento.com/archives/klarna/m2-payments/klarna-m2-payments-8.1.0.0.zip", + "shasum": "c31e4d0746cf9b281ee2058a0353ab8f5dcdf7b0" }, "require": { - "klarna/module-core": "6.0.1", - "klarna/module-kp": "7.0.1", - "klarna/module-onsitemessaging": "1.0.1", - "klarna/module-ordermanagement": "6.0.2" + "klarna/module-core": "6.0.2", + "klarna/module-kp": "7.1.0", + "klarna/module-kp-graph-ql": "0.9.0", + "klarna/module-onsitemessaging": "1.0.2", + "klarna/module-ordermanagement": "6.0.3" }, "require-dev": { "friendsofphp/php-cs-fixer": "~2.16.0", @@ -1881,7 +1901,7 @@ "pdepend/pdepend": "^2.5.2", "phploc/phploc": "^6.0", "phpmd/phpmd": "@stable", - "phpro/grumphp": "^0.14", + "phpro/grumphp": "^0.19", "phpunit/phpunit": "^9", "sebastian/phpcpd": "~5.0.0", "squizlabs/php_codesniffer": "~3.5.4" @@ -1894,16 +1914,16 @@ }, { "name": "klarna/module-core", - "version": "6.0.1", + "version": "6.0.2", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/klarna/module-core/klarna-module-core-6.0.1.0.zip", - "shasum": "782be784675bd9d586cda2d267053456e212f00f" + "url": "https://repo.magento.com/archives/klarna/module-core/klarna-module-core-6.0.2.0.zip", + "shasum": "d3878dc3a1a1d9c7e70681291412982dfa00b22e" }, "require": { "guzzlehttp/guzzle": "^6.0", "magento/framework": "^102|^103", - "magento/module-bundle": "^100.3 ||^101.0", + "magento/module-bundle": "^100.3||^101.0", "magento/module-catalog": "^103.0|^104.0", "magento/module-config": "^101.1", "magento/module-customer": "^102.0|^103.0", @@ -1981,11 +2001,11 @@ }, { "name": "klarna/module-kp", - "version": "7.0.1", + "version": "7.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/klarna/module-kp/klarna-module-kp-7.0.1.0.zip", - "shasum": "45082a499985c7fa9385b85abdd1bd1b49f81e3c" + "url": "https://repo.magento.com/archives/klarna/module-kp/klarna-module-kp-7.1.0.0.zip", + "shasum": "7266fec0ff572260945069c5f0360e18931b12c4" }, "require": { "klarna/module-core": "^6.0", @@ -2048,13 +2068,55 @@ ], "description": "Klarna Payments Magento 2 Extension" }, + { + "name": "klarna/module-kp-graph-ql", + "version": "0.9.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/klarna/module-kp-graph-ql/klarna-module-kp-graph-ql-0.9.0.0.zip", + "shasum": "a877f3b010cc16b026b2c82998184a88fd83d42b" + }, + "require": { + "klarna/module-kp": "^7.0.2", + "magento/framework": "^102|^103", + "magento/module-graph-ql": "^100", + "magento/module-payment": "^100.1", + "magento/module-quote-graph-ql": "^100", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Klarna\\KpGraphQl\\": "" + } + }, + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Dario Kassler", + "email": "dario.kassler@klarna.com", + "role": "Developer" + }, + { + "name": "Markus Simon", + "email": "markus.simon2@klarna.com", + "role": "Developer" + } + ], + "description": "Klarna KpGraphQl Magento 2 Extension" + }, { "name": "klarna/module-onsitemessaging", - "version": "1.0.1", + "version": "1.0.2", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/klarna/module-onsitemessaging/klarna-module-onsitemessaging-1.0.1.0.zip", - "shasum": "dade15bbef2ae9230b4612de5f0bc59cbeafb0f9" + "url": "https://repo.magento.com/archives/klarna/module-onsitemessaging/klarna-module-onsitemessaging-1.0.2.0.zip", + "shasum": "303e3b36a4720cda912128ec3bb33f9324d4c495" }, "require": { "klarna/module-core": "^6.0", @@ -2093,11 +2155,11 @@ }, { "name": "klarna/module-ordermanagement", - "version": "6.0.2", + "version": "6.0.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/klarna/module-ordermanagement/klarna-module-ordermanagement-6.0.2.0.zip", - "shasum": "aef328ea439f0b0f06760af9378b7005b4b0272e" + "url": "https://repo.magento.com/archives/klarna/module-ordermanagement/klarna-module-ordermanagement-6.0.3.0.zip", + "shasum": "4010e13db02da44929ff12f20091bb01f4c5c21f" }, "require": { "klarna/module-core": "^6.0", @@ -2739,41 +2801,41 @@ }, { "name": "laminas/laminas-eventmanager", - "version": "3.2.1", + "version": "3.3.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-eventmanager.git", - "reference": "ce4dc0bdf3b14b7f9815775af9dfee80a63b4748" + "reference": "1940ccf30e058b2fd66f5a9d696f1b5e0027b082" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-eventmanager/zipball/ce4dc0bdf3b14b7f9815775af9dfee80a63b4748", - "reference": "ce4dc0bdf3b14b7f9815775af9dfee80a63b4748", + "url": "https://api.github.com/repos/laminas/laminas-eventmanager/zipball/1940ccf30e058b2fd66f5a9d696f1b5e0027b082", + "reference": "1940ccf30e058b2fd66f5a9d696f1b5e0027b082", "shasum": "" }, "require": { "laminas/laminas-zendframework-bridge": "^1.0", - "php": "^5.6 || ^7.0" + "php": "^7.3 || ^8.0" }, "replace": { - "zendframework/zend-eventmanager": "self.version" + "zendframework/zend-eventmanager": "^3.2.1" }, "require-dev": { - "athletic/athletic": "^0.1", - "container-interop/container-interop": "^1.1.0", + "container-interop/container-interop": "^1.1", "laminas/laminas-coding-standard": "~1.0.0", "laminas/laminas-stdlib": "^2.7.3 || ^3.0", - "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2" + "phpbench/phpbench": "^0.17.1", + "phpunit/phpunit": "^8.5.8" }, "suggest": { - "container-interop/container-interop": "^1.1.0, to use the lazy listeners feature", + "container-interop/container-interop": "^1.1, to use the lazy listeners feature", "laminas/laminas-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.2-dev", - "dev-develop": "3.3-dev" + "dev-master": "3.3.x-dev", + "dev-develop": "3.4.x-dev" } }, "autoload": { @@ -2793,20 +2855,26 @@ "events", "laminas" ], - "time": "2019-12-31T16:44:52+00:00" + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2020-08-25T11:10:44+00:00" }, { "name": "laminas/laminas-feed", - "version": "2.12.2", + "version": "2.12.3", "source": { "type": "git", "url": "https://github.com/laminas/laminas-feed.git", - "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654" + "reference": "3c91415633cb1be6f9d78683d69b7dcbfe6b4012" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/8a193ac96ebcb3e16b6ee754ac2a889eefacb654", - "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654", + "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/3c91415633cb1be6f9d78683d69b7dcbfe6b4012", + "reference": "3c91415633cb1be6f9d78683d69b7dcbfe6b4012", "shasum": "" }, "require": { @@ -2860,7 +2928,13 @@ "feed", "laminas" ], - "time": "2020-03-29T12:36:29+00:00" + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2020-08-18T13:45:04+00:00" }, { "name": "laminas/laminas-filter", @@ -3021,16 +3095,16 @@ }, { "name": "laminas/laminas-http", - "version": "2.12.0", + "version": "2.13.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-http.git", - "reference": "48bd06ffa3a6875e2b77d6852405eb7b1589d575" + "reference": "33b7942f51ce905ce9bfc8bf28badc501d3904b5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-http/zipball/48bd06ffa3a6875e2b77d6852405eb7b1589d575", - "reference": "48bd06ffa3a6875e2b77d6852405eb7b1589d575", + "url": "https://api.github.com/repos/laminas/laminas-http/zipball/33b7942f51ce905ce9bfc8bf28badc501d3904b5", + "reference": "33b7942f51ce905ce9bfc8bf28badc501d3904b5", "shasum": "" }, "require": { @@ -3053,12 +3127,6 @@ "paragonie/certainty": "For automated management of cacert.pem" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.12.x-dev", - "dev-develop": "2.13.x-dev" - } - }, "autoload": { "psr-4": { "Laminas\\Http\\": "src/" @@ -3081,7 +3149,7 @@ "type": "community_bridge" } ], - "time": "2020-06-23T15:14:37+00:00" + "time": "2020-08-18T17:11:58+00:00" }, { "name": "laminas/laminas-hydrator", @@ -3467,16 +3535,16 @@ }, { "name": "laminas/laminas-mail", - "version": "2.11.0", + "version": "2.12.3", "source": { "type": "git", "url": "https://github.com/laminas/laminas-mail.git", - "reference": "4c5545637eea3dc745668ddff1028692ed004c4b" + "reference": "c154a733b122539ac2c894561996c770db289f70" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-mail/zipball/4c5545637eea3dc745668ddff1028692ed004c4b", - "reference": "4c5545637eea3dc745668ddff1028692ed004c4b", + "url": "https://api.github.com/repos/laminas/laminas-mail/zipball/c154a733b122539ac2c894561996c770db289f70", + "reference": "c154a733b122539ac2c894561996c770db289f70", "shasum": "" }, "require": { @@ -3486,7 +3554,7 @@ "laminas/laminas-stdlib": "^2.7 || ^3.0", "laminas/laminas-validator": "^2.10.2", "laminas/laminas-zendframework-bridge": "^1.0", - "php": "^5.6 || ^7.0", + "php": "^7.1", "true/punycode": "^2.1" }, "replace": { @@ -3496,8 +3564,8 @@ "laminas/laminas-coding-standard": "~1.0.0", "laminas/laminas-config": "^2.6", "laminas/laminas-crypt": "^2.6 || ^3.0", - "laminas/laminas-servicemanager": "^2.7.10 || ^3.3.1", - "phpunit/phpunit": "^5.7.25 || ^6.4.4 || ^7.1.4" + "laminas/laminas-servicemanager": "^3.2.1", + "phpunit/phpunit": "^7.5.20" }, "suggest": { "laminas/laminas-crypt": "Crammd5 support in SMTP Auth", @@ -3505,10 +3573,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-master": "2.11.x-dev", - "dev-develop": "2.12.x-dev" - }, "laminas": { "component": "Laminas\\Mail", "config-provider": "Laminas\\Mail\\ConfigProvider" @@ -3535,7 +3599,7 @@ "type": "community_bridge" } ], - "time": "2020-06-30T20:17:23+00:00" + "time": "2020-08-12T14:51:33+00:00" }, { "name": "laminas/laminas-math", @@ -3647,16 +3711,16 @@ }, { "name": "laminas/laminas-modulemanager", - "version": "2.8.4", + "version": "2.9.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-modulemanager.git", - "reference": "92b1cde1aab5aef687b863face6dd5d9c6751c78" + "reference": "789bbd4ab391da9221f265f6bb2d594f8f11855b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-modulemanager/zipball/92b1cde1aab5aef687b863face6dd5d9c6751c78", - "reference": "92b1cde1aab5aef687b863face6dd5d9c6751c78", + "url": "https://api.github.com/repos/laminas/laminas-modulemanager/zipball/789bbd4ab391da9221f265f6bb2d594f8f11855b", + "reference": "789bbd4ab391da9221f265f6bb2d594f8f11855b", "shasum": "" }, "require": { @@ -3664,10 +3728,11 @@ "laminas/laminas-eventmanager": "^3.2 || ^2.6.3", "laminas/laminas-stdlib": "^3.1 || ^2.7", "laminas/laminas-zendframework-bridge": "^1.0", - "php": "^5.6 || ^7.0" + "php": "^5.6 || ^7.0", + "webimpress/safe-writer": "^1.0.2 || ^2.1" }, "replace": { - "zendframework/zend-modulemanager": "self.version" + "zendframework/zend-modulemanager": "^2.8.4" }, "require-dev": { "laminas/laminas-coding-standard": "~1.0.0", @@ -3687,8 +3752,8 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.8.x-dev", - "dev-develop": "2.9.x-dev" + "dev-master": "2.9.x-dev", + "dev-develop": "2.10.x-dev" } }, "autoload": { @@ -3706,7 +3771,13 @@ "laminas", "modulemanager" ], - "time": "2019-12-31T17:26:56+00:00" + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2020-08-25T09:29:22+00:00" }, { "name": "laminas/laminas-mvc", @@ -4156,35 +4227,35 @@ }, { "name": "laminas/laminas-stdlib", - "version": "3.2.1", + "version": "3.3.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-stdlib.git", - "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6" + "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/2b18347625a2f06a1a485acfbc870f699dbe51c6", - "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6", + "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/b9d84eaa39fde733356ea948cdef36c631f202b6", + "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6", "shasum": "" }, "require": { "laminas/laminas-zendframework-bridge": "^1.0", - "php": "^5.6 || ^7.0" + "php": "^7.3 || ^8.0" }, "replace": { - "zendframework/zend-stdlib": "self.version" + "zendframework/zend-stdlib": "^3.2.1" }, "require-dev": { "laminas/laminas-coding-standard": "~1.0.0", - "phpbench/phpbench": "^0.13", - "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2" + "phpbench/phpbench": "^0.17.1", + "phpunit/phpunit": "^9.3.7" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.2.x-dev", - "dev-develop": "3.3.x-dev" + "dev-master": "3.3.x-dev", + "dev-develop": "3.4.x-dev" } }, "autoload": { @@ -4202,7 +4273,13 @@ "laminas", "stdlib" ], - "time": "2019-12-31T17:51:15+00:00" + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2020-08-25T09:08:16+00:00" }, { "name": "laminas/laminas-text", @@ -4479,31 +4556,27 @@ }, { "name": "laminas/laminas-zendframework-bridge", - "version": "1.0.4", + "version": "1.1.1", "source": { "type": "git", "url": "https://github.com/laminas/laminas-zendframework-bridge.git", - "reference": "fcd87520e4943d968557803919523772475e8ea3" + "reference": "6ede70583e101030bcace4dcddd648f760ddf642" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3", - "reference": "fcd87520e4943d968557803919523772475e8ea3", + "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/6ede70583e101030bcace4dcddd648f760ddf642", + "reference": "6ede70583e101030bcace4dcddd648f760ddf642", "shasum": "" }, "require": { - "php": "^5.6 || ^7.0" + "php": "^5.6 || ^7.0 || ^8.0" }, "require-dev": { - "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1", + "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^9.3", "squizlabs/php_codesniffer": "^3.5" }, "type": "library", "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev", - "dev-develop": "1.1.x-dev" - }, "laminas": { "module": "Laminas\\ZendFrameworkBridge" } @@ -4533,7 +4606,7 @@ "type": "community_bridge" } ], - "time": "2020-05-20T16:45:56+00:00" + "time": "2020-09-14T14:23:00+00:00" }, { "name": "league/iso3166", @@ -4589,37 +4662,42 @@ ], "time": "2020-01-29T07:08:12+00:00" }, + { + "name": "magento/adobe-ims", + "version": "2.1.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/adobe-ims/magento-adobe-ims-2.1.0.0.zip", + "shasum": "4c47779423d0bbe55951a3cfd08134e5cddfdbe9" + }, + "require": { + "magento/module-adobe-ims": "2.1.0", + "magento/module-adobe-ims-api": "2.1.0" + }, + "type": "metapackage", + "description": "Adobe IMS Integration" + }, { "name": "magento/adobe-stock-integration", - "version": "2.0.0", + "version": "2.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/adobe-stock-integration/magento-adobe-stock-integration-2.0.0.0.zip", - "shasum": "2da07f38b1316a518b1a5a87baa63aef9843b2be" - }, - "require": { - "magento/module-adobe-ims": "1.1.0", - "magento/module-adobe-ims-api": "2.0.0", - "magento/module-adobe-stock-admin-ui": "1.1.0", - "magento/module-adobe-stock-asset": "1.1.0", - "magento/module-adobe-stock-asset-api": "1.1.0", - "magento/module-adobe-stock-client": "1.1.0", - "magento/module-adobe-stock-client-api": "1.1.0", - "magento/module-adobe-stock-image": "1.1.0", - "magento/module-adobe-stock-image-admin-ui": "1.1.0", - "magento/module-adobe-stock-image-api": "1.1.0", - "magento/module-media-content-synchronization": "1.0.0", - "magento/module-media-content-synchronization-api": "1.0.0", - "magento/module-media-content-synchronization-catalog": "1.0.0", - "magento/module-media-content-synchronization-cms": "1.0.0", - "magento/module-media-gallery-integration": "1.0.0", - "magento/module-media-gallery-synchronization": "1.0.0", - "magento/module-media-gallery-synchronization-api": "1.0.0", - "magento/module-media-gallery-ui": "1.0.0", - "magento/module-media-gallery-ui-api": "1.0.0" + "url": "https://repo.magento.com/archives/magento/adobe-stock-integration/magento-adobe-stock-integration-2.1.0.0.zip", + "shasum": "c8f38ee734f6706b8d6ecfe593e000e9b87951ac" + }, + "require": { + "magento/adobe-ims": "2.1.0", + "magento/module-adobe-stock-admin-ui": "1.2.0", + "magento/module-adobe-stock-asset": "1.2.0", + "magento/module-adobe-stock-asset-api": "1.2.0", + "magento/module-adobe-stock-client": "1.2.0", + "magento/module-adobe-stock-client-api": "2.0.0", + "magento/module-adobe-stock-image": "1.2.0", + "magento/module-adobe-stock-image-admin-ui": "1.2.0", + "magento/module-adobe-stock-image-api": "1.2.0" }, "type": "metapackage", - "description": "Adobe Stock integration" + "description": "Adobe Stock Integration" }, { "name": "magento/composer", @@ -4684,11 +4762,11 @@ }, { "name": "magento/framework", - "version": "103.0.0", + "version": "103.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/framework/magento-framework-103.0.0.0.zip", - "shasum": "c6f70138f0048dca680d57aafe33778771b096bf" + "url": "https://repo.magento.com/archives/magento/framework/magento-framework-103.0.1.0.zip", + "shasum": "a26164efffe0cdb5ed2f821a1b6a599a74b957ff" }, "require": { "colinmollenhour/php-redis-session-abstract": "~1.4.0", @@ -4728,12 +4806,12 @@ }, "type": "magento2-library", "autoload": { - "psr-4": { - "Magento\\Framework\\": "" - }, "files": [ "registration.php" - ] + ], + "psr-4": { + "Magento\\Framework\\": "" + } }, "license": [ "OSL-3.0", @@ -4825,11 +4903,11 @@ }, { "name": "magento/framework-message-queue", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/framework-message-queue/magento-framework-message-queue-100.4.0.0.zip", - "shasum": "d15ab4611e564e86e2635f9e026babd434e69650" + "url": "https://repo.magento.com/archives/magento/framework-message-queue/magento-framework-message-queue-100.4.1.0.zip", + "shasum": "84002f5f98e987902b1378be040c3cd46cbe92d2" }, "require": { "magento/framework": "103.0.*", @@ -4837,12 +4915,12 @@ }, "type": "magento2-library", "autoload": { - "psr-4": { - "Magento\\Framework\\MessageQueue\\": "" - }, "files": [ "registration.php" - ] + ], + "psr-4": { + "Magento\\Framework\\MessageQueue\\": "" + } }, "license": [ "OSL-3.0", @@ -4910,16 +4988,16 @@ }, { "name": "magento/inventory-metapackage", - "version": "1.2.0", + "version": "1.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/inventory-metapackage/magento-inventory-metapackage-1.2.0.0.zip", - "shasum": "3474c67672b7c9bca13cd5dfb4249385dafd8fec" + "url": "https://repo.magento.com/archives/magento/inventory-metapackage/magento-inventory-metapackage-1.2.1.0.zip", + "shasum": "819bfcfeb6d72493274419b3a095be26b233f019" }, "require": { "magento/inventory-composer-installer": "1.1.0", - "magento/module-inventory": "1.1.0", - "magento/module-inventory-admin-ui": "1.1.0", + "magento/module-inventory": "1.1.1", + "magento/module-inventory-admin-ui": "1.1.2", "magento/module-inventory-advanced-checkout": "1.1.0", "magento/module-inventory-api": "1.1.0", "magento/module-inventory-bundle-import-export": "1.0.0", @@ -4927,8 +5005,8 @@ "magento/module-inventory-bundle-product-admin-ui": "1.1.0", "magento/module-inventory-bundle-product-indexer": "1.0.0", "magento/module-inventory-cache": "1.1.0", - "magento/module-inventory-catalog": "1.1.0", - "magento/module-inventory-catalog-admin-ui": "1.1.0", + "magento/module-inventory-catalog": "1.1.1", + "magento/module-inventory-catalog-admin-ui": "1.1.2", "magento/module-inventory-catalog-api": "1.2.0", "magento/module-inventory-catalog-search": "1.1.0", "magento/module-inventory-configurable-product": "1.1.0", @@ -4946,11 +5024,11 @@ "magento/module-inventory-grouped-product": "1.1.0", "magento/module-inventory-grouped-product-admin-ui": "1.1.0", "magento/module-inventory-grouped-product-indexer": "1.1.0", - "magento/module-inventory-import-export": "1.1.0", - "magento/module-inventory-in-store-pickup": "1.0.0", - "magento/module-inventory-in-store-pickup-admin-ui": "1.0.0", + "magento/module-inventory-import-export": "1.1.1", + "magento/module-inventory-in-store-pickup": "1.0.1", + "magento/module-inventory-in-store-pickup-admin-ui": "1.0.1", "magento/module-inventory-in-store-pickup-api": "1.0.0", - "magento/module-inventory-in-store-pickup-frontend": "1.0.0", + "magento/module-inventory-in-store-pickup-frontend": "1.0.1", "magento/module-inventory-in-store-pickup-graph-ql": "1.0.0", "magento/module-inventory-in-store-pickup-multishipping": "1.0.0", "magento/module-inventory-in-store-pickup-quote": "1.0.0", @@ -4963,25 +5041,26 @@ "magento/module-inventory-in-store-pickup-shipping-api": "1.0.0", "magento/module-inventory-in-store-pickup-webapi-extension": "1.0.0", "magento/module-inventory-indexer": "2.0.0", - "magento/module-inventory-low-quantity-notification": "1.1.0", - "magento/module-inventory-low-quantity-notification-admin-ui": "1.1.0", + "magento/module-inventory-low-quantity-notification": "1.1.1", + "magento/module-inventory-low-quantity-notification-admin-ui": "1.1.1", "magento/module-inventory-low-quantity-notification-api": "1.1.0", "magento/module-inventory-multi-dimensional-indexer-api": "1.1.0", "magento/module-inventory-product-alert": "1.1.0", "magento/module-inventory-requisition-list": "1.1.0", - "magento/module-inventory-reservation-cli": "1.1.0", - "magento/module-inventory-reservations": "1.1.0", + "magento/module-inventory-reservation-cli": "1.1.1", + "magento/module-inventory-reservations": "1.1.1", "magento/module-inventory-reservations-api": "1.1.0", - "magento/module-inventory-sales": "1.1.0", + "magento/module-inventory-sales": "1.1.1", "magento/module-inventory-sales-admin-ui": "1.1.0", "magento/module-inventory-sales-api": "1.1.0", "magento/module-inventory-sales-frontend-ui": "1.1.0", "magento/module-inventory-setup-fixture-generator": "1.1.0", - "magento/module-inventory-shipping": "1.1.0", + "magento/module-inventory-shipping": "1.1.1", "magento/module-inventory-shipping-admin-ui": "1.1.0", "magento/module-inventory-source-deduction-api": "1.1.0", "magento/module-inventory-source-selection": "1.1.0", - "magento/module-inventory-source-selection-api": "1.3.0" + "magento/module-inventory-source-selection-api": "1.3.1", + "magento/module-inventory-visual-merchandiser": "1.0.0" }, "type": "metapackage", "description": "Metapackage with Magento Inventory modules for simple installation" @@ -5228,11 +5307,11 @@ }, { "name": "magento/magento2-base", - "version": "2.4.0", + "version": "2.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/magento2-base/magento-magento2-base-2.4.0.0.zip", - "shasum": "c3244337e2d0f20022766749ea6e02c509e33255" + "url": "https://repo.magento.com/archives/magento/magento2-base/magento-magento2-base-2.4.1.0.zip", + "shasum": "2e62201dde82607daa5a9d56db9bea3e5535f93d" }, "require": { "composer/composer": "^1.9", @@ -5285,27 +5364,29 @@ }, "type": "magento2-component", "extra": { + "chmod": [ + { + "mask": "0755", + "path": "bin/magento" + } + ], "component_paths": { - "trentrichardson/jquery-timepicker-addon": "lib/web/jquery/jquery-ui-timepicker-addon.js", + "blueimp/jquery-file-upload": "lib/web/jquery/fileUploader", "components/jquery": [ "lib/web/jquery.js", "lib/web/jquery/jquery.min.js", "lib/web/jquery/jquery-migrate.js" ], - "blueimp/jquery-file-upload": "lib/web/jquery/fileUploader", "components/jqueryui": "lib/web/jquery/jquery-ui.js", - "twbs/bootstrap": "lib/web/jquery/jquery.tabs.js", - "tinymce/tinymce": "lib/web/tiny_mce_4" + "tinymce/tinymce": "lib/web/tiny_mce_4", + "trentrichardson/jquery-timepicker-addon": "lib/web/jquery/jquery-ui-timepicker-addon.js", + "twbs/bootstrap": "lib/web/jquery/jquery.tabs.js" }, "map": [ [ ".editorconfig", ".editorconfig" ], - [ - ".github", - ".github" - ], [ ".htaccess", ".htaccess" @@ -5594,14 +5675,14 @@ "lib/web/images", "lib/web/images" ], - [ - "lib/web/jquery.js", - "lib/web/jquery.js" - ], [ "lib/web/jquery", "lib/web/jquery" ], + [ + "lib/web/jquery.js", + "lib/web/jquery.js" + ], [ "lib/web/knockoutjs", "lib/web/knockoutjs" @@ -5738,14 +5819,14 @@ "pub/opt", "pub/opt" ], - [ - "pub/static.php", - "pub/static.php" - ], [ "pub/static/.htaccess", "pub/static/.htaccess" ], + [ + "pub/static.php", + "pub/static.php" + ], [ "setup", "setup" @@ -5758,12 +5839,6 @@ "vendor/.htaccess", "vendor/.htaccess" ] - ], - "chmod": [ - { - "mask": "0755", - "path": "bin/magento" - } ] }, "license": [ @@ -5774,11 +5849,11 @@ }, { "name": "magento/magento2-ee-base", - "version": "2.4.0", + "version": "2.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/magento2-ee-base/magento-magento2-ee-base-2.4.0.0.zip", - "shasum": "2374e3f9c0399133e54428854d61e079ed36fe97" + "url": "https://repo.magento.com/archives/magento/magento2-ee-base/magento-magento2-ee-base-2.4.1.0.zip", + "shasum": "fe407d88bfddeae3eea2994fcc8d5389ca553bc5" }, "require": { "composer/composer": "^1.9", @@ -5823,11 +5898,13 @@ }, "type": "magento2-component", "extra": { + "chmod": [ + { + "mask": "0755", + "path": "bin/magento" + } + ], "map": [ - [ - ".github", - ".github" - ], [ "LICENSE_EE.txt", "LICENSE_EE.txt" @@ -5880,12 +5957,6 @@ "setup", "setup" ] - ], - "chmod": [ - { - "mask": "0755", - "path": "bin/magento" - } ] }, "license": [ @@ -5895,11 +5966,11 @@ }, { "name": "magento/module-admin-analytics", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-admin-analytics/magento-module-admin-analytics-100.4.0.0.zip", - "shasum": "bf83acd2288effd433438d20b38bdeec49ac8bdd" + "url": "https://repo.magento.com/archives/magento/module-admin-analytics/magento-module-admin-analytics-100.4.1.0.zip", + "shasum": "c7d3d0f138c18f00482f0af3a75dcd6c3de277ed" }, "require": { "magento/framework": "103.0.*", @@ -5926,11 +5997,11 @@ }, { "name": "magento/module-admin-gws", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-admin-gws/magento-module-admin-gws-100.4.0.0.zip", - "shasum": "ea598334db44200163a44051b1c20593120cda06" + "url": "https://repo.magento.com/archives/magento/module-admin-gws/magento-module-admin-gws-100.4.1.0.zip", + "shasum": "e5f6c30da8d2298870a483e42272255f8760f8c4" }, "require": { "magento/framework": "103.0.*", @@ -5970,6 +6041,34 @@ ], "description": "N/A" }, + { + "name": "magento/module-admin-gws-configurable-product", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-admin-gws-configurable-product/magento-module-admin-gws-configurable-product-100.4.0.0.zip", + "shasum": "e815b10dbc7875c6c8b2c2af151db6bdcae96f89" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-admin-gws": "100.4.*", + "magento/module-configurable-product": "100.4.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\AdminGwsConfigurableProduct\\": "" + } + }, + "license": [ + "proprietary" + ], + "description": "N/A" + }, { "name": "magento/module-admin-gws-staging", "version": "100.4.0", @@ -6034,15 +6133,15 @@ }, { "name": "magento/module-adobe-ims", - "version": "1.1.0", + "version": "2.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-ims/magento-module-adobe-ims-1.1.0.0.zip", - "shasum": "17147174448ab48ef5119d70c2a1f9e12e64b2d8" + "url": "https://repo.magento.com/archives/magento/module-adobe-ims/magento-module-adobe-ims-2.1.0.0.zip", + "shasum": "90fa1d2e45978e2a5e023293f1f3ba6820be7f65" }, "require": { "magento/framework": "*", - "magento/module-adobe-ims-api": "2.0.*", + "magento/module-adobe-ims-api": "2.1.*", "magento/module-authorization": "*", "magento/module-backend": "*", "magento/module-config": "*", @@ -6066,11 +6165,11 @@ }, { "name": "magento/module-adobe-ims-api", - "version": "2.0.0", + "version": "2.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-ims-api/magento-module-adobe-ims-api-2.0.0.0.zip", - "shasum": "b73c31968fecdcb6bf28fb19731709e2108acb30" + "url": "https://repo.magento.com/archives/magento/module-adobe-ims-api/magento-module-adobe-ims-api-2.1.0.0.zip", + "shasum": "d2d6efb45a10cecb2c6370d15d42b1139a314b81" }, "require": { "magento/framework": "*", @@ -6093,16 +6192,16 @@ }, { "name": "magento/module-adobe-stock-admin-ui", - "version": "1.1.0", + "version": "1.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-admin-ui/magento-module-adobe-stock-admin-ui-1.1.0.0.zip", - "shasum": "dabbf54b359fe7fb144f4f2efa49a6eacc9da981" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-admin-ui/magento-module-adobe-stock-admin-ui-1.2.0.0.zip", + "shasum": "23f516262484ee476eef26e8eec3b42da0745276" }, "require": { "magento/framework": "*", - "magento/module-adobe-ims-api": "2.0.*", - "magento/module-adobe-stock-client-api": "1.1.*", + "magento/module-adobe-ims-api": "2.1.*", + "magento/module-adobe-stock-client-api": "2.0.*", "magento/module-backend": "*", "magento/module-config": "*", "php": "~7.3.0||~7.4.0" @@ -6127,16 +6226,16 @@ }, { "name": "magento/module-adobe-stock-asset", - "version": "1.1.0", + "version": "1.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-asset/magento-module-adobe-stock-asset-1.1.0.0.zip", - "shasum": "e3e51bdc87ff8e5904a31aeed2b8b7d1d0f82344" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-asset/magento-module-adobe-stock-asset-1.2.0.0.zip", + "shasum": "7f6f041099cc7972fbaa589ef979311db743785f" }, "require": { "magento/framework": "*", - "magento/module-adobe-stock-asset-api": "1.1.*", - "magento/module-adobe-stock-client-api": "1.1.*", + "magento/module-adobe-stock-asset-api": "1.2.*", + "magento/module-adobe-stock-client-api": "2.0.*", "magento/module-config": "*", "magento/module-media-gallery": "*", "magento/module-media-gallery-api": "*", @@ -6159,11 +6258,11 @@ }, { "name": "magento/module-adobe-stock-asset-api", - "version": "1.1.0", + "version": "1.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-asset-api/magento-module-adobe-stock-asset-api-1.1.0.0.zip", - "shasum": "9c7d33acaf9e049b06d568fe6480a867ff57e251" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-asset-api/magento-module-adobe-stock-asset-api-1.2.0.0.zip", + "shasum": "9f9cd8863ffbbd3f16debf9be7d78f58f03f0e5d" }, "require": { "magento/framework": "*", @@ -6186,17 +6285,17 @@ }, { "name": "magento/module-adobe-stock-client", - "version": "1.1.0", + "version": "1.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-client/magento-module-adobe-stock-client-1.1.0.0.zip", - "shasum": "cc1d94f91106f98e08b5938a66a1b8de57679b49" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-client/magento-module-adobe-stock-client-1.2.0.0.zip", + "shasum": "dc90ad4a134df1d4afd6afe80c0882e3287e90d2" }, "require": { "astock/stock-api-libphp": "^1.1.2", "magento/framework": "*", - "magento/module-adobe-ims-api": "2.0.*", - "magento/module-adobe-stock-client-api": "1.1.*", + "magento/module-adobe-ims-api": "2.1.*", + "magento/module-adobe-stock-client-api": "2.0.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -6216,11 +6315,11 @@ }, { "name": "magento/module-adobe-stock-client-api", - "version": "1.1.0", + "version": "2.0.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-client-api/magento-module-adobe-stock-client-api-1.1.0.0.zip", - "shasum": "e1e986652ff89e41824d0546a8947925d033efda" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-client-api/magento-module-adobe-stock-client-api-2.0.0.0.zip", + "shasum": "37eb6691c4c7926a0293661a3a4a6f021b2d8e9c" }, "require": { "magento/framework": "*", @@ -6243,19 +6342,19 @@ }, { "name": "magento/module-adobe-stock-image", - "version": "1.1.0", + "version": "1.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image/magento-module-adobe-stock-image-1.1.0.0.zip", - "shasum": "fcbc4468a86d3fc84c8bdbb9f75d481075bb7093" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image/magento-module-adobe-stock-image-1.2.0.0.zip", + "shasum": "364603aa22c544b3e40e4d3f8f7edde6d487e068" }, "require": { "magento/framework": "*", - "magento/module-adobe-stock-asset-api": "1.1.*", - "magento/module-adobe-stock-client-api": "1.1.*", - "magento/module-adobe-stock-image-api": "1.1.*", - "magento/module-cms": "*", + "magento/module-adobe-stock-asset-api": "1.2.*", + "magento/module-adobe-stock-client-api": "2.0.*", + "magento/module-adobe-stock-image-api": "1.2.*", "magento/module-media-gallery-api": "*", + "magento/module-media-gallery-synchronization-api": "*", "php": "~7.3.0||~7.4.0" }, "suggest": { @@ -6278,21 +6377,22 @@ }, { "name": "magento/module-adobe-stock-image-admin-ui", - "version": "1.1.0", + "version": "1.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image-admin-ui/magento-module-adobe-stock-image-admin-ui-1.1.0.0.zip", - "shasum": "7e10f45d9cc42b79bd60fe8269182d2df87318b7" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image-admin-ui/magento-module-adobe-stock-image-admin-ui-1.2.0.0.zip", + "shasum": "9009bda4867a288317434ef130ee325c182bceb7" }, "require": { "magento/framework": "*", - "magento/module-adobe-ims": "1.1.*", - "magento/module-adobe-ims-api": "2.0.*", - "magento/module-adobe-stock-asset-api": "1.1.*", - "magento/module-adobe-stock-client-api": "1.1.*", - "magento/module-adobe-stock-image-api": "1.1.*", + "magento/module-adobe-ims": "2.1.*", + "magento/module-adobe-ims-api": "2.1.*", + "magento/module-adobe-stock-asset-api": "1.2.*", + "magento/module-adobe-stock-client-api": "2.0.*", + "magento/module-adobe-stock-image-api": "1.2.*", "magento/module-backend": "*", - "magento/module-media-gallery-ui": "1.0.*", + "magento/module-media-gallery-api": "*", + "magento/module-media-gallery-ui": "*", "magento/module-ui": "*", "php": "~7.3.0||~7.4.0" }, @@ -6316,11 +6416,11 @@ }, { "name": "magento/module-adobe-stock-image-api", - "version": "1.1.0", + "version": "1.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image-api/magento-module-adobe-stock-image-api-1.1.0.0.zip", - "shasum": "f0731af35a21ca09d51750741413da0bd56e43d9" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image-api/magento-module-adobe-stock-image-api-1.2.0.0.zip", + "shasum": "b6a894607df2d38446dde2efe928483d1ce058cd" }, "require": { "magento/framework": "*", @@ -6373,11 +6473,11 @@ }, { "name": "magento/module-advanced-checkout", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-advanced-checkout/magento-module-advanced-checkout-100.4.0.0.zip", - "shasum": "4f91e4a7a9e7af31d6ed963fd6405de616a9e315" + "url": "https://repo.magento.com/archives/magento/module-advanced-checkout/magento-module-advanced-checkout-100.4.1.0.zip", + "shasum": "2f0210d5ce31e881e9c02700f494099096da682c" }, "require": { "magento/framework": "103.0.*", @@ -6418,11 +6518,11 @@ }, { "name": "magento/module-advanced-pricing-import-export", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-advanced-pricing-import-export/magento-module-advanced-pricing-import-export-100.4.0.0.zip", - "shasum": "1e17693cbf4b71688c353e57ef1371e9d194fd7a" + "url": "https://repo.magento.com/archives/magento/module-advanced-pricing-import-export/magento-module-advanced-pricing-import-export-100.4.1.0.zip", + "shasum": "507279ac2b39e9f8c9e95e92d7dcf0d6095aeee3" }, "require": { "magento/framework": "103.0.*", @@ -6610,11 +6710,11 @@ }, { "name": "magento/module-analytics", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-analytics/magento-module-analytics-100.4.0.0.zip", - "shasum": "cc706617851941292d53867117785c101cd98ad4" + "url": "https://repo.magento.com/archives/magento/module-analytics/magento-module-analytics-100.4.1.0.zip", + "shasum": "0d8d21cd754db18be3ec001063c16a5d09d440ce" }, "require": { "magento/framework": "103.0.*", @@ -6641,11 +6741,11 @@ }, { "name": "magento/module-asynchronous-operations", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-asynchronous-operations/magento-module-asynchronous-operations-100.4.0.0.zip", - "shasum": "6a56ce8d20f38a832ceb558bc0f58a77905be22c" + "url": "https://repo.magento.com/archives/magento/module-asynchronous-operations/magento-module-asynchronous-operations-100.4.1.0.zip", + "shasum": "814fe86466644ab4542e5e0bbddd7a217d532b4f" }, "require": { "magento/framework": "103.0.*", @@ -6658,7 +6758,7 @@ }, "suggest": { "magento/module-admin-notification": "100.4.*", - "magento/module-logging": "101.2.*" + "magento/module-logging": "*" }, "type": "magento2-module", "autoload": { @@ -6677,11 +6777,11 @@ }, { "name": "magento/module-authorization", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-authorization/magento-module-authorization-100.4.0.0.zip", - "shasum": "6b0409ed55a82662097db7e35f20f7a13d57e30b" + "url": "https://repo.magento.com/archives/magento/module-authorization/magento-module-authorization-100.4.1.0.zip", + "shasum": "0b41ed63fdf10d5f9553c8a310d0499d65d3c39f" }, "require": { "magento/framework": "103.0.*", @@ -6705,11 +6805,11 @@ }, { "name": "magento/module-backend", - "version": "102.0.0", + "version": "102.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-backend/magento-module-backend-102.0.0.0.zip", - "shasum": "8a1bf66c5e6dd2279f99340145c2afb582fb986f" + "url": "https://repo.magento.com/archives/magento/module-backend/magento-module-backend-102.0.1.0.zip", + "shasum": "bbb52b121acd7107abc6e846fa3400283b5519c6" }, "require": { "magento/framework": "103.0.*", @@ -6751,11 +6851,11 @@ }, { "name": "magento/module-backup", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-backup/magento-module-backup-100.4.0.0.zip", - "shasum": "99f602843baf059c5e74ebf0c9344e2890faaff9" + "url": "https://repo.magento.com/archives/magento/module-backup/magento-module-backup-100.4.1.0.zip", + "shasum": "543a2dffcdc0e1fd4d9e7a2ae7b1979aa6d79fb7" }, "require": { "magento/framework": "103.0.*", @@ -6781,11 +6881,11 @@ }, { "name": "magento/module-banner", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-banner/magento-module-banner-101.2.0.0.zip", - "shasum": "a0b3afb158e2eac50158c6a221955164f7c72224" + "url": "https://repo.magento.com/archives/magento/module-banner/magento-module-banner-101.2.1.0.zip", + "shasum": "d53f82e0b9a4bb0bcadd46cc3373fa21ca4208fa" }, "require": { "magento/framework": "103.0.*", @@ -6847,21 +6947,21 @@ }, { "name": "magento/module-banner-page-builder", - "version": "2.0.0", + "version": "2.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-banner-page-builder/magento-module-banner-page-builder-2.0.0.0.zip", - "shasum": "9fb1f3b5352b29aa35320be269b7387503806a6c" + "url": "https://repo.magento.com/archives/magento/module-banner-page-builder/magento-module-banner-page-builder-2.1.0.0.zip", + "shasum": "7a3ea1ebf2b0d3ccbbfeb616aefea8c32fc1b2d6" }, "require": { - "magento/framework": "~103.0.0-beta2", - "magento/module-backend": "~102.0.0-beta2", - "magento/module-banner": "~101.2.0-beta2", - "magento/module-banner-customer-segment": "~100.4.0-beta2", + "magento/framework": "~103.0.1-alpha2", + "magento/module-backend": "~102.0.1-alpha2", + "magento/module-banner": "~101.2.1-alpha2", + "magento/module-banner-customer-segment": "~100.4.0", "magento/module-catalog-rule": "*", - "magento/module-customer-segment": "~102.1.0-beta2", - "magento/module-page-builder": "2.0.*", - "magento/module-sales-rule": "~101.2.0-beta2", + "magento/module-customer-segment": "~102.1.1-alpha2", + "magento/module-page-builder": "2.1.*", + "magento/module-sales-rule": "~101.2.1-alpha2", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -6880,16 +6980,16 @@ }, { "name": "magento/module-banner-page-builder-analytics", - "version": "1.4.0", + "version": "1.5.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-banner-page-builder-analytics/magento-module-banner-page-builder-analytics-1.4.0.0.zip", - "shasum": "d407267ec12210a8b86ea3b46e14e20c9a3e1f4f" + "url": "https://repo.magento.com/archives/magento/module-banner-page-builder-analytics/magento-module-banner-page-builder-analytics-1.5.0.0.zip", + "shasum": "7233768d087683328e444f9a438495f478967404" }, "require": { - "magento/framework": "~103.0.0-beta2", - "magento/module-banner": "~101.2.0-beta2", - "magento/module-page-builder-analytics": "1.4.*", + "magento/framework": "~103.0.1-alpha2", + "magento/module-banner": "~101.2.1-alpha2", + "magento/module-page-builder-analytics": "1.5.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -6908,11 +7008,11 @@ }, { "name": "magento/module-bundle", - "version": "101.0.0", + "version": "101.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-bundle/magento-module-bundle-101.0.0.0.zip", - "shasum": "6be53d368f6b64ecf49d6daabad98a08a0b0baf8" + "url": "https://repo.magento.com/archives/magento/module-bundle/magento-module-bundle-101.0.1.0.zip", + "shasum": "4dca663bbc5f6835c2e3a12e88d9416c9edfa206" }, "require": { "magento/framework": "103.0.*", @@ -6955,11 +7055,11 @@ }, { "name": "magento/module-bundle-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-bundle-graph-ql/magento-module-bundle-graph-ql-100.4.0.0.zip", - "shasum": "dace13e9da2be339bb5fd7dd6dea1184af1f1666" + "url": "https://repo.magento.com/archives/magento/module-bundle-graph-ql/magento-module-bundle-graph-ql-100.4.1.0.zip", + "shasum": "816cc1ec4c5f0cee0283fbeb9f4dba178917b0ec" }, "require": { "magento/framework": "103.0.*", @@ -6968,6 +7068,8 @@ "magento/module-catalog-graph-ql": "100.4.*", "magento/module-quote": "101.2.*", "magento/module-quote-graph-ql": "100.4.*", + "magento/module-sales": "103.0.*", + "magento/module-sales-graph-ql": "100.4.*", "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, @@ -7051,11 +7153,11 @@ }, { "name": "magento/module-bundle-staging", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-bundle-staging/magento-module-bundle-staging-100.4.0.0.zip", - "shasum": "8cd5da7d204f64e8719cce70d1cb88bb504ac71e" + "url": "https://repo.magento.com/archives/magento/module-bundle-staging/magento-module-bundle-staging-100.4.1.0.zip", + "shasum": "e9cee4b6238d932acdd90f91944ed7f6bc58a1ed" }, "require": { "magento/framework": "103.0.*", @@ -7111,17 +7213,18 @@ }, { "name": "magento/module-captcha", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-captcha/magento-module-captcha-100.4.0.0.zip", - "shasum": "e86d5696144577a7d7b9ba7c36ac435a1c4b02d1" + "url": "https://repo.magento.com/archives/magento/module-captcha/magento-module-captcha-100.4.1.0.zip", + "shasum": "38f7925b06310d50c87d062d53bbdc2fdc5920f5" }, "require": { "laminas/laminas-captcha": "^2.7.1", "laminas/laminas-db": "^2.8.2", "laminas/laminas-session": "^2.7.3", "magento/framework": "103.0.*", + "magento/module-authorization": "100.4.*", "magento/module-backend": "102.0.*", "magento/module-checkout": "100.4.*", "magento/module-customer": "103.0.*", @@ -7175,11 +7278,11 @@ }, { "name": "magento/module-catalog", - "version": "104.0.0", + "version": "104.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog/magento-module-catalog-104.0.0.0.zip", - "shasum": "36c1174284754b3fa992e5a832643af195ed7082" + "url": "https://repo.magento.com/archives/magento/module-catalog/magento-module-catalog-104.0.1.0.zip", + "shasum": "573c5c090fac813941027a797bc14d0690fd41a8" }, "require": { "magento/framework": "103.0.*", @@ -7295,11 +7398,11 @@ }, { "name": "magento/module-catalog-customer-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-customer-graph-ql/magento-module-catalog-customer-graph-ql-100.4.0.0.zip", - "shasum": "5ed7beed2acc812145f325baa646b7ca392d97ee" + "url": "https://repo.magento.com/archives/magento/module-catalog-customer-graph-ql/magento-module-catalog-customer-graph-ql-100.4.1.0.zip", + "shasum": "dddbec549a3a9546cf437cec95bf3a4909294d89" }, "require": { "magento/framework": "103.0.*", @@ -7326,11 +7429,11 @@ }, { "name": "magento/module-catalog-event", - "version": "101.1.0", + "version": "101.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-event/magento-module-catalog-event-101.1.0.0.zip", - "shasum": "aadf02b7f5bb81eaee6dfd5de71c8269ddae4501" + "url": "https://repo.magento.com/archives/magento/module-catalog-event/magento-module-catalog-event-101.1.1.0.zip", + "shasum": "1d2dc820537a2ea7effe8713a050f1fcde7c1e50" }, "require": { "magento/framework": "103.0.*", @@ -7362,11 +7465,11 @@ }, { "name": "magento/module-catalog-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-graph-ql/magento-module-catalog-graph-ql-100.4.0.0.zip", - "shasum": "e0171524c27ccfcabe0641e7e49f825eccf8a691" + "url": "https://repo.magento.com/archives/magento/module-catalog-graph-ql/magento-module-catalog-graph-ql-100.4.1.0.zip", + "shasum": "d17c9d14142d2723f3e57c9e5bde98a9f1b665aa" }, "require": { "magento/framework": "103.0.*", @@ -7375,12 +7478,12 @@ "magento/module-catalog-search": "102.0.*", "magento/module-eav": "102.1.*", "magento/module-eav-graph-ql": "100.4.*", + "magento/module-graph-ql": "100.4.*", "magento/module-search": "101.1.*", "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-graph-ql": "100.4.*", "magento/module-graph-ql-cache": "100.4.*", "magento/module-store-graph-ql": "100.4.*" }, @@ -7401,11 +7504,11 @@ }, { "name": "magento/module-catalog-import-export", - "version": "101.1.0", + "version": "101.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-import-export/magento-module-catalog-import-export-101.1.0.0.zip", - "shasum": "9588ebc86f35d4363ee0f0fd051de36ebbbda966" + "url": "https://repo.magento.com/archives/magento/module-catalog-import-export/magento-module-catalog-import-export-101.1.1.0.zip", + "shasum": "e6761f2f46b78234d49c8f251b1a29f485832928" }, "require": { "ext-ctype": "*", @@ -7471,11 +7574,11 @@ }, { "name": "magento/module-catalog-inventory", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-inventory/magento-module-catalog-inventory-100.4.0.0.zip", - "shasum": "660af2a2b58dc795e87d56abf4d25e63da3acd42" + "url": "https://repo.magento.com/archives/magento/module-catalog-inventory/magento-module-catalog-inventory-100.4.1.0.zip", + "shasum": "7736d83444b73dec7b0c5c6035739739013763bf" }, "require": { "magento/framework": "103.0.*", @@ -7569,16 +7672,16 @@ }, { "name": "magento/module-catalog-page-builder-analytics", - "version": "1.4.0", + "version": "1.5.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-page-builder-analytics/magento-module-catalog-page-builder-analytics-1.4.0.0.zip", - "shasum": "aacda66e19f77e2121cf9eaf87c814b297e5ed9f" + "url": "https://repo.magento.com/archives/magento/module-catalog-page-builder-analytics/magento-module-catalog-page-builder-analytics-1.5.0.0.zip", + "shasum": "190a16c88e509f2d8dcb0140cabe24905c941de7" }, "require": { - "magento/framework": "~103.0.0-beta2", - "magento/module-catalog": "~104.0.0-beta2", - "magento/module-page-builder-analytics": "1.4.*", + "magento/framework": "~103.0.1-alpha2", + "magento/module-catalog": "~104.0.1-alpha2", + "magento/module-page-builder-analytics": "1.5.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -7597,16 +7700,16 @@ }, { "name": "magento/module-catalog-page-builder-analytics-staging", - "version": "1.4.0", + "version": "1.5.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-page-builder-analytics-staging/magento-module-catalog-page-builder-analytics-staging-1.4.0.0.zip", - "shasum": "34b25ad4bbb390969c4901f3e905b21eb34936b1" + "url": "https://repo.magento.com/archives/magento/module-catalog-page-builder-analytics-staging/magento-module-catalog-page-builder-analytics-staging-1.5.0.0.zip", + "shasum": "30e208d8fac93a32ed5c47a0fb7d4c8e75b0c3ce" }, "require": { - "magento/framework": "~103.0.0-beta2", - "magento/module-catalog": "~104.0.0-beta2", - "magento/module-page-builder-analytics": "1.4.*", + "magento/framework": "~103.0.1-alpha2", + "magento/module-catalog": "~104.0.1-alpha2", + "magento/module-page-builder-analytics": "1.5.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -7625,11 +7728,11 @@ }, { "name": "magento/module-catalog-permissions", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-permissions/magento-module-catalog-permissions-100.4.0.0.zip", - "shasum": "59f38cd259334ef6284425104468fdd0fe9179dd" + "url": "https://repo.magento.com/archives/magento/module-catalog-permissions/magento-module-catalog-permissions-100.4.1.0.zip", + "shasum": "b1d519aca1261ffe98bcf6725392cbaf2fa12776" }, "require": { "magento/framework": "103.0.*", @@ -7661,13 +7764,45 @@ ], "description": "N/A" }, + { + "name": "magento/module-catalog-permissions-graph-ql", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-catalog-permissions-graph-ql/magento-module-catalog-permissions-graph-ql-100.4.0.0.zip", + "shasum": "dd522b4eb930ff984a52504e65e6f00a45328251" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-catalog": "104.0.*", + "magento/module-catalog-graph-ql": "100.4.*", + "magento/module-catalog-permissions": "100.4.*", + "magento/module-customer": "103.0.*", + "magento/module-graph-ql": "100.4.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\CatalogPermissionsGraphQl\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "N/A" + }, { "name": "magento/module-catalog-rule", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-rule/magento-module-catalog-rule-101.2.0.0.zip", - "shasum": "dff3d586a4b9b18fc9b493839cfc403c8138a22c" + "url": "https://repo.magento.com/archives/magento/module-catalog-rule/magento-module-catalog-rule-101.2.1.0.zip", + "shasum": "96be335eaf75ac296f745e4d09160748f06ce191" }, "require": { "magento/framework": "103.0.*", @@ -7765,11 +7900,11 @@ }, { "name": "magento/module-catalog-rule-staging", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-rule-staging/magento-module-catalog-rule-staging-100.4.0.0.zip", - "shasum": "e89179fd47b21fe2d0e1c662918e15938153764a" + "url": "https://repo.magento.com/archives/magento/module-catalog-rule-staging/magento-module-catalog-rule-staging-100.4.1.0.zip", + "shasum": "fd7f44506152c0b57399a7585915a8b2a8941ab2" }, "require": { "magento/framework": "103.0.*", @@ -7800,11 +7935,11 @@ }, { "name": "magento/module-catalog-search", - "version": "102.0.0", + "version": "102.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-search/magento-module-catalog-search-102.0.0.0.zip", - "shasum": "a9b74ae5689d0a81e6b33aa62858c6dba4926808" + "url": "https://repo.magento.com/archives/magento/module-catalog-search/magento-module-catalog-search-102.0.1.0.zip", + "shasum": "435a36afe5f8bfdbb0c81c68470a7c8859c7b55d" }, "require": { "magento/framework": "103.0.*", @@ -7841,11 +7976,11 @@ }, { "name": "magento/module-catalog-staging", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-staging/magento-module-catalog-staging-100.4.0.0.zip", - "shasum": "d449e80a4882bfecd9c9d761b77fae2061a19bb4" + "url": "https://repo.magento.com/archives/magento/module-catalog-staging/magento-module-catalog-staging-100.4.1.0.zip", + "shasum": "dc441a2d6e5610cdea5a5936b3bb1712ff78cb10" }, "require": { "lib-libxml": "*", @@ -7893,15 +8028,16 @@ }, { "name": "magento/module-catalog-staging-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-staging-graph-ql/magento-module-catalog-staging-graph-ql-100.4.0.0.zip", - "shasum": "f1538aa461154c8f4f8be5605a128d519bd43b73" + "url": "https://repo.magento.com/archives/magento/module-catalog-staging-graph-ql/magento-module-catalog-staging-graph-ql-100.4.1.0.zip", + "shasum": "3b55b3bd51530075b00ed415aeddd9e0385527d0" }, "require": { "magento/framework": "103.0.*", "magento/module-catalog-graph-ql": "100.4.*", + "magento/module-graph-ql": "100.4.*", "magento/module-staging": "101.2.*", "php": "~7.3.0||~7.4.0" }, @@ -7925,14 +8061,14 @@ }, { "name": "magento/module-catalog-staging-page-builder", - "version": "1.4.0", + "version": "1.5.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-staging-page-builder/magento-module-catalog-staging-page-builder-1.4.0.0.zip", - "shasum": "5191968cd3b5c94916547f3614eb949bbc59f27b" + "url": "https://repo.magento.com/archives/magento/module-catalog-staging-page-builder/magento-module-catalog-staging-page-builder-1.5.0.0.zip", + "shasum": "7bdc01d8c4a3a0fcbaada7e1321a69069debb03b" }, "require": { - "magento/framework": "~103.0.0-beta2", + "magento/framework": "~103.0.1-alpha2", "php": "~7.3.0||~7.4.0" }, "suggest": { @@ -7955,11 +8091,11 @@ }, { "name": "magento/module-catalog-url-rewrite", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-url-rewrite/magento-module-catalog-url-rewrite-100.4.0.0.zip", - "shasum": "dc06042f8b61a64a81b2660f504d414f5a026fa5" + "url": "https://repo.magento.com/archives/magento/module-catalog-url-rewrite/magento-module-catalog-url-rewrite-100.4.1.0.zip", + "shasum": "61f50535c4826e65d72af9823d48c7414c8b9237" }, "require": { "magento/framework": "103.0.*", @@ -8058,11 +8194,11 @@ }, { "name": "magento/module-catalog-widget", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-widget/magento-module-catalog-widget-100.4.0.0.zip", - "shasum": "6a998f268e7399f26f0f556428aed6e35d38053f" + "url": "https://repo.magento.com/archives/magento/module-catalog-widget/magento-module-catalog-widget-100.4.1.0.zip", + "shasum": "93d26be38f7e7ea94f4f716bcf7a5ff6874e867d" }, "require": { "magento/framework": "103.0.*", @@ -8094,14 +8230,15 @@ }, { "name": "magento/module-checkout", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-checkout/magento-module-checkout-100.4.0.0.zip", - "shasum": "e4e5025d992740cb726aec7f65e8dc27a3ad671c" + "url": "https://repo.magento.com/archives/magento/module-checkout/magento-module-checkout-100.4.1.0.zip", + "shasum": "2a5734afe062bdd1d2bcd75be1d3207600d4b1cd" }, "require": { "magento/framework": "103.0.*", + "magento/module-authorization": "100.4.*", "magento/module-captcha": "100.4.*", "magento/module-catalog": "104.0.*", "magento/module-catalog-inventory": "100.4.*", @@ -8300,11 +8437,11 @@ }, { "name": "magento/module-cms", - "version": "104.0.0", + "version": "104.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-cms/magento-module-cms-104.0.0.0.zip", - "shasum": "2e0c9a3eb8c7aa83a4e2856d1ccef89dc071fb63" + "url": "https://repo.magento.com/archives/magento/module-cms/magento-module-cms-104.0.1.0.zip", + "shasum": "1c5c8d11502dbac51f396a800318c300166d30a9" }, "require": { "magento/framework": "103.0.*", @@ -8374,16 +8511,16 @@ }, { "name": "magento/module-cms-page-builder-analytics", - "version": "1.4.0", + "version": "1.5.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-cms-page-builder-analytics/magento-module-cms-page-builder-analytics-1.4.0.0.zip", - "shasum": "d977e8e7d58502f70310f945c0e23f111d84014f" + "url": "https://repo.magento.com/archives/magento/module-cms-page-builder-analytics/magento-module-cms-page-builder-analytics-1.5.0.0.zip", + "shasum": "168b2c817e9a57c0de763dc6ed8405137338eafb" }, "require": { - "magento/framework": "~103.0.0-beta2", + "magento/framework": "~103.0.1-alpha2", "magento/module-cms": "*", - "magento/module-page-builder-analytics": "1.4.*", + "magento/module-page-builder-analytics": "1.5.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -8402,16 +8539,16 @@ }, { "name": "magento/module-cms-page-builder-analytics-staging", - "version": "1.4.0", + "version": "1.5.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-cms-page-builder-analytics-staging/magento-module-cms-page-builder-analytics-staging-1.4.0.0.zip", - "shasum": "e45a093e68832ef7a2e907df892eeea2f5464788" + "url": "https://repo.magento.com/archives/magento/module-cms-page-builder-analytics-staging/magento-module-cms-page-builder-analytics-staging-1.5.0.0.zip", + "shasum": "d59cdb07dce1b3528e9484fdbb3ecdbbc1cabe13" }, "require": { - "magento/framework": "~103.0.0-beta2", + "magento/framework": "~103.0.1-alpha2", "magento/module-cms": "*", - "magento/module-page-builder-analytics": "1.4.*", + "magento/module-page-builder-analytics": "1.5.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -8430,11 +8567,11 @@ }, { "name": "magento/module-cms-staging", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-cms-staging/magento-module-cms-staging-100.4.0.0.zip", - "shasum": "8cf9725b09615d01e974dc6c0d1ac4214d7409db" + "url": "https://repo.magento.com/archives/magento/module-cms-staging/magento-module-cms-staging-100.4.1.0.zip", + "shasum": "9835e79b60904a610c467698198c2db61db2e4a6" }, "require": { "magento/framework": "103.0.*", @@ -8461,11 +8598,11 @@ }, { "name": "magento/module-cms-url-rewrite", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-cms-url-rewrite/magento-module-cms-url-rewrite-100.4.0.0.zip", - "shasum": "19dcfaf8658f4f5c855fc4b290cdcad88199b809" + "url": "https://repo.magento.com/archives/magento/module-cms-url-rewrite/magento-module-cms-url-rewrite-100.4.1.0.zip", + "shasum": "7d0078ba3fc02de9414c2d21e2fa2c1b42694467" }, "require": { "magento/framework": "103.0.*", @@ -8525,11 +8662,11 @@ }, { "name": "magento/module-config", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-config/magento-module-config-101.2.0.0.zip", - "shasum": "2a4de22a1af83fee9531c09f4ddef93ed28a634a" + "url": "https://repo.magento.com/archives/magento/module-config/magento-module-config-101.2.1.0.zip", + "shasum": "05bb2df12fa2f13ba476a327a8a313394fa6743e" }, "require": { "magento/framework": "103.0.*", @@ -8592,11 +8729,11 @@ }, { "name": "magento/module-configurable-product", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-configurable-product/magento-module-configurable-product-100.4.0.0.zip", - "shasum": "bd9cd79cfce3fee88f4bc135a3b9872f5a6ab88a" + "url": "https://repo.magento.com/archives/magento/module-configurable-product/magento-module-configurable-product-100.4.1.0.zip", + "shasum": "5fd6c7ced2356129cc09e6837dc2d77c79d7e006" }, "require": { "magento/framework": "103.0.*", @@ -8639,17 +8776,18 @@ }, { "name": "magento/module-configurable-product-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-configurable-product-graph-ql/magento-module-configurable-product-graph-ql-100.4.0.0.zip", - "shasum": "f2f6f35eda676b7c2e923beb0d918bdb88856a7c" + "url": "https://repo.magento.com/archives/magento/module-configurable-product-graph-ql/magento-module-configurable-product-graph-ql-100.4.1.0.zip", + "shasum": "12c44fae9964a4f27926df978f688461075e52cf" }, "require": { "magento/framework": "103.0.*", "magento/module-catalog": "104.0.*", "magento/module-catalog-graph-ql": "100.4.*", "magento/module-configurable-product": "100.4.*", + "magento/module-graph-ql": "100.4.*", "magento/module-quote": "101.2.*", "magento/module-quote-graph-ql": "100.4.*", "php": "~7.3.0||~7.4.0" @@ -8739,11 +8877,11 @@ }, { "name": "magento/module-contact", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-contact/magento-module-contact-100.4.0.0.zip", - "shasum": "9ea0606355a83c45f3d225b3abe28e0780992402" + "url": "https://repo.magento.com/archives/magento/module-contact/magento-module-contact-100.4.1.0.zip", + "shasum": "d4c5baccc6de5a296a80a73d787126d137f1b2a4" }, "require": { "magento/framework": "103.0.*", @@ -8770,11 +8908,11 @@ }, { "name": "magento/module-cookie", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-cookie/magento-module-cookie-100.4.0.0.zip", - "shasum": "d2fde4538540900f60677db6eba33ecc9797a17b" + "url": "https://repo.magento.com/archives/magento/module-cookie/magento-module-cookie-100.4.1.0.zip", + "shasum": "4a912c43b535cfbcf758b7eb6a600220278f2c93" }, "require": { "magento/framework": "103.0.*", @@ -8801,11 +8939,11 @@ }, { "name": "magento/module-cron", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-cron/magento-module-cron-100.4.0.0.zip", - "shasum": "6afa4ea3198c535b5685fb3900a388cf85b0085a" + "url": "https://repo.magento.com/archives/magento/module-cron/magento-module-cron-100.4.1.0.zip", + "shasum": "ad1d4c544ba2d9d923ba5c9fe81f58fcfd67e4fa" }, "require": { "magento/framework": "103.0.*", @@ -8922,11 +9060,11 @@ }, { "name": "magento/module-customer", - "version": "103.0.0", + "version": "103.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-customer/magento-module-customer-103.0.0.0.zip", - "shasum": "f57f04a8edcb876fa2823aeabaee3875647c3fed" + "url": "https://repo.magento.com/archives/magento/module-customer/magento-module-customer-103.0.1.0.zip", + "shasum": "f1d77e157bf64730d8504eede550a62eac2fe6b6" }, "require": { "magento/framework": "103.0.*", @@ -9000,11 +9138,11 @@ }, { "name": "magento/module-customer-balance", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-customer-balance/magento-module-customer-balance-100.4.0.0.zip", - "shasum": "c7a24b7d3abbadb24636ac73d889613fb70702df" + "url": "https://repo.magento.com/archives/magento/module-customer-balance/magento-module-customer-balance-100.4.1.0.zip", + "shasum": "0484dafd3871f11c761ffd52ea77baf0d64061d0" }, "require": { "magento/framework": "103.0.*", @@ -9070,11 +9208,11 @@ }, { "name": "magento/module-customer-custom-attributes", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-customer-custom-attributes/magento-module-customer-custom-attributes-100.4.0.0.zip", - "shasum": "285bc69d5819719b0efc196cf887030339424c03" + "url": "https://repo.magento.com/archives/magento/module-customer-custom-attributes/magento-module-customer-custom-attributes-100.4.1.0.zip", + "shasum": "3103412f001f506d8247f60848ca42ce0c943a58" }, "require": { "magento/framework": "103.0.*", @@ -9175,11 +9313,11 @@ }, { "name": "magento/module-customer-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-customer-graph-ql/magento-module-customer-graph-ql-100.4.0.0.zip", - "shasum": "be17e25e7ac89f75e4c8b1f68a960f6f8e046bec" + "url": "https://repo.magento.com/archives/magento/module-customer-graph-ql/magento-module-customer-graph-ql-100.4.1.0.zip", + "shasum": "01eb382b847513213d6bcf859e540af748f47410" }, "require": { "magento/framework": "103.0.*", @@ -9210,11 +9348,11 @@ }, { "name": "magento/module-customer-import-export", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-customer-import-export/magento-module-customer-import-export-100.4.0.0.zip", - "shasum": "b038805e05c313e517211d2c61f06e5ba43f2db2" + "url": "https://repo.magento.com/archives/magento/module-customer-import-export/magento-module-customer-import-export-100.4.1.0.zip", + "shasum": "96b6fed38ea9965b4c73bed9484c0f18565d608b" }, "require": { "magento/framework": "103.0.*", @@ -9243,18 +9381,20 @@ }, { "name": "magento/module-customer-segment", - "version": "102.1.0", + "version": "102.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-customer-segment/magento-module-customer-segment-102.1.0.0.zip", - "shasum": "824b8667ac0d8d849d4a83ad9890dc04377b975f" + "url": "https://repo.magento.com/archives/magento/module-customer-segment/magento-module-customer-segment-102.1.1.0.zip", + "shasum": "99bed2eac0dcaf187b325704bd425350e8b0ceb2" }, "require": { "magento/framework": "103.0.*", + "magento/framework-bulk": "101.0.*", "magento/module-advanced-rule": "100.4.*", + "magento/module-asynchronous-operations": "100.4.*", + "magento/module-authorization": "100.4.*", "magento/module-backend": "102.0.*", "magento/module-catalog": "104.0.*", - "magento/module-catalog-rule": "101.2.*", "magento/module-config": "101.2.*", "magento/module-customer": "103.0.*", "magento/module-directory": "100.4.*", @@ -9286,11 +9426,11 @@ }, { "name": "magento/module-deploy", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-deploy/magento-module-deploy-100.4.0.0.zip", - "shasum": "a96d2ee89198e2c56aad0a660334dfb8d4a532bb" + "url": "https://repo.magento.com/archives/magento/module-deploy/magento-module-deploy-100.4.1.0.zip", + "shasum": "e3243986149cc97e12ab89d6453a84252f70223c" }, "require": { "magento/framework": "103.0.*", @@ -9318,11 +9458,11 @@ }, { "name": "magento/module-developer", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-developer/magento-module-developer-100.4.0.0.zip", - "shasum": "ecf9dda2e67a8d12b7e4872848b0034d6e421c1f" + "url": "https://repo.magento.com/archives/magento/module-developer/magento-module-developer-100.4.1.0.zip", + "shasum": "6df9bee93b7977dccaa72512e4b136a74993c3ef" }, "require": { "magento/framework": "103.0.*", @@ -9387,11 +9527,11 @@ }, { "name": "magento/module-directory", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-directory/magento-module-directory-100.4.0.0.zip", - "shasum": "236cd6cfed6e4edbbfb22035153c311768f4feef" + "url": "https://repo.magento.com/archives/magento/module-directory/magento-module-directory-100.4.1.0.zip", + "shasum": "a3e502a836af07e820b9b81dd62a79970442300a" }, "require": { "lib-libxml": "*", @@ -9448,11 +9588,11 @@ }, { "name": "magento/module-downloadable", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-downloadable/magento-module-downloadable-100.4.0.0.zip", - "shasum": "572dcd214f12c936161ca6a7d7a7e170087b0521" + "url": "https://repo.magento.com/archives/magento/module-downloadable/magento-module-downloadable-100.4.1.0.zip", + "shasum": "e8b3d64d3aa6851f7dab3401694109f01cfe8b1c" }, "require": { "magento/framework": "103.0.*", @@ -9494,11 +9634,11 @@ }, { "name": "magento/module-downloadable-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-downloadable-graph-ql/magento-module-downloadable-graph-ql-100.4.0.0.zip", - "shasum": "05469df18674e6a3d9564a789e48b2b9e4b1623e" + "url": "https://repo.magento.com/archives/magento/module-downloadable-graph-ql/magento-module-downloadable-graph-ql-100.4.1.0.zip", + "shasum": "cf287ee98ba85d490748fa7210f04f985cbfe2d1" }, "require": { "magento/framework": "103.0.*", @@ -9506,10 +9646,13 @@ "magento/module-downloadable": "100.4.*", "magento/module-quote": "101.2.*", "magento/module-quote-graph-ql": "100.4.*", + "magento/module-sales": "103.0.*", + "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-catalog-graph-ql": "100.4.*" + "magento/module-catalog-graph-ql": "100.4.*", + "magento/module-sales-graph-ql": "100.4.*" }, "type": "magento2-module", "autoload": { @@ -9594,11 +9737,11 @@ }, { "name": "magento/module-eav", - "version": "102.1.0", + "version": "102.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-eav/magento-module-eav-102.1.0.0.zip", - "shasum": "0d9cdb60c5f15afe85721bac2256cead89d07640" + "url": "https://repo.magento.com/archives/magento/module-eav/magento-module-eav-102.1.1.0.zip", + "shasum": "03b2b59ec72a4ae0840da7ad054282a3ee3b48f2" }, "require": { "magento/framework": "103.0.*", @@ -9657,11 +9800,11 @@ }, { "name": "magento/module-elasticsearch", - "version": "101.0.0", + "version": "101.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-elasticsearch/magento-module-elasticsearch-101.0.0.0.zip", - "shasum": "f6dfe5646a1011e7059daf54d0041c6e64e1a0c5" + "url": "https://repo.magento.com/archives/magento/module-elasticsearch/magento-module-elasticsearch-101.0.1.0.zip", + "shasum": "f495fe004d07b435ee750b983a70ca6cbaa3ebe7" }, "require": { "elasticsearch/elasticsearch": "~7.7.0", @@ -9696,11 +9839,11 @@ }, { "name": "magento/module-elasticsearch-6", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-elasticsearch-6/magento-module-elasticsearch-6-100.4.0.0.zip", - "shasum": "d67f6b116afd206098248c7b6945684e9ca2f22c" + "url": "https://repo.magento.com/archives/magento/module-elasticsearch-6/magento-module-elasticsearch-6-100.4.1.0.zip", + "shasum": "a00dfdb1aab3a49d1bf1ee3e356c61993e13ca6f" }, "require": { "elasticsearch/elasticsearch": "~7.7.0", @@ -9731,11 +9874,11 @@ }, { "name": "magento/module-elasticsearch-7", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-elasticsearch-7/magento-module-elasticsearch-7-100.4.0.0.zip", - "shasum": "bee1e7f5b15660414feba6dd5110df2c8b3f2fda" + "url": "https://repo.magento.com/archives/magento/module-elasticsearch-7/magento-module-elasticsearch-7-100.4.1.0.zip", + "shasum": "205981031bec3dd5084ec40298de75394abb60ba" }, "require": { "elasticsearch/elasticsearch": "~7.7.0", @@ -9802,11 +9945,11 @@ }, { "name": "magento/module-email", - "version": "101.1.0", + "version": "101.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-email/magento-module-email-101.1.0.0.zip", - "shasum": "7947b2ce88d2800162a697913c009fa48348f4a6" + "url": "https://repo.magento.com/archives/magento/module-email/magento-module-email-101.1.1.0.zip", + "shasum": "42887f4bd3c92634aa83c3dfeb110a2872bc0995" }, "require": { "magento/framework": "103.0.*", @@ -9923,11 +10066,11 @@ }, { "name": "magento/module-fedex", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-fedex/magento-module-fedex-100.4.0.0.zip", - "shasum": "63b17a564f337f88d7c3d1671ce5ba1457f3a8cd" + "url": "https://repo.magento.com/archives/magento/module-fedex/magento-module-fedex-100.4.1.0.zip", + "shasum": "43cfaafd20695314930c14213d26d4aa3a733faa" }, "require": { "lib-libxml": "*", @@ -9959,11 +10102,11 @@ }, { "name": "magento/module-gift-card", - "version": "101.3.0", + "version": "101.3.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-gift-card/magento-module-gift-card-101.3.0.0.zip", - "shasum": "caf1a58e578bb6ab1431fe18ed2cc5f435be3bc9" + "url": "https://repo.magento.com/archives/magento/module-gift-card/magento-module-gift-card-101.3.1.0.zip", + "shasum": "867e242cbe1fccea7eac95afc96f04312381de79" }, "require": { "magento/framework": "103.0.*", @@ -10008,11 +10151,11 @@ }, { "name": "magento/module-gift-card-account", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-gift-card-account/magento-module-gift-card-account-101.2.0.0.zip", - "shasum": "85a4695f10e9eec4d3c0653edec3404031aa23ef" + "url": "https://repo.magento.com/archives/magento/module-gift-card-account/magento-module-gift-card-account-101.2.1.0.zip", + "shasum": "8eea7101956214b0ae7eff6c5874a0f19a98ce24" }, "require": { "magento/framework": "103.0.*", @@ -10075,21 +10218,25 @@ }, { "name": "magento/module-gift-card-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-gift-card-graph-ql/magento-module-gift-card-graph-ql-100.4.0.0.zip", - "shasum": "e3cc389e69118c38d0769b8960431f4df24ab19e" + "url": "https://repo.magento.com/archives/magento/module-gift-card-graph-ql/magento-module-gift-card-graph-ql-100.4.1.0.zip", + "shasum": "b00febeb874c9bbe1f3c4d445fa59c6f8c05dd08" }, "require": { "magento/framework": "103.0.*", "magento/module-catalog": "104.0.*", "magento/module-gift-card": "101.3.*", + "magento/module-quote": "101.2.*", + "magento/module-quote-graph-ql": "100.4.*", + "magento/module-sales": "103.0.*", "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-catalog-graph-ql": "100.4.*" + "magento/module-catalog-graph-ql": "100.4.*", + "magento/module-sales-graph-ql": "100.4.*" }, "type": "magento2-module", "autoload": { @@ -10101,8 +10248,7 @@ } }, "license": [ - "OSL-3.0", - "AFL-3.0" + "proprietary" ], "description": "N/A" }, @@ -10205,6 +10351,37 @@ ], "description": "N/A" }, + { + "name": "magento/module-gift-message-graph-ql", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-gift-message-graph-ql/magento-module-gift-message-graph-ql-100.4.0.0.zip", + "shasum": "3657cead0c7c969fbc4e9b99d2d4fef72e0b6cf0" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-gift-message": "100.4.*", + "php": "~7.3.0||~7.4.0" + }, + "suggest": { + "magento/module-graph-ql": "100.4.*" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\GiftMessageGraphQl\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "N/A" + }, { "name": "magento/module-gift-message-staging", "version": "100.4.0", @@ -10239,11 +10416,11 @@ }, { "name": "magento/module-gift-registry", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-gift-registry/magento-module-gift-registry-101.2.0.0.zip", - "shasum": "835ce6e68a14e0f503c65d8ad6b42a08cebdb14f" + "url": "https://repo.magento.com/archives/magento/module-gift-registry/magento-module-gift-registry-101.2.1.0.zip", + "shasum": "97a7dbe5413917e8a3e63aed11e18393f76e7670" }, "require": { "magento/framework": "103.0.*", @@ -10321,6 +10498,39 @@ ], "description": "N/A" }, + { + "name": "magento/module-gift-wrapping-graph-ql", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-gift-wrapping-graph-ql/magento-module-gift-wrapping-graph-ql-100.4.0.0.zip", + "shasum": "66e875b451fd6b4868e044d80573c4df5692e3ad" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-gift-message": "100.4.*", + "magento/module-gift-wrapping": "101.2.*", + "magento/module-quote": "101.2.*", + "magento/module-quote-graph-ql": "100.4.*", + "magento/module-sales": "103.0.*", + "magento/module-store": "101.1.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\GiftWrappingGraphQl\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "N/A" + }, { "name": "magento/module-gift-wrapping-staging", "version": "100.4.0", @@ -10417,11 +10627,11 @@ }, { "name": "magento/module-google-optimizer", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-google-optimizer/magento-module-google-optimizer-100.4.0.0.zip", - "shasum": "e48c7b3eae7dea7b0ba2948c2a53320a839f32f5" + "url": "https://repo.magento.com/archives/magento/module-google-optimizer/magento-module-google-optimizer-100.4.1.0.zip", + "shasum": "704e95284b292b70c155feba5430c7b1121862a2" }, "require": { "magento/framework": "103.0.*", @@ -10482,11 +10692,11 @@ }, { "name": "magento/module-google-tag-manager", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-google-tag-manager/magento-module-google-tag-manager-100.4.0.0.zip", - "shasum": "5d40a0daa5fd88856e2a05dee830709e4e47512b" + "url": "https://repo.magento.com/archives/magento/module-google-tag-manager/magento-module-google-tag-manager-100.4.1.0.zip", + "shasum": "e8a79d02717fa96c6e6919245e6a3ac7378924ca" }, "require": { "magento/framework": "103.0.*", @@ -10522,20 +10732,20 @@ }, { "name": "magento/module-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-graph-ql/magento-module-graph-ql-100.4.0.0.zip", - "shasum": "1e55fb05d13c0368ce4b1cc60135155376de4763" + "url": "https://repo.magento.com/archives/magento/module-graph-ql/magento-module-graph-ql-100.4.1.0.zip", + "shasum": "a8634f6da7a37c9fbec98ce9af0d38aec0d79b76" }, "require": { "magento/framework": "103.0.*", "magento/module-eav": "102.1.*", + "magento/module-webapi": "100.4.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-graph-ql-cache": "100.4.*", - "magento/module-webapi": "100.4.*" + "magento/module-graph-ql-cache": "100.4.*" }, "type": "magento2-module", "autoload": { @@ -10645,11 +10855,11 @@ }, { "name": "magento/module-grouped-product", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-grouped-product/magento-module-grouped-product-100.4.0.0.zip", - "shasum": "25968382e595e0cc0a27b399a627abc1d65a2758" + "url": "https://repo.magento.com/archives/magento/module-grouped-product/magento-module-grouped-product-100.4.1.0.zip", + "shasum": "da1b6dc8680e006e552ce291889bfd4f1185023e" }, "require": { "magento/framework": "103.0.*", @@ -10688,11 +10898,11 @@ }, { "name": "magento/module-grouped-product-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-grouped-product-graph-ql/magento-module-grouped-product-graph-ql-100.4.0.0.zip", - "shasum": "a3e2e69ff935c33c140b86e4aa875b9fe4652edc" + "url": "https://repo.magento.com/archives/magento/module-grouped-product-graph-ql/magento-module-grouped-product-graph-ql-100.4.1.0.zip", + "shasum": "b3ab99fcaa83024d3e811960b5dd9d2dd9814fbc" }, "require": { "magento/framework": "103.0.*", @@ -10752,11 +10962,11 @@ }, { "name": "magento/module-import-export", - "version": "101.0.0", + "version": "101.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-import-export/magento-module-import-export-101.0.0.0.zip", - "shasum": "d6399fe4ee4e02292c64d470b072283b7fac9e0d" + "url": "https://repo.magento.com/archives/magento/module-import-export/magento-module-import-export-101.0.1.0.zip", + "shasum": "09c23354fa38a3e3efe9e8a8747cfcb23828b879" }, "require": { "ext-ctype": "*", @@ -10786,11 +10996,11 @@ }, { "name": "magento/module-indexer", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-indexer/magento-module-indexer-100.4.0.0.zip", - "shasum": "e301e2e47f054de057dcb4bb4e72dcdb28e36e65" + "url": "https://repo.magento.com/archives/magento/module-indexer/magento-module-indexer-100.4.1.0.zip", + "shasum": "fc3c7a58d2644ea12fb6bfe8fc871dedd5cda4c9" }, "require": { "magento/framework": "103.0.*", @@ -10848,11 +11058,11 @@ }, { "name": "magento/module-integration", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-integration/magento-module-integration-100.4.0.0.zip", - "shasum": "be468bb54a51e52bfe828ca0cb48e19293cda81b" + "url": "https://repo.magento.com/archives/magento/module-integration/magento-module-integration-100.4.1.0.zip", + "shasum": "b8d7f364be6908ccfc2dea0fc513e8763e579131" }, "require": { "magento/framework": "103.0.*", @@ -10882,11 +11092,11 @@ }, { "name": "magento/module-inventory", - "version": "1.1.0", + "version": "1.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory/magento-module-inventory-1.1.0.0.zip", - "shasum": "5109cf1b25101ab64c693799a424b9cf1e48234b" + "url": "https://repo.magento.com/archives/magento/module-inventory/magento-module-inventory-1.1.1.0.zip", + "shasum": "431857698e06daaf33a2beb2159d04d63de9816d" }, "require": { "magento/framework": "*", @@ -10910,11 +11120,11 @@ }, { "name": "magento/module-inventory-admin-ui", - "version": "1.1.0", + "version": "1.1.2", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-admin-ui/magento-module-inventory-admin-ui-1.1.0.0.zip", - "shasum": "b29fa8a4a1dc318a96ca1f07e7ae9d267d8685f0" + "url": "https://repo.magento.com/archives/magento/module-inventory-admin-ui/magento-module-inventory-admin-ui-1.1.2.0.zip", + "shasum": "af49d87f5d76980bc229e05432df986dc4a79931" }, "require": { "magento/framework": "*", @@ -11172,11 +11382,11 @@ }, { "name": "magento/module-inventory-catalog", - "version": "1.1.0", + "version": "1.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-catalog/magento-module-inventory-catalog-1.1.0.0.zip", - "shasum": "16633c4c505b3043dda41460c97f23772f223147" + "url": "https://repo.magento.com/archives/magento/module-inventory-catalog/magento-module-inventory-catalog-1.1.1.0.zip", + "shasum": "5f7b3d99861612627b0999246e097235932e1161" }, "require": { "magento/framework": "*", @@ -11212,11 +11422,11 @@ }, { "name": "magento/module-inventory-catalog-admin-ui", - "version": "1.1.0", + "version": "1.1.2", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-catalog-admin-ui/magento-module-inventory-catalog-admin-ui-1.1.0.0.zip", - "shasum": "e8af992a00280d2458aeaf671d66be93ab8a0611" + "url": "https://repo.magento.com/archives/magento/module-inventory-catalog-admin-ui/magento-module-inventory-catalog-admin-ui-1.1.2.0.zip", + "shasum": "8327eeca9aa27d0044ea5315f593a6af70fd1c2f" }, "require": { "magento/framework": "*", @@ -11788,11 +11998,11 @@ }, { "name": "magento/module-inventory-import-export", - "version": "1.1.0", + "version": "1.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-import-export/magento-module-inventory-import-export-1.1.0.0.zip", - "shasum": "5d72aada4e3d05ecf99733260c1a99d5c14a6849" + "url": "https://repo.magento.com/archives/magento/module-inventory-import-export/magento-module-inventory-import-export-1.1.1.0.zip", + "shasum": "b25f146acdf7dd718499b01b863c3d418aa7a2f1" }, "require": { "magento/framework": "*", @@ -11824,11 +12034,11 @@ }, { "name": "magento/module-inventory-in-store-pickup", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-in-store-pickup/magento-module-inventory-in-store-pickup-1.0.0.0.zip", - "shasum": "303ed46a86984384d8f24c78f76031fb965cc13f" + "url": "https://repo.magento.com/archives/magento/module-inventory-in-store-pickup/magento-module-inventory-in-store-pickup-1.0.1.0.zip", + "shasum": "5f45ecc169e80d329e4206881184eb4b27270039" }, "require": { "magento/framework": "*", @@ -11859,11 +12069,11 @@ }, { "name": "magento/module-inventory-in-store-pickup-admin-ui", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-in-store-pickup-admin-ui/magento-module-inventory-in-store-pickup-admin-ui-1.0.0.0.zip", - "shasum": "2c33271b20b1ee5e3f58175de64f978975c3e89d" + "url": "https://repo.magento.com/archives/magento/module-inventory-in-store-pickup-admin-ui/magento-module-inventory-in-store-pickup-admin-ui-1.0.1.0.zip", + "shasum": "3e2daff9b30770102bca878473bbb7b38a9b3451" }, "require": { "magento/framework": "*", @@ -11919,11 +12129,11 @@ }, { "name": "magento/module-inventory-in-store-pickup-frontend", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-in-store-pickup-frontend/magento-module-inventory-in-store-pickup-frontend-1.0.0.0.zip", - "shasum": "457dc03470e7aa12062e59e90d4936490a691b61" + "url": "https://repo.magento.com/archives/magento/module-inventory-in-store-pickup-frontend/magento-module-inventory-in-store-pickup-frontend-1.0.1.0.zip", + "shasum": "59bd37f5111dc4884572f4310b6042ad7bd5bd28" }, "require": { "magento/framework": "*", @@ -12329,11 +12539,11 @@ }, { "name": "magento/module-inventory-low-quantity-notification", - "version": "1.1.0", + "version": "1.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-low-quantity-notification/magento-module-inventory-low-quantity-notification-1.1.0.0.zip", - "shasum": "245640a404b8e5dd7e4d1a77a917d12aade61d16" + "url": "https://repo.magento.com/archives/magento/module-inventory-low-quantity-notification/magento-module-inventory-low-quantity-notification-1.1.1.0.zip", + "shasum": "4ca2aec356fe6d3d9c03b5433912b0de558713c1" }, "require": { "magento/framework": "*", @@ -12365,11 +12575,11 @@ }, { "name": "magento/module-inventory-low-quantity-notification-admin-ui", - "version": "1.1.0", + "version": "1.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-low-quantity-notification-admin-ui/magento-module-inventory-low-quantity-notification-admin-ui-1.1.0.0.zip", - "shasum": "d4e5c2c08203a39d981e4ad4f1f20c718f2dcefb" + "url": "https://repo.magento.com/archives/magento/module-inventory-low-quantity-notification-admin-ui/magento-module-inventory-low-quantity-notification-admin-ui-1.1.1.0.zip", + "shasum": "4ff086bea7b4aea18a6bffe413b433a65e0d364a" }, "require": { "magento/framework": "*", @@ -12523,11 +12733,11 @@ }, { "name": "magento/module-inventory-reservation-cli", - "version": "1.1.0", + "version": "1.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-reservation-cli/magento-module-inventory-reservation-cli-1.1.0.0.zip", - "shasum": "4bce06cb6a0d3e9a6bc877737980f7c71797af5c" + "url": "https://repo.magento.com/archives/magento/module-inventory-reservation-cli/magento-module-inventory-reservation-cli-1.1.1.0.zip", + "shasum": "c1f5c90b878bd6d751d4ddd1395f108626892415" }, "require": { "magento/framework": "*", @@ -12555,11 +12765,11 @@ }, { "name": "magento/module-inventory-reservations", - "version": "1.1.0", + "version": "1.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-reservations/magento-module-inventory-reservations-1.1.0.0.zip", - "shasum": "fcaa8a85a3881a0b03e521ce5e04cd4018faa046" + "url": "https://repo.magento.com/archives/magento/module-inventory-reservations/magento-module-inventory-reservations-1.1.1.0.zip", + "shasum": "d6bfb7c8b5929faa55c09fad0b4ba2fda74a5860" }, "require": { "magento/framework": "*", @@ -12610,11 +12820,11 @@ }, { "name": "magento/module-inventory-sales", - "version": "1.1.0", + "version": "1.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-sales/magento-module-inventory-sales-1.1.0.0.zip", - "shasum": "0ee4c05493a210473d327cbf9b922df787d23a10" + "url": "https://repo.magento.com/archives/magento/module-inventory-sales/magento-module-inventory-sales-1.1.1.0.zip", + "shasum": "0fd6213eea798b0b15d0df9dcd741ba4133b2809" }, "require": { "magento/framework": "*", @@ -12779,11 +12989,11 @@ }, { "name": "magento/module-inventory-shipping", - "version": "1.1.0", + "version": "1.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-shipping/magento-module-inventory-shipping-1.1.0.0.zip", - "shasum": "1102bd299e0ce31366baa24e2f32738ba69b3d0a" + "url": "https://repo.magento.com/archives/magento/module-inventory-shipping/magento-module-inventory-shipping-1.1.1.0.zip", + "shasum": "002159ce58342e8f786cd4c2c809c3fe743bf874" }, "require": { "magento/framework": "*", @@ -12908,11 +13118,11 @@ }, { "name": "magento/module-inventory-source-selection-api", - "version": "1.3.0", + "version": "1.3.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-source-selection-api/magento-module-inventory-source-selection-api-1.3.0.0.zip", - "shasum": "c074fbdfa96de014265c7b3419a854854884dc47" + "url": "https://repo.magento.com/archives/magento/module-inventory-source-selection-api/magento-module-inventory-source-selection-api-1.3.1.0.zip", + "shasum": "c7bd51bb40f2ec0840f3f77a93fe76279f0e528c" }, "require": { "magento/framework": "*", @@ -12937,6 +13147,46 @@ ], "description": "N/A" }, + { + "name": "magento/module-inventory-visual-merchandiser", + "version": "1.0.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-inventory-visual-merchandiser/magento-module-inventory-visual-merchandiser-1.0.0.0.zip", + "shasum": "16530dfa034151b341658d41f5baa7e37411b669" + }, + "require": { + "magento/framework": "*", + "magento/module-catalog": "*", + "magento/module-inventory": "1.1.*", + "magento/module-inventory-catalog-api": "1.2.*", + "magento/module-inventory-indexer": "2.0.*", + "magento/module-inventory-sales-api": "1.1.*", + "magento/module-store": "*", + "php": "~7.3.0||~7.4.0" + }, + "require-dev": { + "magento/module-inventory-api": "*", + "magento/module-inventory-configuration-api": "*" + }, + "suggest": { + "magento/module-visual-merchandiser": "*" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\InventoryVisualMerchandiser\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "N/A" + }, { "name": "magento/module-invitation", "version": "100.4.0", @@ -12977,11 +13227,11 @@ }, { "name": "magento/module-layered-navigation", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-layered-navigation/magento-module-layered-navigation-100.4.0.0.zip", - "shasum": "dbbeec3773fcd21cb868d39d6689ae1696572083" + "url": "https://repo.magento.com/archives/magento/module-layered-navigation/magento-module-layered-navigation-100.4.1.0.zip", + "shasum": "92087b1618edd369f7240b61b0964f2798bc8e20" }, "require": { "magento/framework": "103.0.*", @@ -13035,11 +13285,11 @@ }, { "name": "magento/module-logging", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-logging/magento-module-logging-101.2.0.0.zip", - "shasum": "a33c9ecdb65d56ebefec64de32f7a51887a921a6" + "url": "https://repo.magento.com/archives/magento/module-logging/magento-module-logging-101.2.1.0.zip", + "shasum": "3f8bc83719b7ada2e7a18394907184e45e08331a" }, "require": { "magento/framework": "103.0.*", @@ -13069,14 +13319,15 @@ }, { "name": "magento/module-login-as-customer", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-login-as-customer/magento-module-login-as-customer-100.4.0.0.zip", - "shasum": "72a3d2d69cca982c11f47f8e128426e8e791a432" + "url": "https://repo.magento.com/archives/magento/module-login-as-customer/magento-module-login-as-customer-100.4.1.0.zip", + "shasum": "ed1916a23ce7e593a2b2493a1a7d32580bf21ad0" }, "require": { "magento/framework": "103.0.*", + "magento/module-backend": "102.0.*", "magento/module-customer": "103.0.*", "magento/module-login-as-customer-api": "100.4.*", "php": "~7.3.0||~7.4.0" @@ -13101,11 +13352,11 @@ }, { "name": "magento/module-login-as-customer-admin-ui", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-login-as-customer-admin-ui/magento-module-login-as-customer-admin-ui-100.4.0.0.zip", - "shasum": "49fc4007d1407b82fa701c4633b0fb5e1edd24ac" + "url": "https://repo.magento.com/archives/magento/module-login-as-customer-admin-ui/magento-module-login-as-customer-admin-ui-100.4.1.0.zip", + "shasum": "ca449e85a8e0a9a0c92cd51aa0f790e39202f305" }, "require": { "magento/framework": "103.0.*", @@ -13113,6 +13364,7 @@ "magento/module-customer": "103.0.*", "magento/module-login-as-customer-api": "100.4.*", "magento/module-login-as-customer-frontend-ui": "100.4.*", + "magento/module-sales": "103.0.*", "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, @@ -13135,11 +13387,11 @@ }, { "name": "magento/module-login-as-customer-api", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-login-as-customer-api/magento-module-login-as-customer-api-100.4.0.0.zip", - "shasum": "41a46864df031407d7c977369f8c0ecdc5e421b0" + "url": "https://repo.magento.com/archives/magento/module-login-as-customer-api/magento-module-login-as-customer-api-100.4.1.0.zip", + "shasum": "4196200cf12a2419ca4145790997bcfbe9eb2ec2" }, "require": { "magento/framework": "103.0.*", @@ -13161,12 +13413,46 @@ "description": "Allow for admin to enter a customer account" }, { - "name": "magento/module-login-as-customer-frontend-ui", + "name": "magento/module-login-as-customer-assistance", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-login-as-customer-frontend-ui/magento-module-login-as-customer-frontend-ui-100.4.0.0.zip", - "shasum": "8fb328e705ce499ecd13d660a070f2bc46f90d93" + "url": "https://repo.magento.com/archives/magento/module-login-as-customer-assistance/magento-module-login-as-customer-assistance-100.4.0.0.zip", + "shasum": "d1983cd39e2477e2193b1394d611009c0885fcac" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-backend": "102.0.*", + "magento/module-customer": "103.0.*", + "magento/module-login-as-customer": "100.4.*", + "magento/module-login-as-customer-api": "100.4.*", + "magento/module-store": "101.1.*", + "php": "~7.3.0||~7.4.0" + }, + "suggest": { + "magento/module-login-as-customer-admin-ui": "100.4.*" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\LoginAsCustomerAssistance\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ] + }, + { + "name": "magento/module-login-as-customer-frontend-ui", + "version": "100.4.1", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-login-as-customer-frontend-ui/magento-module-login-as-customer-frontend-ui-100.4.1.0.zip", + "shasum": "ed163897b44a78ea346e2387d66018e075a7d337" }, "require": { "magento/framework": "103.0.*", @@ -13225,11 +13511,11 @@ }, { "name": "magento/module-login-as-customer-logging", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-login-as-customer-logging/magento-module-login-as-customer-logging-100.4.0.0.zip", - "shasum": "deab861519726fd3cfa09ff08e59aa0372c7f551" + "url": "https://repo.magento.com/archives/magento/module-login-as-customer-logging/magento-module-login-as-customer-logging-100.4.1.0.zip", + "shasum": "6cd9c65f775901657ce0d2e3ce54edb293f4f602" }, "require": { "magento/framework": "103.0.*", @@ -13259,15 +13545,15 @@ }, { "name": "magento/module-login-as-customer-page-cache", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-login-as-customer-page-cache/magento-module-login-as-customer-page-cache-100.4.0.0.zip", - "shasum": "986e4679536ee24a8ea50d508d04ff8455109c03" + "url": "https://repo.magento.com/archives/magento/module-login-as-customer-page-cache/magento-module-login-as-customer-page-cache-100.4.1.0.zip", + "shasum": "b817b36aa7f9ef8eb92f6ef5efb4bd571de3ef64" }, "require": { "magento/framework": "103.0.*", - "magento/module-customer": "103.0.*", + "magento/module-login-as-customer-api": "100.4.*", "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, @@ -13322,16 +13608,16 @@ }, { "name": "magento/module-login-as-customer-sales", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-login-as-customer-sales/magento-module-login-as-customer-sales-100.4.0.0.zip", - "shasum": "b0af6cb9cbd317de758590288ac93d6303c1ec11" + "url": "https://repo.magento.com/archives/magento/module-login-as-customer-sales/magento-module-login-as-customer-sales-100.4.1.0.zip", + "shasum": "df840f1c190c40dc3dae5d33578051a3dd250ce7" }, "require": { "magento/framework": "103.0.*", "magento/module-backend": "102.0.*", - "magento/module-customer": "103.0.*", + "magento/module-login-as-customer-api": "100.4.*", "magento/module-user": "101.2.*", "php": "~7.3.0||~7.4.0" }, @@ -13354,14 +13640,19 @@ }, { "name": "magento/module-login-as-customer-website-restriction", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-login-as-customer-website-restriction/magento-module-login-as-customer-website-restriction-100.4.0.0.zip", - "shasum": "9cc33968b56d0d306a2086722e0eaa2e81277e52" + "url": "https://repo.magento.com/archives/magento/module-login-as-customer-website-restriction/magento-module-login-as-customer-website-restriction-100.4.1.0.zip", + "shasum": "cf75667be62d844484c7ee5e6d21e5ace6b8c3f0" }, "require": { "magento/framework": "103.0.*", + "magento/module-customer": "103.0.*", + "magento/module-login-as-customer": "100.4.*", + "magento/module-login-as-customer-api": "100.4.*", + "magento/module-store": "101.1.*", + "magento/module-website-restriction": "100.4.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -13408,11 +13699,11 @@ }, { "name": "magento/module-media-content", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-content/magento-module-media-content-100.4.0.0.zip", - "shasum": "ec7927ffff864b341c5533c952742c3d13244242" + "url": "https://repo.magento.com/archives/magento/module-media-content/magento-module-media-content-100.4.1.0.zip", + "shasum": "fecea4462c80337ede954d301cd209325e61f0a8" }, "require": { "magento/framework": "103.0.*", @@ -13437,11 +13728,11 @@ }, { "name": "magento/module-media-content-api", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-content-api/magento-module-media-content-api-100.4.0.0.zip", - "shasum": "c5da1a6080670675591bbd395b28e0f21b794b0e" + "url": "https://repo.magento.com/archives/magento/module-media-content-api/magento-module-media-content-api-100.4.1.0.zip", + "shasum": "e94bddc8514c0fe5e52f14dd82da996f098418f9" }, "require": { "magento/framework": "103.0.*", @@ -13465,17 +13756,18 @@ }, { "name": "magento/module-media-content-catalog", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-content-catalog/magento-module-media-content-catalog-100.4.0.0.zip", - "shasum": "567dd79b973da79d7b22e44abecee611c7eab3b3" + "url": "https://repo.magento.com/archives/magento/module-media-content-catalog/magento-module-media-content-catalog-100.4.1.0.zip", + "shasum": "5c0045b8695d16a9c4be3c13c23bf250c9ae79f3" }, "require": { "magento/framework": "103.0.*", "magento/module-catalog": "104.0.*", "magento/module-eav": "102.1.*", "magento/module-media-content-api": "100.4.*", + "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -13525,11 +13817,11 @@ }, { "name": "magento/module-media-content-cms", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-content-cms/magento-module-media-content-cms-100.4.0.0.zip", - "shasum": "f35b451d666cb5f783c37595ddd564b7c4622614" + "url": "https://repo.magento.com/archives/magento/module-media-content-cms/magento-module-media-content-cms-100.4.1.0.zip", + "shasum": "cfae369321712081a9258535fddc20d97924092f" }, "require": { "magento/framework": "103.0.*", @@ -13554,20 +13846,21 @@ }, { "name": "magento/module-media-content-synchronization", - "version": "1.0.0", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-content-synchronization/magento-module-media-content-synchronization-1.0.0.0.zip", - "shasum": "3242e80e2f814431636d8bd8a0b4abeb7698d394" + "url": "https://repo.magento.com/archives/magento/module-media-content-synchronization/magento-module-media-content-synchronization-100.4.0.0.zip", + "shasum": "3783cce2c3642cb24fb2cac6933237157c84bbcb" }, "require": { - "magento/framework": "*", - "magento/framework-message-queue": "*", - "magento/module-media-content-synchronization-api": "1.0.*", + "magento/framework": "103.0.*", + "magento/framework-message-queue": "100.4.*", + "magento/module-media-content-api": "100.4.*", + "magento/module-media-content-synchronization-api": "100.4.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-media-gallery-synchronization": "1.0.*" + "magento/module-media-gallery-synchronization": "100.4.*" }, "type": "magento2-module", "autoload": { @@ -13586,14 +13879,14 @@ }, { "name": "magento/module-media-content-synchronization-api", - "version": "1.0.0", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-content-synchronization-api/magento-module-media-content-synchronization-api-1.0.0.0.zip", - "shasum": "b5a3dca7b54114d59111e1f5f0e1d72a6f1cce49" + "url": "https://repo.magento.com/archives/magento/module-media-content-synchronization-api/magento-module-media-content-synchronization-api-100.4.0.0.zip", + "shasum": "1d4737df3ec742b8cb2fa47d0e026740d99ec9f6" }, "require": { - "magento/framework": "*", + "magento/framework": "103.0.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -13613,17 +13906,17 @@ }, { "name": "magento/module-media-content-synchronization-catalog", - "version": "1.0.0", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-content-synchronization-catalog/magento-module-media-content-synchronization-catalog-1.0.0.0.zip", - "shasum": "ebd6207bc81cf9b3a88c269b9cc028ea3419b05c" + "url": "https://repo.magento.com/archives/magento/module-media-content-synchronization-catalog/magento-module-media-content-synchronization-catalog-100.4.0.0.zip", + "shasum": "6bdf3215d98a450169fefe0127d6cb70d7c5f387" }, "require": { - "magento/framework": "*", - "magento/module-media-content-api": "*", - "magento/module-media-content-synchronization-api": "1.0.*", - "magento/module-media-gallery-synchronization-api": "1.0.*", + "magento/framework": "103.0.*", + "magento/module-media-content-api": "100.4.*", + "magento/module-media-content-synchronization-api": "100.4.*", + "magento/module-media-gallery-synchronization-api": "100.4.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -13643,17 +13936,17 @@ }, { "name": "magento/module-media-content-synchronization-cms", - "version": "1.0.0", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-content-synchronization-cms/magento-module-media-content-synchronization-cms-1.0.0.0.zip", - "shasum": "98d07914a1e9dfe8eee4157ec2881a593ebce665" + "url": "https://repo.magento.com/archives/magento/module-media-content-synchronization-cms/magento-module-media-content-synchronization-cms-100.4.0.0.zip", + "shasum": "09fc182163ee8cb434f43cb72537cb17d0181187" }, "require": { - "magento/framework": "*", - "magento/module-media-content-api": "*", - "magento/module-media-content-synchronization-api": "1.0.*", - "magento/module-media-gallery-synchronization-api": "1.0.*", + "magento/framework": "103.0.*", + "magento/module-media-content-api": "100.4.*", + "magento/module-media-content-synchronization-api": "100.4.*", + "magento/module-media-gallery-synchronization-api": "100.4.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -13673,11 +13966,11 @@ }, { "name": "magento/module-media-gallery", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-gallery/magento-module-media-gallery-100.4.0.0.zip", - "shasum": "5764d22b998dddae5b7c18582ac5807a78fd4d2f" + "url": "https://repo.magento.com/archives/magento/module-media-gallery/magento-module-media-gallery-100.4.1.0.zip", + "shasum": "b1a5c8bd0e280ab993f3b903850a567e219f8dbd" }, "require": { "magento/framework": "103.0.*", @@ -13702,11 +13995,11 @@ }, { "name": "magento/module-media-gallery-api", - "version": "101.0.0", + "version": "101.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-gallery-api/magento-module-media-gallery-api-101.0.0.0.zip", - "shasum": "a16c2906a46f8e5d86f423d9f58b015de42b749c" + "url": "https://repo.magento.com/archives/magento/module-media-gallery-api/magento-module-media-gallery-api-101.0.1.0.zip", + "shasum": "1afad98a4d25563f1c3f21bf23c91651728fdc58" }, "require": { "magento/framework": "103.0.*", @@ -13757,23 +14050,23 @@ "description": "Magento module responsible for catalog gallery processor delete operation handling" }, { - "name": "magento/module-media-gallery-integration", - "version": "1.0.0", + "name": "magento/module-media-gallery-catalog-integration", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-gallery-integration/magento-module-media-gallery-integration-1.0.0.0.zip", - "shasum": "aca1404e6e392a389236e6fc1211de566ad13c44" + "url": "https://repo.magento.com/archives/magento/module-media-gallery-catalog-integration/magento-module-media-gallery-catalog-integration-100.4.0.0.zip", + "shasum": "d59c80944de882c9c4e610e8ce397e5c74ce5e5d" }, "require": { - "magento/framework": "*", - "magento/module-cms": "*", - "magento/module-media-gallery-api": "*", - "magento/module-media-gallery-synchronization": "1.0.*", - "magento/module-media-gallery-ui-api": "1.0.*", + "magento/framework": "103.0.*", + "magento/module-cms": "104.0.*", + "magento/module-media-gallery-api": "101.0.*", + "magento/module-media-gallery-synchronization-api": "100.4.*", + "magento/module-media-gallery-ui-api": "100.4.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-catalog": "*" + "magento/module-catalog": "104.0.*" }, "type": "magento2-module", "autoload": { @@ -13781,28 +14074,30 @@ "registration.php" ], "psr-4": { - "Magento\\MediaGalleryIntegration\\": "" + "Magento\\MediaGalleryCatalogIntegration\\": "" } }, "license": [ "OSL-3.0", "AFL-3.0" ], - "description": "Magento module responsible for integration of enhanced media gallery" + "description": "Magento module responsible for extending catalog image uploader functionality" }, { - "name": "magento/module-media-gallery-synchronization", - "version": "1.0.0", + "name": "magento/module-media-gallery-catalog-ui", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-gallery-synchronization/magento-module-media-gallery-synchronization-1.0.0.0.zip", - "shasum": "1a0087f50e693d39704d0f0602cb50bcf06a6e30" + "url": "https://repo.magento.com/archives/magento/module-media-gallery-catalog-ui/magento-module-media-gallery-catalog-ui-100.4.0.0.zip", + "shasum": "797ca4ca5a0b17b6b7b31b40ef5e0d633ae9e4f7" }, "require": { - "magento/framework": "*", - "magento/framework-message-queue": "*", - "magento/module-media-gallery-api": "*", - "magento/module-media-gallery-synchronization-api": "1.0.*", + "magento/framework": "103.0.*", + "magento/module-backend": "102.0.*", + "magento/module-catalog": "104.0.*", + "magento/module-cms": "104.0.*", + "magento/module-store": "101.1.*", + "magento/module-ui": "101.2.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -13811,25 +14106,27 @@ "registration.php" ], "psr-4": { - "Magento\\MediaGallerySynchronization\\": "" + "Magento\\MediaGalleryCatalogUi\\": "" } }, "license": [ "OSL-3.0", "AFL-3.0" ], - "description": "Magento module provides implementation of the media gallery data synchronization." + "description": "Magento module that implement category grid for media gallery." }, { - "name": "magento/module-media-gallery-synchronization-api", - "version": "1.0.0", + "name": "magento/module-media-gallery-cms-ui", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-gallery-synchronization-api/magento-module-media-gallery-synchronization-api-1.0.0.0.zip", - "shasum": "709986991c673e1d5b09be0976342ccd7c049fae" + "url": "https://repo.magento.com/archives/magento/module-media-gallery-cms-ui/magento-module-media-gallery-cms-ui-100.4.0.0.zip", + "shasum": "5f91c8f981e94210da69e0f37f9f15c04556219b" }, "require": { - "magento/framework": "*", + "magento/framework": "103.0.*", + "magento/module-backend": "102.0.*", + "magento/module-cms": "104.0.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -13838,61 +14135,64 @@ "registration.php" ], "psr-4": { - "Magento\\MediaGallerySynchronizationApi\\": "" + "Magento\\MediaGalleryCmsUi\\": "" } }, "license": [ "OSL-3.0", "AFL-3.0" ], - "description": "Magento module responsible for the media gallery synchronization implementation API" + "description": "Cms related UI elements in the magento media gallery" }, { - "name": "magento/module-media-gallery-ui", - "version": "1.0.0", + "name": "magento/module-media-gallery-integration", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-gallery-ui/magento-module-media-gallery-ui-1.0.0.0.zip", - "shasum": "5e3581423f8a66a4bafa2b239b1bb7515c470fc9" + "url": "https://repo.magento.com/archives/magento/module-media-gallery-integration/magento-module-media-gallery-integration-100.4.0.0.zip", + "shasum": "f5bb6edce6b7c28d1efd05fa969d7d13ea2ff070" }, "require": { - "magento/framework": "*", - "magento/module-backend": "*", - "magento/module-cms": "*", - "magento/module-media-content-api": "*", - "magento/module-media-gallery-api": "*", - "magento/module-media-gallery-synchronization": "1.0.*", - "magento/module-media-gallery-synchronization-api": "1.0.*", - "magento/module-media-gallery-ui-api": "1.0.*", - "magento/module-store": "*", - "magento/module-ui": "*", + "magento/framework": "103.0.*", + "magento/module-media-gallery-api": "101.0.*", + "magento/module-media-gallery-synchronization-api": "100.4.*", + "magento/module-media-gallery-ui-api": "100.4.*", + "magento/module-ui": "101.2.*", "php": "~7.3.0||~7.4.0" }, + "require-dev": { + "magento/module-cms": "*" + }, + "suggest": { + "magento/module-catalog": "104.0.*", + "magento/module-cms": "104.0.*" + }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\MediaGalleryUi\\": "" + "Magento\\MediaGalleryIntegration\\": "" } }, "license": [ "OSL-3.0", "AFL-3.0" ], - "description": "Magento module responsible for the media gallery UI implementation" + "description": "Magento module responsible for integration of enhanced media gallery" }, { - "name": "magento/module-media-gallery-ui-api", - "version": "1.0.0", + "name": "magento/module-media-gallery-metadata", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-gallery-ui-api/magento-module-media-gallery-ui-api-1.0.0.0.zip", - "shasum": "61c4058da2521f007851fe769cf63675d2bf4a64" + "url": "https://repo.magento.com/archives/magento/module-media-gallery-metadata/magento-module-media-gallery-metadata-100.4.0.0.zip", + "shasum": "cc2470c5131e1899b27383c54405eea1f456e571" }, "require": { - "magento/framework": "*", + "magento/framework": "103.0.*", + "magento/module-media-gallery-metadata-api": "100.4.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -13901,33 +14201,25 @@ "registration.php" ], "psr-4": { - "Magento\\MediaGalleryUiApi\\": "" + "Magento\\MediaGalleryMetadata\\": "" } }, "license": [ "OSL-3.0", "AFL-3.0" ], - "description": "Magento module responsible for the media gallery UI implementation API" + "description": "Magento module responsible for images metadata processing" }, { - "name": "magento/module-media-storage", + "name": "magento/module-media-gallery-metadata-api", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-storage/magento-module-media-storage-100.4.0.0.zip", - "shasum": "8c5783a214bda8691260ce98895d610ef1546614" + "url": "https://repo.magento.com/archives/magento/module-media-gallery-metadata-api/magento-module-media-gallery-metadata-api-100.4.0.0.zip", + "shasum": "a8c6a1c1497581cb1839cab46fc61ef9a67b1dbd" }, "require": { "magento/framework": "103.0.*", - "magento/framework-bulk": "101.0.*", - "magento/module-asynchronous-operations": "100.4.*", - "magento/module-authorization": "100.4.*", - "magento/module-backend": "102.0.*", - "magento/module-catalog": "104.0.*", - "magento/module-config": "101.2.*", - "magento/module-store": "101.1.*", - "magento/module-theme": "101.1.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -13936,27 +14228,28 @@ "registration.php" ], "psr-4": { - "Magento\\MediaStorage\\": "" + "Magento\\MediaGalleryMetadataApi\\": "" } }, "license": [ "OSL-3.0", "AFL-3.0" ], - "description": "N/A" + "description": "Magento module responsible for media gallery metadata implementation API" }, { - "name": "magento/module-message-queue", + "name": "magento/module-media-gallery-synchronization", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-message-queue/magento-module-message-queue-100.4.0.0.zip", - "shasum": "540b0b266e2bd9c9a5b3078ff84398d422461039" + "url": "https://repo.magento.com/archives/magento/module-media-gallery-synchronization/magento-module-media-gallery-synchronization-100.4.0.0.zip", + "shasum": "eb535793174f15330db45a19ce85c588ec2b9f91" }, "require": { "magento/framework": "103.0.*", "magento/framework-message-queue": "100.4.*", - "magento/magento-composer-installer": "*", + "magento/module-media-gallery-api": "101.0.*", + "magento/module-media-gallery-synchronization-api": "100.4.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -13965,64 +14258,56 @@ "registration.php" ], "psr-4": { - "Magento\\MessageQueue\\": "" + "Magento\\MediaGallerySynchronization\\": "" } }, "license": [ "OSL-3.0", "AFL-3.0" ], - "description": "N/A" + "description": "Magento module provides implementation of the media gallery data synchronization." }, { - "name": "magento/module-msrp", + "name": "magento/module-media-gallery-synchronization-api", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-msrp/magento-module-msrp-100.4.0.0.zip", - "shasum": "d416af37c1cbe031bde6e408df9034a43038e5fa" + "url": "https://repo.magento.com/archives/magento/module-media-gallery-synchronization-api/magento-module-media-gallery-synchronization-api-100.4.0.0.zip", + "shasum": "7585408242ad5bf0b7cc97fc671c836256733e3e" }, "require": { "magento/framework": "103.0.*", - "magento/module-catalog": "104.0.*", - "magento/module-downloadable": "100.4.*", - "magento/module-eav": "102.1.*", - "magento/module-store": "101.1.*", - "magento/module-tax": "100.4.*", + "magento/module-media-gallery-api": "101.0.*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-bundle": "101.0.*", - "magento/module-msrp-sample-data": "Sample Data version: 100.4.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\Msrp\\": "" + "Magento\\MediaGallerySynchronizationApi\\": "" } }, "license": [ "OSL-3.0", "AFL-3.0" ], - "description": "N/A" + "description": "Magento module responsible for the media gallery synchronization implementation API" }, { - "name": "magento/module-msrp-configurable-product", + "name": "magento/module-media-gallery-synchronization-metadata", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-msrp-configurable-product/magento-module-msrp-configurable-product-100.4.0.0.zip", - "shasum": "f9247eba8077f2720611792f351c8707357b4451" + "url": "https://repo.magento.com/archives/magento/module-media-gallery-synchronization-metadata/magento-module-media-gallery-synchronization-metadata-100.4.0.0.zip", + "shasum": "c60bbe9ea155cc64d7cea0cf63e296e0f8b237e1" }, "require": { "magento/framework": "103.0.*", - "magento/module-catalog": "104.0.*", - "magento/module-configurable-product": "100.4.*", - "magento/module-msrp": "100.4.*", + "magento/module-media-gallery-api": "101.0.*", + "magento/module-media-gallery-metadata-api": "100.4.*", + "magento/module-media-gallery-synchronization-api": "100.4.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -14031,28 +14316,34 @@ "registration.php" ], "psr-4": { - "Magento\\MsrpConfigurableProduct\\": "" + "Magento\\MediaGallerySynchronizationMetadata\\": "" } }, "license": [ "OSL-3.0", "AFL-3.0" ], - "description": "N/A" + "description": "Magento module responsible for images metadata synchronization" }, { - "name": "magento/module-msrp-grouped-product", + "name": "magento/module-media-gallery-ui", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-msrp-grouped-product/magento-module-msrp-grouped-product-100.4.0.0.zip", - "shasum": "2ce6552b1c8bb912d7270e93af27675ed0bfe415" + "url": "https://repo.magento.com/archives/magento/module-media-gallery-ui/magento-module-media-gallery-ui-100.4.0.0.zip", + "shasum": "832e615e417436f97a41cdbb824559efaabd0d71" }, "require": { "magento/framework": "103.0.*", - "magento/module-catalog": "104.0.*", - "magento/module-grouped-product": "100.4.*", - "magento/module-msrp": "100.4.*", + "magento/module-backend": "102.0.*", + "magento/module-cms": "104.0.*", + "magento/module-media-content-api": "100.4.*", + "magento/module-media-gallery-api": "101.0.*", + "magento/module-media-gallery-metadata-api": "100.4.*", + "magento/module-media-gallery-synchronization-api": "100.4.*", + "magento/module-media-gallery-ui-api": "100.4.*", + "magento/module-store": "101.1.*", + "magento/module-ui": "101.2.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -14061,106 +14352,89 @@ "registration.php" ], "psr-4": { - "Magento\\MsrpGroupedProduct\\": "" + "Magento\\MediaGalleryUi\\": "" } }, "license": [ "OSL-3.0", "AFL-3.0" ], - "description": "N/A" + "description": "Magento module responsible for the media gallery UI implementation" }, { - "name": "magento/module-msrp-staging", + "name": "magento/module-media-gallery-ui-api", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-msrp-staging/magento-module-msrp-staging-100.4.0.0.zip", - "shasum": "c28a9f53cd14a4af934963c20f489030c7aa8fb9" + "url": "https://repo.magento.com/archives/magento/module-media-gallery-ui-api/magento-module-media-gallery-ui-api-100.4.0.0.zip", + "shasum": "014d1bcd24264b0dcd08ec977d1bba3ecc37b5fd" }, "require": { - "lib-libxml": "*", "magento/framework": "103.0.*", - "magento/magento-composer-installer": "*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-msrp": "100.4.*", - "magento/module-staging": "101.2.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\MsrpStaging\\": "" + "Magento\\MediaGalleryUiApi\\": "" } }, "license": [ - "proprietary" + "OSL-3.0", + "AFL-3.0" ], - "description": "N/A" + "description": "Magento module responsible for the media gallery UI implementation API" }, { - "name": "magento/module-multiple-wishlist", + "name": "magento/module-media-storage", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-multiple-wishlist/magento-module-multiple-wishlist-100.4.0.0.zip", - "shasum": "b894ca8f4db2a9d0a1a8f4eda3f857f05b71ce82" + "url": "https://repo.magento.com/archives/magento/module-media-storage/magento-module-media-storage-100.4.0.0.zip", + "shasum": "8c5783a214bda8691260ce98895d610ef1546614" }, "require": { "magento/framework": "103.0.*", - "magento/module-advanced-checkout": "100.4.*", + "magento/framework-bulk": "101.0.*", + "magento/module-asynchronous-operations": "100.4.*", + "magento/module-authorization": "100.4.*", "magento/module-backend": "102.0.*", "magento/module-catalog": "104.0.*", - "magento/module-catalog-inventory": "100.4.*", - "magento/module-checkout": "100.4.*", - "magento/module-customer": "103.0.*", - "magento/module-sales": "103.0.*", + "magento/module-config": "101.2.*", "magento/module-store": "101.1.*", - "magento/module-widget": "101.2.*", - "magento/module-wishlist": "101.2.*", + "magento/module-theme": "101.1.*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-multiple-wishlist-sample-data": "Sample Data version: 100.4.*", - "magento/module-reports": "100.4.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\MultipleWishlist\\": "" + "Magento\\MediaStorage\\": "" } }, "license": [ - "proprietary" + "OSL-3.0", + "AFL-3.0" ], "description": "N/A" }, { - "name": "magento/module-multishipping", - "version": "100.4.0", + "name": "magento/module-message-queue", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-multishipping/magento-module-multishipping-100.4.0.0.zip", - "shasum": "6611a9c16190d4f6b9721b7a749ef5c338e67bc3" + "url": "https://repo.magento.com/archives/magento/module-message-queue/magento-module-message-queue-100.4.1.0.zip", + "shasum": "137eafed34c6f12aed51daf399e5297649f1459b" }, "require": { "magento/framework": "103.0.*", - "magento/module-checkout": "100.4.*", - "magento/module-customer": "103.0.*", - "magento/module-directory": "100.4.*", - "magento/module-payment": "100.4.*", - "magento/module-quote": "101.2.*", - "magento/module-sales": "103.0.*", - "magento/module-store": "101.1.*", - "magento/module-tax": "100.4.*", - "magento/module-theme": "101.1.*", + "magento/framework-message-queue": "100.4.*", + "magento/magento-composer-installer": "*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -14169,7 +14443,7 @@ "registration.php" ], "psr-4": { - "Magento\\Multishipping\\": "" + "Magento\\MessageQueue\\": "" } }, "license": [ @@ -14179,27 +14453,33 @@ "description": "N/A" }, { - "name": "magento/module-mysql-mq", + "name": "magento/module-msrp", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-mysql-mq/magento-module-mysql-mq-100.4.0.0.zip", - "shasum": "a5aa6ad11c3416bb18cb14d2b8e71a0cca566670" + "url": "https://repo.magento.com/archives/magento/module-msrp/magento-module-msrp-100.4.0.0.zip", + "shasum": "d416af37c1cbe031bde6e408df9034a43038e5fa" }, "require": { "magento/framework": "103.0.*", - "magento/framework-message-queue": "100.4.*", - "magento/magento-composer-installer": "*", + "magento/module-catalog": "104.0.*", + "magento/module-downloadable": "100.4.*", + "magento/module-eav": "102.1.*", "magento/module-store": "101.1.*", + "magento/module-tax": "100.4.*", "php": "~7.3.0||~7.4.0" }, + "suggest": { + "magento/module-bundle": "101.0.*", + "magento/module-msrp-sample-data": "Sample Data version: 100.4.*" + }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\MysqlMq\\": "" + "Magento\\Msrp\\": "" } }, "license": [ @@ -14209,22 +14489,18 @@ "description": "N/A" }, { - "name": "magento/module-new-relic-reporting", + "name": "magento/module-msrp-configurable-product", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-new-relic-reporting/magento-module-new-relic-reporting-100.4.0.0.zip", - "shasum": "5936b6ba969529a601e47ef2b0ba4c12068914a4" + "url": "https://repo.magento.com/archives/magento/module-msrp-configurable-product/magento-module-msrp-configurable-product-100.4.0.0.zip", + "shasum": "f9247eba8077f2720611792f351c8707357b4451" }, "require": { "magento/framework": "103.0.*", - "magento/magento-composer-installer": "*", - "magento/module-backend": "102.0.*", "magento/module-catalog": "104.0.*", - "magento/module-config": "101.2.*", "magento/module-configurable-product": "100.4.*", - "magento/module-customer": "103.0.*", - "magento/module-store": "101.1.*", + "magento/module-msrp": "100.4.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -14233,7 +14509,7 @@ "registration.php" ], "psr-4": { - "Magento\\NewRelicReporting\\": "" + "Magento\\MsrpConfigurableProduct\\": "" } }, "license": [ @@ -14243,24 +14519,18 @@ "description": "N/A" }, { - "name": "magento/module-newsletter", + "name": "magento/module-msrp-grouped-product", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-newsletter/magento-module-newsletter-100.4.0.0.zip", - "shasum": "94d4535b429478f31d5ae3719321882d7c43ba37" + "url": "https://repo.magento.com/archives/magento/module-msrp-grouped-product/magento-module-msrp-grouped-product-100.4.0.0.zip", + "shasum": "2ce6552b1c8bb912d7270e93af27675ed0bfe415" }, "require": { "magento/framework": "103.0.*", - "magento/module-backend": "102.0.*", - "magento/module-cms": "104.0.*", - "magento/module-customer": "103.0.*", - "magento/module-eav": "102.1.*", - "magento/module-email": "101.1.*", - "magento/module-require-js": "100.4.*", - "magento/module-store": "101.1.*", - "magento/module-ui": "101.2.*", - "magento/module-widget": "101.2.*", + "magento/module-catalog": "104.0.*", + "magento/module-grouped-product": "100.4.*", + "magento/module-msrp": "100.4.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -14269,7 +14539,7 @@ "registration.php" ], "psr-4": { - "Magento\\Newsletter\\": "" + "Magento\\MsrpGroupedProduct\\": "" } }, "license": [ @@ -14279,21 +14549,22 @@ "description": "N/A" }, { - "name": "magento/module-offline-payments", + "name": "magento/module-msrp-staging", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-offline-payments/magento-module-offline-payments-100.4.0.0.zip", - "shasum": "55f57672aad3e0a0a1378125c31eb40f92ba84f4" + "url": "https://repo.magento.com/archives/magento/module-msrp-staging/magento-module-msrp-staging-100.4.0.0.zip", + "shasum": "c28a9f53cd14a4af934963c20f489030c7aa8fb9" }, "require": { + "lib-libxml": "*", "magento/framework": "103.0.*", - "magento/module-checkout": "100.4.*", - "magento/module-payment": "100.4.*", + "magento/magento-composer-installer": "*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-config": "101.2.*" + "magento/module-msrp": "100.4.*", + "magento/module-staging": "101.2.*" }, "type": "magento2-module", "autoload": { @@ -14301,39 +14572,40 @@ "registration.php" ], "psr-4": { - "Magento\\OfflinePayments\\": "" + "Magento\\MsrpStaging\\": "" } }, "license": [ - "OSL-3.0", - "AFL-3.0" + "proprietary" ], "description": "N/A" }, { - "name": "magento/module-offline-shipping", - "version": "100.4.0", + "name": "magento/module-multiple-wishlist", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-offline-shipping/magento-module-offline-shipping-100.4.0.0.zip", - "shasum": "16abb1eff00ea3b704099ff7b67789ba17d965e5" + "url": "https://repo.magento.com/archives/magento/module-multiple-wishlist/magento-module-multiple-wishlist-100.4.1.0.zip", + "shasum": "4dbf7f05a087e0d0fe705df93a06a5388c644f93" }, "require": { "magento/framework": "103.0.*", + "magento/module-advanced-checkout": "100.4.*", "magento/module-backend": "102.0.*", "magento/module-catalog": "104.0.*", - "magento/module-config": "101.2.*", - "magento/module-directory": "100.4.*", - "magento/module-quote": "101.2.*", + "magento/module-catalog-inventory": "100.4.*", + "magento/module-checkout": "100.4.*", + "magento/module-customer": "103.0.*", "magento/module-sales": "103.0.*", - "magento/module-sales-rule": "101.2.*", - "magento/module-shipping": "100.4.*", "magento/module-store": "101.1.*", + "magento/module-theme": "101.1.*", + "magento/module-widget": "101.2.*", + "magento/module-wishlist": "101.2.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-checkout": "100.4.*", - "magento/module-offline-shipping-sample-data": "Sample Data version: 100.4.*" + "magento/module-multiple-wishlist-sample-data": "Sample Data version: 100.4.*", + "magento/module-reports": "100.4.*" }, "type": "magento2-module", "autoload": { @@ -14341,51 +14613,35 @@ "registration.php" ], "psr-4": { - "Magento\\OfflineShipping\\": "" + "Magento\\MultipleWishlist\\": "" } }, "license": [ - "OSL-3.0", - "AFL-3.0" + "proprietary" ], "description": "N/A" }, { - "name": "magento/module-page-builder", - "version": "2.0.0", + "name": "magento/module-multishipping", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-page-builder/magento-module-page-builder-2.0.0.0.zip", - "shasum": "94a2405e64643d67d3b3443adff9e03dfa60871c" + "url": "https://repo.magento.com/archives/magento/module-multishipping/magento-module-multishipping-100.4.1.0.zip", + "shasum": "127f7ac9700422be364744d7e29fae796e2c61e4" }, "require": { - "magento/framework": "~103.0.0-beta2", - "magento/module-backend": "~102.0.0-beta2", - "magento/module-catalog": "~104.0.0-beta2", - "magento/module-catalog-inventory": "*", - "magento/module-catalog-widget": "*", - "magento/module-cms": "*", - "magento/module-config": "~101.2.0-beta2", - "magento/module-directory": "~100.4.0-beta2", - "magento/module-eav": "*", - "magento/module-email": "*", - "magento/module-media-storage": "*", - "magento/module-require-js": "*", - "magento/module-rule": "~100.4.0-beta2", - "magento/module-store": "~101.1.0-beta2", - "magento/module-theme": "*", - "magento/module-ui": "*", - "magento/module-variable": "*", - "magento/module-widget": "*", - "magento/module-wishlist": "*", - "php": "~7.3.0||~7.4.0", - "phpgt/dom": "2.1.6" - }, - "conflict": { - "gene/bluefoot": "*" - }, - "suggest": { - "magento/module-review": "*" + "magento/framework": "103.0.*", + "magento/module-captcha": "100.4.*", + "magento/module-checkout": "100.4.*", + "magento/module-customer": "103.0.*", + "magento/module-directory": "100.4.*", + "magento/module-payment": "100.4.*", + "magento/module-quote": "101.2.*", + "magento/module-sales": "103.0.*", + "magento/module-store": "101.1.*", + "magento/module-tax": "100.4.*", + "magento/module-theme": "101.1.*", + "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", "autoload": { @@ -14393,26 +14649,28 @@ "registration.php" ], "psr-4": { - "Magento\\PageBuilder\\": "" + "Magento\\Multishipping\\": "" } }, "license": [ - "proprietary" + "OSL-3.0", + "AFL-3.0" ], - "description": "Page Builder module" + "description": "N/A" }, { - "name": "magento/module-page-builder-analytics", - "version": "1.4.0", + "name": "magento/module-mysql-mq", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-page-builder-analytics/magento-module-page-builder-analytics-1.4.0.0.zip", - "shasum": "206088af3943c3b5f14d8bb8f914382c36914472" + "url": "https://repo.magento.com/archives/magento/module-mysql-mq/magento-module-mysql-mq-100.4.0.0.zip", + "shasum": "a5aa6ad11c3416bb18cb14d2b8e71a0cca566670" }, "require": { - "magento/framework": "~103.0.0-beta2", - "magento/module-analytics": "~100.4.0-beta2", - "magento/module-page-builder": "2.0.*", + "magento/framework": "103.0.*", + "magento/framework-message-queue": "100.4.*", + "magento/magento-composer-installer": "*", + "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -14421,26 +14679,31 @@ "registration.php" ], "psr-4": { - "Magento\\PageBuilderAnalytics\\": "" + "Magento\\MysqlMq\\": "" } }, "license": [ - "proprietary" + "OSL-3.0", + "AFL-3.0" ], - "description": "Page Builder Analytics module" + "description": "N/A" }, { - "name": "magento/module-page-cache", + "name": "magento/module-new-relic-reporting", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-page-cache/magento-module-page-cache-100.4.0.0.zip", - "shasum": "123419536c1409d9c35f74620252243d37274cdd" + "url": "https://repo.magento.com/archives/magento/module-new-relic-reporting/magento-module-new-relic-reporting-100.4.0.0.zip", + "shasum": "5936b6ba969529a601e47ef2b0ba4c12068914a4" }, "require": { "magento/framework": "103.0.*", + "magento/magento-composer-installer": "*", "magento/module-backend": "102.0.*", + "magento/module-catalog": "104.0.*", "magento/module-config": "101.2.*", + "magento/module-configurable-product": "100.4.*", + "magento/module-customer": "103.0.*", "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, @@ -14450,7 +14713,7 @@ "registration.php" ], "psr-4": { - "Magento\\PageCache\\": "" + "Magento\\NewRelicReporting\\": "" } }, "license": [ @@ -14460,22 +14723,24 @@ "description": "N/A" }, { - "name": "magento/module-payment", - "version": "100.4.0", + "name": "magento/module-newsletter", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-payment/magento-module-payment-100.4.0.0.zip", - "shasum": "ecc5c41cf4085a0c60fccc940bc952724c58e4b9" + "url": "https://repo.magento.com/archives/magento/module-newsletter/magento-module-newsletter-100.4.1.0.zip", + "shasum": "35c4500d83eafae25bbb6c1ac0b372fb08fb9191" }, "require": { "magento/framework": "103.0.*", - "magento/module-checkout": "100.4.*", - "magento/module-config": "101.2.*", - "magento/module-directory": "100.4.*", - "magento/module-quote": "101.2.*", - "magento/module-sales": "103.0.*", + "magento/module-backend": "102.0.*", + "magento/module-cms": "104.0.*", + "magento/module-customer": "103.0.*", + "magento/module-eav": "102.1.*", + "magento/module-email": "101.1.*", + "magento/module-require-js": "100.4.*", "magento/module-store": "101.1.*", "magento/module-ui": "101.2.*", + "magento/module-widget": "101.2.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -14484,7 +14749,7 @@ "registration.php" ], "psr-4": { - "Magento\\Payment\\": "" + "Magento\\Newsletter\\": "" } }, "license": [ @@ -14494,21 +14759,22 @@ "description": "N/A" }, { - "name": "magento/module-payment-staging", + "name": "magento/module-newsletter-graph-ql", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-payment-staging/magento-module-payment-staging-100.4.0.0.zip", - "shasum": "f881aaff208f48bfaf9f238a2f1dcf7c89b0947d" + "url": "https://repo.magento.com/archives/magento/module-newsletter-graph-ql/magento-module-newsletter-graph-ql-100.4.0.0.zip", + "shasum": "e5585c22858a6e8c7733f30161aa185570cc32f2" }, "require": { "magento/framework": "103.0.*", - "magento/module-quote": "101.2.*", - "magento/module-staging": "101.2.*", + "magento/module-customer": "103.0.*", + "magento/module-newsletter": "100.4.*", + "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-payment": "100.4.*" + "magento/module-graph-ql": "100.4.*" }, "type": "magento2-module", "autoload": { @@ -14516,46 +14782,31 @@ "registration.php" ], "psr-4": { - "Magento\\PaymentStaging\\": "" + "Magento\\NewsletterGraphQl\\": "" } }, "license": [ "OSL-3.0", "AFL-3.0" ], - "description": "N/A" + "description": "Provides GraphQl functionality for the newsletter subscriptions." }, { - "name": "magento/module-paypal", - "version": "101.0.0", + "name": "magento/module-offline-payments", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-paypal/magento-module-paypal-101.0.0.0.zip", - "shasum": "a08238a74023ad3c42c22001874a3bdfb11abf02" + "url": "https://repo.magento.com/archives/magento/module-offline-payments/magento-module-offline-payments-100.4.0.0.zip", + "shasum": "55f57672aad3e0a0a1378125c31eb40f92ba84f4" }, "require": { - "lib-libxml": "*", "magento/framework": "103.0.*", - "magento/module-backend": "102.0.*", - "magento/module-catalog": "104.0.*", "magento/module-checkout": "100.4.*", - "magento/module-config": "101.2.*", - "magento/module-customer": "103.0.*", - "magento/module-directory": "100.4.*", - "magento/module-eav": "102.1.*", - "magento/module-instant-purchase": "100.4.*", "magento/module-payment": "100.4.*", - "magento/module-quote": "101.2.*", - "magento/module-sales": "103.0.*", - "magento/module-store": "101.1.*", - "magento/module-tax": "100.4.*", - "magento/module-theme": "101.1.*", - "magento/module-ui": "101.2.*", - "magento/module-vault": "101.2.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-checkout-agreements": "100.4.*" + "magento/module-config": "101.2.*" }, "type": "magento2-module", "autoload": { @@ -14563,7 +14814,7 @@ "registration.php" ], "psr-4": { - "Magento\\Paypal\\": "" + "Magento\\OfflinePayments\\": "" } }, "license": [ @@ -14573,22 +14824,29 @@ "description": "N/A" }, { - "name": "magento/module-paypal-captcha", + "name": "magento/module-offline-shipping", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-paypal-captcha/magento-module-paypal-captcha-100.4.0.0.zip", - "shasum": "d3b5150333614bb9c02be61651240c5c3f7cda7e" + "url": "https://repo.magento.com/archives/magento/module-offline-shipping/magento-module-offline-shipping-100.4.0.0.zip", + "shasum": "16abb1eff00ea3b704099ff7b67789ba17d965e5" }, "require": { "magento/framework": "103.0.*", - "magento/module-captcha": "100.4.*", - "magento/module-checkout": "100.4.*", + "magento/module-backend": "102.0.*", + "magento/module-catalog": "104.0.*", + "magento/module-config": "101.2.*", + "magento/module-directory": "100.4.*", + "magento/module-quote": "101.2.*", + "magento/module-sales": "103.0.*", + "magento/module-sales-rule": "101.2.*", + "magento/module-shipping": "100.4.*", "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-paypal": "101.0.*" + "magento/module-checkout": "100.4.*", + "magento/module-offline-shipping-sample-data": "Sample Data version: 100.4.*" }, "type": "magento2-module", "autoload": { @@ -14596,36 +14854,51 @@ "registration.php" ], "psr-4": { - "Magento\\PaypalCaptcha\\": "" + "Magento\\OfflineShipping\\": "" } }, "license": [ "OSL-3.0", "AFL-3.0" ], - "description": "Provides CAPTCHA validation for PayPal Payflow Pro" + "description": "N/A" }, { - "name": "magento/module-paypal-graph-ql", - "version": "100.4.0", + "name": "magento/module-page-builder", + "version": "2.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-paypal-graph-ql/magento-module-paypal-graph-ql-100.4.0.0.zip", - "shasum": "fc6e2fd0348bb09205246c533e93ba214cf3e155" + "url": "https://repo.magento.com/archives/magento/module-page-builder/magento-module-page-builder-2.1.0.0.zip", + "shasum": "bd1ec9f4275a73811275b825d217225d37d75fcc" }, "require": { - "magento/framework": "103.0.*", - "magento/module-checkout": "100.4.*", - "magento/module-payment": "100.4.*", - "magento/module-paypal": "101.0.*", - "magento/module-quote": "101.2.*", - "magento/module-quote-graph-ql": "100.4.*", - "magento/module-sales": "103.0.*", - "magento/module-store": "101.1.*", - "php": "~7.3.0||~7.4.0" - }, - "suggest": { - "magento/module-graph-ql": "100.4.*" + "magento/framework": "~103.0.1-alpha2", + "magento/module-backend": "~102.0.1-alpha2", + "magento/module-catalog": "~104.0.1-alpha2", + "magento/module-catalog-inventory": "*", + "magento/module-catalog-widget": "*", + "magento/module-cms": "*", + "magento/module-config": "~101.2.1-alpha2", + "magento/module-directory": "~100.4.1-alpha2", + "magento/module-eav": "*", + "magento/module-email": "*", + "magento/module-media-storage": "*", + "magento/module-require-js": "*", + "magento/module-rule": "~100.4.0", + "magento/module-store": "~101.1.1-alpha2", + "magento/module-theme": "*", + "magento/module-ui": "*", + "magento/module-variable": "*", + "magento/module-widget": "*", + "magento/module-wishlist": "*", + "php": "~7.3.0||~7.4.0", + "phpgt/dom": "2.1.6" + }, + "conflict": { + "gene/bluefoot": "*" + }, + "suggest": { + "magento/module-review": "*" }, "type": "magento2-module", "autoload": { @@ -14633,66 +14906,56 @@ "registration.php" ], "psr-4": { - "Magento\\PaypalGraphQl\\": "" + "Magento\\PageBuilder\\": "" } }, "license": [ - "OSL-3.0", - "AFL-3.0" + "proprietary" ], - "description": "GraphQl support for Paypal" + "description": "Page Builder module" }, { - "name": "magento/module-persistent", - "version": "100.4.0", + "name": "magento/module-page-builder-admin-analytics", + "version": "1.0.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-persistent/magento-module-persistent-100.4.0.0.zip", - "shasum": "65f0b213725c661c3168b3cdfc5a8e8e2e5bb43c" + "url": "https://repo.magento.com/archives/magento/module-page-builder-admin-analytics/magento-module-page-builder-admin-analytics-1.0.0.0.zip", + "shasum": "d27cefc91e0fe95caf7dd2939aafd972d487e752" }, "require": { - "magento/framework": "103.0.*", - "magento/module-checkout": "100.4.*", - "magento/module-cron": "100.4.*", - "magento/module-customer": "103.0.*", - "magento/module-page-cache": "100.4.*", - "magento/module-quote": "101.2.*", - "magento/module-store": "101.1.*", + "magento/framework": "~103.0.1-alpha2", "php": "~7.3.0||~7.4.0" }, + "suggest": { + "magento/module-admin-analytics": "*", + "magento/module-page-builder": "*" + }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\Persistent\\": "" + "Magento\\PageBuilderAdminAnalytics\\": "" } }, "license": [ - "OSL-3.0", - "AFL-3.0" + "proprietary" ], - "description": "N/A" + "description": "Page Builder Admin Analytics module" }, { - "name": "magento/module-persistent-history", - "version": "100.4.0", + "name": "magento/module-page-builder-analytics", + "version": "1.5.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-persistent-history/magento-module-persistent-history-100.4.0.0.zip", - "shasum": "c4382df4569fd623005e10fe59841aa3f0ba074c" + "url": "https://repo.magento.com/archives/magento/module-page-builder-analytics/magento-module-page-builder-analytics-1.5.0.0.zip", + "shasum": "7258f86bce29afa61e9869fdf62f2ef53d2f5d85" }, "require": { - "magento/framework": "103.0.*", - "magento/module-catalog": "104.0.*", - "magento/module-config": "101.2.*", - "magento/module-customer": "103.0.*", - "magento/module-persistent": "100.4.*", - "magento/module-reports": "100.4.*", - "magento/module-sales": "103.0.*", - "magento/module-store": "101.1.*", - "magento/module-wishlist": "101.2.*", + "magento/framework": "~103.0.1-alpha2", + "magento/module-analytics": "~100.4.1-alpha2", + "magento/module-page-builder": "2.1.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -14701,83 +14964,70 @@ "registration.php" ], "psr-4": { - "Magento\\PersistentHistory\\": "" + "Magento\\PageBuilderAnalytics\\": "" } }, "license": [ "proprietary" ], - "description": "N/A" + "description": "Page Builder Analytics module" }, { - "name": "magento/module-price-permissions", - "version": "100.4.0", + "name": "magento/module-page-cache", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-price-permissions/magento-module-price-permissions-100.4.0.0.zip", - "shasum": "e3b56d12a18080d6b736472d30018407a75cfe86" + "url": "https://repo.magento.com/archives/magento/module-page-cache/magento-module-page-cache-100.4.1.0.zip", + "shasum": "8a99f0c727a647af8168adf4fb96690c2c1daa1a" }, "require": { "magento/framework": "103.0.*", "magento/module-backend": "102.0.*", - "magento/module-bundle": "101.0.*", - "magento/module-catalog": "104.0.*", "magento/module-config": "101.2.*", - "magento/module-customer": "103.0.*", - "magento/module-directory": "100.4.*", - "magento/module-downloadable": "100.4.*", - "magento/module-eav": "102.1.*", - "magento/module-gift-card": "101.3.*", - "magento/module-grouped-product": "100.4.*", - "magento/module-msrp": "100.4.*", "magento/module-store": "101.1.*", - "magento/module-ui": "101.2.*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-configurable-product": "100.4.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\PricePermissions\\": "" + "Magento\\PageCache\\": "" } }, "license": [ - "proprietary" + "OSL-3.0", + "AFL-3.0" ], "description": "N/A" }, { - "name": "magento/module-product-alert", - "version": "100.4.0", + "name": "magento/module-payment", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-product-alert/magento-module-product-alert-100.4.0.0.zip", - "shasum": "2d1f5364fd3322d76c46c117f4e6c3749df7f82a" + "url": "https://repo.magento.com/archives/magento/module-payment/magento-module-payment-100.4.1.0.zip", + "shasum": "64407e124c23d19c67a0b7054e5a1ad5d870a528" }, "require": { "magento/framework": "103.0.*", - "magento/module-backend": "102.0.*", - "magento/module-catalog": "104.0.*", - "magento/module-customer": "103.0.*", + "magento/module-checkout": "100.4.*", + "magento/module-config": "101.2.*", + "magento/module-directory": "100.4.*", + "magento/module-quote": "101.2.*", + "magento/module-sales": "103.0.*", "magento/module-store": "101.1.*", - "magento/module-theme": "101.1.*", + "magento/module-ui": "101.2.*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-config": "101.2.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\ProductAlert\\": "" + "Magento\\Payment\\": "" } }, "license": [ @@ -14787,26 +15037,21 @@ "description": "N/A" }, { - "name": "magento/module-product-video", + "name": "magento/module-payment-staging", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-product-video/magento-module-product-video-100.4.0.0.zip", - "shasum": "0499a054bf9ded45622da6c14f419f73c5a031e9" + "url": "https://repo.magento.com/archives/magento/module-payment-staging/magento-module-payment-staging-100.4.0.0.zip", + "shasum": "f881aaff208f48bfaf9f238a2f1dcf7c89b0947d" }, "require": { "magento/framework": "103.0.*", - "magento/magento-composer-installer": "*", - "magento/module-backend": "102.0.*", - "magento/module-catalog": "104.0.*", - "magento/module-eav": "102.1.*", - "magento/module-media-storage": "100.4.*", - "magento/module-store": "101.1.*", + "magento/module-quote": "101.2.*", + "magento/module-staging": "101.2.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-config": "101.2.*", - "magento/module-customer": "103.0.*" + "magento/module-payment": "100.4.*" }, "type": "magento2-module", "autoload": { @@ -14814,35 +15059,46 @@ "registration.php" ], "psr-4": { - "Magento\\ProductVideo\\": "" + "Magento\\PaymentStaging\\": "" } }, "license": [ "OSL-3.0", "AFL-3.0" ], - "description": "Add Video to Products" + "description": "N/A" }, { - "name": "magento/module-product-video-staging", - "version": "100.4.0", + "name": "magento/module-paypal", + "version": "101.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-product-video-staging/magento-module-product-video-staging-100.4.0.0.zip", - "shasum": "70fae6a2b0251d746cb49a8f1317d753e11ffd36" + "url": "https://repo.magento.com/archives/magento/module-paypal/magento-module-paypal-101.0.1.0.zip", + "shasum": "77473632069350fcf5a971b1c9862c95ba80fd3e" }, "require": { "lib-libxml": "*", "magento/framework": "103.0.*", - "magento/magento-composer-installer": "*", "magento/module-backend": "102.0.*", "magento/module-catalog": "104.0.*", - "magento/module-product-video": "100.4.*", + "magento/module-checkout": "100.4.*", + "magento/module-config": "101.2.*", + "magento/module-customer": "103.0.*", + "magento/module-directory": "100.4.*", + "magento/module-eav": "102.1.*", + "magento/module-instant-purchase": "100.4.*", + "magento/module-payment": "100.4.*", + "magento/module-quote": "101.2.*", + "magento/module-sales": "103.0.*", + "magento/module-store": "101.1.*", + "magento/module-tax": "100.4.*", + "magento/module-theme": "101.1.*", + "magento/module-ui": "101.2.*", + "magento/module-vault": "101.2.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-catalog-staging": "100.4.*", - "magento/module-staging": "101.2.*" + "magento/module-checkout-agreements": "100.4.*" }, "type": "magento2-module", "autoload": { @@ -14850,73 +15106,71 @@ "registration.php" ], "psr-4": { - "Magento\\ProductVideoStaging\\": "" + "Magento\\Paypal\\": "" } }, "license": [ - "proprietary" + "OSL-3.0", + "AFL-3.0" ], "description": "N/A" }, { - "name": "magento/module-promotion-permissions", + "name": "magento/module-paypal-captcha", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-promotion-permissions/magento-module-promotion-permissions-100.4.0.0.zip", - "shasum": "fbac0c552d268e10463fce8a776baef51ed75458" + "url": "https://repo.magento.com/archives/magento/module-paypal-captcha/magento-module-paypal-captcha-100.4.0.0.zip", + "shasum": "d3b5150333614bb9c02be61651240c5c3f7cda7e" }, "require": { "magento/framework": "103.0.*", - "magento/module-backend": "102.0.*", - "magento/module-banner": "101.2.*", - "magento/module-catalog-rule": "101.2.*", - "magento/module-reminder": "101.2.*", - "magento/module-sales-rule": "101.2.*", + "magento/module-captcha": "100.4.*", + "magento/module-checkout": "100.4.*", + "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, + "suggest": { + "magento/module-paypal": "101.0.*" + }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\PromotionPermissions\\": "" + "Magento\\PaypalCaptcha\\": "" } }, "license": [ - "proprietary" + "OSL-3.0", + "AFL-3.0" ], - "description": "N/A" + "description": "Provides CAPTCHA validation for PayPal Payflow Pro" }, { - "name": "magento/module-quote", - "version": "101.2.0", + "name": "magento/module-paypal-graph-ql", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-quote/magento-module-quote-101.2.0.0.zip", - "shasum": "b3b20916a7fbc286801b2bd2ce36bcb64199d124" + "url": "https://repo.magento.com/archives/magento/module-paypal-graph-ql/magento-module-paypal-graph-ql-100.4.1.0.zip", + "shasum": "7ad5496ea6418cdcf9dbf82e6915c925614308f6" }, "require": { "magento/framework": "103.0.*", - "magento/module-authorization": "100.4.*", - "magento/module-backend": "102.0.*", - "magento/module-catalog": "104.0.*", - "magento/module-catalog-inventory": "100.4.*", "magento/module-checkout": "100.4.*", - "magento/module-customer": "103.0.*", - "magento/module-directory": "100.4.*", - "magento/module-eav": "102.1.*", "magento/module-payment": "100.4.*", + "magento/module-paypal": "101.0.*", + "magento/module-quote": "101.2.*", + "magento/module-quote-graph-ql": "100.4.*", "magento/module-sales": "103.0.*", - "magento/module-sales-sequence": "100.4.*", - "magento/module-shipping": "100.4.*", "magento/module-store": "101.1.*", - "magento/module-tax": "100.4.*", + "magento/module-vault": "101.2.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-webapi": "100.4.*" + "magento/module-graph-ql": "100.4.*", + "magento/module-store-graph-ql": "100.4.*" }, "type": "magento2-module", "autoload": { @@ -14924,27 +15178,31 @@ "registration.php" ], "psr-4": { - "Magento\\Quote\\": "" + "Magento\\PaypalGraphQl\\": "" } }, "license": [ "OSL-3.0", "AFL-3.0" ], - "description": "N/A" + "description": "GraphQl support for Paypal" }, { - "name": "magento/module-quote-analytics", - "version": "100.4.0", + "name": "magento/module-persistent", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-quote-analytics/magento-module-quote-analytics-100.4.0.0.zip", - "shasum": "bbbd89971918862af4aa5868f58fd8c87800d1f6" + "url": "https://repo.magento.com/archives/magento/module-persistent/magento-module-persistent-100.4.1.0.zip", + "shasum": "f8a54bfed9db62c618b180a735a9c9e3d31239fb" }, "require": { "magento/framework": "103.0.*", - "magento/module-analytics": "100.4.*", + "magento/module-checkout": "100.4.*", + "magento/module-cron": "100.4.*", + "magento/module-customer": "103.0.*", + "magento/module-page-cache": "100.4.*", "magento/module-quote": "101.2.*", + "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -14953,7 +15211,7 @@ "registration.php" ], "psr-4": { - "Magento\\QuoteAnalytics\\": "" + "Magento\\Persistent\\": "" } }, "license": [ @@ -14963,168 +15221,203 @@ "description": "N/A" }, { - "name": "magento/module-quote-graph-ql", + "name": "magento/module-persistent-history", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-quote-graph-ql/magento-module-quote-graph-ql-100.4.0.0.zip", - "shasum": "ae58d39019962a34b246f0fe94180cc72ec7a4f5" + "url": "https://repo.magento.com/archives/magento/module-persistent-history/magento-module-persistent-history-100.4.0.0.zip", + "shasum": "c4382df4569fd623005e10fe59841aa3f0ba074c" }, "require": { "magento/framework": "103.0.*", "magento/module-catalog": "104.0.*", - "magento/module-checkout": "100.4.*", + "magento/module-config": "101.2.*", "magento/module-customer": "103.0.*", - "magento/module-customer-graph-ql": "100.4.*", - "magento/module-directory": "100.4.*", - "magento/module-graph-ql": "100.4.*", - "magento/module-quote": "101.2.*", + "magento/module-persistent": "100.4.*", + "magento/module-reports": "100.4.*", "magento/module-sales": "103.0.*", "magento/module-store": "101.1.*", + "magento/module-wishlist": "101.2.*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-graph-ql-cache": "100.4.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\QuoteGraphQl\\": "" + "Magento\\PersistentHistory\\": "" } }, "license": [ - "OSL-3.0", - "AFL-3.0" + "proprietary" ], "description": "N/A" }, { - "name": "magento/module-re-captcha-admin-ui", - "version": "1.0.0", + "name": "magento/module-price-permissions", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-admin-ui/magento-module-re-captcha-admin-ui-1.0.0.0.zip", - "shasum": "fda64de870bd54381489319ab071ce8b4a4a1715" + "url": "https://repo.magento.com/archives/magento/module-price-permissions/magento-module-price-permissions-100.4.0.0.zip", + "shasum": "e3b56d12a18080d6b736472d30018407a75cfe86" }, "require": { - "magento/framework": "*", - "magento/module-config": "*", - "magento/module-re-captcha-ui": "*", + "magento/framework": "103.0.*", + "magento/module-backend": "102.0.*", + "magento/module-bundle": "101.0.*", + "magento/module-catalog": "104.0.*", + "magento/module-config": "101.2.*", + "magento/module-customer": "103.0.*", + "magento/module-directory": "100.4.*", + "magento/module-downloadable": "100.4.*", + "magento/module-eav": "102.1.*", + "magento/module-gift-card": "101.3.*", + "magento/module-grouped-product": "100.4.*", + "magento/module-msrp": "100.4.*", + "magento/module-store": "101.1.*", + "magento/module-ui": "101.2.*", "php": "~7.3.0||~7.4.0" }, - "type": "magento2-module", - "autoload": { + "suggest": { + "magento/module-configurable-product": "100.4.*" + }, + "type": "magento2-module", + "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\ReCaptchaAdminUi\\": "" + "Magento\\PricePermissions\\": "" } }, "license": [ - "OSL-3.0" + "proprietary" ], - "description": "Google reCAPTCHA integration for Magento2" + "description": "N/A" }, { - "name": "magento/module-re-captcha-checkout", - "version": "1.0.0", + "name": "magento/module-product-alert", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-checkout/magento-module-re-captcha-checkout-1.0.0.0.zip", - "shasum": "1ced533bc16fba1fb3b326e4eb3d4cc8335c11c0" + "url": "https://repo.magento.com/archives/magento/module-product-alert/magento-module-product-alert-100.4.1.0.zip", + "shasum": "1945570a5bb73b1aa264a9a7fa1ba6e007a70690" }, "require": { - "magento/framework": "*", - "magento/module-checkout": "*", - "magento/module-re-captcha-ui": "*", + "magento/framework": "103.0.*", + "magento/module-backend": "102.0.*", + "magento/module-catalog": "104.0.*", + "magento/module-customer": "103.0.*", + "magento/module-store": "101.1.*", + "magento/module-theme": "101.1.*", "php": "~7.3.0||~7.4.0" }, + "suggest": { + "magento/module-config": "101.2.*" + }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\ReCaptchaCheckout\\": "" + "Magento\\ProductAlert\\": "" } }, "license": [ - "OSL-3.0" + "OSL-3.0", + "AFL-3.0" ], - "description": "Google reCAPTCHA integration for Magento2" + "description": "N/A" }, { - "name": "magento/module-re-captcha-contact", - "version": "1.0.0", + "name": "magento/module-product-video", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-contact/magento-module-re-captcha-contact-1.0.0.0.zip", - "shasum": "8a6fa9fd7890a5bfd78b3dac145ad8c52f5d29a5" + "url": "https://repo.magento.com/archives/magento/module-product-video/magento-module-product-video-100.4.1.0.zip", + "shasum": "43e25564c5fd9da795108e412037004afc020134" }, "require": { - "magento/framework": "*", - "magento/module-re-captcha-ui": "*", + "magento/framework": "103.0.*", + "magento/magento-composer-installer": "*", + "magento/module-backend": "102.0.*", + "magento/module-catalog": "104.0.*", + "magento/module-eav": "102.1.*", + "magento/module-media-storage": "100.4.*", + "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, + "suggest": { + "magento/module-config": "101.2.*", + "magento/module-customer": "103.0.*" + }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\ReCaptchaContact\\": "" + "Magento\\ProductVideo\\": "" } }, "license": [ - "OSL-3.0" + "OSL-3.0", + "AFL-3.0" ], - "description": "Google reCAPTCHA integration for Magento2" + "description": "Add Video to Products" }, { - "name": "magento/module-re-captcha-customer", - "version": "1.0.0", + "name": "magento/module-product-video-staging", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-customer/magento-module-re-captcha-customer-1.0.0.0.zip", - "shasum": "b1964a538f7c0c53b15408a14c1c9aa4da49b7a6" + "url": "https://repo.magento.com/archives/magento/module-product-video-staging/magento-module-product-video-staging-100.4.0.0.zip", + "shasum": "70fae6a2b0251d746cb49a8f1317d753e11ffd36" }, "require": { - "magento/framework": "*", - "magento/module-customer": "*", - "magento/module-re-captcha-ui": "*", - "magento/module-re-captcha-validation-api": "*", + "lib-libxml": "*", + "magento/framework": "103.0.*", + "magento/magento-composer-installer": "*", + "magento/module-backend": "102.0.*", + "magento/module-catalog": "104.0.*", + "magento/module-product-video": "100.4.*", "php": "~7.3.0||~7.4.0" }, + "suggest": { + "magento/module-catalog-staging": "100.4.*", + "magento/module-staging": "101.2.*" + }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\ReCaptchaCustomer\\": "" + "Magento\\ProductVideoStaging\\": "" } }, "license": [ - "OSL-3.0" + "proprietary" ], - "description": "Google reCAPTCHA integration for Magento2" + "description": "N/A" }, { - "name": "magento/module-re-captcha-frontend-ui", - "version": "1.0.0", + "name": "magento/module-promotion-permissions", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-frontend-ui/magento-module-re-captcha-frontend-ui-1.0.0.0.zip", - "shasum": "d4da31edac5626333ec03bbcdefa53f8d8cc581f" + "url": "https://repo.magento.com/archives/magento/module-promotion-permissions/magento-module-promotion-permissions-100.4.0.0.zip", + "shasum": "fbac0c552d268e10463fce8a776baef51ed75458" }, "require": { - "magento/framework": "*", - "magento/module-re-captcha-ui": "*", - "magento/module-store": "*", + "magento/framework": "103.0.*", + "magento/module-backend": "102.0.*", + "magento/module-banner": "101.2.*", + "magento/module-catalog-rule": "101.2.*", + "magento/module-reminder": "101.2.*", + "magento/module-sales-rule": "101.2.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -15133,52 +15426,70 @@ "registration.php" ], "psr-4": { - "Magento\\ReCaptchaFrontendUi\\": "" + "Magento\\PromotionPermissions\\": "" } }, "license": [ - "OSL-3.0" + "proprietary" ], - "description": "Google reCAPTCHA integration for Magento2" + "description": "N/A" }, { - "name": "magento/module-re-captcha-migration", - "version": "1.0.0", + "name": "magento/module-quote", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-migration/magento-module-re-captcha-migration-1.0.0.0.zip", - "shasum": "5572a2f825dced7650ba3ce1e732956824ec925e" + "url": "https://repo.magento.com/archives/magento/module-quote/magento-module-quote-101.2.1.0.zip", + "shasum": "75623438d1c4167a0283f3fb1793d45dc7151178" }, "require": { - "magento/framework": "*", - "magento/module-config": "*", + "magento/framework": "103.0.*", + "magento/module-authorization": "100.4.*", + "magento/module-backend": "102.0.*", + "magento/module-catalog": "104.0.*", + "magento/module-catalog-inventory": "100.4.*", + "magento/module-checkout": "100.4.*", + "magento/module-customer": "103.0.*", + "magento/module-directory": "100.4.*", + "magento/module-eav": "102.1.*", + "magento/module-payment": "100.4.*", + "magento/module-sales": "103.0.*", + "magento/module-sales-sequence": "100.4.*", + "magento/module-shipping": "100.4.*", + "magento/module-store": "101.1.*", + "magento/module-tax": "100.4.*", "php": "~7.3.0||~7.4.0" }, + "suggest": { + "magento/module-webapi": "100.4.*" + }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\ReCaptchaMigration\\": "" + "Magento\\Quote\\": "" } }, "license": [ - "OSL-3.0" + "OSL-3.0", + "AFL-3.0" ], - "description": "Google reCAPTCHA config migration for Magento2" + "description": "N/A" }, { - "name": "magento/module-re-captcha-newsletter", - "version": "1.0.0", + "name": "magento/module-quote-analytics", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-newsletter/magento-module-re-captcha-newsletter-1.0.0.0.zip", - "shasum": "9da6f608ba440c84a99f2732ace1c74446629ded" + "url": "https://repo.magento.com/archives/magento/module-quote-analytics/magento-module-quote-analytics-100.4.1.0.zip", + "shasum": "05ee2b4e81f5a5b4003fb96ed18f3b901413bb8c" }, "require": { - "magento/framework": "*", - "magento/module-re-captcha-ui": "*", + "magento/framework": "103.0.*", + "magento/module-analytics": "100.4.*", + "magento/module-quote": "101.2.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -15187,27 +15498,26 @@ "registration.php" ], "psr-4": { - "Magento\\ReCaptchaNewsletter\\": "" + "Magento\\QuoteAnalytics\\": "" } }, "license": [ - "OSL-3.0" + "OSL-3.0", + "AFL-3.0" ], - "description": "Google reCAPTCHA integration for Magento2" + "description": "N/A" }, { - "name": "magento/module-re-captcha-paypal", - "version": "1.0.0", + "name": "magento/module-quote-bundle-options", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-paypal/magento-module-re-captcha-paypal-1.0.0.0.zip", - "shasum": "8da4a3e4ea311405bda83baafea0d838040d811f" + "url": "https://repo.magento.com/archives/magento/module-quote-bundle-options/magento-module-quote-bundle-options-100.4.0.0.zip", + "shasum": "600b519b3bbb05d4b3c9f4b16630e6dfc1fa4a6f" }, "require": { - "magento/framework": "*", - "magento/module-checkout": "*", - "magento/module-re-captcha-ui": "*", - "magento/module-re-captcha-validation-api": "*", + "magento/framework": "103.0.*", + "magento/module-quote": "101.2.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -15216,25 +15526,26 @@ "registration.php" ], "psr-4": { - "Magento\\ReCaptchaPaypal\\": "" + "Magento\\QuoteBundleOptions\\": "" } }, "license": [ - "OSL-3.0" + "OSL-3.0", + "AFL-3.0" ], - "description": "Google reCaptcha integration for Magento2 PayPal PayflowPro payment form" + "description": "Magento module provides data provider for creating buy request for bundle products" }, { - "name": "magento/module-re-captcha-review", - "version": "1.0.0", + "name": "magento/module-quote-configurable-options", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-review/magento-module-re-captcha-review-1.0.0.0.zip", - "shasum": "2cc148c7315de455755ad16a48834aac68dddf21" + "url": "https://repo.magento.com/archives/magento/module-quote-configurable-options/magento-module-quote-configurable-options-100.4.0.0.zip", + "shasum": "45320a2c671d3f4a41840c9c96f21bf2b127e7dc" }, "require": { - "magento/framework": "*", - "magento/module-re-captcha-ui": "*", + "magento/framework": "103.0.*", + "magento/module-quote": "101.2.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -15243,25 +15554,26 @@ "registration.php" ], "psr-4": { - "Magento\\ReCaptchaReview\\": "" + "Magento\\QuoteConfigurableOptions\\": "" } }, "license": [ - "OSL-3.0" + "OSL-3.0", + "AFL-3.0" ], - "description": "Google reCAPTCHA integration for Magento2" + "description": "Magento module provides data provider for creating buy request for configurable products" }, { - "name": "magento/module-re-captcha-send-friend", - "version": "1.0.0", + "name": "magento/module-quote-downloadable-links", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-send-friend/magento-module-re-captcha-send-friend-1.0.0.0.zip", - "shasum": "48f87e21458c2ec554403f53a521f660313a5383" + "url": "https://repo.magento.com/archives/magento/module-quote-downloadable-links/magento-module-quote-downloadable-links-100.4.0.0.zip", + "shasum": "dce1745d88c4e13de89ed114b86c242e1c0f5221" }, "require": { - "magento/framework": "*", - "magento/module-re-captcha-ui": "*", + "magento/framework": "103.0.*", + "magento/module-quote": "101.2.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -15270,25 +15582,27 @@ "registration.php" ], "psr-4": { - "Magento\\ReCaptchaSendFriend\\": "" + "Magento\\QuoteDownloadableLinks\\": "" } }, "license": [ - "OSL-3.0" + "OSL-3.0", + "AFL-3.0" ], - "description": "Google reCAPTCHA integration for Magento2" + "description": "Magento module provides data provider for creating buy request for links of downloadable products" }, { - "name": "magento/module-re-captcha-ui", - "version": "1.0.0", + "name": "magento/module-quote-gift-card-options", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-ui/magento-module-re-captcha-ui-1.0.0.0.zip", - "shasum": "ff154ea5529e53eff2a5f4fa24f406444bb4743e" + "url": "https://repo.magento.com/archives/magento/module-quote-gift-card-options/magento-module-quote-gift-card-options-100.4.0.0.zip", + "shasum": "94a6b166d0c6317d5a436b39eb9817159a30644d" }, "require": { - "magento/framework": "*", - "magento/module-re-captcha-validation-api": "*", + "magento/framework": "103.0.*", + "magento/module-gift-card": "101.3.*", + "magento/module-quote": "101.2.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -15297,60 +15611,67 @@ "registration.php" ], "psr-4": { - "Magento\\ReCaptchaUi\\": "" + "Magento\\QuoteGiftCardOptions\\": "" } }, "license": [ - "OSL-3.0" - ], - "authors": [ - { - "name": "Riccardo Tempesta", - "email": "riccardo.tempesta@magespecialist.it" - } + "proprietary" ], - "description": "Google reCAPTCHA integration for Magento2" + "description": "Magento module provides data provider for creating buy request for gift card products" }, { - "name": "magento/module-re-captcha-user", - "version": "1.0.0", + "name": "magento/module-quote-graph-ql", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-user/magento-module-re-captcha-user-1.0.0.0.zip", - "shasum": "87340c47919cf825877dc1b5b9bfff44bdbf63aa" + "url": "https://repo.magento.com/archives/magento/module-quote-graph-ql/magento-module-quote-graph-ql-100.4.1.0.zip", + "shasum": "7dfaa9fad320206a8b5c939e6f4a455cf5065c22" }, "require": { - "magento/framework": "*", - "magento/module-re-captcha-ui": "*", - "magento/module-re-captcha-validation-api": "*", + "magento/framework": "103.0.*", + "magento/module-catalog": "104.0.*", + "magento/module-checkout": "100.4.*", + "magento/module-customer": "103.0.*", + "magento/module-customer-graph-ql": "100.4.*", + "magento/module-directory": "100.4.*", + "magento/module-gift-message": "100.4.*", + "magento/module-graph-ql": "100.4.*", + "magento/module-quote": "101.2.*", + "magento/module-sales": "103.0.*", + "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, + "suggest": { + "magento/module-graph-ql-cache": "100.4.*" + }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\ReCaptchaUser\\": "" + "Magento\\QuoteGraphQl\\": "" } }, "license": [ - "OSL-3.0" + "OSL-3.0", + "AFL-3.0" ], - "description": "Google reCAPTCHA integration for Magento2" + "description": "N/A" }, { - "name": "magento/module-re-captcha-validation", - "version": "1.0.0", + "name": "magento/module-re-captcha-admin-ui", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-validation/magento-module-re-captcha-validation-1.0.0.0.zip", - "shasum": "7442ac656dc5a79d75973f331403e9762a98e7a7" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-admin-ui/magento-module-re-captcha-admin-ui-1.1.0.0.zip", + "shasum": "f88ca56de721ba40a3b57f49a6f98fcceacd8c91" }, "require": { - "google/recaptcha": "^1.2", "magento/framework": "*", - "magento/module-re-captcha-validation-api": "*", + "magento/module-config": "*", + "magento/module-re-captcha-ui": "1.1.*", + "magento/module-store": "*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -15359,7 +15680,7 @@ "registration.php" ], "psr-4": { - "Magento\\ReCaptchaValidation\\": "" + "Magento\\ReCaptchaAdminUi\\": "" } }, "license": [ @@ -15368,15 +15689,17 @@ "description": "Google reCAPTCHA integration for Magento2" }, { - "name": "magento/module-re-captcha-validation-api", - "version": "1.0.0", + "name": "magento/module-re-captcha-checkout", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-validation-api/magento-module-re-captcha-validation-api-1.0.0.0.zip", - "shasum": "12a6b6124020338c2849f3f656c7a31994b8ee54" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-checkout/magento-module-re-captcha-checkout-1.1.0.0.zip", + "shasum": "6d55c828dc35a8b5a870d17a6ec9e754d682f4de" }, "require": { "magento/framework": "*", + "magento/module-checkout": "*", + "magento/module-re-captcha-ui": "1.1.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -15385,7 +15708,7 @@ "registration.php" ], "psr-4": { - "Magento\\ReCaptchaValidationApi\\": "" + "Magento\\ReCaptchaCheckout\\": "" } }, "license": [ @@ -15394,31 +15717,25 @@ "description": "Google reCAPTCHA integration for Magento2" }, { - "name": "magento/module-re-captcha-version-2-checkbox", - "version": "1.0.0", + "name": "magento/module-re-captcha-contact", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-version-2-checkbox/magento-module-re-captcha-version-2-checkbox-1.0.0.0.zip", - "shasum": "a8a25db92f6600bf0466f0946efb3a9adfc059db" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-contact/magento-module-re-captcha-contact-1.1.0.0.zip", + "shasum": "3ceb2b5c3e3afd6a0655378aa69b7803675d5429" }, "require": { "magento/framework": "*", - "magento/module-re-captcha-ui": "*", - "magento/module-re-captcha-validation-api": "*", - "magento/module-store": "*", + "magento/module-re-captcha-ui": "1.1.*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-config": "*", - "magento/module-re-captcha-admin-ui": "1.0.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\ReCaptchaVersion2Checkbox\\": "" + "Magento\\ReCaptchaContact\\": "" } }, "license": [ @@ -15427,31 +15744,27 @@ "description": "Google reCAPTCHA integration for Magento2" }, { - "name": "magento/module-re-captcha-version-2-invisible", - "version": "1.0.0", + "name": "magento/module-re-captcha-customer", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-version-2-invisible/magento-module-re-captcha-version-2-invisible-1.0.0.0.zip", - "shasum": "5e3aa45c68c85182cdea47dfcb19498496277cd1" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-customer/magento-module-re-captcha-customer-1.1.0.0.zip", + "shasum": "5d475ec29193f61386ea06e1f71d39213142b6f3" }, "require": { "magento/framework": "*", - "magento/module-re-captcha-ui": "*", - "magento/module-re-captcha-validation-api": "*", - "magento/module-store": "*", + "magento/module-customer": "*", + "magento/module-re-captcha-ui": "1.1.*", + "magento/module-re-captcha-validation-api": "1.1.*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-config": "*", - "magento/module-re-captcha-admin-ui": "1.0.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\ReCaptchaVersion2Invisible\\": "" + "Magento\\ReCaptchaCustomer\\": "" } }, "license": [ @@ -15460,31 +15773,26 @@ "description": "Google reCAPTCHA integration for Magento2" }, { - "name": "magento/module-re-captcha-version-3-invisible", - "version": "1.0.0", + "name": "magento/module-re-captcha-frontend-ui", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-version-3-invisible/magento-module-re-captcha-version-3-invisible-1.0.0.0.zip", - "shasum": "1f2696f83f5dace6bc4c1b5d7c48ee3d2317ba58" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-frontend-ui/magento-module-re-captcha-frontend-ui-1.1.0.0.zip", + "shasum": "d1aa622ee1e4428fe830dbeb4e9131f736842a15" }, "require": { "magento/framework": "*", - "magento/module-re-captcha-ui": "*", - "magento/module-re-captcha-validation-api": "*", + "magento/module-re-captcha-ui": "1.1.*", "magento/module-store": "*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-config": "*", - "magento/module-re-captcha-admin-ui": "1.0.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\ReCaptchaVersion3Invisible\\": "" + "Magento\\ReCaptchaFrontendUi\\": "" } }, "license": [ @@ -15493,91 +15801,72 @@ "description": "Google reCAPTCHA integration for Magento2" }, { - "name": "magento/module-related-product-graph-ql", - "version": "100.4.0", + "name": "magento/module-re-captcha-migration", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-related-product-graph-ql/magento-module-related-product-graph-ql-100.4.0.0.zip", - "shasum": "5cd0c570ccb984b9b6cb4bf6f8752ab6ccfdae06" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-migration/magento-module-re-captcha-migration-1.1.0.0.zip", + "shasum": "f2e9e44a089ce344078e5fd4b4c41c74c1f3d6e3" }, "require": { - "magento/framework": "103.0.*", - "magento/module-catalog": "104.0.*", - "magento/module-catalog-graph-ql": "100.4.*", + "magento/framework": "*", + "magento/module-config": "*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-graph-ql": "100.4.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\RelatedProductGraphQl\\": "" + "Magento\\ReCaptchaMigration\\": "" } }, "license": [ - "OSL-3.0", - "AFL-3.0" + "OSL-3.0" ], - "description": "N/A" + "description": "Google reCAPTCHA config migration for Magento2" }, { - "name": "magento/module-release-notification", - "version": "100.4.0", + "name": "magento/module-re-captcha-newsletter", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-release-notification/magento-module-release-notification-100.4.0.0.zip", - "shasum": "f50ba418574ffd4f725280ed88b2d1f06490e481" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-newsletter/magento-module-re-captcha-newsletter-1.1.0.0.zip", + "shasum": "b3ffbe9785e530a1a1b7f4f71e3fe151efabc708" }, "require": { - "magento/framework": "103.0.*", - "magento/module-backend": "102.0.*", - "magento/module-ui": "101.2.*", - "magento/module-user": "101.2.*", + "magento/framework": "*", + "magento/module-re-captcha-ui": "1.1.*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-config": "101.2.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\ReleaseNotification\\": "" + "Magento\\ReCaptchaNewsletter\\": "" } }, "license": [ - "OSL-3.0", - "AFL-3.0" + "OSL-3.0" ], - "description": "N/A" + "description": "Google reCAPTCHA integration for Magento2" }, { - "name": "magento/module-reminder", - "version": "101.2.0", + "name": "magento/module-re-captcha-paypal", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-reminder/magento-module-reminder-101.2.0.0.zip", - "shasum": "7367466f315866edb55d2829f4759ae3bf2fab45" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-paypal/magento-module-re-captcha-paypal-1.1.0.0.zip", + "shasum": "b2d68dc57ced68c60ced8c9f939688464889c1cd" }, "require": { - "magento/framework": "103.0.*", - "magento/module-backend": "102.0.*", - "magento/module-catalog": "104.0.*", - "magento/module-catalog-rule": "101.2.*", - "magento/module-config": "101.2.*", - "magento/module-customer": "103.0.*", - "magento/module-eav": "102.1.*", - "magento/module-email": "101.1.*", - "magento/module-quote": "101.2.*", - "magento/module-rule": "100.4.*", - "magento/module-sales-rule": "101.2.*", - "magento/module-store": "101.1.*", + "magento/framework": "*", + "magento/module-checkout": "*", + "magento/module-re-captcha-ui": "1.1.*", + "magento/module-re-captcha-validation-api": "1.1.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -15586,40 +15875,25 @@ "registration.php" ], "psr-4": { - "Magento\\Reminder\\": "" + "Magento\\ReCaptchaPaypal\\": "" } }, "license": [ - "proprietary" + "OSL-3.0" ], - "description": "N/A" + "description": "Google reCaptcha integration for Magento2 PayPal PayflowPro payment form" }, { - "name": "magento/module-reports", - "version": "100.4.0", + "name": "magento/module-re-captcha-review", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-reports/magento-module-reports-100.4.0.0.zip", - "shasum": "d5bfac444ac991aff16e88d12bb9619aa25e4090" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-review/magento-module-re-captcha-review-1.1.0.0.zip", + "shasum": "1534a0431995fc48ba6e076695eed57017a077c5" }, "require": { - "magento/framework": "103.0.*", - "magento/module-backend": "102.0.*", - "magento/module-catalog": "104.0.*", - "magento/module-catalog-inventory": "100.4.*", - "magento/module-cms": "104.0.*", - "magento/module-config": "101.2.*", - "magento/module-customer": "103.0.*", - "magento/module-downloadable": "100.4.*", - "magento/module-eav": "102.1.*", - "magento/module-quote": "101.2.*", - "magento/module-review": "100.4.*", - "magento/module-sales": "103.0.*", - "magento/module-sales-rule": "101.2.*", - "magento/module-store": "101.1.*", - "magento/module-tax": "100.4.*", - "magento/module-widget": "101.2.*", - "magento/module-wishlist": "101.2.*", + "magento/framework": "*", + "magento/module-re-captcha-ui": "1.1.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -15628,25 +15902,25 @@ "registration.php" ], "psr-4": { - "Magento\\Reports\\": "" + "Magento\\ReCaptchaReview\\": "" } }, "license": [ - "OSL-3.0", - "AFL-3.0" + "OSL-3.0" ], - "description": "N/A" + "description": "Google reCAPTCHA integration for Magento2" }, { - "name": "magento/module-require-js", - "version": "100.4.0", + "name": "magento/module-re-captcha-send-friend", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-require-js/magento-module-require-js-100.4.0.0.zip", - "shasum": "dd3fc06be9622a09dd4f339bed52d2af438deb46" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-send-friend/magento-module-re-captcha-send-friend-1.1.0.0.zip", + "shasum": "bea1720bec4686a5257325fc71fb1d56b61fa1f4" }, "require": { - "magento/framework": "103.0.*", + "magento/framework": "*", + "magento/module-re-captcha-ui": "1.1.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -15655,25 +15929,25 @@ "registration.php" ], "psr-4": { - "Magento\\RequireJs\\": "" + "Magento\\ReCaptchaSendFriend\\": "" } }, "license": [ - "OSL-3.0", - "AFL-3.0" + "OSL-3.0" ], - "description": "N/A" + "description": "Google reCAPTCHA integration for Magento2" }, { - "name": "magento/module-resource-connections", - "version": "100.4.0", + "name": "magento/module-re-captcha-ui", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-resource-connections/magento-module-resource-connections-100.4.0.0.zip", - "shasum": "1692977b01f1a1ec83e530176192f00423f0da34" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-ui/magento-module-re-captcha-ui-1.1.0.0.zip", + "shasum": "21b9c5e3b70c6181a913debae9c0da20bb44f13e" }, "require": { - "magento/framework": "103.0.*", + "magento/framework": "*", + "magento/module-re-captcha-validation-api": "1.1.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -15682,65 +15956,60 @@ "registration.php" ], "psr-4": { - "Magento\\ResourceConnections\\": "" + "Magento\\ReCaptchaUi\\": "" } }, "license": [ - "proprietary" + "OSL-3.0" ], - "description": "N/A" + "authors": [ + { + "name": "Riccardo Tempesta", + "email": "riccardo.tempesta@magespecialist.it" + } + ], + "description": "Google reCAPTCHA integration for Magento2" }, { - "name": "magento/module-review", - "version": "100.4.0", + "name": "magento/module-re-captcha-user", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-review/magento-module-review-100.4.0.0.zip", - "shasum": "26de6f8b816476df517cbafc0ef582f027f37c24" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-user/magento-module-re-captcha-user-1.1.0.0.zip", + "shasum": "caa712bfd103beec01c22a20dfb4ce90106e9417" }, "require": { - "magento/framework": "103.0.*", - "magento/module-backend": "102.0.*", - "magento/module-catalog": "104.0.*", - "magento/module-customer": "103.0.*", - "magento/module-eav": "102.1.*", - "magento/module-newsletter": "100.4.*", - "magento/module-store": "101.1.*", - "magento/module-theme": "101.1.*", - "magento/module-ui": "101.2.*", + "magento/framework": "*", + "magento/module-re-captcha-ui": "1.1.*", + "magento/module-re-captcha-validation-api": "1.1.*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-cookie": "100.4.*", - "magento/module-review-sample-data": "Sample Data version: 100.4.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\Review\\": "" + "Magento\\ReCaptchaUser\\": "" } }, "license": [ - "OSL-3.0", - "AFL-3.0" + "OSL-3.0" ], - "description": "N/A" + "description": "Google reCAPTCHA integration for Magento2" }, { - "name": "magento/module-review-analytics", - "version": "100.4.0", + "name": "magento/module-re-captcha-validation", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-review-analytics/magento-module-review-analytics-100.4.0.0.zip", - "shasum": "76756806f504188dc4f3dd256874a682fa3bee40" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-validation/magento-module-re-captcha-validation-1.1.0.0.zip", + "shasum": "1f084fb5089071b9ce0af780f30223ec3107a0f6" }, "require": { - "magento/framework": "103.0.*", - "magento/module-analytics": "100.4.*", - "magento/module-review": "100.4.*", + "google/recaptcha": "^1.2", + "magento/framework": "*", + "magento/module-re-captcha-validation-api": "1.1.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -15749,79 +16018,58 @@ "registration.php" ], "psr-4": { - "Magento\\ReviewAnalytics\\": "" + "Magento\\ReCaptchaValidation\\": "" } }, "license": [ - "OSL-3.0", - "AFL-3.0" + "OSL-3.0" ], - "description": "N/A" + "description": "Google reCAPTCHA integration for Magento2" }, { - "name": "magento/module-review-staging", - "version": "100.4.0", + "name": "magento/module-re-captcha-validation-api", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-review-staging/magento-module-review-staging-100.4.0.0.zip", - "shasum": "92bbac45b34f8dc7ac1badaed01bce58802124d7" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-validation-api/magento-module-re-captcha-validation-api-1.1.0.0.zip", + "shasum": "6fa06fe393f30ccc25d29341e7bc3f47203ed14d" }, "require": { - "lib-libxml": "*", - "magento/framework": "103.0.*", - "magento/magento-composer-installer": "*", - "magento/module-catalog": "104.0.*", - "magento/module-review": "100.4.*", + "magento/framework": "*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-staging": "101.2.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\ReviewStaging\\": "" + "Magento\\ReCaptchaValidationApi\\": "" } }, "license": [ - "proprietary" + "OSL-3.0" ], - "description": "N/A" + "description": "Google reCAPTCHA integration for Magento2" }, { - "name": "magento/module-reward", - "version": "101.2.0", + "name": "magento/module-re-captcha-version-2-checkbox", + "version": "2.0.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-reward/magento-module-reward-101.2.0.0.zip", - "shasum": "a2145ba6172a215aecde20cedf09a30862dd6d81" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-version-2-checkbox/magento-module-re-captcha-version-2-checkbox-2.0.0.0.zip", + "shasum": "8b499934e07d259e273b56d56a230d6dee080d68" }, "require": { - "magento/framework": "103.0.*", - "magento/module-authorization": "100.4.*", - "magento/module-backend": "102.0.*", - "magento/module-checkout": "100.4.*", - "magento/module-cms": "104.0.*", - "magento/module-config": "101.2.*", - "magento/module-customer": "103.0.*", - "magento/module-eav": "102.1.*", - "magento/module-invitation": "100.4.*", - "magento/module-newsletter": "100.4.*", - "magento/module-quote": "101.2.*", - "magento/module-sales": "103.0.*", - "magento/module-sales-rule": "101.2.*", - "magento/module-store": "101.1.*", - "magento/module-tax": "100.4.*", - "magento/module-theme": "101.1.*", - "magento/module-ui": "101.2.*", + "magento/framework": "*", + "magento/module-re-captcha-ui": "1.1.*", + "magento/module-re-captcha-validation-api": "1.1.*", + "magento/module-store": "*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-customer-balance": "100.4.*", - "magento/module-customer-import-export": "100.4.*" + "magento/module-config": "*", + "magento/module-re-captcha-admin-ui": "1.1.*" }, "type": "magento2-module", "autoload": { @@ -15829,29 +16077,32 @@ "registration.php" ], "psr-4": { - "Magento\\Reward\\": "" + "Magento\\ReCaptchaVersion2Checkbox\\": "" } }, "license": [ - "proprietary" + "OSL-3.0" ], - "description": "N/A" + "description": "Google reCAPTCHA integration for Magento2" }, { - "name": "magento/module-reward-graph-ql", - "version": "100.4.0", + "name": "magento/module-re-captcha-version-2-invisible", + "version": "2.0.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-reward-graph-ql/magento-module-reward-graph-ql-100.4.0.0.zip", - "shasum": "82e7fc3da138434aa87a6397f5614001e4473d32" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-version-2-invisible/magento-module-re-captcha-version-2-invisible-2.0.0.0.zip", + "shasum": "58ec898769fb85b11593d5d49b22149ce517f91f" }, "require": { - "magento/framework": "103.0.*", + "magento/framework": "*", + "magento/module-re-captcha-ui": "1.1.*", + "magento/module-re-captcha-validation-api": "1.1.*", + "magento/module-store": "*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-customer-graph-ql": "100.4.*", - "magento/module-reward": "101.2.*" + "magento/module-config": "*", + "magento/module-re-captcha-admin-ui": "1.1.*" }, "type": "magento2-module", "autoload": { @@ -15859,32 +16110,32 @@ "registration.php" ], "psr-4": { - "Magento\\RewardGraphQl\\": "" + "Magento\\ReCaptchaVersion2Invisible\\": "" } }, "license": [ - "OSL-3.0", - "AFL-3.0" + "OSL-3.0" ], - "description": "N/A" + "description": "Google reCAPTCHA integration for Magento2" }, { - "name": "magento/module-reward-staging", - "version": "100.4.0", + "name": "magento/module-re-captcha-version-3-invisible", + "version": "2.0.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-reward-staging/magento-module-reward-staging-100.4.0.0.zip", - "shasum": "83d491420699b5a0a5efb8e387e59e783658205f" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-version-3-invisible/magento-module-re-captcha-version-3-invisible-2.0.0.0.zip", + "shasum": "1214fdf89a58c7e2ed267f1c33a55c40f1ec1054" }, "require": { - "magento/framework": "103.0.*", - "magento/module-reward": "101.2.*", - "magento/module-sales-rule": "101.2.*", - "magento/module-sales-rule-staging": "100.4.*", + "magento/framework": "*", + "magento/module-re-captcha-ui": "1.1.*", + "magento/module-re-captcha-validation-api": "1.1.*", + "magento/module-store": "*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-staging": "101.2.*" + "magento/module-config": "*", + "magento/module-re-captcha-admin-ui": "1.1.*" }, "type": "magento2-module", "autoload": { @@ -15892,50 +16143,30 @@ "registration.php" ], "psr-4": { - "Magento\\RewardStaging\\": "" + "Magento\\ReCaptchaVersion3Invisible\\": "" } }, "license": [ - "proprietary" + "OSL-3.0" ], - "description": "N/A" + "description": "Google reCAPTCHA integration for Magento2" }, { - "name": "magento/module-rma", - "version": "101.2.0", + "name": "magento/module-related-product-graph-ql", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-rma/magento-module-rma-101.2.0.0.zip", - "shasum": "778b624a5ff75d7c3c53b4259e3459cc647bc772" + "url": "https://repo.magento.com/archives/magento/module-related-product-graph-ql/magento-module-related-product-graph-ql-100.4.0.0.zip", + "shasum": "5cd0c570ccb984b9b6cb4bf6f8752ab6ccfdae06" }, "require": { - "ext-gd": "*", "magento/framework": "103.0.*", - "magento/module-authorization": "100.4.*", - "magento/module-backend": "102.0.*", "magento/module-catalog": "104.0.*", - "magento/module-config": "101.2.*", - "magento/module-custom-attribute-management": "100.4.*", - "magento/module-customer": "103.0.*", - "magento/module-customer-custom-attributes": "100.4.*", - "magento/module-directory": "100.4.*", - "magento/module-eav": "102.1.*", - "magento/module-media-storage": "100.4.*", - "magento/module-payment": "100.4.*", - "magento/module-quote": "101.2.*", - "magento/module-sales": "103.0.*", - "magento/module-sales-sequence": "100.4.*", - "magento/module-shipping": "100.4.*", - "magento/module-store": "101.1.*", - "magento/module-tax": "100.4.*", - "magento/module-theme": "101.1.*", - "magento/module-ui": "101.2.*", + "magento/module-catalog-graph-ql": "100.4.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-dhl": "100.4.*", - "magento/module-fedex": "100.4.*", - "magento/module-usps": "100.4.*" + "magento/module-graph-ql": "100.4.*" }, "type": "magento2-module", "autoload": { @@ -15943,29 +16174,32 @@ "registration.php" ], "psr-4": { - "Magento\\Rma\\": "" + "Magento\\RelatedProductGraphQl\\": "" } }, "license": [ - "proprietary" + "OSL-3.0", + "AFL-3.0" ], "description": "N/A" }, { - "name": "magento/module-rma-graph-ql", + "name": "magento/module-release-notification", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-rma-graph-ql/magento-module-rma-graph-ql-100.4.0.0.zip", - "shasum": "5e37063c151f68e700b2e1d7ebc20f9b5efb38ca" + "url": "https://repo.magento.com/archives/magento/module-release-notification/magento-module-release-notification-100.4.0.0.zip", + "shasum": "f50ba418574ffd4f725280ed88b2d1f06490e481" }, "require": { "magento/framework": "103.0.*", + "magento/module-backend": "102.0.*", + "magento/module-ui": "101.2.*", + "magento/module-user": "101.2.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-catalog-graph-ql": "100.4.*", - "magento/module-rma": "101.2.*" + "magento/module-config": "101.2.*" }, "type": "magento2-module", "autoload": { @@ -15973,7 +16207,7 @@ "registration.php" ], "psr-4": { - "Magento\\RmaGraphQl\\": "" + "Magento\\ReleaseNotification\\": "" } }, "license": [ @@ -15983,30 +16217,35 @@ "description": "N/A" }, { - "name": "magento/module-rma-staging", - "version": "100.4.0", + "name": "magento/module-reminder", + "version": "101.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-rma-staging/magento-module-rma-staging-100.4.0.0.zip", - "shasum": "45cc3dd2bc2610292144d8047a56e3621973ca2c" + "url": "https://repo.magento.com/archives/magento/module-reminder/magento-module-reminder-101.2.0.0.zip", + "shasum": "7367466f315866edb55d2829f4759ae3bf2fab45" }, "require": { - "lib-libxml": "*", "magento/framework": "103.0.*", - "magento/magento-composer-installer": "*", + "magento/module-backend": "102.0.*", + "magento/module-catalog": "104.0.*", + "magento/module-catalog-rule": "101.2.*", + "magento/module-config": "101.2.*", + "magento/module-customer": "103.0.*", + "magento/module-eav": "102.1.*", + "magento/module-email": "101.1.*", + "magento/module-quote": "101.2.*", + "magento/module-rule": "100.4.*", + "magento/module-sales-rule": "101.2.*", + "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-rma": "101.2.*", - "magento/module-staging": "101.2.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\RmaStaging\\": "" + "Magento\\Reminder\\": "" } }, "license": [ @@ -16015,28 +16254,40 @@ "description": "N/A" }, { - "name": "magento/module-robots", - "version": "101.1.0", + "name": "magento/module-reports", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-robots/magento-module-robots-101.1.0.0.zip", - "shasum": "8b5947ed3daf9760b3ef0228f156340d55355b1f" + "url": "https://repo.magento.com/archives/magento/module-reports/magento-module-reports-100.4.1.0.zip", + "shasum": "507a4841a101d08e0b29cf33ff73e1c2072fa27d" }, "require": { "magento/framework": "103.0.*", + "magento/module-backend": "102.0.*", + "magento/module-catalog": "104.0.*", + "magento/module-catalog-inventory": "100.4.*", + "magento/module-cms": "104.0.*", + "magento/module-config": "101.2.*", + "magento/module-customer": "103.0.*", + "magento/module-downloadable": "100.4.*", + "magento/module-eav": "102.1.*", + "magento/module-quote": "101.2.*", + "magento/module-review": "100.4.*", + "magento/module-sales": "103.0.*", + "magento/module-sales-rule": "101.2.*", "magento/module-store": "101.1.*", + "magento/module-tax": "100.4.*", + "magento/module-widget": "101.2.*", + "magento/module-wishlist": "101.2.*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-theme": "101.1.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\Robots\\": "" + "Magento\\Reports\\": "" } }, "license": [ @@ -16046,18 +16297,15 @@ "description": "N/A" }, { - "name": "magento/module-rss", + "name": "magento/module-require-js", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-rss/magento-module-rss-100.4.0.0.zip", - "shasum": "d6273b5387ed101b31875ef0b985aee0af5bc63e" + "url": "https://repo.magento.com/archives/magento/module-require-js/magento-module-require-js-100.4.0.0.zip", + "shasum": "dd3fc06be9622a09dd4f339bed52d2af438deb46" }, "require": { "magento/framework": "103.0.*", - "magento/module-backend": "102.0.*", - "magento/module-customer": "103.0.*", - "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -16066,7 +16314,7 @@ "registration.php" ], "psr-4": { - "Magento\\Rss\\": "" + "Magento\\RequireJs\\": "" } }, "license": [ @@ -16076,20 +16324,15 @@ "description": "N/A" }, { - "name": "magento/module-rule", + "name": "magento/module-resource-connections", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-rule/magento-module-rule-100.4.0.0.zip", - "shasum": "39a746d47795a2d8e16663a5cf2c6b4278e48a37" + "url": "https://repo.magento.com/archives/magento/module-resource-connections/magento-module-resource-connections-100.4.0.0.zip", + "shasum": "1692977b01f1a1ec83e530176192f00423f0da34" }, "require": { - "lib-libxml": "*", "magento/framework": "103.0.*", - "magento/module-backend": "102.0.*", - "magento/module-catalog": "104.0.*", - "magento/module-eav": "102.1.*", - "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -16098,53 +16341,37 @@ "registration.php" ], "psr-4": { - "Magento\\Rule\\": "" + "Magento\\ResourceConnections\\": "" } }, "license": [ - "OSL-3.0", - "AFL-3.0" + "proprietary" ], "description": "N/A" }, { - "name": "magento/module-sales", - "version": "103.0.0", + "name": "magento/module-review", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sales/magento-module-sales-103.0.0.0.zip", - "shasum": "1ec4b2bba3a0f89ab4641a9e9ab4531485dea645" + "url": "https://repo.magento.com/archives/magento/module-review/magento-module-review-100.4.1.0.zip", + "shasum": "3b53f164707f690daba2c344fa9f342d51ca8063" }, "require": { "magento/framework": "103.0.*", - "magento/module-authorization": "100.4.*", "magento/module-backend": "102.0.*", - "magento/module-bundle": "101.0.*", "magento/module-catalog": "104.0.*", - "magento/module-catalog-inventory": "100.4.*", - "magento/module-checkout": "100.4.*", - "magento/module-config": "101.2.*", "magento/module-customer": "103.0.*", - "magento/module-directory": "100.4.*", "magento/module-eav": "102.1.*", - "magento/module-gift-message": "100.4.*", - "magento/module-media-storage": "100.4.*", - "magento/module-payment": "100.4.*", - "magento/module-quote": "101.2.*", - "magento/module-reports": "100.4.*", - "magento/module-sales-rule": "101.2.*", - "magento/module-sales-sequence": "100.4.*", - "magento/module-shipping": "100.4.*", + "magento/module-newsletter": "100.4.*", "magento/module-store": "101.1.*", - "magento/module-tax": "100.4.*", "magento/module-theme": "101.1.*", "magento/module-ui": "101.2.*", - "magento/module-widget": "101.2.*", - "magento/module-wishlist": "101.2.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-sales-sample-data": "Sample Data version: 100.4.*" + "magento/module-cookie": "100.4.*", + "magento/module-review-sample-data": "Sample Data version: 100.4.*" }, "type": "magento2-module", "autoload": { @@ -16152,7 +16379,7 @@ "registration.php" ], "psr-4": { - "Magento\\Sales\\": "" + "Magento\\Review\\": "" } }, "license": [ @@ -16162,17 +16389,17 @@ "description": "N/A" }, { - "name": "magento/module-sales-analytics", + "name": "magento/module-review-analytics", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sales-analytics/magento-module-sales-analytics-100.4.0.0.zip", - "shasum": "a55d291cfdd7191791431a3c6587c7adb7355b77" + "url": "https://repo.magento.com/archives/magento/module-review-analytics/magento-module-review-analytics-100.4.0.0.zip", + "shasum": "76756806f504188dc4f3dd256874a682fa3bee40" }, "require": { "magento/framework": "103.0.*", "magento/module-analytics": "100.4.*", - "magento/module-sales": "103.0.*", + "magento/module-review": "100.4.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -16181,7 +16408,7 @@ "registration.php" ], "psr-4": { - "Magento\\SalesAnalytics\\": "" + "Magento\\ReviewAnalytics\\": "" } }, "license": [ @@ -16191,130 +16418,138 @@ "description": "N/A" }, { - "name": "magento/module-sales-archive", - "version": "101.0.0", + "name": "magento/module-review-graph-ql", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sales-archive/magento-module-sales-archive-101.0.0.0.zip", - "shasum": "8b176a1466169b6b07ca4cc076be0f9cd8d5a2df" + "url": "https://repo.magento.com/archives/magento/module-review-graph-ql/magento-module-review-graph-ql-100.4.0.0.zip", + "shasum": "b02dc8dfb8e39c8602ac38337e64eb8c60c5f492" }, "require": { "magento/framework": "103.0.*", - "magento/module-backend": "102.0.*", - "magento/module-config": "101.2.*", - "magento/module-sales": "103.0.*", - "magento/module-sales-sequence": "100.4.*", + "magento/module-catalog": "104.0.*", + "magento/module-review": "100.4.*", "magento/module-store": "101.1.*", - "magento/module-ui": "101.2.*", "php": "~7.3.0||~7.4.0" }, + "suggest": { + "magento/module-graph-ql": "100.4.*", + "magento/module-graph-ql-cache": "100.4.*" + }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\SalesArchive\\": "" + "Magento\\ReviewGraphQl\\": "" } }, "license": [ - "proprietary" + "OSL-3.0", + "AFL-3.0" ], "description": "N/A" }, { - "name": "magento/module-sales-graph-ql", + "name": "magento/module-review-staging", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sales-graph-ql/magento-module-sales-graph-ql-100.4.0.0.zip", - "shasum": "4edf4c0befdaf06f45b705e409b886cc860397b0" + "url": "https://repo.magento.com/archives/magento/module-review-staging/magento-module-review-staging-100.4.0.0.zip", + "shasum": "92bbac45b34f8dc7ac1badaed01bce58802124d7" }, "require": { + "lib-libxml": "*", "magento/framework": "103.0.*", - "magento/module-graph-ql": "100.4.*", - "magento/module-sales": "103.0.*", + "magento/magento-composer-installer": "*", + "magento/module-catalog": "104.0.*", + "magento/module-review": "100.4.*", "php": "~7.3.0||~7.4.0" }, + "suggest": { + "magento/module-staging": "101.2.*" + }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\SalesGraphQl\\": "" + "Magento\\ReviewStaging\\": "" } }, "license": [ - "OSL-3.0", - "AFL-3.0" + "proprietary" ], "description": "N/A" }, { - "name": "magento/module-sales-inventory", - "version": "100.4.0", + "name": "magento/module-reward", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sales-inventory/magento-module-sales-inventory-100.4.0.0.zip", - "shasum": "f00ad78a70ca2dd02dcb8fc3b1f8166aabb9aa27" + "url": "https://repo.magento.com/archives/magento/module-reward/magento-module-reward-101.2.1.0.zip", + "shasum": "456ee538a8c3b8c5b7af419ddd400bb14927deea" }, "require": { "magento/framework": "103.0.*", - "magento/module-catalog": "104.0.*", - "magento/module-catalog-inventory": "100.4.*", + "magento/module-authorization": "100.4.*", + "magento/module-backend": "102.0.*", + "magento/module-checkout": "100.4.*", + "magento/module-cms": "104.0.*", + "magento/module-config": "101.2.*", + "magento/module-customer": "103.0.*", + "magento/module-eav": "102.1.*", + "magento/module-invitation": "100.4.*", + "magento/module-newsletter": "100.4.*", + "magento/module-quote": "101.2.*", "magento/module-sales": "103.0.*", + "magento/module-sales-rule": "101.2.*", "magento/module-store": "101.1.*", + "magento/module-tax": "100.4.*", + "magento/module-theme": "101.1.*", + "magento/module-ui": "101.2.*", "php": "~7.3.0||~7.4.0" }, + "suggest": { + "magento/module-customer-balance": "100.4.*", + "magento/module-customer-import-export": "100.4.*" + }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\SalesInventory\\": "" + "Magento\\Reward\\": "" } }, "license": [ - "OSL-3.0", - "AFL-3.0" + "proprietary" ], "description": "N/A" }, { - "name": "magento/module-sales-rule", - "version": "101.2.0", + "name": "magento/module-reward-graph-ql", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sales-rule/magento-module-sales-rule-101.2.0.0.zip", - "shasum": "6c5064668400a2d3cb447f0b762f7daab2b9a09f" + "url": "https://repo.magento.com/archives/magento/module-reward-graph-ql/magento-module-reward-graph-ql-100.4.1.0.zip", + "shasum": "5045291e31458a5324a7b3afeace172073544450" }, "require": { "magento/framework": "103.0.*", - "magento/module-authorization": "100.4.*", - "magento/module-backend": "102.0.*", - "magento/module-captcha": "100.4.*", - "magento/module-catalog": "104.0.*", - "magento/module-catalog-rule": "101.2.*", - "magento/module-checkout": "100.4.*", - "magento/module-config": "101.2.*", "magento/module-customer": "103.0.*", - "magento/module-directory": "100.4.*", - "magento/module-eav": "102.1.*", - "magento/module-payment": "100.4.*", "magento/module-quote": "101.2.*", - "magento/module-reports": "100.4.*", - "magento/module-rule": "100.4.*", - "magento/module-sales": "103.0.*", - "magento/module-shipping": "100.4.*", + "magento/module-quote-graph-ql": "100.4.*", + "magento/module-reward": "101.2.*", "magento/module-store": "101.1.*", - "magento/module-ui": "101.2.*", - "magento/module-widget": "101.2.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-sales-rule-sample-data": "Sample Data version: 100.4.*" + "magento/module-customer-graph-ql": "100.4.*", + "magento/module-graph-ql": "100.4.*" }, "type": "magento2-module", "autoload": { @@ -16322,7 +16557,7 @@ "registration.php" ], "psr-4": { - "Magento\\SalesRule\\": "" + "Magento\\RewardGraphQl\\": "" } }, "license": [ @@ -16332,34 +16567,30 @@ "description": "N/A" }, { - "name": "magento/module-sales-rule-staging", + "name": "magento/module-reward-staging", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sales-rule-staging/magento-module-sales-rule-staging-100.4.0.0.zip", - "shasum": "7159baf3a425e737e6f0bcad1c748ce983aef8b2" + "url": "https://repo.magento.com/archives/magento/module-reward-staging/magento-module-reward-staging-100.4.0.0.zip", + "shasum": "83d491420699b5a0a5efb8e387e59e783658205f" }, "require": { "magento/framework": "103.0.*", - "magento/module-advanced-sales-rule": "100.4.*", - "magento/module-backend": "102.0.*", - "magento/module-banner": "101.2.*", - "magento/module-config": "101.2.*", - "magento/module-quote": "101.2.*", - "magento/module-reminder": "101.2.*", - "magento/module-rule": "100.4.*", + "magento/module-reward": "101.2.*", "magento/module-sales-rule": "101.2.*", - "magento/module-staging": "101.2.*", - "magento/module-ui": "101.2.*", + "magento/module-sales-rule-staging": "100.4.*", "php": "~7.3.0||~7.4.0" }, + "suggest": { + "magento/module-staging": "101.2.*" + }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\SalesRuleStaging\\": "" + "Magento\\RewardStaging\\": "" } }, "license": [ @@ -16368,82 +16599,104 @@ "description": "N/A" }, { - "name": "magento/module-sales-sequence", - "version": "100.4.0", + "name": "magento/module-rma", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sales-sequence/magento-module-sales-sequence-100.4.0.0.zip", - "shasum": "17c6d19b579f082e0fd5b7d1abcf21a11b60e85a" + "url": "https://repo.magento.com/archives/magento/module-rma/magento-module-rma-101.2.1.0.zip", + "shasum": "16b135dd749844f12d9134ee215bf9b989a343c3" }, "require": { + "ext-gd": "*", "magento/framework": "103.0.*", + "magento/module-authorization": "100.4.*", + "magento/module-backend": "102.0.*", + "magento/module-catalog": "104.0.*", + "magento/module-config": "101.2.*", + "magento/module-custom-attribute-management": "100.4.*", + "magento/module-customer": "103.0.*", + "magento/module-customer-custom-attributes": "100.4.*", + "magento/module-directory": "100.4.*", + "magento/module-eav": "102.1.*", + "magento/module-media-storage": "100.4.*", + "magento/module-payment": "100.4.*", + "magento/module-quote": "101.2.*", + "magento/module-sales": "103.0.*", + "magento/module-sales-sequence": "100.4.*", + "magento/module-shipping": "100.4.*", + "magento/module-store": "101.1.*", + "magento/module-tax": "100.4.*", + "magento/module-theme": "101.1.*", + "magento/module-ui": "101.2.*", "php": "~7.3.0||~7.4.0" }, + "suggest": { + "magento/module-dhl": "100.4.*", + "magento/module-fedex": "100.4.*", + "magento/module-usps": "100.4.*" + }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\SalesSequence\\": "" + "Magento\\Rma\\": "" } }, "license": [ - "OSL-3.0", - "AFL-3.0" + "proprietary" ], "description": "N/A" }, { - "name": "magento/module-sample-data", + "name": "magento/module-rma-graph-ql", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sample-data/magento-module-sample-data-100.4.0.0.zip", - "shasum": "ae4dd0d30a7a1938143253484ef582ad9bb3ef87" + "url": "https://repo.magento.com/archives/magento/module-rma-graph-ql/magento-module-rma-graph-ql-100.4.0.0.zip", + "shasum": "5e37063c151f68e700b2e1d7ebc20f9b5efb38ca" }, "require": { "magento/framework": "103.0.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/sample-data-media": "Sample Data version: 100.4.*" + "magento/module-catalog-graph-ql": "100.4.*", + "magento/module-rma": "101.2.*" }, "type": "magento2-module", "autoload": { "files": [ - "cli_commands.php", "registration.php" ], "psr-4": { - "Magento\\SampleData\\": "" + "Magento\\RmaGraphQl\\": "" } }, "license": [ "OSL-3.0", "AFL-3.0" ], - "description": "Sample Data fixtures" + "description": "N/A" }, { - "name": "magento/module-scalable-checkout", + "name": "magento/module-rma-staging", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-scalable-checkout/magento-module-scalable-checkout-100.4.0.0.zip", - "shasum": "c31cd4ecf9e7fedf80395cb3765d202f92bba4b4" + "url": "https://repo.magento.com/archives/magento/module-rma-staging/magento-module-rma-staging-100.4.0.0.zip", + "shasum": "45cc3dd2bc2610292144d8047a56e3621973ca2c" }, "require": { + "lib-libxml": "*", "magento/framework": "103.0.*", - "magento/framework-foreign-key": "100.4.*", - "magento/framework-message-queue": "100.4.*", - "magento/module-catalog": "104.0.*", - "magento/module-quote": "101.2.*", + "magento/magento-composer-installer": "*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-checkout-staging": "100.4.*", - "magento/module-customer-custom-attributes": "100.4.*" + "magento/module-rma": "101.2.*", + "magento/module-staging": "101.2.*" }, "type": "magento2-module", "autoload": { @@ -16451,7 +16704,7 @@ "registration.php" ], "psr-4": { - "Magento\\ScalableCheckout\\": "" + "Magento\\RmaStaging\\": "" } }, "license": [ @@ -16460,81 +16713,81 @@ "description": "N/A" }, { - "name": "magento/module-scalable-inventory", - "version": "100.4.0", + "name": "magento/module-robots", + "version": "101.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-scalable-inventory/magento-module-scalable-inventory-100.4.0.0.zip", - "shasum": "2eee8c00b3f3e34c3418f935632964a2e11ab76c" + "url": "https://repo.magento.com/archives/magento/module-robots/magento-module-robots-101.1.0.0.zip", + "shasum": "8b5947ed3daf9760b3ef0228f156340d55355b1f" }, "require": { "magento/framework": "103.0.*", - "magento/framework-message-queue": "100.4.*", - "magento/magento-composer-installer": "*", - "magento/module-catalog": "104.0.*", - "magento/module-catalog-inventory": "100.4.*", + "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, + "suggest": { + "magento/module-theme": "101.1.*" + }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\ScalableInventory\\": "" + "Magento\\Robots\\": "" } }, "license": [ - "proprietary" + "OSL-3.0", + "AFL-3.0" ], "description": "N/A" }, { - "name": "magento/module-scalable-oms", + "name": "magento/module-rss", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-scalable-oms/magento-module-scalable-oms-100.4.0.0.zip", - "shasum": "46d74213670522e1569a7c12c907bc2bfd63f04b" + "url": "https://repo.magento.com/archives/magento/module-rss/magento-module-rss-100.4.0.0.zip", + "shasum": "d6273b5387ed101b31875ef0b985aee0af5bc63e" }, "require": { "magento/framework": "103.0.*", - "magento/framework-foreign-key": "100.4.*", + "magento/module-backend": "102.0.*", + "magento/module-customer": "103.0.*", + "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-sales-archive": "101.0.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\ScalableOms\\": "" + "Magento\\Rss\\": "" } }, "license": [ - "proprietary" + "OSL-3.0", + "AFL-3.0" ], "description": "N/A" }, { - "name": "magento/module-scheduled-import-export", - "version": "101.2.0", + "name": "magento/module-rule", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-scheduled-import-export/magento-module-scheduled-import-export-101.2.0.0.zip", - "shasum": "e3a5a34cc8bd530ce976c58e301b2fe794180825" + "url": "https://repo.magento.com/archives/magento/module-rule/magento-module-rule-100.4.0.0.zip", + "shasum": "39a746d47795a2d8e16663a5cf2c6b4278e48a37" }, "require": { + "lib-libxml": "*", "magento/framework": "103.0.*", "magento/module-backend": "102.0.*", - "magento/module-config": "101.2.*", - "magento/module-cron": "100.4.*", - "magento/module-import-export": "101.0.*", + "magento/module-catalog": "104.0.*", + "magento/module-eav": "102.1.*", "magento/module-store": "101.1.*", - "magento/module-ui": "101.2.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -16543,38 +16796,61 @@ "registration.php" ], "psr-4": { - "Magento\\ScheduledImportExport\\": "" + "Magento\\Rule\\": "" } }, "license": [ - "proprietary" + "OSL-3.0", + "AFL-3.0" ], "description": "N/A" }, { - "name": "magento/module-search", - "version": "101.1.0", + "name": "magento/module-sales", + "version": "103.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-search/magento-module-search-101.1.0.0.zip", - "shasum": "e0b7555bd350ab0620f25c79bd4883d9e01e6294" + "url": "https://repo.magento.com/archives/magento/module-sales/magento-module-sales-103.0.1.0.zip", + "shasum": "94d8a3b1e45b223fcaebd8da4dda7f91368d8c42" }, "require": { "magento/framework": "103.0.*", + "magento/module-authorization": "100.4.*", "magento/module-backend": "102.0.*", - "magento/module-catalog-search": "102.0.*", + "magento/module-bundle": "101.0.*", + "magento/module-catalog": "104.0.*", + "magento/module-catalog-inventory": "100.4.*", + "magento/module-checkout": "100.4.*", + "magento/module-config": "101.2.*", + "magento/module-customer": "103.0.*", + "magento/module-directory": "100.4.*", + "magento/module-eav": "102.1.*", + "magento/module-gift-message": "100.4.*", + "magento/module-media-storage": "100.4.*", + "magento/module-payment": "100.4.*", + "magento/module-quote": "101.2.*", "magento/module-reports": "100.4.*", + "magento/module-sales-rule": "101.2.*", + "magento/module-sales-sequence": "100.4.*", + "magento/module-shipping": "100.4.*", "magento/module-store": "101.1.*", + "magento/module-tax": "100.4.*", + "magento/module-theme": "101.1.*", "magento/module-ui": "101.2.*", + "magento/module-widget": "101.2.*", + "magento/module-wishlist": "101.2.*", "php": "~7.3.0||~7.4.0" }, + "suggest": { + "magento/module-sales-sample-data": "Sample Data version: 100.4.*" + }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\Search\\": "" + "Magento\\Sales\\": "" } }, "license": [ @@ -16584,18 +16860,17 @@ "description": "N/A" }, { - "name": "magento/module-search-staging", + "name": "magento/module-sales-analytics", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-search-staging/magento-module-search-staging-100.4.0.0.zip", - "shasum": "c63b07a3b11b666fbbc5f0058a18b8f698bb4ffd" + "url": "https://repo.magento.com/archives/magento/module-sales-analytics/magento-module-sales-analytics-100.4.0.0.zip", + "shasum": "a55d291cfdd7191791431a3c6587c7adb7355b77" }, "require": { - "lib-libxml": "*", "magento/framework": "103.0.*", - "magento/magento-composer-installer": "*", - "magento/module-staging": "101.2.*", + "magento/module-analytics": "100.4.*", + "magento/module-sales": "103.0.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -16604,59 +16879,64 @@ "registration.php" ], "psr-4": { - "Magento\\SearchStaging\\": "" + "Magento\\SalesAnalytics\\": "" } }, "license": [ - "proprietary" + "OSL-3.0", + "AFL-3.0" ], "description": "N/A" }, { - "name": "magento/module-security", - "version": "100.4.0", + "name": "magento/module-sales-archive", + "version": "101.0.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-security/magento-module-security-100.4.0.0.zip", - "shasum": "4ce36b7765f2ccaedd06d6b37a57f794861a4a4a" + "url": "https://repo.magento.com/archives/magento/module-sales-archive/magento-module-sales-archive-101.0.0.0.zip", + "shasum": "8b176a1466169b6b07ca4cc076be0f9cd8d5a2df" }, "require": { "magento/framework": "103.0.*", "magento/module-backend": "102.0.*", + "magento/module-config": "101.2.*", + "magento/module-sales": "103.0.*", + "magento/module-sales-sequence": "100.4.*", "magento/module-store": "101.1.*", - "magento/module-user": "101.2.*", + "magento/module-ui": "101.2.*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-customer": "103.0.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\Security\\": "" + "Magento\\SalesArchive\\": "" } }, "license": [ - "OSL-3.0", - "AFL-3.0" + "proprietary" ], - "description": "Security management module" + "description": "N/A" }, { - "name": "magento/module-securitytxt", - "version": "1.0.0", + "name": "magento/module-sales-graph-ql", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-securitytxt/magento-module-securitytxt-1.0.0.0.zip", - "shasum": "301d85665c96a260b6fc9762585fcc0997a0c6cc" + "url": "https://repo.magento.com/archives/magento/module-sales-graph-ql/magento-module-sales-graph-ql-100.4.1.0.zip", + "shasum": "ffd609d0daa15c4798f08fee141bbe4b7058b166" }, "require": { - "magento/framework": "*", - "magento/module-config": "*", - "magento/module-store": "*", + "magento/framework": "103.0.*", + "magento/module-catalog": "104.0.*", + "magento/module-graph-ql": "100.4.*", + "magento/module-quote": "101.2.*", + "magento/module-sales": "103.0.*", + "magento/module-shipping": "100.4.*", + "magento/module-store": "101.1.*", + "magento/module-tax": "100.4.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -16665,67 +16945,29 @@ "registration.php" ], "psr-4": { - "Magento\\Securitytxt\\": "" + "Magento\\SalesGraphQl\\": "" } }, "license": [ "OSL-3.0", "AFL-3.0" ], - "authors": [ - { - "name": "Kalpesh Mehta", - "email": "k@lpe.sh" - } - ], - "description": "Security.txt file for Magento 2 websites" + "description": "N/A" }, { - "name": "magento/module-send-friend", + "name": "magento/module-sales-inventory", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-send-friend/magento-module-send-friend-100.4.0.0.zip", - "shasum": "e336bd3e574e51d6145af1c63053a22fa3165ce0" + "url": "https://repo.magento.com/archives/magento/module-sales-inventory/magento-module-sales-inventory-100.4.0.0.zip", + "shasum": "f00ad78a70ca2dd02dcb8fc3b1f8166aabb9aa27" }, "require": { "magento/framework": "103.0.*", - "magento/module-authorization": "100.4.*", - "magento/module-captcha": "100.4.*", "magento/module-catalog": "104.0.*", - "magento/module-customer": "103.0.*", + "magento/module-catalog-inventory": "100.4.*", + "magento/module-sales": "103.0.*", "magento/module-store": "101.1.*", - "magento/module-theme": "101.1.*", - "php": "~7.3.0||~7.4.0" - }, - "type": "magento2-module", - "autoload": { - "files": [ - "registration.php" - ], - "psr-4": { - "Magento\\SendFriend\\": "" - } - }, - "license": [ - "OSL-3.0", - "AFL-3.0" - ], - "description": "N/A" - }, - { - "name": "magento/module-send-friend-graph-ql", - "version": "100.4.0", - "dist": { - "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-send-friend-graph-ql/magento-module-send-friend-graph-ql-100.4.0.0.zip", - "shasum": "5274c1743db6ca9d9598d5cc510647662264ed27" - }, - "require": { - "magento/framework": "103.0.*", - "magento/module-catalog": "104.0.*", - "magento/module-graph-ql": "100.4.*", - "magento/module-send-friend": "100.4.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -16734,7 +16976,7 @@ "registration.php" ], "psr-4": { - "Magento\\SendFriendGraphQl\\": "" + "Magento\\SalesInventory\\": "" } }, "license": [ @@ -16744,35 +16986,38 @@ "description": "N/A" }, { - "name": "magento/module-shipping", - "version": "100.4.0", + "name": "magento/module-sales-rule", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-shipping/magento-module-shipping-100.4.0.0.zip", - "shasum": "7e2aafcc5f38a8cb26b26175465d28d33c051ff8" + "url": "https://repo.magento.com/archives/magento/module-sales-rule/magento-module-sales-rule-101.2.1.0.zip", + "shasum": "35c495f50571d4fbca942fdeb29f7e5f8724513f" }, "require": { - "ext-gd": "*", "magento/framework": "103.0.*", + "magento/module-authorization": "100.4.*", "magento/module-backend": "102.0.*", + "magento/module-captcha": "100.4.*", "magento/module-catalog": "104.0.*", - "magento/module-catalog-inventory": "100.4.*", - "magento/module-contact": "100.4.*", + "magento/module-catalog-rule": "101.2.*", + "magento/module-checkout": "100.4.*", + "magento/module-config": "101.2.*", "magento/module-customer": "103.0.*", "magento/module-directory": "100.4.*", + "magento/module-eav": "102.1.*", "magento/module-payment": "100.4.*", "magento/module-quote": "101.2.*", + "magento/module-reports": "100.4.*", + "magento/module-rule": "100.4.*", "magento/module-sales": "103.0.*", + "magento/module-shipping": "100.4.*", "magento/module-store": "101.1.*", - "magento/module-tax": "100.4.*", "magento/module-ui": "101.2.*", - "magento/module-user": "101.2.*", + "magento/module-widget": "101.2.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-config": "101.2.*", - "magento/module-fedex": "100.4.*", - "magento/module-ups": "100.4.*" + "magento/module-sales-rule-sample-data": "Sample Data version: 100.4.*" }, "type": "magento2-module", "autoload": { @@ -16780,7 +17025,7 @@ "registration.php" ], "psr-4": { - "Magento\\Shipping\\": "" + "Magento\\SalesRule\\": "" } }, "license": [ @@ -16790,126 +17035,118 @@ "description": "N/A" }, { - "name": "magento/module-sitemap", + "name": "magento/module-sales-rule-staging", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sitemap/magento-module-sitemap-100.4.0.0.zip", - "shasum": "7f414420b8dbe5e4ff7dcef1b2d2851b1fde2b7d" + "url": "https://repo.magento.com/archives/magento/module-sales-rule-staging/magento-module-sales-rule-staging-100.4.0.0.zip", + "shasum": "7159baf3a425e737e6f0bcad1c748ce983aef8b2" }, "require": { "magento/framework": "103.0.*", + "magento/module-advanced-sales-rule": "100.4.*", "magento/module-backend": "102.0.*", - "magento/module-catalog": "104.0.*", - "magento/module-catalog-url-rewrite": "100.4.*", - "magento/module-cms": "104.0.*", + "magento/module-banner": "101.2.*", "magento/module-config": "101.2.*", - "magento/module-eav": "102.1.*", - "magento/module-media-storage": "100.4.*", - "magento/module-robots": "101.1.*", - "magento/module-store": "101.1.*", + "magento/module-quote": "101.2.*", + "magento/module-reminder": "101.2.*", + "magento/module-rule": "100.4.*", + "magento/module-sales-rule": "101.2.*", + "magento/module-staging": "101.2.*", + "magento/module-ui": "101.2.*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-config": "101.2.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\Sitemap\\": "" + "Magento\\SalesRuleStaging\\": "" } }, "license": [ - "OSL-3.0", - "AFL-3.0" + "proprietary" ], "description": "N/A" }, { - "name": "magento/module-staging", - "version": "101.2.0", + "name": "magento/module-sales-sequence", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-staging/magento-module-staging-101.2.0.0.zip", - "shasum": "ff072da453aff91c4e197928cb25eb3f5ed65ed4" + "url": "https://repo.magento.com/archives/magento/module-sales-sequence/magento-module-sales-sequence-100.4.1.0.zip", + "shasum": "5508458a59641dccd017849f68a79573c41a4808" }, "require": { - "lib-libxml": "*", "magento/framework": "103.0.*", - "magento/magento-composer-installer": "*", - "magento/module-backend": "102.0.*", - "magento/module-require-js": "100.4.*", - "magento/module-store": "101.1.*", - "magento/module-ui": "101.2.*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-customer": "103.0.*", - "magento/module-page-cache": "100.4.*", - "magento/module-translation": "100.4.*", - "magento/module-webapi": "100.4.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\Staging\\": "" + "Magento\\SalesSequence\\": "" } }, "license": [ - "proprietary" + "OSL-3.0", + "AFL-3.0" ], "description": "N/A" }, { - "name": "magento/module-staging-graph-ql", - "version": "100.4.0", + "name": "magento/module-sample-data", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-staging-graph-ql/magento-module-staging-graph-ql-100.4.0.0.zip", - "shasum": "62ccaca4c9fe9f2ffd12149803bd235735bae357" + "url": "https://repo.magento.com/archives/magento/module-sample-data/magento-module-sample-data-100.4.1.0.zip", + "shasum": "b576fe30e9fd28b6d332aaebb16a03def6c039bf" }, "require": { "magento/framework": "103.0.*", - "magento/module-graph-ql": "100.4.*", - "magento/module-staging": "101.2.*", "php": "~7.3.0||~7.4.0" }, + "suggest": { + "magento/sample-data-media": "Sample Data version: 100.4.*" + }, "type": "magento2-module", "autoload": { "files": [ + "cli_commands.php", "registration.php" ], "psr-4": { - "Magento\\StagingGraphQl\\": "" + "Magento\\SampleData\\": "" } }, "license": [ "OSL-3.0", "AFL-3.0" ], - "description": "N/A" + "description": "Sample Data fixtures" }, { - "name": "magento/module-staging-page-builder", - "version": "2.0.0", + "name": "magento/module-scalable-checkout", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-staging-page-builder/magento-module-staging-page-builder-2.0.0.0.zip", - "shasum": "14ab9f02c7c2f51b815c53ba866f38904633ace5" + "url": "https://repo.magento.com/archives/magento/module-scalable-checkout/magento-module-scalable-checkout-100.4.0.0.zip", + "shasum": "c31cd4ecf9e7fedf80395cb3765d202f92bba4b4" }, "require": { - "magento/framework": "~103.0.0-beta2", + "magento/framework": "103.0.*", + "magento/framework-foreign-key": "100.4.*", + "magento/framework-message-queue": "100.4.*", + "magento/module-catalog": "104.0.*", + "magento/module-quote": "101.2.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-page-builder": "*", - "magento/module-staging": "*" + "magento/module-checkout-staging": "100.4.*", + "magento/module-customer-custom-attributes": "100.4.*" }, "type": "magento2-module", "autoload": { @@ -16917,112 +17154,90 @@ "registration.php" ], "psr-4": { - "Magento\\StagingPageBuilder\\": "" + "Magento\\ScalableCheckout\\": "" } }, "license": [ "proprietary" ], - "description": "Staging Page Builder module" + "description": "N/A" }, { - "name": "magento/module-store", - "version": "101.1.0", + "name": "magento/module-scalable-inventory", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-store/magento-module-store-101.1.0.0.zip", - "shasum": "3a19d9c63531f77916fb19d8e5c9c34291c978c3" + "url": "https://repo.magento.com/archives/magento/module-scalable-inventory/magento-module-scalable-inventory-100.4.0.0.zip", + "shasum": "2eee8c00b3f3e34c3418f935632964a2e11ab76c" }, "require": { "magento/framework": "103.0.*", - "magento/module-authorization": "100.4.*", - "magento/module-backend": "102.0.*", + "magento/framework-message-queue": "100.4.*", + "magento/magento-composer-installer": "*", "magento/module-catalog": "104.0.*", - "magento/module-config": "101.2.*", - "magento/module-customer": "103.0.*", - "magento/module-directory": "100.4.*", - "magento/module-media-storage": "100.4.*", - "magento/module-ui": "101.2.*", + "magento/module-catalog-inventory": "100.4.*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-deploy": "100.4.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\Store\\": "" + "Magento\\ScalableInventory\\": "" } }, "license": [ - "OSL-3.0", - "AFL-3.0" + "proprietary" ], "description": "N/A" }, { - "name": "magento/module-store-graph-ql", + "name": "magento/module-scalable-oms", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-store-graph-ql/magento-module-store-graph-ql-100.4.0.0.zip", - "shasum": "a9111e9e748a7f24262488aae5117fa086fb3097" + "url": "https://repo.magento.com/archives/magento/module-scalable-oms/magento-module-scalable-oms-100.4.0.0.zip", + "shasum": "46d74213670522e1569a7c12c907bc2bfd63f04b" }, "require": { "magento/framework": "103.0.*", - "magento/module-graph-ql": "100.4.*", - "magento/module-store": "101.1.*", + "magento/framework-foreign-key": "100.4.*", "php": "~7.3.0||~7.4.0" }, + "suggest": { + "magento/module-sales-archive": "101.0.*" + }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\StoreGraphQl\\": "" + "Magento\\ScalableOms\\": "" } }, "license": [ - "OSL-3.0", - "AFL-3.0" + "proprietary" ], "description": "N/A" }, { - "name": "magento/module-support", - "version": "101.2.0", + "name": "magento/module-scheduled-import-export", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-support/magento-module-support-101.2.0.0.zip", - "shasum": "85177204839c3dc92faaef248a6ba7e3d05b1486" + "url": "https://repo.magento.com/archives/magento/module-scheduled-import-export/magento-module-scheduled-import-export-101.2.1.0.zip", + "shasum": "346e39ae71588d6d57970a69270c50fad46a36eb" }, "require": { - "lib-libxml": "*", "magento/framework": "103.0.*", "magento/module-backend": "102.0.*", - "magento/module-banner": "101.2.*", - "magento/module-catalog": "104.0.*", - "magento/module-cms": "104.0.*", "magento/module-config": "101.2.*", "magento/module-cron": "100.4.*", - "magento/module-customer": "103.0.*", - "magento/module-customer-segment": "102.1.*", - "magento/module-eav": "102.1.*", - "magento/module-indexer": "100.4.*", - "magento/module-payment": "100.4.*", - "magento/module-rma": "101.2.*", - "magento/module-sales": "103.0.*", - "magento/module-sales-rule": "101.2.*", + "magento/module-import-export": "101.0.*", "magento/module-store": "101.1.*", - "magento/module-target-rule": "101.2.*", - "magento/module-tax": "100.4.*", - "magento/module-theme": "101.1.*", "magento/module-ui": "101.2.*", - "magento/module-url-rewrite": "102.0.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -17031,7 +17246,7 @@ "registration.php" ], "psr-4": { - "Magento\\Support\\": "" + "Magento\\ScheduledImportExport\\": "" } }, "license": [ @@ -17040,15 +17255,20 @@ "description": "N/A" }, { - "name": "magento/module-swagger", - "version": "100.4.0", + "name": "magento/module-search", + "version": "101.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-swagger/magento-module-swagger-100.4.0.0.zip", - "shasum": "a0454abc1868d3647d4aee52a7ce0b79c5f4f888" + "url": "https://repo.magento.com/archives/magento/module-search/magento-module-search-101.1.1.0.zip", + "shasum": "bf9ed39a53d22eb3b903ed1f32eb9cbf74d808d6" }, "require": { "magento/framework": "103.0.*", + "magento/module-backend": "102.0.*", + "magento/module-catalog-search": "102.0.*", + "magento/module-reports": "100.4.*", + "magento/module-store": "101.1.*", + "magento/module-ui": "101.2.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -17057,7 +17277,7 @@ "registration.php" ], "psr-4": { - "Magento\\Swagger\\": "" + "Magento\\Search\\": "" } }, "license": [ @@ -17067,16 +17287,18 @@ "description": "N/A" }, { - "name": "magento/module-swagger-webapi", + "name": "magento/module-search-staging", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-swagger-webapi/magento-module-swagger-webapi-100.4.0.0.zip", - "shasum": "5ef905795b49516599cd3c54312266d811978c66" + "url": "https://repo.magento.com/archives/magento/module-search-staging/magento-module-search-staging-100.4.0.0.zip", + "shasum": "c63b07a3b11b666fbbc5f0058a18b8f698bb4ffd" }, "require": { + "lib-libxml": "*", "magento/framework": "103.0.*", - "magento/module-swagger": "100.4.*", + "magento/magento-composer-installer": "*", + "magento/module-staging": "101.2.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -17085,30 +17307,31 @@ "registration.php" ], "psr-4": { - "Magento\\SwaggerWebapi\\": "" + "Magento\\SearchStaging\\": "" } }, "license": [ - "OSL-3.0", - "AFL-3.0" + "proprietary" ], "description": "N/A" }, { - "name": "magento/module-swagger-webapi-async", - "version": "100.4.0", + "name": "magento/module-security", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-swagger-webapi-async/magento-module-swagger-webapi-async-100.4.0.0.zip", - "shasum": "15e37edcac3c34b99e2d3c0652915cb8970b5b2f" + "url": "https://repo.magento.com/archives/magento/module-security/magento-module-security-100.4.1.0.zip", + "shasum": "b6953177562c9cb4a4f3d4d625482fb060e8eb5b" }, "require": { "magento/framework": "103.0.*", - "magento/module-swagger": "100.4.*", + "magento/module-backend": "102.0.*", + "magento/module-store": "101.1.*", + "magento/module-user": "101.2.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-config": "101.2.*" + "magento/module-customer": "103.0.*" }, "type": "magento2-module", "autoload": { @@ -17116,80 +17339,75 @@ "registration.php" ], "psr-4": { - "Magento\\SwaggerWebapiAsync\\": "" + "Magento\\Security\\": "" } }, "license": [ "OSL-3.0", "AFL-3.0" ], - "description": "N/A" + "description": "Security management module" }, { - "name": "magento/module-swatches", - "version": "100.4.0", + "name": "magento/module-securitytxt", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-swatches/magento-module-swatches-100.4.0.0.zip", - "shasum": "dba6085416a1ed78c8d60548858181406d8e7589" + "url": "https://repo.magento.com/archives/magento/module-securitytxt/magento-module-securitytxt-1.1.0.0.zip", + "shasum": "123186217c5e8ff358e266eb5157fff8b64fddff" }, "require": { - "magento/framework": "103.0.*", - "magento/module-backend": "102.0.*", - "magento/module-catalog": "104.0.*", - "magento/module-config": "101.2.*", - "magento/module-configurable-product": "100.4.*", - "magento/module-customer": "103.0.*", - "magento/module-eav": "102.1.*", - "magento/module-media-storage": "100.4.*", - "magento/module-page-cache": "100.4.*", - "magento/module-store": "101.1.*", - "magento/module-theme": "101.1.*", + "magento/framework": "*", + "magento/module-config": "*", + "magento/module-store": "*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-layered-navigation": "100.4.*", - "magento/module-swatches-sample-data": "Sample Data version: 100.4.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\Swatches\\": "" + "Magento\\Securitytxt\\": "" } }, "license": [ "OSL-3.0", "AFL-3.0" ], - "description": "Add Swatches to Products" + "authors": [ + { + "name": "Kalpesh Mehta", + "email": "k@lpe.sh" + } + ], + "description": "Security.txt file for Magento 2 websites" }, { - "name": "magento/module-swatches-graph-ql", + "name": "magento/module-send-friend", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-swatches-graph-ql/magento-module-swatches-graph-ql-100.4.0.0.zip", - "shasum": "a664d436a73f676c9e515a5f676bafce666b9464" + "url": "https://repo.magento.com/archives/magento/module-send-friend/magento-module-send-friend-100.4.0.0.zip", + "shasum": "e336bd3e574e51d6145af1c63053a22fa3165ce0" }, "require": { "magento/framework": "103.0.*", + "magento/module-authorization": "100.4.*", + "magento/module-captcha": "100.4.*", "magento/module-catalog": "104.0.*", - "magento/module-swatches": "100.4.*", + "magento/module-customer": "103.0.*", + "magento/module-store": "101.1.*", + "magento/module-theme": "101.1.*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-catalog-graph-ql": "100.4.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\SwatchesGraphQl\\": "" + "Magento\\SendFriend\\": "" } }, "license": [ @@ -17199,16 +17417,18 @@ "description": "N/A" }, { - "name": "magento/module-swatches-layered-navigation", + "name": "magento/module-send-friend-graph-ql", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-swatches-layered-navigation/magento-module-swatches-layered-navigation-100.4.0.0.zip", - "shasum": "4ac75e3273e1e8ed7ae530a2ff80e65da5fec283" + "url": "https://repo.magento.com/archives/magento/module-send-friend-graph-ql/magento-module-send-friend-graph-ql-100.4.0.0.zip", + "shasum": "5274c1743db6ca9d9598d5cc510647662264ed27" }, "require": { "magento/framework": "103.0.*", - "magento/magento-composer-installer": "*", + "magento/module-catalog": "104.0.*", + "magento/module-graph-ql": "100.4.*", + "magento/module-send-friend": "100.4.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -17217,7 +17437,7 @@ "registration.php" ], "psr-4": { - "Magento\\SwatchesLayeredNavigation\\": "" + "Magento\\SendFriendGraphQl\\": "" } }, "license": [ @@ -17227,31 +17447,35 @@ "description": "N/A" }, { - "name": "magento/module-target-rule", - "version": "101.2.0", + "name": "magento/module-shipping", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-target-rule/magento-module-target-rule-101.2.0.0.zip", - "shasum": "f8755a800a590af790bdec1d8d4e26fba969d640" + "url": "https://repo.magento.com/archives/magento/module-shipping/magento-module-shipping-100.4.1.0.zip", + "shasum": "cd84f8168196fd6470d1399dd1122a2ab23984a0" }, "require": { + "ext-gd": "*", "magento/framework": "103.0.*", "magento/module-backend": "102.0.*", "magento/module-catalog": "104.0.*", "magento/module-catalog-inventory": "100.4.*", - "magento/module-checkout": "100.4.*", + "magento/module-contact": "100.4.*", "magento/module-customer": "103.0.*", - "magento/module-customer-segment": "102.1.*", - "magento/module-eav": "102.1.*", - "magento/module-page-cache": "100.4.*", + "magento/module-directory": "100.4.*", + "magento/module-payment": "100.4.*", "magento/module-quote": "101.2.*", - "magento/module-rule": "100.4.*", + "magento/module-sales": "103.0.*", "magento/module-store": "101.1.*", + "magento/module-tax": "100.4.*", + "magento/module-ui": "101.2.*", + "magento/module-user": "101.2.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-import-export": "101.0.*", - "magento/module-target-rule-sample-data": "Sample Data version: 100.4.*" + "magento/module-config": "101.2.*", + "magento/module-fedex": "100.4.*", + "magento/module-ups": "100.4.*" }, "type": "magento2-module", "autoload": { @@ -17259,42 +17483,38 @@ "registration.php" ], "psr-4": { - "Magento\\TargetRule\\": "" + "Magento\\Shipping\\": "" } }, "license": [ - "proprietary" + "OSL-3.0", + "AFL-3.0" ], "description": "N/A" }, { - "name": "magento/module-tax", - "version": "100.4.0", + "name": "magento/module-sitemap", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-tax/magento-module-tax-100.4.0.0.zip", - "shasum": "eeee9793b16140314f57f47e03331e494693241e" + "url": "https://repo.magento.com/archives/magento/module-sitemap/magento-module-sitemap-100.4.1.0.zip", + "shasum": "abb5185f1adc722a3dd9ebee9f0c0c91fb5666be" }, "require": { "magento/framework": "103.0.*", "magento/module-backend": "102.0.*", "magento/module-catalog": "104.0.*", - "magento/module-checkout": "100.4.*", + "magento/module-catalog-url-rewrite": "100.4.*", + "magento/module-cms": "104.0.*", "magento/module-config": "101.2.*", - "magento/module-customer": "103.0.*", - "magento/module-directory": "100.4.*", "magento/module-eav": "102.1.*", - "magento/module-page-cache": "100.4.*", - "magento/module-quote": "101.2.*", - "magento/module-reports": "100.4.*", - "magento/module-sales": "103.0.*", - "magento/module-shipping": "100.4.*", + "magento/module-media-storage": "100.4.*", + "magento/module-robots": "101.1.*", "magento/module-store": "101.1.*", - "magento/module-ui": "101.2.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-tax-sample-data": "Sample Data version: 100.4.*" + "magento/module-config": "101.2.*" }, "type": "magento2-module", "autoload": { @@ -17302,7 +17522,7 @@ "registration.php" ], "psr-4": { - "Magento\\Tax\\": "" + "Magento\\Sitemap\\": "" } }, "license": [ @@ -17312,20 +17532,28 @@ "description": "N/A" }, { - "name": "magento/module-tax-graph-ql", - "version": "100.4.0", + "name": "magento/module-staging", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-tax-graph-ql/magento-module-tax-graph-ql-100.4.0.0.zip", - "shasum": "3d841324238f52d7cc9162363dc022471652b6c3" + "url": "https://repo.magento.com/archives/magento/module-staging/magento-module-staging-101.2.1.0.zip", + "shasum": "850a4203992e667f28a0adb2a813cd6627e8486b" }, "require": { + "lib-libxml": "*", "magento/framework": "103.0.*", + "magento/magento-composer-installer": "*", + "magento/module-backend": "102.0.*", + "magento/module-require-js": "100.4.*", + "magento/module-store": "101.1.*", + "magento/module-ui": "101.2.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-catalog-graph-ql": "100.4.*", - "magento/module-tax": "100.4.*" + "magento/module-customer": "103.0.*", + "magento/module-page-cache": "100.4.*", + "magento/module-translation": "100.4.*", + "magento/module-webapi": "100.4.*" }, "type": "magento2-module", "autoload": { @@ -17333,30 +17561,26 @@ "registration.php" ], "psr-4": { - "Magento\\TaxGraphQl\\": "" + "Magento\\Staging\\": "" } }, "license": [ - "OSL-3.0", - "AFL-3.0" + "proprietary" ], "description": "N/A" }, { - "name": "magento/module-tax-import-export", + "name": "magento/module-staging-graph-ql", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-tax-import-export/magento-module-tax-import-export-100.4.0.0.zip", - "shasum": "b7e75d55aec11250aac048ddf68d5ac1cff11c1d" + "url": "https://repo.magento.com/archives/magento/module-staging-graph-ql/magento-module-staging-graph-ql-100.4.0.0.zip", + "shasum": "62ccaca4c9fe9f2ffd12149803bd235735bae357" }, "require": { "magento/framework": "103.0.*", - "magento/module-backend": "102.0.*", - "magento/module-directory": "100.4.*", - "magento/module-store": "101.1.*", - "magento/module-tax": "100.4.*", - "magento/module-ui": "101.2.*", + "magento/module-graph-ql": "100.4.*", + "magento/module-staging": "101.2.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -17365,7 +17589,7 @@ "registration.php" ], "psr-4": { - "Magento\\TaxImportExport\\": "" + "Magento\\StagingGraphQl\\": "" } }, "license": [ @@ -17375,31 +17599,57 @@ "description": "N/A" }, { - "name": "magento/module-theme", - "version": "101.1.0", + "name": "magento/module-staging-page-builder", + "version": "2.1.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-staging-page-builder/magento-module-staging-page-builder-2.1.0.0.zip", + "shasum": "e218f7e00025ca88eeb47f3b5b660e8c4c4c514c" + }, + "require": { + "magento/framework": "~103.0.1-alpha2", + "php": "~7.3.0||~7.4.0" + }, + "suggest": { + "magento/module-page-builder": "*", + "magento/module-staging": "*" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\StagingPageBuilder\\": "" + } + }, + "license": [ + "proprietary" + ], + "description": "Staging Page Builder module" + }, + { + "name": "magento/module-store", + "version": "101.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-theme/magento-module-theme-101.1.0.0.zip", - "shasum": "2a0f4c62f42941af6e3e49c4c775fd85c55937c0" + "url": "https://repo.magento.com/archives/magento/module-store/magento-module-store-101.1.1.0.zip", + "shasum": "3bdbc7289b6e4a2e4d6a3c27a53015ed2ceb0d39" }, "require": { "magento/framework": "103.0.*", + "magento/module-authorization": "100.4.*", "magento/module-backend": "102.0.*", - "magento/module-cms": "104.0.*", + "magento/module-catalog": "104.0.*", "magento/module-config": "101.2.*", "magento/module-customer": "103.0.*", - "magento/module-eav": "102.1.*", + "magento/module-directory": "100.4.*", "magento/module-media-storage": "100.4.*", - "magento/module-require-js": "100.4.*", - "magento/module-store": "101.1.*", "magento/module-ui": "101.2.*", - "magento/module-widget": "101.2.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-deploy": "100.4.*", - "magento/module-directory": "100.4.*", - "magento/module-theme-sample-data": "Sample Data version: 100.4.*" + "magento/module-deploy": "100.4.*" }, "type": "magento2-module", "autoload": { @@ -17407,7 +17657,7 @@ "registration.php" ], "psr-4": { - "Magento\\Theme\\": "" + "Magento\\Store\\": "" } }, "license": [ @@ -17417,27 +17667,26 @@ "description": "N/A" }, { - "name": "magento/module-theme-graph-ql", - "version": "100.4.0", + "name": "magento/module-store-graph-ql", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-theme-graph-ql/magento-module-theme-graph-ql-100.4.0.0.zip", - "shasum": "2097aa3d1f8b2a4aa8bc40d0b841254ea871c868" + "url": "https://repo.magento.com/archives/magento/module-store-graph-ql/magento-module-store-graph-ql-100.4.1.0.zip", + "shasum": "69699feda3fe1d21bbe2082f3cd3bdfa2d403999" }, "require": { "magento/framework": "103.0.*", + "magento/module-graph-ql": "100.4.*", + "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-store-graph-ql": "100.4.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\ThemeGraphQl\\": "" + "Magento\\StoreGraphQl\\": "" } }, "license": [ @@ -17447,95 +17696,99 @@ "description": "N/A" }, { - "name": "magento/module-tinymce-3", - "version": "100.4.0", + "name": "magento/module-support", + "version": "101.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-tinymce-3/magento-module-tinymce-3-100.4.0.0.zip", - "shasum": "e26848511ebe2f02073e5b3f16d35e8bc583b407" + "url": "https://repo.magento.com/archives/magento/module-support/magento-module-support-101.2.0.0.zip", + "shasum": "85177204839c3dc92faaef248a6ba7e3d05b1486" }, "require": { + "lib-libxml": "*", "magento/framework": "103.0.*", "magento/module-backend": "102.0.*", + "magento/module-banner": "101.2.*", + "magento/module-catalog": "104.0.*", + "magento/module-cms": "104.0.*", + "magento/module-config": "101.2.*", + "magento/module-cron": "100.4.*", + "magento/module-customer": "103.0.*", + "magento/module-customer-segment": "102.1.*", + "magento/module-eav": "102.1.*", + "magento/module-indexer": "100.4.*", + "magento/module-payment": "100.4.*", + "magento/module-rma": "101.2.*", + "magento/module-sales": "103.0.*", + "magento/module-sales-rule": "101.2.*", + "magento/module-store": "101.1.*", + "magento/module-target-rule": "101.2.*", + "magento/module-tax": "100.4.*", + "magento/module-theme": "101.1.*", "magento/module-ui": "101.2.*", - "magento/module-variable": "100.4.*", - "magento/module-widget": "101.2.*", + "magento/module-url-rewrite": "102.0.*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-cms": "104.0.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\Tinymce3\\": "" + "Magento\\Support\\": "" } }, "license": [ - "OSL-3.0", - "AFL-3.0" + "proprietary" ], "description": "N/A" }, { - "name": "magento/module-tinymce-3-banner", + "name": "magento/module-swagger", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-tinymce-3-banner/magento-module-tinymce-3-banner-100.4.0.0.zip", - "shasum": "917b92baa33f77d04cf887565c3f77c300088ec4" + "url": "https://repo.magento.com/archives/magento/module-swagger/magento-module-swagger-100.4.0.0.zip", + "shasum": "a0454abc1868d3647d4aee52a7ce0b79c5f4f888" }, "require": { "magento/framework": "103.0.*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-target-rule-sample-data": "Sample Data version: 100.4.*", - "magento/module-tinymce-3": "100.4.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\TargetRule\\": "" + "Magento\\Swagger\\": "" } }, "license": [ - "proprietary" + "OSL-3.0", + "AFL-3.0" ], "description": "N/A" }, { - "name": "magento/module-translation", + "name": "magento/module-swagger-webapi", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-translation/magento-module-translation-100.4.0.0.zip", - "shasum": "9bf9a6081484de21db1e388e7d123a91457a1281" + "url": "https://repo.magento.com/archives/magento/module-swagger-webapi/magento-module-swagger-webapi-100.4.0.0.zip", + "shasum": "5ef905795b49516599cd3c54312266d811978c66" }, "require": { "magento/framework": "103.0.*", - "magento/module-backend": "102.0.*", - "magento/module-developer": "100.4.*", - "magento/module-store": "101.1.*", - "magento/module-theme": "101.1.*", + "magento/module-swagger": "100.4.*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-deploy": "100.4.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\Translation\\": "" + "Magento\\SwaggerWebapi\\": "" } }, "license": [ @@ -17545,60 +17798,16 @@ "description": "N/A" }, { - "name": "magento/module-two-factor-auth", - "version": "1.0.0", + "name": "magento/module-swagger-webapi-async", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-two-factor-auth/magento-module-two-factor-auth-1.0.0.0.zip", - "shasum": "2cac3b59970a5ec3890154856e3f1e56ff4e8836" - }, - "require": { - "2tvenom/cborencode": "^1.0", - "christian-riesen/base32": "^1.3", - "donatj/phpuseragentparser": "~0.7", - "endroid/qr-code": "^3.7", - "magento/framework": "*", - "magento/magento-composer-installer": "*", - "magento/module-authorization": "*", - "magento/module-backend": "*", - "magento/module-config": "*", - "magento/module-integration": "*", - "magento/module-store": "*", - "magento/module-ui": "*", - "magento/module-user": "*", - "php": "~7.3.0||~7.4.0", - "phpseclib/phpseclib": "2.0.*", - "spomky-labs/otphp": "^10.0" - }, - "type": "magento2-module", - "autoload": { - "files": [ - "registration.php" - ], - "psr-4": { - "Magento\\TwoFactorAuth\\": "" - } - }, - "license": [ - "OSL-3.0" - ], - "description": "Two Factor Authentication module for Magento2" - }, - { - "name": "magento/module-ui", - "version": "101.2.0", - "dist": { - "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-ui/magento-module-ui-101.2.0.0.zip", - "shasum": "9bf33f8e9f60efc8fad04d65df58b47046468c72" + "url": "https://repo.magento.com/archives/magento/module-swagger-webapi-async/magento-module-swagger-webapi-async-100.4.0.0.zip", + "shasum": "15e37edcac3c34b99e2d3c0652915cb8970b5b2f" }, "require": { "magento/framework": "103.0.*", - "magento/module-authorization": "100.4.*", - "magento/module-backend": "102.0.*", - "magento/module-eav": "102.1.*", - "magento/module-store": "101.1.*", - "magento/module-user": "101.2.*", + "magento/module-swagger": "100.4.*", "php": "~7.3.0||~7.4.0" }, "suggest": { @@ -17610,7 +17819,7 @@ "registration.php" ], "psr-4": { - "Magento\\Ui\\": "" + "Magento\\SwaggerWebapiAsync\\": "" } }, "license": [ @@ -17620,99 +17829,96 @@ "description": "N/A" }, { - "name": "magento/module-ups", + "name": "magento/module-swat", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-ups/magento-module-ups-100.4.0.0.zip", - "shasum": "441d79e3453f9b4f6e315d4862dcb7d7627c92b3" + "url": "https://repo.magento.com/archives/magento/module-swat/magento-module-swat-100.4.0.0.zip", + "shasum": "bf326977244ae9b883b588cf27731da4edde83f6" }, "require": { "magento/framework": "103.0.*", "magento/module-backend": "102.0.*", - "magento/module-catalog-inventory": "100.4.*", - "magento/module-directory": "100.4.*", - "magento/module-quote": "101.2.*", - "magento/module-sales": "103.0.*", - "magento/module-shipping": "100.4.*", - "magento/module-store": "101.1.*", + "magento/module-user": "101.2.*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-config": "101.2.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\Ups\\": "" + "Magento\\Swat\\": "" } }, "license": [ - "OSL-3.0", - "AFL-3.0" + "proprietary" ], "description": "N/A" }, { - "name": "magento/module-url-rewrite", - "version": "102.0.0", + "name": "magento/module-swatches", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-url-rewrite/magento-module-url-rewrite-102.0.0.0.zip", - "shasum": "ab97bb625606c2e639a3f0b45d503adbfcf82f3f" + "url": "https://repo.magento.com/archives/magento/module-swatches/magento-module-swatches-100.4.1.0.zip", + "shasum": "7db3f519e490de8c8ed5e34a51d965265c432912" }, "require": { "magento/framework": "103.0.*", "magento/module-backend": "102.0.*", "magento/module-catalog": "104.0.*", - "magento/module-catalog-url-rewrite": "100.4.*", - "magento/module-cms": "104.0.*", - "magento/module-cms-url-rewrite": "100.4.*", + "magento/module-config": "101.2.*", + "magento/module-configurable-product": "100.4.*", + "magento/module-customer": "103.0.*", + "magento/module-eav": "102.1.*", + "magento/module-media-storage": "100.4.*", + "magento/module-page-cache": "100.4.*", "magento/module-store": "101.1.*", - "magento/module-ui": "101.2.*", + "magento/module-theme": "101.1.*", "php": "~7.3.0||~7.4.0" }, + "suggest": { + "magento/module-layered-navigation": "100.4.*", + "magento/module-swatches-sample-data": "Sample Data version: 100.4.*" + }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\UrlRewrite\\": "" + "Magento\\Swatches\\": "" } }, "license": [ "OSL-3.0", "AFL-3.0" ], - "description": "N/A" + "description": "Add Swatches to Products" }, { - "name": "magento/module-url-rewrite-graph-ql", - "version": "100.4.0", + "name": "magento/module-swatches-graph-ql", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-url-rewrite-graph-ql/magento-module-url-rewrite-graph-ql-100.4.0.0.zip", - "shasum": "70d823fc915575e6cd927eadbb60bda4dfa8f1ed" + "url": "https://repo.magento.com/archives/magento/module-swatches-graph-ql/magento-module-swatches-graph-ql-100.4.1.0.zip", + "shasum": "4788f5e071c9cd64276072474582d2ae45bfa8d7" }, "require": { "magento/framework": "103.0.*", - "magento/module-url-rewrite": "102.0.*", + "magento/module-catalog": "104.0.*", + "magento/module-catalog-graph-ql": "100.4.*", + "magento/module-swatches": "100.4.*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-graph-ql": "100.4.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\UrlRewriteGraphQl\\": "" + "Magento\\SwatchesGraphQl\\": "" } }, "license": [ @@ -17722,22 +17928,16 @@ "description": "N/A" }, { - "name": "magento/module-user", - "version": "101.2.0", + "name": "magento/module-swatches-layered-navigation", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-user/magento-module-user-101.2.0.0.zip", - "shasum": "0caaaa786e222f0ffe67ba4c4fe88d6fdbc6f643" + "url": "https://repo.magento.com/archives/magento/module-swatches-layered-navigation/magento-module-swatches-layered-navigation-100.4.0.0.zip", + "shasum": "4ac75e3273e1e8ed7ae530a2ff80e65da5fec283" }, "require": { "magento/framework": "103.0.*", - "magento/module-authorization": "100.4.*", - "magento/module-backend": "102.0.*", - "magento/module-email": "101.1.*", - "magento/module-integration": "100.4.*", - "magento/module-security": "100.4.*", - "magento/module-store": "101.1.*", - "magento/module-ui": "101.2.*", + "magento/magento-composer-installer": "*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -17746,7 +17946,7 @@ "registration.php" ], "psr-4": { - "Magento\\User\\": "" + "Magento\\SwatchesLayeredNavigation\\": "" } }, "license": [ @@ -17756,55 +17956,60 @@ "description": "N/A" }, { - "name": "magento/module-usps", - "version": "100.4.0", + "name": "magento/module-target-rule", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-usps/magento-module-usps-100.4.0.0.zip", - "shasum": "1e74cf2583aea702bd78a5baa1ddfaa388feff90" + "url": "https://repo.magento.com/archives/magento/module-target-rule/magento-module-target-rule-101.2.1.0.zip", + "shasum": "5a62dd0f00dc0db129edcc5d51ff5c099a0472cf" }, "require": { - "lib-libxml": "*", "magento/framework": "103.0.*", + "magento/module-backend": "102.0.*", "magento/module-catalog": "104.0.*", "magento/module-catalog-inventory": "100.4.*", - "magento/module-config": "101.2.*", - "magento/module-directory": "100.4.*", + "magento/module-checkout": "100.4.*", + "magento/module-customer": "103.0.*", + "magento/module-customer-segment": "102.1.*", + "magento/module-eav": "102.1.*", + "magento/module-page-cache": "100.4.*", "magento/module-quote": "101.2.*", - "magento/module-sales": "103.0.*", - "magento/module-shipping": "100.4.*", + "magento/module-rule": "100.4.*", "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, + "suggest": { + "magento/module-import-export": "101.0.*", + "magento/module-target-rule-sample-data": "Sample Data version: 100.4.*" + }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\Usps\\": "" + "Magento\\TargetRule\\": "" } }, "license": [ - "OSL-3.0", - "AFL-3.0" + "proprietary" ], "description": "N/A" }, { - "name": "magento/module-variable", + "name": "magento/module-target-rule-graph-ql", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-variable/magento-module-variable-100.4.0.0.zip", - "shasum": "f7448026a799d7be842dcaf700b6f3baf97a9d71" + "url": "https://repo.magento.com/archives/magento/module-target-rule-graph-ql/magento-module-target-rule-graph-ql-100.4.0.0.zip", + "shasum": "3899fef5d931aab506137c86c92bb28bec4f028a" }, "require": { "magento/framework": "103.0.*", - "magento/module-backend": "102.0.*", - "magento/module-config": "101.2.*", - "magento/module-store": "101.1.*", - "magento/module-ui": "101.2.*", + "magento/module-catalog": "104.0.*", + "magento/module-catalog-graph-ql": "100.4.*", + "magento/module-related-product-graph-ql": "100.4.*", + "magento/module-target-rule": "101.2.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -17813,69 +18018,81 @@ "registration.php" ], "psr-4": { - "Magento\\Variable\\": "" + "Magento\\TargetRuleGraphQl\\": "" } }, "license": [ - "OSL-3.0", - "AFL-3.0" + "proprietary" ], "description": "N/A" }, { - "name": "magento/module-vault", - "version": "101.2.0", + "name": "magento/module-tax", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-vault/magento-module-vault-101.2.0.0.zip", - "shasum": "c959aa06935d83745efe96dd5a27f50450eb0c98" + "url": "https://repo.magento.com/archives/magento/module-tax/magento-module-tax-100.4.1.0.zip", + "shasum": "29eb56e51551199ce0b17e948e4ba9d4b673c590" }, "require": { "magento/framework": "103.0.*", + "magento/module-backend": "102.0.*", + "magento/module-catalog": "104.0.*", "magento/module-checkout": "100.4.*", + "magento/module-config": "101.2.*", "magento/module-customer": "103.0.*", - "magento/module-payment": "100.4.*", + "magento/module-directory": "100.4.*", + "magento/module-eav": "102.1.*", + "magento/module-page-cache": "100.4.*", "magento/module-quote": "101.2.*", + "magento/module-reports": "100.4.*", "magento/module-sales": "103.0.*", + "magento/module-shipping": "100.4.*", "magento/module-store": "101.1.*", - "magento/module-theme": "101.1.*", + "magento/module-ui": "101.2.*", "php": "~7.3.0||~7.4.0" }, + "suggest": { + "magento/module-tax-sample-data": "Sample Data version: 100.4.*" + }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\Vault\\": "" + "Magento\\Tax\\": "" } }, "license": [ "OSL-3.0", "AFL-3.0" - ] + ], + "description": "N/A" }, { - "name": "magento/module-vault-graph-ql", + "name": "magento/module-tax-graph-ql", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-vault-graph-ql/magento-module-vault-graph-ql-100.4.0.0.zip", - "shasum": "a2c8095e8158387adf170f6a6872645043a2cea6" + "url": "https://repo.magento.com/archives/magento/module-tax-graph-ql/magento-module-tax-graph-ql-100.4.0.0.zip", + "shasum": "3d841324238f52d7cc9162363dc022471652b6c3" }, "require": { "magento/framework": "103.0.*", - "magento/module-graph-ql": "100.4.*", - "magento/module-vault": "101.2.*", "php": "~7.3.0||~7.4.0" }, + "suggest": { + "magento/module-catalog-graph-ql": "100.4.*", + "magento/module-tax": "100.4.*" + }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\VaultGraphQl\\": "" + "Magento\\TaxGraphQl\\": "" } }, "license": [ @@ -17885,15 +18102,20 @@ "description": "N/A" }, { - "name": "magento/module-version", - "version": "100.4.0", + "name": "magento/module-tax-import-export", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-version/magento-module-version-100.4.0.0.zip", - "shasum": "ab2321feb1e90cadee584f413561f750d92d8707" + "url": "https://repo.magento.com/archives/magento/module-tax-import-export/magento-module-tax-import-export-100.4.1.0.zip", + "shasum": "bdc4b5a29c380a0e010dbd7e3a3e27551f8519ec" }, "require": { "magento/framework": "103.0.*", + "magento/module-backend": "102.0.*", + "magento/module-directory": "100.4.*", + "magento/module-store": "101.1.*", + "magento/module-tax": "100.4.*", + "magento/module-ui": "101.2.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -17902,7 +18124,7 @@ "registration.php" ], "psr-4": { - "Magento\\Version\\": "" + "Magento\\TaxImportExport\\": "" } }, "license": [ @@ -17912,121 +18134,126 @@ "description": "N/A" }, { - "name": "magento/module-versions-cms", - "version": "101.2.0", + "name": "magento/module-theme", + "version": "101.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-versions-cms/magento-module-versions-cms-101.2.0.0.zip", - "shasum": "de1a66d74903227c450403d02d3a3a6bfb445508" + "url": "https://repo.magento.com/archives/magento/module-theme/magento-module-theme-101.1.1.0.zip", + "shasum": "8f02c7613fbccba355ec5a4271f22221d18ebc60" }, "require": { "magento/framework": "103.0.*", "magento/module-backend": "102.0.*", "magento/module-cms": "104.0.*", "magento/module-config": "101.2.*", + "magento/module-customer": "103.0.*", + "magento/module-eav": "102.1.*", + "magento/module-media-storage": "100.4.*", + "magento/module-require-js": "100.4.*", "magento/module-store": "101.1.*", "magento/module-ui": "101.2.*", - "magento/module-user": "101.2.*", "magento/module-widget": "101.2.*", "php": "~7.3.0||~7.4.0" }, + "suggest": { + "magento/module-deploy": "100.4.*", + "magento/module-directory": "100.4.*", + "magento/module-theme-sample-data": "Sample Data version: 100.4.*" + }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\VersionsCms\\": "" + "Magento\\Theme\\": "" } }, "license": [ - "proprietary" + "OSL-3.0", + "AFL-3.0" ], "description": "N/A" }, { - "name": "magento/module-versions-cms-url-rewrite", + "name": "magento/module-theme-graph-ql", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-versions-cms-url-rewrite/magento-module-versions-cms-url-rewrite-100.4.0.0.zip", - "shasum": "5adb0456221cd95819788428787a44e9fa6ab6bd" + "url": "https://repo.magento.com/archives/magento/module-theme-graph-ql/magento-module-theme-graph-ql-100.4.0.0.zip", + "shasum": "2097aa3d1f8b2a4aa8bc40d0b841254ea871c868" }, "require": { "magento/framework": "103.0.*", - "magento/module-store": "101.1.*", - "magento/module-url-rewrite": "102.0.*", - "magento/module-versions-cms": "101.2.*", "php": "~7.3.0||~7.4.0" }, + "suggest": { + "magento/module-store-graph-ql": "100.4.*" + }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\VersionsCmsUrlRewrite\\": "" + "Magento\\ThemeGraphQl\\": "" } }, "license": [ - "proprietary" + "OSL-3.0", + "AFL-3.0" ], "description": "N/A" }, { - "name": "magento/module-visual-merchandiser", - "version": "100.4.0", + "name": "magento/module-tinymce-3", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-visual-merchandiser/magento-module-visual-merchandiser-100.4.0.0.zip", - "shasum": "3d7653cede5d01e5e7fc6ffa76241f6dc270a5f8" + "url": "https://repo.magento.com/archives/magento/module-tinymce-3/magento-module-tinymce-3-100.4.1.0.zip", + "shasum": "8e6445a4ef4ebe913fa326818bdb25d47e91af4f" }, "require": { "magento/framework": "103.0.*", - "magento/magento-composer-installer": "*", "magento/module-backend": "102.0.*", - "magento/module-catalog": "104.0.*", - "magento/module-catalog-inventory": "100.4.*", - "magento/module-config": "101.2.*", - "magento/module-customer": "103.0.*", - "magento/module-eav": "102.1.*", - "magento/module-store": "101.1.*", "magento/module-ui": "101.2.*", + "magento/module-variable": "100.4.*", + "magento/module-widget": "101.2.*", "php": "~7.3.0||~7.4.0" }, + "suggest": { + "magento/module-cms": "104.0.*" + }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\VisualMerchandiser\\": "" + "Magento\\Tinymce3\\": "" } }, "license": [ - "proprietary" + "OSL-3.0", + "AFL-3.0" ], "description": "N/A" }, { - "name": "magento/module-webapi", + "name": "magento/module-tinymce-3-banner", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-webapi/magento-module-webapi-100.4.0.0.zip", - "shasum": "9426eb8e346c2ce92c82bb0cafe1464b4172e277" + "url": "https://repo.magento.com/archives/magento/module-tinymce-3-banner/magento-module-tinymce-3-banner-100.4.0.0.zip", + "shasum": "917b92baa33f77d04cf887565c3f77c300088ec4" }, "require": { "magento/framework": "103.0.*", - "magento/module-authorization": "100.4.*", - "magento/module-backend": "102.0.*", - "magento/module-integration": "100.4.*", - "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-customer": "103.0.*", - "magento/module-user": "101.2.*" + "magento/module-target-rule-sample-data": "Sample Data version: 100.4.*", + "magento/module-tinymce-3": "100.4.*" }, "type": "magento2-module", "autoload": { @@ -18034,33 +18261,32 @@ "registration.php" ], "psr-4": { - "Magento\\Webapi\\": "" + "Magento\\TargetRule\\": "" } }, "license": [ - "OSL-3.0", - "AFL-3.0" + "proprietary" ], "description": "N/A" }, { - "name": "magento/module-webapi-async", - "version": "100.4.0", + "name": "magento/module-translation", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-webapi-async/magento-module-webapi-async-100.4.0.0.zip", - "shasum": "54ff024a15093348f2500db66c9e6c8b5c91061a" + "url": "https://repo.magento.com/archives/magento/module-translation/magento-module-translation-100.4.1.0.zip", + "shasum": "2279f7b98ad66c1176528ce18331ceb90bdad361" }, "require": { "magento/framework": "103.0.*", - "magento/framework-message-queue": "100.4.*", - "magento/module-asynchronous-operations": "100.4.*", - "magento/module-webapi": "100.4.*", + "magento/module-backend": "102.0.*", + "magento/module-developer": "100.4.*", + "magento/module-store": "101.1.*", + "magento/module-theme": "101.1.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-customer": "103.0.*", - "magento/module-user": "101.2.*" + "magento/module-deploy": "100.4.*" }, "type": "magento2-module", "autoload": { @@ -18068,7 +18294,7 @@ "registration.php" ], "psr-4": { - "Magento\\WebapiAsync\\": "" + "Magento\\Translation\\": "" } }, "license": [ @@ -18078,17 +18304,30 @@ "description": "N/A" }, { - "name": "magento/module-webapi-security", - "version": "100.4.0", + "name": "magento/module-two-factor-auth", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-webapi-security/magento-module-webapi-security-100.4.0.0.zip", - "shasum": "cfa2a6ee999bc4fbcd0b0e8598fafdd4dd0be7e5" + "url": "https://repo.magento.com/archives/magento/module-two-factor-auth/magento-module-two-factor-auth-1.1.0.0.zip", + "shasum": "8cdb7265c9268a06654c229fe5b5e7d588810297" }, "require": { - "magento/framework": "103.0.*", - "magento/module-webapi": "100.4.*", - "php": "~7.3.0||~7.4.0" + "2tvenom/cborencode": "^1.0", + "christian-riesen/base32": "^1.3", + "donatj/phpuseragentparser": "~0.7", + "endroid/qr-code": "^3.7", + "magento/framework": "*", + "magento/magento-composer-installer": "*", + "magento/module-authorization": "*", + "magento/module-backend": "*", + "magento/module-config": "*", + "magento/module-integration": "*", + "magento/module-store": "*", + "magento/module-ui": "*", + "magento/module-user": "*", + "php": "~7.3.0||~7.4.0", + "phpseclib/phpseclib": "2.0.*", + "spomky-labs/otphp": "^10.0" }, "type": "magento2-module", "autoload": { @@ -18096,32 +18335,33 @@ "registration.php" ], "psr-4": { - "Magento\\WebapiSecurity\\": "" + "Magento\\TwoFactorAuth\\": "" } }, "license": [ - "OSL-3.0", - "AFL-3.0" + "OSL-3.0" ], - "description": "WebapiSecurity module provides option to loosen security on some webapi resources." + "description": "Two Factor Authentication module for Magento2" }, { - "name": "magento/module-website-restriction", - "version": "100.4.0", + "name": "magento/module-ui", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-website-restriction/magento-module-website-restriction-100.4.0.0.zip", - "shasum": "a40523dc49b253d1c54fc7dcfae86aaed38da6aa" + "url": "https://repo.magento.com/archives/magento/module-ui/magento-module-ui-101.2.1.0.zip", + "shasum": "f66f3ff72cf8b5d754b93221f733b75566d67ea0" }, "require": { "magento/framework": "103.0.*", - "magento/module-cms": "104.0.*", - "magento/module-customer": "103.0.*", + "magento/module-authorization": "100.4.*", + "magento/module-backend": "102.0.*", + "magento/module-eav": "102.1.*", "magento/module-store": "101.1.*", + "magento/module-user": "101.2.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-theme": "101.1.*" + "magento/module-config": "101.2.*" }, "type": "magento2-module", "autoload": { @@ -18129,40 +18369,36 @@ "registration.php" ], "psr-4": { - "Magento\\WebsiteRestriction\\": "" + "Magento\\Ui\\": "" } }, "license": [ - "proprietary" + "OSL-3.0", + "AFL-3.0" ], "description": "N/A" }, { - "name": "magento/module-weee", - "version": "100.4.0", + "name": "magento/module-ups", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-weee/magento-module-weee-100.4.0.0.zip", - "shasum": "36f8d7bfe0f77bd4afb3c2623903561306006f67" + "url": "https://repo.magento.com/archives/magento/module-ups/magento-module-ups-100.4.1.0.zip", + "shasum": "c1ab7b037dd915018c562c4d62d680b726d514f0" }, "require": { "magento/framework": "103.0.*", "magento/module-backend": "102.0.*", - "magento/module-catalog": "104.0.*", - "magento/module-checkout": "100.4.*", - "magento/module-customer": "103.0.*", + "magento/module-catalog-inventory": "100.4.*", "magento/module-directory": "100.4.*", - "magento/module-eav": "102.1.*", - "magento/module-page-cache": "100.4.*", "magento/module-quote": "101.2.*", "magento/module-sales": "103.0.*", + "magento/module-shipping": "100.4.*", "magento/module-store": "101.1.*", - "magento/module-tax": "100.4.*", - "magento/module-ui": "101.2.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-bundle": "101.0.*" + "magento/module-config": "101.2.*" }, "type": "magento2-module", "autoload": { @@ -18170,7 +18406,7 @@ "registration.php" ], "psr-4": { - "Magento\\Weee\\": "" + "Magento\\Ups\\": "" } }, "license": [ @@ -18180,30 +18416,31 @@ "description": "N/A" }, { - "name": "magento/module-weee-graph-ql", - "version": "100.4.0", + "name": "magento/module-url-rewrite", + "version": "102.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-weee-graph-ql/magento-module-weee-graph-ql-100.4.0.0.zip", - "shasum": "feef543935bd5aa11dd8338caf15616a0a73fb5c" + "url": "https://repo.magento.com/archives/magento/module-url-rewrite/magento-module-url-rewrite-102.0.1.0.zip", + "shasum": "9e27a79511124a3b4bb54635149df7259544677d" }, "require": { "magento/framework": "103.0.*", + "magento/module-backend": "102.0.*", + "magento/module-catalog": "104.0.*", + "magento/module-catalog-url-rewrite": "100.4.*", + "magento/module-cms": "104.0.*", + "magento/module-cms-url-rewrite": "100.4.*", "magento/module-store": "101.1.*", - "magento/module-tax": "100.4.*", - "magento/module-weee": "100.4.*", + "magento/module-ui": "101.2.*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-catalog-graph-ql": "100.4.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\WeeeGraphQl\\": "" + "Magento\\UrlRewrite\\": "" } }, "license": [ @@ -18213,23 +18450,20 @@ "description": "N/A" }, { - "name": "magento/module-weee-staging", + "name": "magento/module-url-rewrite-graph-ql", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-weee-staging/magento-module-weee-staging-100.4.0.0.zip", - "shasum": "222161b8e42079fa6a56cc19e6ba438c1fa708ce" + "url": "https://repo.magento.com/archives/magento/module-url-rewrite-graph-ql/magento-module-url-rewrite-graph-ql-100.4.0.0.zip", + "shasum": "70d823fc915575e6cd927eadbb60bda4dfa8f1ed" }, "require": { - "lib-libxml": "*", "magento/framework": "103.0.*", - "magento/magento-composer-installer": "*", - "magento/module-catalog-staging": "100.4.*", - "magento/module-weee": "100.4.*", + "magento/module-url-rewrite": "102.0.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-staging": "101.2.*" + "magento/module-graph-ql": "100.4.*" }, "type": "magento2-module", "autoload": { @@ -18237,43 +18471,41 @@ "registration.php" ], "psr-4": { - "Magento\\WeeeStaging\\": "" + "Magento\\UrlRewriteGraphQl\\": "" } }, "license": [ - "proprietary" + "OSL-3.0", + "AFL-3.0" ], "description": "N/A" }, { - "name": "magento/module-widget", - "version": "101.2.0", + "name": "magento/module-user", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-widget/magento-module-widget-101.2.0.0.zip", - "shasum": "06981a9bf8d55cd83616648be8436d954f5bfffe" + "url": "https://repo.magento.com/archives/magento/module-user/magento-module-user-101.2.1.0.zip", + "shasum": "a3f2951b2e8f03464bbca5a15024c3b4a072c51f" }, "require": { "magento/framework": "103.0.*", + "magento/module-authorization": "100.4.*", "magento/module-backend": "102.0.*", - "magento/module-catalog": "104.0.*", - "magento/module-cms": "104.0.*", + "magento/module-email": "101.1.*", + "magento/module-integration": "100.4.*", + "magento/module-security": "100.4.*", "magento/module-store": "101.1.*", - "magento/module-theme": "101.1.*", "magento/module-ui": "101.2.*", - "magento/module-variable": "100.4.*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-widget-sample-data": "Sample Data version: 100.4.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\Widget\\": "" + "Magento\\User\\": "" } }, "license": [ @@ -18283,43 +18515,33 @@ "description": "N/A" }, { - "name": "magento/module-wishlist", - "version": "101.2.0", + "name": "magento/module-usps", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-wishlist/magento-module-wishlist-101.2.0.0.zip", - "shasum": "c5116be562966727b8fa72d46b966b9f35ad1893" + "url": "https://repo.magento.com/archives/magento/module-usps/magento-module-usps-100.4.0.0.zip", + "shasum": "1e74cf2583aea702bd78a5baa1ddfaa388feff90" }, "require": { + "lib-libxml": "*", "magento/framework": "103.0.*", - "magento/module-backend": "102.0.*", - "magento/module-captcha": "100.4.*", "magento/module-catalog": "104.0.*", "magento/module-catalog-inventory": "100.4.*", - "magento/module-checkout": "100.4.*", - "magento/module-customer": "103.0.*", - "magento/module-rss": "100.4.*", + "magento/module-config": "101.2.*", + "magento/module-directory": "100.4.*", + "magento/module-quote": "101.2.*", "magento/module-sales": "103.0.*", + "magento/module-shipping": "100.4.*", "magento/module-store": "101.1.*", - "magento/module-theme": "101.1.*", - "magento/module-ui": "101.2.*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-bundle": "101.0.*", - "magento/module-configurable-product": "100.4.*", - "magento/module-cookie": "100.4.*", - "magento/module-downloadable": "100.4.*", - "magento/module-grouped-product": "100.4.*", - "magento/module-wishlist-sample-data": "Sample Data version: 100.4.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\Wishlist\\": "" + "Magento\\Usps\\": "" } }, "license": [ @@ -18329,17 +18551,19 @@ "description": "N/A" }, { - "name": "magento/module-wishlist-analytics", + "name": "magento/module-variable", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-wishlist-analytics/magento-module-wishlist-analytics-100.4.0.0.zip", - "shasum": "4c5b0bec5b1becbb05ebd737a6b7e966866ba3ef" + "url": "https://repo.magento.com/archives/magento/module-variable/magento-module-variable-100.4.0.0.zip", + "shasum": "f7448026a799d7be842dcaf700b6f3baf97a9d71" }, "require": { "magento/framework": "103.0.*", - "magento/module-analytics": "100.4.*", - "magento/module-wishlist": "101.2.*", + "magento/module-backend": "102.0.*", + "magento/module-config": "101.2.*", + "magento/module-store": "101.1.*", + "magento/module-ui": "101.2.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -18348,7 +18572,7 @@ "registration.php" ], "psr-4": { - "Magento\\WishlistAnalytics\\": "" + "Magento\\Variable\\": "" } }, "license": [ @@ -18358,18 +18582,22 @@ "description": "N/A" }, { - "name": "magento/module-wishlist-graph-ql", - "version": "100.4.0", + "name": "magento/module-vault", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-wishlist-graph-ql/magento-module-wishlist-graph-ql-100.4.0.0.zip", - "shasum": "d9da626ccfe7c150ef6f923c48e1d700088d8bd0" + "url": "https://repo.magento.com/archives/magento/module-vault/magento-module-vault-101.2.1.0.zip", + "shasum": "e35e0d8dc742aabc00dd56e09f089e4b7c71db30" }, "require": { "magento/framework": "103.0.*", - "magento/module-catalog-graph-ql": "100.4.*", + "magento/module-checkout": "100.4.*", + "magento/module-customer": "103.0.*", + "magento/module-payment": "100.4.*", + "magento/module-quote": "101.2.*", + "magento/module-sales": "103.0.*", "magento/module-store": "101.1.*", - "magento/module-wishlist": "101.2.*", + "magento/module-theme": "101.1.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -18378,72 +18606,604 @@ "registration.php" ], "psr-4": { - "Magento\\WishlistGraphQl\\": "" + "Magento\\Vault\\": "" } }, "license": [ "OSL-3.0", "AFL-3.0" - ], - "description": "N/A" + ] }, { - "name": "magento/page-builder-commerce", - "version": "1.4.0", + "name": "magento/module-vault-graph-ql", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/page-builder-commerce/magento-page-builder-commerce-1.4.0.0.zip", - "shasum": "e20aa17225f11645842803b68b642383967810f0" + "url": "https://repo.magento.com/archives/magento/module-vault-graph-ql/magento-module-vault-graph-ql-100.4.0.0.zip", + "shasum": "a2c8095e8158387adf170f6a6872645043a2cea6" }, "require": { - "magento/module-banner-page-builder": "2.0.0", - "magento/module-banner-page-builder-analytics": "1.4.0", - "magento/module-catalog-page-builder-analytics": "1.4.0", - "magento/module-catalog-page-builder-analytics-staging": "1.4.0", - "magento/module-catalog-staging-page-builder": "1.4.0", - "magento/module-cms-page-builder-analytics": "1.4.0", - "magento/module-cms-page-builder-analytics-staging": "1.4.0", - "magento/module-page-builder": "2.0.0", - "magento/module-page-builder-analytics": "1.4.0", - "magento/module-staging-page-builder": "2.0.0" + "magento/framework": "103.0.*", + "magento/module-graph-ql": "100.4.*", + "magento/module-vault": "101.2.*", + "php": "~7.3.0||~7.4.0" }, - "type": "metapackage", - "description": "Page Builder Commerce metapackage" + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\VaultGraphQl\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "N/A" }, { - "name": "magento/product-community-edition", - "version": "2.4.0", + "name": "magento/module-version", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/product-community-edition/magento-product-community-edition-2.4.0.0.zip", - "shasum": "9306dd594ac714c29e5a8728e07fb03fcae7afde" + "url": "https://repo.magento.com/archives/magento/module-version/magento-module-version-100.4.0.0.zip", + "shasum": "ab2321feb1e90cadee584f413561f750d92d8707" }, "require": { - "amzn/amazon-pay-and-login-magento-2-module": "4.0.2", - "colinmollenhour/cache-backend-file": "~1.4.1", - "colinmollenhour/cache-backend-redis": "1.11.0", - "colinmollenhour/credis": "1.11.1", - "colinmollenhour/php-redis-session-abstract": "~1.4.0", - "composer/composer": "^1.9", - "dotmailer/dotmailer-magento2-extension-package": "4.6.0", - "elasticsearch/elasticsearch": "~7.7.0", - "ext-bcmath": "*", - "ext-ctype": "*", - "ext-curl": "*", - "ext-dom": "*", - "ext-gd": "*", - "ext-hash": "*", - "ext-iconv": "*", - "ext-intl": "*", - "ext-mbstring": "*", - "ext-openssl": "*", + "magento/framework": "103.0.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\Version\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "N/A" + }, + { + "name": "magento/module-versions-cms", + "version": "101.2.1", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-versions-cms/magento-module-versions-cms-101.2.1.0.zip", + "shasum": "f72c9d30da83c4152e57f1d56052047a6b16173e" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-backend": "102.0.*", + "magento/module-cms": "104.0.*", + "magento/module-config": "101.2.*", + "magento/module-store": "101.1.*", + "magento/module-ui": "101.2.*", + "magento/module-user": "101.2.*", + "magento/module-widget": "101.2.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\VersionsCms\\": "" + } + }, + "license": [ + "proprietary" + ], + "description": "N/A" + }, + { + "name": "magento/module-versions-cms-url-rewrite", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-versions-cms-url-rewrite/magento-module-versions-cms-url-rewrite-100.4.0.0.zip", + "shasum": "5adb0456221cd95819788428787a44e9fa6ab6bd" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-store": "101.1.*", + "magento/module-url-rewrite": "102.0.*", + "magento/module-versions-cms": "101.2.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\VersionsCmsUrlRewrite\\": "" + } + }, + "license": [ + "proprietary" + ], + "description": "N/A" + }, + { + "name": "magento/module-visual-merchandiser", + "version": "100.4.1", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-visual-merchandiser/magento-module-visual-merchandiser-100.4.1.0.zip", + "shasum": "ae4d2891b27623152d0aee00ddcb87fed8abbde2" + }, + "require": { + "magento/framework": "103.0.*", + "magento/magento-composer-installer": "*", + "magento/module-backend": "102.0.*", + "magento/module-catalog": "104.0.*", + "magento/module-catalog-inventory": "100.4.*", + "magento/module-config": "101.2.*", + "magento/module-customer": "103.0.*", + "magento/module-eav": "102.1.*", + "magento/module-store": "101.1.*", + "magento/module-ui": "101.2.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\VisualMerchandiser\\": "" + } + }, + "license": [ + "proprietary" + ], + "description": "N/A" + }, + { + "name": "magento/module-webapi", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-webapi/magento-module-webapi-100.4.0.0.zip", + "shasum": "9426eb8e346c2ce92c82bb0cafe1464b4172e277" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-authorization": "100.4.*", + "magento/module-backend": "102.0.*", + "magento/module-integration": "100.4.*", + "magento/module-store": "101.1.*", + "php": "~7.3.0||~7.4.0" + }, + "suggest": { + "magento/module-customer": "103.0.*", + "magento/module-user": "101.2.*" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\Webapi\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "N/A" + }, + { + "name": "magento/module-webapi-async", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-webapi-async/magento-module-webapi-async-100.4.0.0.zip", + "shasum": "54ff024a15093348f2500db66c9e6c8b5c91061a" + }, + "require": { + "magento/framework": "103.0.*", + "magento/framework-message-queue": "100.4.*", + "magento/module-asynchronous-operations": "100.4.*", + "magento/module-webapi": "100.4.*", + "php": "~7.3.0||~7.4.0" + }, + "suggest": { + "magento/module-customer": "103.0.*", + "magento/module-user": "101.2.*" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\WebapiAsync\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "N/A" + }, + { + "name": "magento/module-webapi-security", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-webapi-security/magento-module-webapi-security-100.4.0.0.zip", + "shasum": "cfa2a6ee999bc4fbcd0b0e8598fafdd4dd0be7e5" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-webapi": "100.4.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\WebapiSecurity\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "WebapiSecurity module provides option to loosen security on some webapi resources." + }, + { + "name": "magento/module-website-restriction", + "version": "100.4.1", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-website-restriction/magento-module-website-restriction-100.4.1.0.zip", + "shasum": "4206511e7196ce518784ba3c7031fa588d160e86" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-cms": "104.0.*", + "magento/module-customer": "103.0.*", + "magento/module-store": "101.1.*", + "php": "~7.3.0||~7.4.0" + }, + "suggest": { + "magento/module-theme": "101.1.*" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\WebsiteRestriction\\": "" + } + }, + "license": [ + "proprietary" + ], + "description": "N/A" + }, + { + "name": "magento/module-weee", + "version": "100.4.1", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-weee/magento-module-weee-100.4.1.0.zip", + "shasum": "a4ffe3fbab088fc50788d909b189e4a27badd7c0" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-backend": "102.0.*", + "magento/module-catalog": "104.0.*", + "magento/module-checkout": "100.4.*", + "magento/module-customer": "103.0.*", + "magento/module-directory": "100.4.*", + "magento/module-eav": "102.1.*", + "magento/module-page-cache": "100.4.*", + "magento/module-quote": "101.2.*", + "magento/module-sales": "103.0.*", + "magento/module-store": "101.1.*", + "magento/module-tax": "100.4.*", + "magento/module-ui": "101.2.*", + "php": "~7.3.0||~7.4.0" + }, + "suggest": { + "magento/module-bundle": "101.0.*" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\Weee\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "N/A" + }, + { + "name": "magento/module-weee-graph-ql", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-weee-graph-ql/magento-module-weee-graph-ql-100.4.0.0.zip", + "shasum": "feef543935bd5aa11dd8338caf15616a0a73fb5c" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-store": "101.1.*", + "magento/module-tax": "100.4.*", + "magento/module-weee": "100.4.*", + "php": "~7.3.0||~7.4.0" + }, + "suggest": { + "magento/module-catalog-graph-ql": "100.4.*" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\WeeeGraphQl\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "N/A" + }, + { + "name": "magento/module-weee-staging", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-weee-staging/magento-module-weee-staging-100.4.0.0.zip", + "shasum": "222161b8e42079fa6a56cc19e6ba438c1fa708ce" + }, + "require": { + "lib-libxml": "*", + "magento/framework": "103.0.*", + "magento/magento-composer-installer": "*", + "magento/module-catalog-staging": "100.4.*", + "magento/module-weee": "100.4.*", + "php": "~7.3.0||~7.4.0" + }, + "suggest": { + "magento/module-staging": "101.2.*" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\WeeeStaging\\": "" + } + }, + "license": [ + "proprietary" + ], + "description": "N/A" + }, + { + "name": "magento/module-widget", + "version": "101.2.1", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-widget/magento-module-widget-101.2.1.0.zip", + "shasum": "ed113b57bb9c093d5361c873f5920c92fc72c4ac" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-backend": "102.0.*", + "magento/module-catalog": "104.0.*", + "magento/module-cms": "104.0.*", + "magento/module-store": "101.1.*", + "magento/module-theme": "101.1.*", + "magento/module-ui": "101.2.*", + "magento/module-variable": "100.4.*", + "php": "~7.3.0||~7.4.0" + }, + "suggest": { + "magento/module-widget-sample-data": "Sample Data version: 100.4.*" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\Widget\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "N/A" + }, + { + "name": "magento/module-wishlist", + "version": "101.2.1", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-wishlist/magento-module-wishlist-101.2.1.0.zip", + "shasum": "0214c64d46496945913ff9e22d7925c5231993f5" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-backend": "102.0.*", + "magento/module-captcha": "100.4.*", + "magento/module-catalog": "104.0.*", + "magento/module-catalog-inventory": "100.4.*", + "magento/module-checkout": "100.4.*", + "magento/module-customer": "103.0.*", + "magento/module-rss": "100.4.*", + "magento/module-sales": "103.0.*", + "magento/module-store": "101.1.*", + "magento/module-theme": "101.1.*", + "magento/module-ui": "101.2.*", + "php": "~7.3.0||~7.4.0" + }, + "suggest": { + "magento/module-bundle": "101.0.*", + "magento/module-configurable-product": "100.4.*", + "magento/module-cookie": "100.4.*", + "magento/module-downloadable": "100.4.*", + "magento/module-grouped-product": "100.4.*", + "magento/module-wishlist-sample-data": "Sample Data version: 100.4.*" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\Wishlist\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "N/A" + }, + { + "name": "magento/module-wishlist-analytics", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-wishlist-analytics/magento-module-wishlist-analytics-100.4.0.0.zip", + "shasum": "4c5b0bec5b1becbb05ebd737a6b7e966866ba3ef" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-analytics": "100.4.*", + "magento/module-wishlist": "101.2.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\WishlistAnalytics\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "N/A" + }, + { + "name": "magento/module-wishlist-graph-ql", + "version": "100.4.1", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-wishlist-graph-ql/magento-module-wishlist-graph-ql-100.4.1.0.zip", + "shasum": "1d59c07d6f052fbe9fa9fa7cfa3ced3ac70d8e98" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-catalog-graph-ql": "100.4.*", + "magento/module-store": "101.1.*", + "magento/module-wishlist": "101.2.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\WishlistGraphQl\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "N/A" + }, + { + "name": "magento/page-builder-commerce", + "version": "1.5.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/page-builder-commerce/magento-page-builder-commerce-1.5.0.0.zip", + "shasum": "95e59997a5c52e3a7bbb1dc5733f23c926af6cca" + }, + "require": { + "magento/module-banner-page-builder": "2.1.0", + "magento/module-banner-page-builder-analytics": "1.5.0", + "magento/module-catalog-page-builder-analytics": "1.5.0", + "magento/module-catalog-page-builder-analytics-staging": "1.5.0", + "magento/module-catalog-staging-page-builder": "1.5.0", + "magento/module-cms-page-builder-analytics": "1.5.0", + "magento/module-cms-page-builder-analytics-staging": "1.5.0", + "magento/module-page-builder": "2.1.0", + "magento/module-page-builder-admin-analytics": "1.0.0", + "magento/module-page-builder-analytics": "1.5.0", + "magento/module-staging-page-builder": "2.1.0" + }, + "type": "metapackage", + "description": "Page Builder Commerce metapackage" + }, + { + "name": "magento/product-community-edition", + "version": "2.4.1", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/product-community-edition/magento-product-community-edition-2.4.1.0.zip", + "shasum": "7eefebc4396277fdfabdb079828488393a70cc83" + }, + "require": { + "amzn/amazon-pay-and-login-magento-2-module": "4.0.4", + "colinmollenhour/cache-backend-file": "~1.4.1", + "colinmollenhour/cache-backend-redis": "1.11.0", + "colinmollenhour/credis": "1.11.1", + "colinmollenhour/php-redis-session-abstract": "~1.4.0", + "composer/composer": "^1.9", + "dotmailer/dotmailer-magento2-extension-package": "4.8.0", + "elasticsearch/elasticsearch": "~7.7.0", + "ext-bcmath": "*", + "ext-ctype": "*", + "ext-curl": "*", + "ext-dom": "*", + "ext-gd": "*", + "ext-hash": "*", + "ext-iconv": "*", + "ext-intl": "*", + "ext-mbstring": "*", + "ext-openssl": "*", "ext-pdo_mysql": "*", "ext-simplexml": "*", "ext-soap": "*", "ext-xsl": "*", "ext-zip": "*", "guzzlehttp/guzzle": "^6.3.3", - "klarna/m2-payments": "8.0.2", + "klarna/m2-payments": "8.1.0", "laminas/laminas-captcha": "^2.7.1", "laminas/laminas-code": "~3.4.1", "laminas/laminas-config": "^2.6.0", @@ -18474,14 +19234,14 @@ "laminas/laminas-validator": "^2.6.0", "laminas/laminas-view": "~2.11.2", "lib-libxml": "*", - "magento/adobe-stock-integration": "2.0.0", + "magento/adobe-stock-integration": "2.1.0", "magento/composer": "1.6.0", - "magento/framework": "103.0.0", + "magento/framework": "103.0.1", "magento/framework-amqp": "100.4.0", "magento/framework-bulk": "101.0.0", - "magento/framework-message-queue": "100.4.0", + "magento/framework-message-queue": "100.4.1", "magento/google-shopping-ads": "4.0.1", - "magento/inventory-metapackage": "1.2.0", + "magento/inventory-metapackage": "1.2.1", "magento/language-de_de": "100.4.0", "magento/language-en_us": "100.4.0", "magento/language-es_es": "100.4.0", @@ -18490,197 +19250,405 @@ "magento/language-pt_br": "100.4.0", "magento/language-zh_hans_cn": "100.4.0", "magento/magento-composer-installer": ">=0.1.11", - "magento/magento2-base": "2.4.0", - "magento/module-admin-analytics": "100.4.0", + "magento/magento2-base": "2.4.1", + "magento/module-admin-analytics": "100.4.1", "magento/module-admin-notification": "100.4.0", - "magento/module-advanced-pricing-import-export": "100.4.0", + "magento/module-advanced-pricing-import-export": "100.4.1", "magento/module-advanced-search": "100.4.0", "magento/module-amqp": "100.4.0", "magento/module-amqp-store": "100.4.0", - "magento/module-analytics": "100.4.0", - "magento/module-asynchronous-operations": "100.4.0", - "magento/module-authorization": "100.4.0", - "magento/module-backend": "102.0.0", - "magento/module-backup": "100.4.0", - "magento/module-bundle": "101.0.0", - "magento/module-bundle-graph-ql": "100.4.0", + "magento/module-analytics": "100.4.1", + "magento/module-asynchronous-operations": "100.4.1", + "magento/module-authorization": "100.4.1", + "magento/module-backend": "102.0.1", + "magento/module-backup": "100.4.1", + "magento/module-bundle": "101.0.1", + "magento/module-bundle-graph-ql": "100.4.1", "magento/module-bundle-import-export": "100.4.0", "magento/module-cache-invalidate": "100.4.0", - "magento/module-captcha": "100.4.0", + "magento/module-captcha": "100.4.1", "magento/module-cardinal-commerce": "100.4.0", - "magento/module-catalog": "104.0.0", + "magento/module-catalog": "104.0.1", "magento/module-catalog-analytics": "100.4.0", "magento/module-catalog-cms-graph-ql": "100.4.0", - "magento/module-catalog-customer-graph-ql": "100.4.0", - "magento/module-catalog-graph-ql": "100.4.0", - "magento/module-catalog-import-export": "101.1.0", - "magento/module-catalog-inventory": "100.4.0", + "magento/module-catalog-customer-graph-ql": "100.4.1", + "magento/module-catalog-graph-ql": "100.4.1", + "magento/module-catalog-import-export": "101.1.1", + "magento/module-catalog-inventory": "100.4.1", "magento/module-catalog-inventory-graph-ql": "100.4.0", - "magento/module-catalog-rule": "101.2.0", + "magento/module-catalog-rule": "101.2.1", "magento/module-catalog-rule-configurable": "100.4.0", "magento/module-catalog-rule-graph-ql": "100.4.0", - "magento/module-catalog-search": "102.0.0", - "magento/module-catalog-url-rewrite": "100.4.0", + "magento/module-catalog-search": "102.0.1", + "magento/module-catalog-url-rewrite": "100.4.1", "magento/module-catalog-url-rewrite-graph-ql": "100.4.0", - "magento/module-catalog-widget": "100.4.0", - "magento/module-checkout": "100.4.0", + "magento/module-catalog-widget": "100.4.1", + "magento/module-checkout": "100.4.1", "magento/module-checkout-agreements": "100.4.0", "magento/module-checkout-agreements-graph-ql": "100.4.0", - "magento/module-cms": "104.0.0", + "magento/module-cms": "104.0.1", "magento/module-cms-graph-ql": "100.4.0", - "magento/module-cms-url-rewrite": "100.4.0", + "magento/module-cms-url-rewrite": "100.4.1", "magento/module-cms-url-rewrite-graph-ql": "100.4.0", - "magento/module-config": "101.2.0", + "magento/module-config": "101.2.1", "magento/module-configurable-import-export": "100.4.0", - "magento/module-configurable-product": "100.4.0", - "magento/module-configurable-product-graph-ql": "100.4.0", + "magento/module-configurable-product": "100.4.1", + "magento/module-configurable-product-graph-ql": "100.4.1", "magento/module-configurable-product-sales": "100.4.0", - "magento/module-contact": "100.4.0", - "magento/module-cookie": "100.4.0", - "magento/module-cron": "100.4.0", + "magento/module-contact": "100.4.1", + "magento/module-cookie": "100.4.1", + "magento/module-cron": "100.4.1", "magento/module-csp": "100.4.0", "magento/module-currency-symbol": "100.4.0", - "magento/module-customer": "103.0.0", + "magento/module-customer": "103.0.1", "magento/module-customer-analytics": "100.4.0", "magento/module-customer-downloadable-graph-ql": "100.4.0", - "magento/module-customer-graph-ql": "100.4.0", - "magento/module-customer-import-export": "100.4.0", - "magento/module-deploy": "100.4.0", - "magento/module-developer": "100.4.0", + "magento/module-customer-graph-ql": "100.4.1", + "magento/module-customer-import-export": "100.4.1", + "magento/module-deploy": "100.4.1", + "magento/module-developer": "100.4.1", "magento/module-dhl": "100.4.0", - "magento/module-directory": "100.4.0", + "magento/module-directory": "100.4.1", "magento/module-directory-graph-ql": "100.4.0", - "magento/module-downloadable": "100.4.0", - "magento/module-downloadable-graph-ql": "100.4.0", + "magento/module-downloadable": "100.4.1", + "magento/module-downloadable-graph-ql": "100.4.1", "magento/module-downloadable-import-export": "100.4.0", - "magento/module-eav": "102.1.0", + "magento/module-eav": "102.1.1", "magento/module-eav-graph-ql": "100.4.0", - "magento/module-elasticsearch": "101.0.0", - "magento/module-elasticsearch-6": "100.4.0", - "magento/module-elasticsearch-7": "100.4.0", - "magento/module-email": "101.1.0", + "magento/module-elasticsearch": "101.0.1", + "magento/module-elasticsearch-6": "100.4.1", + "magento/module-elasticsearch-7": "100.4.1", + "magento/module-email": "101.1.1", "magento/module-encryption-key": "100.4.0", - "magento/module-fedex": "100.4.0", + "magento/module-fedex": "100.4.1", "magento/module-gift-message": "100.4.0", + "magento/module-gift-message-graph-ql": "100.4.0", "magento/module-google-adwords": "100.4.0", "magento/module-google-analytics": "100.4.0", - "magento/module-google-optimizer": "100.4.0", - "magento/module-graph-ql": "100.4.0", + "magento/module-google-optimizer": "100.4.1", + "magento/module-graph-ql": "100.4.1", "magento/module-graph-ql-cache": "100.4.0", "magento/module-grouped-catalog-inventory": "100.4.0", "magento/module-grouped-import-export": "100.4.0", - "magento/module-grouped-product": "100.4.0", - "magento/module-grouped-product-graph-ql": "100.4.0", - "magento/module-import-export": "101.0.0", - "magento/module-indexer": "100.4.0", + "magento/module-grouped-product": "100.4.1", + "magento/module-grouped-product-graph-ql": "100.4.1", + "magento/module-import-export": "101.0.1", + "magento/module-indexer": "100.4.1", "magento/module-instant-purchase": "100.4.0", - "magento/module-integration": "100.4.0", - "magento/module-layered-navigation": "100.4.0", - "magento/module-login-as-customer": "100.4.0", - "magento/module-login-as-customer-admin-ui": "100.4.0", - "magento/module-login-as-customer-api": "100.4.0", - "magento/module-login-as-customer-frontend-ui": "100.4.0", + "magento/module-integration": "100.4.1", + "magento/module-layered-navigation": "100.4.1", + "magento/module-login-as-customer": "100.4.1", + "magento/module-login-as-customer-admin-ui": "100.4.1", + "magento/module-login-as-customer-api": "100.4.1", + "magento/module-login-as-customer-assistance": "100.4.0", + "magento/module-login-as-customer-frontend-ui": "100.4.1", "magento/module-login-as-customer-log": "100.4.0", - "magento/module-login-as-customer-page-cache": "100.4.0", + "magento/module-login-as-customer-page-cache": "100.4.1", "magento/module-login-as-customer-quote": "100.4.0", - "magento/module-login-as-customer-sales": "100.4.0", + "magento/module-login-as-customer-sales": "100.4.1", "magento/module-marketplace": "100.4.0", - "magento/module-media-content": "100.4.0", - "magento/module-media-content-api": "100.4.0", - "magento/module-media-content-catalog": "100.4.0", - "magento/module-media-content-cms": "100.4.0", - "magento/module-media-gallery": "100.4.0", - "magento/module-media-gallery-api": "101.0.0", + "magento/module-media-content": "100.4.1", + "magento/module-media-content-api": "100.4.1", + "magento/module-media-content-catalog": "100.4.1", + "magento/module-media-content-cms": "100.4.1", + "magento/module-media-content-synchronization": "100.4.0", + "magento/module-media-content-synchronization-api": "100.4.0", + "magento/module-media-content-synchronization-catalog": "100.4.0", + "magento/module-media-content-synchronization-cms": "100.4.0", + "magento/module-media-gallery": "100.4.1", + "magento/module-media-gallery-api": "101.0.1", "magento/module-media-gallery-catalog": "100.4.0", + "magento/module-media-gallery-catalog-integration": "100.4.0", + "magento/module-media-gallery-catalog-ui": "100.4.0", + "magento/module-media-gallery-cms-ui": "100.4.0", + "magento/module-media-gallery-integration": "100.4.0", + "magento/module-media-gallery-metadata": "100.4.0", + "magento/module-media-gallery-metadata-api": "100.4.0", + "magento/module-media-gallery-synchronization": "100.4.0", + "magento/module-media-gallery-synchronization-api": "100.4.0", + "magento/module-media-gallery-synchronization-metadata": "100.4.0", + "magento/module-media-gallery-ui": "100.4.0", + "magento/module-media-gallery-ui-api": "100.4.0", "magento/module-media-storage": "100.4.0", - "magento/module-message-queue": "100.4.0", + "magento/module-message-queue": "100.4.1", "magento/module-msrp": "100.4.0", "magento/module-msrp-configurable-product": "100.4.0", "magento/module-msrp-grouped-product": "100.4.0", - "magento/module-multishipping": "100.4.0", + "magento/module-multishipping": "100.4.1", "magento/module-mysql-mq": "100.4.0", "magento/module-new-relic-reporting": "100.4.0", - "magento/module-newsletter": "100.4.0", + "magento/module-newsletter": "100.4.1", + "magento/module-newsletter-graph-ql": "100.4.0", "magento/module-offline-payments": "100.4.0", "magento/module-offline-shipping": "100.4.0", - "magento/module-page-cache": "100.4.0", - "magento/module-payment": "100.4.0", - "magento/module-paypal": "101.0.0", + "magento/module-page-cache": "100.4.1", + "magento/module-payment": "100.4.1", + "magento/module-paypal": "101.0.1", "magento/module-paypal-captcha": "100.4.0", - "magento/module-paypal-graph-ql": "100.4.0", - "magento/module-persistent": "100.4.0", - "magento/module-product-alert": "100.4.0", - "magento/module-product-video": "100.4.0", - "magento/module-quote": "101.2.0", - "magento/module-quote-analytics": "100.4.0", - "magento/module-quote-graph-ql": "100.4.0", + "magento/module-paypal-graph-ql": "100.4.1", + "magento/module-persistent": "100.4.1", + "magento/module-product-alert": "100.4.1", + "magento/module-product-video": "100.4.1", + "magento/module-quote": "101.2.1", + "magento/module-quote-analytics": "100.4.1", + "magento/module-quote-bundle-options": "100.4.0", + "magento/module-quote-configurable-options": "100.4.0", + "magento/module-quote-downloadable-links": "100.4.0", + "magento/module-quote-graph-ql": "100.4.1", "magento/module-related-product-graph-ql": "100.4.0", "magento/module-release-notification": "100.4.0", - "magento/module-reports": "100.4.0", + "magento/module-reports": "100.4.1", "magento/module-require-js": "100.4.0", - "magento/module-review": "100.4.0", + "magento/module-review": "100.4.1", "magento/module-review-analytics": "100.4.0", + "magento/module-review-graph-ql": "100.4.0", "magento/module-robots": "101.1.0", "magento/module-rss": "100.4.0", "magento/module-rule": "100.4.0", - "magento/module-sales": "103.0.0", + "magento/module-sales": "103.0.1", "magento/module-sales-analytics": "100.4.0", - "magento/module-sales-graph-ql": "100.4.0", + "magento/module-sales-graph-ql": "100.4.1", "magento/module-sales-inventory": "100.4.0", - "magento/module-sales-rule": "101.2.0", - "magento/module-sales-sequence": "100.4.0", - "magento/module-sample-data": "100.4.0", - "magento/module-search": "101.1.0", - "magento/module-security": "100.4.0", + "magento/module-sales-rule": "101.2.1", + "magento/module-sales-sequence": "100.4.1", + "magento/module-sample-data": "100.4.1", + "magento/module-search": "101.1.1", + "magento/module-security": "100.4.1", "magento/module-send-friend": "100.4.0", "magento/module-send-friend-graph-ql": "100.4.0", - "magento/module-shipping": "100.4.0", - "magento/module-sitemap": "100.4.0", - "magento/module-store": "101.1.0", - "magento/module-store-graph-ql": "100.4.0", + "magento/module-shipping": "100.4.1", + "magento/module-sitemap": "100.4.1", + "magento/module-store": "101.1.1", + "magento/module-store-graph-ql": "100.4.1", "magento/module-swagger": "100.4.0", "magento/module-swagger-webapi": "100.4.0", "magento/module-swagger-webapi-async": "100.4.0", - "magento/module-swatches": "100.4.0", - "magento/module-swatches-graph-ql": "100.4.0", + "magento/module-swatches": "100.4.1", + "magento/module-swatches-graph-ql": "100.4.1", "magento/module-swatches-layered-navigation": "100.4.0", - "magento/module-tax": "100.4.0", + "magento/module-tax": "100.4.1", "magento/module-tax-graph-ql": "100.4.0", - "magento/module-tax-import-export": "100.4.0", - "magento/module-theme": "101.1.0", + "magento/module-tax-import-export": "100.4.1", + "magento/module-theme": "101.1.1", "magento/module-theme-graph-ql": "100.4.0", - "magento/module-tinymce-3": "100.4.0", - "magento/module-translation": "100.4.0", - "magento/module-ui": "101.2.0", - "magento/module-ups": "100.4.0", - "magento/module-url-rewrite": "102.0.0", + "magento/module-tinymce-3": "100.4.1", + "magento/module-translation": "100.4.1", + "magento/module-ui": "101.2.1", + "magento/module-ups": "100.4.1", + "magento/module-url-rewrite": "102.0.1", "magento/module-url-rewrite-graph-ql": "100.4.0", - "magento/module-user": "101.2.0", + "magento/module-user": "101.2.1", "magento/module-usps": "100.4.0", "magento/module-variable": "100.4.0", - "magento/module-vault": "101.2.0", + "magento/module-vault": "101.2.1", "magento/module-vault-graph-ql": "100.4.0", "magento/module-version": "100.4.0", "magento/module-webapi": "100.4.0", "magento/module-webapi-async": "100.4.0", "magento/module-webapi-security": "100.4.0", - "magento/module-weee": "100.4.0", + "magento/module-weee": "100.4.1", "magento/module-weee-graph-ql": "100.4.0", - "magento/module-widget": "101.2.0", - "magento/module-wishlist": "101.2.0", + "magento/module-widget": "101.2.1", + "magento/module-wishlist": "101.2.1", "magento/module-wishlist-analytics": "100.4.0", - "magento/module-wishlist-graph-ql": "100.4.0", - "magento/security-package": "1.0.0", - "magento/theme-adminhtml-backend": "100.4.0", - "magento/theme-frontend-blank": "100.4.0", - "magento/theme-frontend-luma": "100.4.0", + "magento/module-wishlist-graph-ql": "100.4.1", + "magento/security-package": "1.1.0", + "magento/theme-adminhtml-backend": "100.4.1", + "magento/theme-frontend-blank": "100.4.1", + "magento/theme-frontend-luma": "100.4.1", + "magento/zendframework1": "~1.14.2", + "monolog/monolog": "^1.17", + "paragonie/sodium_compat": "^1.6", + "paypal/module-braintree": "4.2.0", + "pelago/emogrifier": "^3.1.0", + "php": "~7.3.0||~7.4.0", + "php-amqplib/php-amqplib": "~2.10.0", + "phpseclib/mcrypt_compat": "1.0.8", + "phpseclib/phpseclib": "2.0.*", + "ramsey/uuid": "~3.8.0", + "symfony/console": "~4.4.0", + "symfony/event-dispatcher": "~4.4.0", + "symfony/process": "~4.4.0", + "tedivm/jshrink": "~1.3.0", + "temando/module-shipping": "2.0.0", + "tubalmartin/cssmin": "4.1.1", + "vertex/product-magento-module": "4.1.0", + "webonyx/graphql-php": "^0.13.8", + "wikimedia/less.php": "~1.8.0", + "yotpo/magento2-module-yotpo-reviews-bundle": "3.1.2" + }, + "type": "metapackage", + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "eCommerce Platform for Growth (Community Edition)" + }, + { + "name": "magento/product-enterprise-edition", + "version": "2.4.1", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/product-enterprise-edition/magento-product-enterprise-edition-2.4.1.0.zip", + "shasum": "20aaf9284bac091ee8cb4d3737a015a977c19f93" + }, + "require": { + "colinmollenhour/cache-backend-file": "~1.4.1", + "colinmollenhour/cache-backend-redis": "1.11.0", + "colinmollenhour/credis": "1.11.1", + "colinmollenhour/php-redis-session-abstract": "~1.4.0", + "composer/composer": "^1.9", + "dotmailer/dotmailer-magento2-extension-enterprise-package": "4.8.0", + "elasticsearch/elasticsearch": "~7.7.0", + "ext-bcmath": "*", + "ext-ctype": "*", + "ext-curl": "*", + "ext-dom": "*", + "ext-gd": "*", + "ext-hash": "*", + "ext-iconv": "*", + "ext-intl": "*", + "ext-mbstring": "*", + "ext-openssl": "*", + "ext-pdo_mysql": "*", + "ext-simplexml": "*", + "ext-soap": "*", + "ext-spl": "*", + "ext-xsl": "*", + "ext-zip": "*", + "guzzlehttp/guzzle": "^6.3.3", + "laminas/laminas-captcha": "^2.7.1", + "laminas/laminas-code": "~3.4.1", + "laminas/laminas-config": "^2.6.0", + "laminas/laminas-console": "^2.6.0", + "laminas/laminas-crypt": "^2.6.0", + "laminas/laminas-db": "^2.8.2", + "laminas/laminas-dependency-plugin": "^1.0", + "laminas/laminas-di": "^2.6.1", + "laminas/laminas-eventmanager": "^3.0.0", + "laminas/laminas-feed": "^2.9.0", + "laminas/laminas-form": "^2.10.0", + "laminas/laminas-http": "^2.6.0", + "laminas/laminas-i18n": "^2.7.3", + "laminas/laminas-json": "^2.6.1", + "laminas/laminas-log": "^2.9.1", + "laminas/laminas-mail": "^2.9.0", + "laminas/laminas-mime": "^2.5.0", + "laminas/laminas-modulemanager": "^2.7", + "laminas/laminas-mvc": "~2.7.0", + "laminas/laminas-serializer": "^2.7.2", + "laminas/laminas-server": "^2.6.1", + "laminas/laminas-servicemanager": "^2.7.8", + "laminas/laminas-session": "^2.7.3", + "laminas/laminas-soap": "^2.7.0", + "laminas/laminas-stdlib": "^3.2.1", + "laminas/laminas-text": "^2.6.0", + "laminas/laminas-uri": "^2.5.1", + "laminas/laminas-validator": "^2.6.0", + "laminas/laminas-view": "~2.11.2", + "lib-libxml": "*", + "magento/composer": "1.6.0", + "magento/framework-foreign-key": "100.4.0", + "magento/magento-composer-installer": ">=0.1.11", + "magento/magento2-ee-base": "2.4.1", + "magento/module-admin-gws": "100.4.1", + "magento/module-admin-gws-configurable-product": "100.4.0", + "magento/module-admin-gws-staging": "100.4.0", + "magento/module-advanced-catalog": "100.4.0", + "magento/module-advanced-checkout": "100.4.1", + "magento/module-advanced-rule": "100.4.0", + "magento/module-advanced-sales-rule": "100.4.0", + "magento/module-banner": "101.2.1", + "magento/module-banner-customer-segment": "100.4.0", + "magento/module-bundle-import-export-staging": "100.4.0", + "magento/module-bundle-staging": "100.4.1", + "magento/module-catalog-event": "101.1.1", + "magento/module-catalog-import-export-staging": "100.4.0", + "magento/module-catalog-inventory-staging": "100.4.0", + "magento/module-catalog-permissions": "100.4.1", + "magento/module-catalog-permissions-graph-ql": "100.4.0", + "magento/module-catalog-rule-staging": "100.4.1", + "magento/module-catalog-staging": "100.4.1", + "magento/module-catalog-staging-graph-ql": "100.4.1", + "magento/module-catalog-url-rewrite-staging": "100.4.0", + "magento/module-checkout-address-search": "100.4.0", + "magento/module-checkout-address-search-gift-registry": "100.4.0", + "magento/module-checkout-staging": "100.4.0", + "magento/module-cms-staging": "100.4.1", + "magento/module-configurable-product-staging": "100.4.0", + "magento/module-custom-attribute-management": "100.4.0", + "magento/module-customer-balance": "100.4.1", + "magento/module-customer-balance-graph-ql": "100.4.0", + "magento/module-customer-custom-attributes": "100.4.1", + "magento/module-customer-finance": "100.4.0", + "magento/module-customer-segment": "102.1.1", + "magento/module-downloadable-staging": "100.4.0", + "magento/module-elasticsearch-catalog-permissions": "100.4.0", + "magento/module-enterprise": "100.4.0", + "magento/module-gift-card": "101.3.1", + "magento/module-gift-card-account": "101.2.1", + "magento/module-gift-card-account-graph-ql": "100.4.0", + "magento/module-gift-card-graph-ql": "100.4.1", + "magento/module-gift-card-import-export": "100.4.0", + "magento/module-gift-card-staging": "100.4.0", + "magento/module-gift-message-staging": "100.4.0", + "magento/module-gift-registry": "101.2.1", + "magento/module-gift-wrapping": "101.2.0", + "magento/module-gift-wrapping-graph-ql": "100.4.0", + "magento/module-gift-wrapping-staging": "100.4.0", + "magento/module-google-optimizer-staging": "100.4.0", + "magento/module-google-tag-manager": "100.4.1", + "magento/module-grouped-product-staging": "100.4.0", + "magento/module-invitation": "100.4.0", + "magento/module-layered-navigation-staging": "100.4.0", + "magento/module-logging": "101.2.1", + "magento/module-login-as-customer-logging": "100.4.1", + "magento/module-login-as-customer-website-restriction": "100.4.1", + "magento/module-media-content-catalog-staging": "100.4.0", + "magento/module-msrp-staging": "100.4.0", + "magento/module-multiple-wishlist": "100.4.1", + "magento/module-payment-staging": "100.4.0", + "magento/module-persistent-history": "100.4.0", + "magento/module-price-permissions": "100.4.0", + "magento/module-product-video-staging": "100.4.0", + "magento/module-promotion-permissions": "100.4.0", + "magento/module-quote-gift-card-options": "100.4.0", + "magento/module-reminder": "101.2.0", + "magento/module-resource-connections": "100.4.0", + "magento/module-review-staging": "100.4.0", + "magento/module-reward": "101.2.1", + "magento/module-reward-graph-ql": "100.4.1", + "magento/module-reward-staging": "100.4.0", + "magento/module-rma": "101.2.1", + "magento/module-rma-graph-ql": "100.4.0", + "magento/module-rma-staging": "100.4.0", + "magento/module-sales-archive": "101.0.0", + "magento/module-sales-rule-staging": "100.4.0", + "magento/module-scalable-checkout": "100.4.0", + "magento/module-scalable-inventory": "100.4.0", + "magento/module-scalable-oms": "100.4.0", + "magento/module-scheduled-import-export": "101.2.1", + "magento/module-search-staging": "100.4.0", + "magento/module-staging": "101.2.1", + "magento/module-staging-graph-ql": "100.4.0", + "magento/module-support": "101.2.0", + "magento/module-swat": "100.4.0", + "magento/module-target-rule": "101.2.1", + "magento/module-target-rule-graph-ql": "100.4.0", + "magento/module-tinymce-3-banner": "100.4.0", + "magento/module-versions-cms": "101.2.1", + "magento/module-versions-cms-url-rewrite": "100.4.0", + "magento/module-visual-merchandiser": "100.4.1", + "magento/module-website-restriction": "100.4.1", + "magento/module-weee-staging": "100.4.0", + "magento/page-builder-commerce": "1.5.0", + "magento/product-community-edition": "2.4.1", "magento/zendframework1": "~1.14.2", "monolog/monolog": "^1.17", "paragonie/sodium_compat": "^1.6", - "paypal/module-braintree": "4.1.0", "pelago/emogrifier": "^3.1.0", "php": "~7.3.0||~7.4.0", - "php-amqplib/php-amqplib": "~2.10.0", + "php-amqplib/php-amqplib": "~2.7.0||~2.10.0", "phpseclib/mcrypt_compat": "1.0.8", "phpseclib/phpseclib": "2.0.*", "ramsey/uuid": "~3.8.0", @@ -18688,516 +19656,760 @@ "symfony/event-dispatcher": "~4.4.0", "symfony/process": "~4.4.0", "tedivm/jshrink": "~1.3.0", - "temando/module-shipping": "2.0.0", "tubalmartin/cssmin": "4.1.1", - "vertex/product-magento-module": "4.0.0", "webonyx/graphql-php": "^0.13.8", - "wikimedia/less.php": "~1.8.0", - "yotpo/magento2-module-yotpo-reviews-bundle": "3.1.1" + "wikimedia/less.php": "~1.8.0" + }, + "type": "metapackage", + "license": [ + "proprietary" + ], + "description": "eCommerce Platform for Growth (Enterprise Edition)" + }, + { + "name": "magento/security-package", + "version": "1.1.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/security-package/magento-security-package-1.1.0.0.zip", + "shasum": "a3719d48b34ac464ee8692c7c5a2f155800430b3" + }, + "require": { + "google/recaptcha": "^1.2", + "magento/module-re-captcha-admin-ui": "1.1.0", + "magento/module-re-captcha-checkout": "1.1.0", + "magento/module-re-captcha-contact": "1.1.0", + "magento/module-re-captcha-customer": "1.1.0", + "magento/module-re-captcha-frontend-ui": "1.1.0", + "magento/module-re-captcha-migration": "1.1.0", + "magento/module-re-captcha-newsletter": "1.1.0", + "magento/module-re-captcha-paypal": "1.1.0", + "magento/module-re-captcha-review": "1.1.0", + "magento/module-re-captcha-send-friend": "1.1.0", + "magento/module-re-captcha-ui": "1.1.0", + "magento/module-re-captcha-user": "1.1.0", + "magento/module-re-captcha-validation": "1.1.0", + "magento/module-re-captcha-validation-api": "1.1.0", + "magento/module-re-captcha-version-2-checkbox": "2.0.0", + "magento/module-re-captcha-version-2-invisible": "2.0.0", + "magento/module-re-captcha-version-3-invisible": "2.0.0", + "magento/module-securitytxt": "1.1.0", + "magento/module-two-factor-auth": "1.1.0" + }, + "type": "metapackage", + "description": "Magento Security Package" + }, + { + "name": "magento/theme-adminhtml-backend", + "version": "100.4.1", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/theme-adminhtml-backend/magento-theme-adminhtml-backend-100.4.1.0.zip", + "shasum": "73398c0478f0e4dd5c2c25a40577cc554552a917" + }, + "require": { + "magento/framework": "103.0.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-theme", + "autoload": { + "files": [ + "registration.php" + ] + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "N/A" + }, + { + "name": "magento/theme-frontend-blank", + "version": "100.4.1", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/theme-frontend-blank/magento-theme-frontend-blank-100.4.1.0.zip", + "shasum": "8f6187a999cabee73e5968b3a98519fbdf080531" + }, + "require": { + "magento/framework": "103.0.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-theme", + "autoload": { + "files": [ + "registration.php" + ] + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "N/A" + }, + { + "name": "magento/theme-frontend-luma", + "version": "100.4.1", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/theme-frontend-luma/magento-theme-frontend-luma-100.4.1.0.zip", + "shasum": "38cf4b18eed6542e4f32cd894277389f2a57e856" + }, + "require": { + "magento/framework": "103.0.*", + "magento/theme-frontend-blank": "100.4.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-theme", + "autoload": { + "files": [ + "registration.php" + ] + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "N/A" + }, + { + "name": "magento/zendframework1", + "version": "1.14.4", + "source": { + "type": "git", + "url": "https://github.com/magento/zf1.git", + "reference": "250f35c0e80b5e6fa1a1598c144cba2fff36b565" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/magento/zf1/zipball/250f35c0e80b5e6fa1a1598c144cba2fff36b565", + "reference": "250f35c0e80b5e6fa1a1598c144cba2fff36b565", + "shasum": "" + }, + "require": { + "php": ">=5.2.11" + }, + "require-dev": { + "phpunit/dbunit": "1.3.*", + "phpunit/phpunit": "3.7.*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.12.x-dev" + } + }, + "autoload": { + "psr-0": { + "Zend_": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "include-path": [ + "library/" + ], + "license": [ + "BSD-3-Clause" + ], + "description": "Magento Zend Framework 1", + "homepage": "http://framework.zend.com/", + "keywords": [ + "ZF1", + "framework" + ], + "time": "2020-05-19T23:25:07+00:00" + }, + { + "name": "monolog/monolog", + "version": "1.25.5", + "source": { + "type": "git", + "url": "https://github.com/Seldaek/monolog.git", + "reference": "1817faadd1846cd08be9a49e905dc68823bc38c0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1817faadd1846cd08be9a49e905dc68823bc38c0", + "reference": "1817faadd1846cd08be9a49e905dc68823bc38c0", + "shasum": "" + }, + "require": { + "php": ">=5.3.0", + "psr/log": "~1.0" + }, + "provide": { + "psr/log-implementation": "1.0.0" + }, + "require-dev": { + "aws/aws-sdk-php": "^2.4.9 || ^3.0", + "doctrine/couchdb": "~1.0@dev", + "graylog2/gelf-php": "~1.0", + "php-amqplib/php-amqplib": "~2.4", + "php-console/php-console": "^3.1.3", + "php-parallel-lint/php-parallel-lint": "^1.0", + "phpunit/phpunit": "~4.5", + "ruflin/elastica": ">=0.90 <3.0", + "sentry/sentry": "^0.13", + "swiftmailer/swiftmailer": "^5.3|^6.0" + }, + "suggest": { + "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", + "doctrine/couchdb": "Allow sending log messages to a CouchDB server", + "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", + "ext-mongo": "Allow sending log messages to a MongoDB server", + "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", + "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver", + "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", + "php-console/php-console": "Allow sending log messages to Google Chrome", + "rollbar/rollbar": "Allow sending log messages to Rollbar", + "ruflin/elastica": "Allow sending log messages to an Elastic Search server", + "sentry/sentry": "Allow sending log messages to a Sentry server" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Monolog\\": "src/Monolog" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + } + ], + "description": "Sends your logs to files, sockets, inboxes, databases and various web services", + "homepage": "http://github.com/Seldaek/monolog", + "keywords": [ + "log", + "logging", + "psr-3" + ], + "funding": [ + { + "url": "https://github.com/Seldaek", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/monolog/monolog", + "type": "tidelift" + } + ], + "time": "2020-07-23T08:35:51+00:00" + }, + { + "name": "myclabs/php-enum", + "version": "1.7.6", + "source": { + "type": "git", + "url": "https://github.com/myclabs/php-enum.git", + "reference": "5f36467c7a87e20fbdc51e524fd8f9d1de80187c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/myclabs/php-enum/zipball/5f36467c7a87e20fbdc51e524fd8f9d1de80187c", + "reference": "5f36467c7a87e20fbdc51e524fd8f9d1de80187c", + "shasum": "" + }, + "require": { + "ext-json": "*", + "php": ">=7.1" + }, + "require-dev": { + "phpunit/phpunit": "^7", + "squizlabs/php_codesniffer": "1.*", + "vimeo/psalm": "^3.8" + }, + "type": "library", + "autoload": { + "psr-4": { + "MyCLabs\\Enum\\": "src/" + } }, - "type": "metapackage", + "notification-url": "https://packagist.org/downloads/", "license": [ - "OSL-3.0", - "AFL-3.0" + "MIT" ], - "description": "eCommerce Platform for Growth (Community Edition)" + "authors": [ + { + "name": "PHP Enum contributors", + "homepage": "https://github.com/myclabs/php-enum/graphs/contributors" + } + ], + "description": "PHP Enum implementation", + "homepage": "http://github.com/myclabs/php-enum", + "keywords": [ + "enum" + ], + "time": "2020-02-14T08:15:52+00:00" }, { - "name": "magento/product-enterprise-edition", - "version": "2.4.0", + "name": "paragonie/constant_time_encoding", + "version": "v2.3.0", + "source": { + "type": "git", + "url": "https://github.com/paragonie/constant_time_encoding.git", + "reference": "47a1cedd2e4d52688eb8c96469c05ebc8fd28fa2" + }, "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/product-enterprise-edition/magento-product-enterprise-edition-2.4.0.0.zip", - "shasum": "1fafd8ae2b1620733ffb8b955acaea52cfff41d5" + "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/47a1cedd2e4d52688eb8c96469c05ebc8fd28fa2", + "reference": "47a1cedd2e4d52688eb8c96469c05ebc8fd28fa2", + "shasum": "" }, "require": { - "amzn/amazon-pay-and-login-magento-2-module": "4.0.2", - "colinmollenhour/cache-backend-file": "~1.4.1", - "colinmollenhour/cache-backend-redis": "1.11.0", - "colinmollenhour/credis": "1.11.1", - "colinmollenhour/php-redis-session-abstract": "~1.4.0", - "composer/composer": "^1.9", - "dotmailer/dotmailer-magento2-extension-enterprise-package": "4.6.0", - "elasticsearch/elasticsearch": "~7.7.0", - "ext-bcmath": "*", - "ext-ctype": "*", - "ext-curl": "*", - "ext-dom": "*", - "ext-gd": "*", - "ext-hash": "*", - "ext-iconv": "*", - "ext-intl": "*", - "ext-mbstring": "*", - "ext-openssl": "*", - "ext-pdo_mysql": "*", - "ext-simplexml": "*", - "ext-soap": "*", - "ext-spl": "*", - "ext-xsl": "*", - "ext-zip": "*", - "guzzlehttp/guzzle": "^6.3.3", - "klarna/m2-payments": "8.0.2", - "laminas/laminas-captcha": "^2.7.1", - "laminas/laminas-code": "~3.4.1", - "laminas/laminas-config": "^2.6.0", - "laminas/laminas-console": "^2.6.0", - "laminas/laminas-crypt": "^2.6.0", - "laminas/laminas-db": "^2.8.2", - "laminas/laminas-dependency-plugin": "^1.0", - "laminas/laminas-di": "^2.6.1", - "laminas/laminas-eventmanager": "^3.0.0", - "laminas/laminas-feed": "^2.9.0", - "laminas/laminas-form": "^2.10.0", - "laminas/laminas-http": "^2.6.0", - "laminas/laminas-i18n": "^2.7.3", - "laminas/laminas-json": "^2.6.1", - "laminas/laminas-log": "^2.9.1", - "laminas/laminas-mail": "^2.9.0", - "laminas/laminas-mime": "^2.5.0", - "laminas/laminas-modulemanager": "^2.7", - "laminas/laminas-mvc": "~2.7.0", - "laminas/laminas-serializer": "^2.7.2", - "laminas/laminas-server": "^2.6.1", - "laminas/laminas-servicemanager": "^2.7.8", - "laminas/laminas-session": "^2.7.3", - "laminas/laminas-soap": "^2.7.0", - "laminas/laminas-stdlib": "^3.2.1", - "laminas/laminas-text": "^2.6.0", - "laminas/laminas-uri": "^2.5.1", - "laminas/laminas-validator": "^2.6.0", - "laminas/laminas-view": "~2.11.2", - "lib-libxml": "*", - "magento/adobe-stock-integration": "2.0.0", - "magento/composer": "1.6.0", - "magento/framework-foreign-key": "100.4.0", - "magento/google-shopping-ads": "4.0.1", - "magento/inventory-metapackage": "1.2.0", - "magento/magento-composer-installer": ">=0.1.11", - "magento/magento2-ee-base": "2.4.0", - "magento/module-admin-gws": "100.4.0", - "magento/module-admin-gws-staging": "100.4.0", - "magento/module-advanced-catalog": "100.4.0", - "magento/module-advanced-checkout": "100.4.0", - "magento/module-advanced-rule": "100.4.0", - "magento/module-advanced-sales-rule": "100.4.0", - "magento/module-banner": "101.2.0", - "magento/module-banner-customer-segment": "100.4.0", - "magento/module-bundle-import-export-staging": "100.4.0", - "magento/module-bundle-staging": "100.4.0", - "magento/module-catalog-event": "101.1.0", - "magento/module-catalog-import-export-staging": "100.4.0", - "magento/module-catalog-inventory-staging": "100.4.0", - "magento/module-catalog-permissions": "100.4.0", - "magento/module-catalog-rule-staging": "100.4.0", - "magento/module-catalog-staging": "100.4.0", - "magento/module-catalog-staging-graph-ql": "100.4.0", - "magento/module-catalog-url-rewrite-staging": "100.4.0", - "magento/module-checkout-address-search": "100.4.0", - "magento/module-checkout-address-search-gift-registry": "100.4.0", - "magento/module-checkout-staging": "100.4.0", - "magento/module-cms-staging": "100.4.0", - "magento/module-configurable-product-staging": "100.4.0", - "magento/module-custom-attribute-management": "100.4.0", - "magento/module-customer-balance": "100.4.0", - "magento/module-customer-balance-graph-ql": "100.4.0", - "magento/module-customer-custom-attributes": "100.4.0", - "magento/module-customer-finance": "100.4.0", - "magento/module-customer-segment": "102.1.0", - "magento/module-downloadable-staging": "100.4.0", - "magento/module-elasticsearch-catalog-permissions": "100.4.0", - "magento/module-enterprise": "100.4.0", - "magento/module-gift-card": "101.3.0", - "magento/module-gift-card-account": "101.2.0", - "magento/module-gift-card-account-graph-ql": "100.4.0", - "magento/module-gift-card-graph-ql": "100.4.0", - "magento/module-gift-card-import-export": "100.4.0", - "magento/module-gift-card-staging": "100.4.0", - "magento/module-gift-message-staging": "100.4.0", - "magento/module-gift-registry": "101.2.0", - "magento/module-gift-wrapping": "101.2.0", - "magento/module-gift-wrapping-staging": "100.4.0", - "magento/module-google-optimizer-staging": "100.4.0", - "magento/module-google-tag-manager": "100.4.0", - "magento/module-grouped-product-staging": "100.4.0", - "magento/module-invitation": "100.4.0", - "magento/module-layered-navigation-staging": "100.4.0", - "magento/module-logging": "101.2.0", - "magento/module-login-as-customer-logging": "100.4.0", - "magento/module-login-as-customer-website-restriction": "100.4.0", - "magento/module-media-content-catalog-staging": "100.4.0", - "magento/module-msrp-staging": "100.4.0", - "magento/module-multiple-wishlist": "100.4.0", - "magento/module-payment-staging": "100.4.0", - "magento/module-persistent-history": "100.4.0", - "magento/module-price-permissions": "100.4.0", - "magento/module-product-video-staging": "100.4.0", - "magento/module-promotion-permissions": "100.4.0", - "magento/module-reminder": "101.2.0", - "magento/module-resource-connections": "100.4.0", - "magento/module-review-staging": "100.4.0", - "magento/module-reward": "101.2.0", - "magento/module-reward-graph-ql": "100.4.0", - "magento/module-reward-staging": "100.4.0", - "magento/module-rma": "101.2.0", - "magento/module-rma-graph-ql": "100.4.0", - "magento/module-rma-staging": "100.4.0", - "magento/module-sales-archive": "101.0.0", - "magento/module-sales-rule-staging": "100.4.0", - "magento/module-scalable-checkout": "100.4.0", - "magento/module-scalable-inventory": "100.4.0", - "magento/module-scalable-oms": "100.4.0", - "magento/module-scheduled-import-export": "101.2.0", - "magento/module-search-staging": "100.4.0", - "magento/module-staging": "101.2.0", - "magento/module-staging-graph-ql": "100.4.0", - "magento/module-support": "101.2.0", - "magento/module-target-rule": "101.2.0", - "magento/module-tinymce-3-banner": "100.4.0", - "magento/module-versions-cms": "101.2.0", - "magento/module-versions-cms-url-rewrite": "100.4.0", - "magento/module-visual-merchandiser": "100.4.0", - "magento/module-website-restriction": "100.4.0", - "magento/module-weee-staging": "100.4.0", - "magento/page-builder-commerce": "1.4.0", - "magento/product-community-edition": "2.4.0", - "magento/security-package": "1.0.0", - "magento/zendframework1": "~1.14.2", - "monolog/monolog": "^1.17", - "paragonie/sodium_compat": "^1.6", - "paypal/module-braintree": "4.1.0", - "pelago/emogrifier": "^3.1.0", - "php": "~7.3.0||~7.4.0", - "php-amqplib/php-amqplib": "~2.7.0||~2.10.0", - "phpseclib/mcrypt_compat": "1.0.8", - "phpseclib/phpseclib": "2.0.*", - "ramsey/uuid": "~3.8.0", - "symfony/console": "~4.4.0", - "symfony/event-dispatcher": "~4.4.0", - "symfony/process": "~4.4.0", - "tedivm/jshrink": "~1.3.0", - "temando/module-shipping": "2.0.0", - "tubalmartin/cssmin": "4.1.1", - "vertex/product-magento-module": "4.0.0", - "webonyx/graphql-php": "^0.13.8", - "wikimedia/less.php": "~1.8.0", - "yotpo/magento2-module-yotpo-reviews-bundle": "3.1.1" + "php": "^7|^8" }, - "type": "metapackage", + "require-dev": { + "phpunit/phpunit": "^6|^7", + "vimeo/psalm": "^1|^2|^3" + }, + "type": "library", + "autoload": { + "psr-4": { + "ParagonIE\\ConstantTime\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "proprietary" + "MIT" ], - "description": "eCommerce Platform for Growth (Enterprise Edition)" + "authors": [ + { + "name": "Paragon Initiative Enterprises", + "email": "security@paragonie.com", + "homepage": "https://paragonie.com", + "role": "Maintainer" + }, + { + "name": "Steve 'Sc00bz' Thomas", + "email": "steve@tobtu.com", + "homepage": "https://www.tobtu.com", + "role": "Original Developer" + } + ], + "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)", + "keywords": [ + "base16", + "base32", + "base32_decode", + "base32_encode", + "base64", + "base64_decode", + "base64_encode", + "bin2hex", + "encoding", + "hex", + "hex2bin", + "rfc4648" + ], + "time": "2019-11-06T19:20:29+00:00" }, { - "name": "magento/security-package", - "version": "1.0.0", + "name": "paragonie/random_compat", + "version": "v9.99.99", + "source": { + "type": "git", + "url": "https://github.com/paragonie/random_compat.git", + "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95" + }, "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/security-package/magento-security-package-1.0.0.0.zip", - "shasum": "35744adb8548c112800798579da82bfd35d8c39f" - }, - "require": { - "magento/module-re-captcha-admin-ui": "1.0.0", - "magento/module-re-captcha-checkout": "1.0.0", - "magento/module-re-captcha-contact": "1.0.0", - "magento/module-re-captcha-customer": "1.0.0", - "magento/module-re-captcha-frontend-ui": "1.0.0", - "magento/module-re-captcha-migration": "1.0.0", - "magento/module-re-captcha-newsletter": "1.0.0", - "magento/module-re-captcha-paypal": "1.0.0", - "magento/module-re-captcha-review": "1.0.0", - "magento/module-re-captcha-send-friend": "1.0.0", - "magento/module-re-captcha-ui": "1.0.0", - "magento/module-re-captcha-user": "1.0.0", - "magento/module-re-captcha-validation": "1.0.0", - "magento/module-re-captcha-validation-api": "1.0.0", - "magento/module-re-captcha-version-2-checkbox": "1.0.0", - "magento/module-re-captcha-version-2-invisible": "1.0.0", - "magento/module-re-captcha-version-3-invisible": "1.0.0", - "magento/module-securitytxt": "1.0.0", - "magento/module-two-factor-auth": "1.0.0" + "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95", + "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95", + "shasum": "" + }, + "require": { + "php": "^7" + }, + "require-dev": { + "phpunit/phpunit": "4.*|5.*", + "vimeo/psalm": "^1" + }, + "suggest": { + "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." + }, + "type": "library", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Paragon Initiative Enterprises", + "email": "security@paragonie.com", + "homepage": "https://paragonie.com" + } + ], + "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", + "keywords": [ + "csprng", + "polyfill", + "pseudorandom", + "random" + ], + "time": "2018-07-02T15:55:56+00:00" + }, + { + "name": "paragonie/sodium_compat", + "version": "v1.13.0", + "source": { + "type": "git", + "url": "https://github.com/paragonie/sodium_compat.git", + "reference": "bbade402cbe84c69b718120911506a3aa2bae653" }, - "type": "metapackage", - "description": "Magento Security Package" - }, - { - "name": "magento/theme-adminhtml-backend", - "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/theme-adminhtml-backend/magento-theme-adminhtml-backend-100.4.0.0.zip", - "shasum": "b575cba61fa73982f3e5469ff65bd57fe78cc321" + "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/bbade402cbe84c69b718120911506a3aa2bae653", + "reference": "bbade402cbe84c69b718120911506a3aa2bae653", + "shasum": "" }, "require": { - "magento/framework": "103.0.*", - "php": "~7.3.0||~7.4.0" + "paragonie/random_compat": ">=1", + "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8" }, - "type": "magento2-theme", + "require-dev": { + "phpunit/phpunit": "^3|^4|^5|^6|^7" + }, + "suggest": { + "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.", + "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security." + }, + "type": "library", "autoload": { "files": [ - "registration.php" + "autoload.php" ] }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "OSL-3.0", - "AFL-3.0" + "ISC" ], - "description": "N/A" + "authors": [ + { + "name": "Paragon Initiative Enterprises", + "email": "security@paragonie.com" + }, + { + "name": "Frank Denis", + "email": "jedisct1@pureftpd.org" + } + ], + "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists", + "keywords": [ + "Authentication", + "BLAKE2b", + "ChaCha20", + "ChaCha20-Poly1305", + "Chapoly", + "Curve25519", + "Ed25519", + "EdDSA", + "Edwards-curve Digital Signature Algorithm", + "Elliptic Curve Diffie-Hellman", + "Poly1305", + "Pure-PHP cryptography", + "RFC 7748", + "RFC 8032", + "Salpoly", + "Salsa20", + "X25519", + "XChaCha20-Poly1305", + "XSalsa20-Poly1305", + "Xchacha20", + "Xsalsa20", + "aead", + "cryptography", + "ecdh", + "elliptic curve", + "elliptic curve cryptography", + "encryption", + "libsodium", + "php", + "public-key cryptography", + "secret-key cryptography", + "side-channel resistant" + ], + "time": "2020-03-20T21:48:09+00:00" }, { - "name": "magento/theme-frontend-blank", - "version": "100.4.0", + "name": "paypal/module-braintree", + "version": "4.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/theme-frontend-blank/magento-theme-frontend-blank-100.4.0.0.zip", - "shasum": "d38bc758f681a7aee6706306bb1aa00f06360bfe" + "url": "https://repo.magento.com/archives/paypal/module-braintree/paypal-module-braintree-4.2.0.0.zip", + "shasum": "7a13c18488bab661e6c06c862e9df371eee6f8a4" }, "require": { - "magento/framework": "103.0.*", - "php": "~7.3.0||~7.4.0" - }, - "type": "magento2-theme", - "autoload": { - "files": [ - "registration.php" - ] + "paypal/module-braintree-core": "4.2.0", + "paypal/module-braintree-graph-ql": "4.1.1" }, + "type": "metapackage", "license": [ - "OSL-3.0", - "AFL-3.0" + "Apache-2.0" ], - "description": "N/A" + "description": "Braintree Magento" }, { - "name": "magento/theme-frontend-luma", - "version": "100.4.0", + "name": "paypal/module-braintree-core", + "version": "4.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/theme-frontend-luma/magento-theme-frontend-luma-100.4.0.0.zip", - "shasum": "9d3a2014796dd36e2ff0224ee367fb4e05a2cca5" + "url": "https://repo.magento.com/archives/paypal/module-braintree-core/paypal-module-braintree-core-4.2.0.0.zip", + "shasum": "dc646d71fb9a76c9ef2b37d8b0bfdd539ac19111" }, "require": { - "magento/framework": "103.0.*", - "magento/theme-frontend-blank": "100.4.*", - "php": "~7.3.0||~7.4.0" + "braintree/braintree_php": "5.2.0", + "ext-json": "*", + "ext-simplexml": "*", + "league/iso3166": "^2.1", + "magento/module-backend": "100.2.*||101.0.*||^102.0.0", + "magento/module-catalog": "102.0.*||103.0.*||^104.0.0", + "magento/module-checkout": "100.2.*||100.3.*||^100.4.0", + "magento/module-config": "101.0.*||101.1.*||^101.2.0", + "magento/module-customer": "101.0.*||102.0.*||^103.0.0", + "magento/module-directory": "100.2.*||100.3.*||^100.4.0", + "magento/module-payment": "100.2.*||100.3.*||^100.4.0", + "magento/module-paypal": "100.2.*||100.3.*||^101.0.0", + "magento/module-quote": "101.0.*||101.1.*||^101.2.0", + "magento/module-sales": "101.0.*||102.0.*||^102.1.0||^103", + "magento/module-theme": "100.2.*||101.0.*||^101.1.0", + "magento/module-ui": "101.0.*||101.1.*||^101.2.0", + "magento/module-vault": "101.0.*||101.1.*||^101.2.0" }, - "type": "magento2-theme", + "conflict": { + "gene/module-braintree": "*", + "magento/module-braintree": "*" + }, + "type": "magento2-module", "autoload": { "files": [ "registration.php" - ] + ], + "psr-4": { + "PayPal\\Braintree\\": "" + } }, "license": [ - "OSL-3.0", - "AFL-3.0" + "proprietary" ], - "description": "N/A" + "description": "Fork from the Magento Braintree 2.2.0 module by Gene Commerce for PayPal." }, { - "name": "magento/zendframework1", - "version": "1.14.4", - "source": { - "type": "git", - "url": "https://github.com/magento/zf1.git", - "reference": "250f35c0e80b5e6fa1a1598c144cba2fff36b565" - }, + "name": "paypal/module-braintree-graph-ql", + "version": "4.1.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/magento/zf1/zipball/250f35c0e80b5e6fa1a1598c144cba2fff36b565", - "reference": "250f35c0e80b5e6fa1a1598c144cba2fff36b565", - "shasum": "" + "url": "https://repo.magento.com/archives/paypal/module-braintree-graph-ql/paypal-module-braintree-graph-ql-4.1.1.0.zip", + "shasum": "c9ec37feb321b5a2a4fc4c355e20c2206084b33c" }, "require": { - "php": ">=5.2.11" - }, - "require-dev": { - "phpunit/dbunit": "1.3.*", - "phpunit/phpunit": "3.7.*" + "magento/framework": "^102||^103", + "magento/module-quote": "^101", + "magento/module-quote-graph-ql": "^100", + "magento/module-store": "^101", + "paypal/module-braintree": "^4.1", + "php": "~7.1.3||~7.2.0||~7.3.0||~7.4.0" }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.12.x-dev" - } + "suggest": { + "magento/module-graph-ql": "^100" }, + "type": "magento2-module", "autoload": { - "psr-0": { - "Zend_": "library/" + "files": [ + "registration.php" + ], + "psr-4": { + "PayPal\\BraintreeGraphQl\\": "" } }, - "notification-url": "https://packagist.org/downloads/", - "include-path": [ - "library/" - ], "license": [ - "BSD-3-Clause" - ], - "description": "Magento Zend Framework 1", - "homepage": "http://framework.zend.com/", - "keywords": [ - "ZF1", - "framework" + "OSL-3.0", + "AFL-3.0" ], - "time": "2020-05-19T23:25:07+00:00" + "description": "N/A" }, { - "name": "monolog/monolog", - "version": "1.25.5", + "name": "pelago/emogrifier", + "version": "v3.1.0", "source": { "type": "git", - "url": "https://github.com/Seldaek/monolog.git", - "reference": "1817faadd1846cd08be9a49e905dc68823bc38c0" + "url": "https://github.com/MyIntervals/emogrifier.git", + "reference": "f6a5c7d44612d86c3901c93f1592f5440e6b2cd8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1817faadd1846cd08be9a49e905dc68823bc38c0", - "reference": "1817faadd1846cd08be9a49e905dc68823bc38c0", + "url": "https://api.github.com/repos/MyIntervals/emogrifier/zipball/f6a5c7d44612d86c3901c93f1592f5440e6b2cd8", + "reference": "f6a5c7d44612d86c3901c93f1592f5440e6b2cd8", "shasum": "" }, "require": { - "php": ">=5.3.0", - "psr/log": "~1.0" - }, - "provide": { - "psr/log-implementation": "1.0.0" + "ext-dom": "*", + "ext-libxml": "*", + "php": "^5.6 || ~7.0 || ~7.1 || ~7.2 || ~7.3 || ~7.4", + "symfony/css-selector": "^2.8 || ^3.0 || ^4.0 || ^5.0" }, "require-dev": { - "aws/aws-sdk-php": "^2.4.9 || ^3.0", - "doctrine/couchdb": "~1.0@dev", - "graylog2/gelf-php": "~1.0", - "php-amqplib/php-amqplib": "~2.4", - "php-console/php-console": "^3.1.3", - "php-parallel-lint/php-parallel-lint": "^1.0", - "phpunit/phpunit": "~4.5", - "ruflin/elastica": ">=0.90 <3.0", - "sentry/sentry": "^0.13", - "swiftmailer/swiftmailer": "^5.3|^6.0" - }, - "suggest": { - "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", - "doctrine/couchdb": "Allow sending log messages to a CouchDB server", - "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", - "ext-mongo": "Allow sending log messages to a MongoDB server", - "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", - "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver", - "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", - "php-console/php-console": "Allow sending log messages to Google Chrome", - "rollbar/rollbar": "Allow sending log messages to Rollbar", - "ruflin/elastica": "Allow sending log messages to an Elastic Search server", - "sentry/sentry": "Allow sending log messages to a Sentry server" + "friendsofphp/php-cs-fixer": "^2.15.3", + "phpmd/phpmd": "^2.7.0", + "phpunit/phpunit": "^5.7.27", + "squizlabs/php_codesniffer": "^3.5.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Monolog\\": "src/Monolog" + "dev-master": "4.0.x-dev" } }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" - } - ], - "description": "Sends your logs to files, sockets, inboxes, databases and various web services", - "homepage": "http://github.com/Seldaek/monolog", - "keywords": [ - "log", - "logging", - "psr-3" + "autoload": { + "psr-4": { + "Pelago\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" ], - "funding": [ + "authors": [ { - "url": "https://github.com/Seldaek", - "type": "github" + "name": "Oliver Klee", + "email": "github@oliverklee.de" }, { - "url": "https://tidelift.com/funding/github/packagist/monolog/monolog", - "type": "tidelift" + "name": "Zoli Szabó", + "email": "zoli.szabo+github@gmail.com" + }, + { + "name": "John Reeve", + "email": "jreeve@pelagodesign.com" + }, + { + "name": "Jake Hotson", + "email": "jake@qzdesign.co.uk" + }, + { + "name": "Cameron Brooks" + }, + { + "name": "Jaime Prado" } ], - "time": "2020-07-23T08:35:51+00:00" + "description": "Converts CSS styles into inline style attributes in your HTML code", + "homepage": "https://www.myintervals.com/emogrifier.php", + "keywords": [ + "css", + "email", + "pre-processing" + ], + "time": "2019-12-26T19:37:31+00:00" }, { - "name": "myclabs/php-enum", - "version": "1.7.6", + "name": "php-amqplib/php-amqplib", + "version": "v2.10.1", "source": { "type": "git", - "url": "https://github.com/myclabs/php-enum.git", - "reference": "5f36467c7a87e20fbdc51e524fd8f9d1de80187c" + "url": "https://github.com/php-amqplib/php-amqplib.git", + "reference": "6e2b2501e021e994fb64429e5a78118f83b5c200" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/php-enum/zipball/5f36467c7a87e20fbdc51e524fd8f9d1de80187c", - "reference": "5f36467c7a87e20fbdc51e524fd8f9d1de80187c", + "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/6e2b2501e021e994fb64429e5a78118f83b5c200", + "reference": "6e2b2501e021e994fb64429e5a78118f83b5c200", "shasum": "" }, "require": { - "ext-json": "*", - "php": ">=7.1" + "ext-bcmath": "*", + "ext-sockets": "*", + "php": ">=5.6" + }, + "replace": { + "videlalvaro/php-amqplib": "self.version" }, "require-dev": { - "phpunit/phpunit": "^7", - "squizlabs/php_codesniffer": "1.*", - "vimeo/psalm": "^3.8" + "ext-curl": "*", + "nategood/httpful": "^0.2.20", + "phpunit/phpunit": "^5.7|^6.5|^7.0", + "squizlabs/php_codesniffer": "^2.5" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.10-dev" + } + }, "autoload": { "psr-4": { - "MyCLabs\\Enum\\": "src/" + "PhpAmqpLib\\": "PhpAmqpLib/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "LGPL-2.1-or-later" ], "authors": [ { - "name": "PHP Enum contributors", - "homepage": "https://github.com/myclabs/php-enum/graphs/contributors" + "name": "Alvaro Videla", + "role": "Original Maintainer" + }, + { + "name": "John Kelly", + "email": "johnmkelly86@gmail.com", + "role": "Maintainer" + }, + { + "name": "Raúl Araya", + "email": "nubeiro@gmail.com", + "role": "Maintainer" + }, + { + "name": "Luke Bakken", + "email": "luke@bakken.io", + "role": "Maintainer" } ], - "description": "PHP Enum implementation", - "homepage": "http://github.com/myclabs/php-enum", + "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.", + "homepage": "https://github.com/php-amqplib/php-amqplib/", "keywords": [ - "enum" + "message", + "queue", + "rabbitmq" ], - "time": "2020-02-14T08:15:52+00:00" + "time": "2019-10-10T13:23:40+00:00" }, { - "name": "paragonie/constant_time_encoding", - "version": "v2.3.0", + "name": "phpgt/cssxpath", + "version": "v1.1.2", "source": { "type": "git", - "url": "https://github.com/paragonie/constant_time_encoding.git", - "reference": "47a1cedd2e4d52688eb8c96469c05ebc8fd28fa2" + "url": "https://github.com/PhpGt/CssXPath.git", + "reference": "cca4df1a33e18aff1bb775372ece5fddb032ba67" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/47a1cedd2e4d52688eb8c96469c05ebc8fd28fa2", - "reference": "47a1cedd2e4d52688eb8c96469c05ebc8fd28fa2", + "url": "https://api.github.com/repos/PhpGt/CssXPath/zipball/cca4df1a33e18aff1bb775372ece5fddb032ba67", + "reference": "cca4df1a33e18aff1bb775372ece5fddb032ba67", "shasum": "" }, "require": { - "php": "^7|^8" + "php": ">=7.2" }, "require-dev": { - "phpunit/phpunit": "^6|^7", - "vimeo/psalm": "^1|^2|^3" + "phpgt/dom": "*", + "phpunit/phpunit": "^8.0" }, "type": "library", "autoload": { "psr-4": { - "ParagonIE\\ConstantTime\\": "src/" + "Gt\\CssXPath\\": "./src" } }, "notification-url": "https://packagist.org/downloads/", @@ -19206,294 +20418,325 @@ ], "authors": [ { - "name": "Paragon Initiative Enterprises", - "email": "security@paragonie.com", - "homepage": "https://paragonie.com", - "role": "Maintainer" - }, - { - "name": "Steve 'Sc00bz' Thomas", - "email": "steve@tobtu.com", - "homepage": "https://www.tobtu.com", - "role": "Original Developer" + "name": "Greg Bowler", + "email": "greg.bowler@g105b.com", + "homepage": "https://www.g105b.com", + "role": "Developer" } ], - "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)", - "keywords": [ - "base16", - "base32", - "base32_decode", - "base32_encode", - "base64", - "base64_decode", - "base64_encode", - "bin2hex", - "encoding", - "hex", - "hex2bin", - "rfc4648" - ], - "time": "2019-11-06T19:20:29+00:00" + "description": "Convert CSS selectors to XPath queries.", + "time": "2019-11-08T13:40:04+00:00" }, { - "name": "paragonie/random_compat", - "version": "v9.99.99", + "name": "phpgt/dom", + "version": "v2.1.6", "source": { "type": "git", - "url": "https://github.com/paragonie/random_compat.git", - "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95" + "url": "https://github.com/PhpGt/Dom.git", + "reference": "fceb86cdb32e846178f75b7f9806d2b77635a879" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95", - "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95", + "url": "https://api.github.com/repos/PhpGt/Dom/zipball/fceb86cdb32e846178f75b7f9806d2b77635a879", + "reference": "fceb86cdb32e846178f75b7f9806d2b77635a879", "shasum": "" }, "require": { - "php": "^7" + "ext-dom": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "php": ">=7.2", + "phpgt/cssxpath": "*", + "psr/http-message": "1.*" }, "require-dev": { - "phpunit/phpunit": "4.*|5.*", - "vimeo/psalm": "^1" - }, - "suggest": { - "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." + "phpunit/phpunit": "8.*" }, "type": "library", + "autoload": { + "psr-4": { + "Gt\\Dom\\": "./src" + } + }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { - "name": "Paragon Initiative Enterprises", - "email": "security@paragonie.com", - "homepage": "https://paragonie.com" + "name": "Greg Bowler", + "email": "greg.bowler@g105b.com", + "homepage": "https://www.g105b.com", + "role": "Developer" + }, + { + "name": "Alvaro Guimaraes", + "homepage": "https://github.com/aguimaraes", + "role": "Developer" + }, + { + "name": "James Fellows", + "homepage": "https://github.com/j4m3s", + "role": "Developer" + }, + { + "name": "Emile Ward", + "homepage": "https://github.com/emileward", + "role": "Developer" + }, + { + "name": "Jelmer Wijnja", + "homepage": "https://github.com/Jelmergu", + "role": "Developer" + }, + { + "name": "Ognjen Petrovic", + "homepage": "https://github.com/ognjen-petrovic", + "role": "Developer" + }, + { + "name": "Jacob Bearden", + "homepage": "https://github.com/jacobbearden", + "role": "Documentation contributor" + }, + { + "name": "Jaroslav Týc", + "homepage": "https://www.jaroslavtyc.com/", + "role": "Developer" } ], - "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", - "keywords": [ - "csprng", - "polyfill", - "pseudorandom", - "random" - ], - "time": "2018-07-02T15:55:56+00:00" + "description": "The modern DOM API for PHP 7 projects.", + "time": "2020-01-15T08:28:10+00:00" }, { - "name": "paragonie/sodium_compat", - "version": "v1.13.0", + "name": "phpseclib/mcrypt_compat", + "version": "1.0.8", "source": { "type": "git", - "url": "https://github.com/paragonie/sodium_compat.git", - "reference": "bbade402cbe84c69b718120911506a3aa2bae653" + "url": "https://github.com/phpseclib/mcrypt_compat.git", + "reference": "f74c7b1897b62f08f268184b8bb98d9d9ab723b0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/bbade402cbe84c69b718120911506a3aa2bae653", - "reference": "bbade402cbe84c69b718120911506a3aa2bae653", + "url": "https://api.github.com/repos/phpseclib/mcrypt_compat/zipball/f74c7b1897b62f08f268184b8bb98d9d9ab723b0", + "reference": "f74c7b1897b62f08f268184b8bb98d9d9ab723b0", "shasum": "" }, "require": { - "paragonie/random_compat": ">=1", - "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8" + "php": ">=5.3.3", + "phpseclib/phpseclib": ">=2.0.11 <3.0.0" }, "require-dev": { - "phpunit/phpunit": "^3|^4|^5|^6|^7" + "phpunit/phpunit": "^4.8.35|^5.7|^6.0" }, "suggest": { - "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.", - "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security." + "ext-openssl": "Will enable faster cryptographic operations" }, "type": "library", "autoload": { "files": [ - "autoload.php" + "lib/mcrypt.php" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "ISC" + "MIT" ], "authors": [ { - "name": "Paragon Initiative Enterprises", - "email": "security@paragonie.com" - }, - { - "name": "Frank Denis", - "email": "jedisct1@pureftpd.org" + "name": "Jim Wigginton", + "email": "terrafrost@php.net", + "homepage": "http://phpseclib.sourceforge.net" } ], - "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists", + "description": "PHP 7.1 polyfill for the mcrypt extension from PHP <= 7.0", "keywords": [ - "Authentication", - "BLAKE2b", - "ChaCha20", - "ChaCha20-Poly1305", - "Chapoly", - "Curve25519", - "Ed25519", - "EdDSA", - "Edwards-curve Digital Signature Algorithm", - "Elliptic Curve Diffie-Hellman", - "Poly1305", - "Pure-PHP cryptography", - "RFC 7748", - "RFC 8032", - "Salpoly", - "Salsa20", - "X25519", - "XChaCha20-Poly1305", - "XSalsa20-Poly1305", - "Xchacha20", - "Xsalsa20", - "aead", - "cryptography", - "ecdh", - "elliptic curve", - "elliptic curve cryptography", + "cryptograpy", "encryption", - "libsodium", - "php", - "public-key cryptography", - "secret-key cryptography", - "side-channel resistant" + "mcrypt" ], - "time": "2020-03-20T21:48:09+00:00" + "time": "2018-08-22T03:11:43+00:00" }, { - "name": "paypal/module-braintree", - "version": "4.1.0", - "dist": { - "type": "zip", - "url": "https://repo.magento.com/archives/paypal/module-braintree/paypal-module-braintree-4.1.0.0.zip", - "shasum": "abb52b4930cbc91c5116bbf19b8044bb356a463c" - }, - "require": { - "paypal/module-braintree-core": "4.1.0", - "paypal/module-braintree-graph-ql": "4.1.0" + "name": "phpseclib/phpseclib", + "version": "2.0.29", + "source": { + "type": "git", + "url": "https://github.com/phpseclib/phpseclib.git", + "reference": "497856a8d997f640b4a516062f84228a772a48a8" }, - "type": "metapackage", - "license": [ - "Apache-2.0" - ], - "description": "Braintree Magento" - }, - { - "name": "paypal/module-braintree-core", - "version": "4.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/paypal/module-braintree-core/paypal-module-braintree-core-4.1.0.0.zip", - "shasum": "28be379fc99016538d24d028d766b289cc522c41" + "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/497856a8d997f640b4a516062f84228a772a48a8", + "reference": "497856a8d997f640b4a516062f84228a772a48a8", + "shasum": "" }, "require": { - "braintree/braintree_php": "4.5.0", - "ext-json": "*", - "ext-simplexml": "*", - "league/iso3166": "^2.1", - "magento/module-backend": "100.2.*||101.0.*||^102.0.0", - "magento/module-catalog": "102.0.*||103.0.*||^104.0.0", - "magento/module-checkout": "100.2.*||100.3.*||^100.4.0", - "magento/module-config": "101.0.*||101.1.*||^101.2.0", - "magento/module-customer": "101.0.*||102.0.*||^103.0.0", - "magento/module-directory": "100.2.*||100.3.*||^100.4.0", - "magento/module-payment": "100.2.*||100.3.*||^100.4.0", - "magento/module-paypal": "100.2.*||100.3.*||^101.0.0", - "magento/module-quote": "101.0.*||101.1.*||^101.2.0", - "magento/module-sales": "101.0.*||102.0.*||^102.1.0||^103", - "magento/module-theme": "100.2.*||101.0.*||^101.1.0", - "magento/module-ui": "101.0.*||101.1.*||^101.2.0", - "magento/module-vault": "101.0.*||101.1.*||^101.2.0" + "php": ">=5.3.3" }, - "conflict": { - "gene/module-braintree": "*", - "magento/module-braintree": "*" + "require-dev": { + "phing/phing": "~2.7", + "phpunit/phpunit": "^4.8.35|^5.7|^6.0", + "squizlabs/php_codesniffer": "~2.0" }, - "type": "magento2-module", + "suggest": { + "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.", + "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.", + "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.", + "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations." + }, + "type": "library", "autoload": { "files": [ - "registration.php" + "phpseclib/bootstrap.php" ], "psr-4": { - "PayPal\\Braintree\\": "" + "phpseclib\\": "phpseclib/" } }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "proprietary" + "MIT" ], - "description": "Fork from the Magento Braintree 2.2.0 module by Gene Commerce for PayPal." + "authors": [ + { + "name": "Jim Wigginton", + "email": "terrafrost@php.net", + "role": "Lead Developer" + }, + { + "name": "Patrick Monnerat", + "email": "pm@datasphere.ch", + "role": "Developer" + }, + { + "name": "Andreas Fischer", + "email": "bantu@phpbb.com", + "role": "Developer" + }, + { + "name": "Hans-Jürgen Petrich", + "email": "petrich@tronic-media.com", + "role": "Developer" + }, + { + "name": "Graham Campbell", + "email": "graham@alt-three.com", + "role": "Developer" + } + ], + "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.", + "homepage": "http://phpseclib.sourceforge.net", + "keywords": [ + "BigInteger", + "aes", + "asn.1", + "asn1", + "blowfish", + "crypto", + "cryptography", + "encryption", + "rsa", + "security", + "sftp", + "signature", + "signing", + "ssh", + "twofish", + "x.509", + "x509" + ], + "funding": [ + { + "url": "https://github.com/terrafrost", + "type": "github" + }, + { + "url": "https://www.patreon.com/phpseclib", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib", + "type": "tidelift" + } + ], + "time": "2020-09-08T04:24:43+00:00" }, { - "name": "paypal/module-braintree-graph-ql", - "version": "4.1.0", + "name": "psr/container", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/container.git", + "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f" + }, "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/paypal/module-braintree-graph-ql/paypal-module-braintree-graph-ql-4.1.0.0.zip", - "shasum": "c9f7e844d807f10e1bfb964e234d747d755ad3fb" + "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f", + "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f", + "shasum": "" }, "require": { - "magento/framework": "^102||^103", - "magento/module-quote": "^101", - "magento/module-quote-graph-ql": "^100", - "magento/module-store": "^101", - "paypal/module-braintree": "^4.1", - "php": "~7.1.3||~7.2.0||~7.3.0||~7.4.0" + "php": ">=5.3.0" }, - "suggest": { - "magento/module-graph-ql": "^100" + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } }, - "type": "magento2-module", "autoload": { - "files": [ - "registration.php" - ], "psr-4": { - "PayPal\\BraintreeGraphQl\\": "" + "Psr\\Container\\": "src/" } }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "OSL-3.0", - "AFL-3.0" + "MIT" ], - "description": "N/A" + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common Container Interface (PHP FIG PSR-11)", + "homepage": "https://github.com/php-fig/container", + "keywords": [ + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" + ], + "time": "2017-02-14T16:28:37+00:00" }, { - "name": "pelago/emogrifier", - "version": "v3.1.0", + "name": "psr/http-message", + "version": "1.0.1", "source": { "type": "git", - "url": "https://github.com/MyIntervals/emogrifier.git", - "reference": "f6a5c7d44612d86c3901c93f1592f5440e6b2cd8" + "url": "https://github.com/php-fig/http-message.git", + "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/MyIntervals/emogrifier/zipball/f6a5c7d44612d86c3901c93f1592f5440e6b2cd8", - "reference": "f6a5c7d44612d86c3901c93f1592f5440e6b2cd8", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363", + "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363", "shasum": "" }, "require": { - "ext-dom": "*", - "ext-libxml": "*", - "php": "^5.6 || ~7.0 || ~7.1 || ~7.2 || ~7.3 || ~7.4", - "symfony/css-selector": "^2.8 || ^3.0 || ^4.0 || ^5.0" - }, - "require-dev": { - "friendsofphp/php-cs-fixer": "^2.15.3", - "phpmd/phpmd": "^2.7.0", - "phpunit/phpunit": "^5.7.27", - "squizlabs/php_codesniffer": "^3.5.0" + "php": ">=5.3.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0.x-dev" + "dev-master": "1.0.x-dev" } }, "autoload": { "psr-4": { - "Pelago\\": "src/" + "Psr\\Http\\Message\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -19502,136 +20745,95 @@ ], "authors": [ { - "name": "Oliver Klee", - "email": "github@oliverklee.de" - }, - { - "name": "Zoli Szabó", - "email": "zoli.szabo+github@gmail.com" - }, - { - "name": "John Reeve", - "email": "jreeve@pelagodesign.com" - }, - { - "name": "Jake Hotson", - "email": "jake@qzdesign.co.uk" - }, - { - "name": "Cameron Brooks" - }, - { - "name": "Jaime Prado" + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" } ], - "description": "Converts CSS styles into inline style attributes in your HTML code", - "homepage": "https://www.myintervals.com/emogrifier.php", + "description": "Common interface for HTTP messages", + "homepage": "https://github.com/php-fig/http-message", "keywords": [ - "css", - "email", - "pre-processing" + "http", + "http-message", + "psr", + "psr-7", + "request", + "response" ], - "time": "2019-12-26T19:37:31+00:00" + "time": "2016-08-06T14:39:51+00:00" }, { - "name": "php-amqplib/php-amqplib", - "version": "v2.10.1", + "name": "psr/log", + "version": "1.1.3", "source": { "type": "git", - "url": "https://github.com/php-amqplib/php-amqplib.git", - "reference": "6e2b2501e021e994fb64429e5a78118f83b5c200" + "url": "https://github.com/php-fig/log.git", + "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/6e2b2501e021e994fb64429e5a78118f83b5c200", - "reference": "6e2b2501e021e994fb64429e5a78118f83b5c200", + "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc", + "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc", "shasum": "" }, "require": { - "ext-bcmath": "*", - "ext-sockets": "*", - "php": ">=5.6" - }, - "replace": { - "videlalvaro/php-amqplib": "self.version" - }, - "require-dev": { - "ext-curl": "*", - "nategood/httpful": "^0.2.20", - "phpunit/phpunit": "^5.7|^6.5|^7.0", - "squizlabs/php_codesniffer": "^2.5" + "php": ">=5.3.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.10-dev" + "dev-master": "1.1.x-dev" } }, "autoload": { "psr-4": { - "PhpAmqpLib\\": "PhpAmqpLib/" + "Psr\\Log\\": "Psr/Log/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-2.1-or-later" + "MIT" ], "authors": [ { - "name": "Alvaro Videla", - "role": "Original Maintainer" - }, - { - "name": "John Kelly", - "email": "johnmkelly86@gmail.com", - "role": "Maintainer" - }, - { - "name": "Raúl Araya", - "email": "nubeiro@gmail.com", - "role": "Maintainer" - }, - { - "name": "Luke Bakken", - "email": "luke@bakken.io", - "role": "Maintainer" + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" } ], - "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.", - "homepage": "https://github.com/php-amqplib/php-amqplib/", + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", "keywords": [ - "message", - "queue", - "rabbitmq" + "log", + "psr", + "psr-3" ], - "time": "2019-10-10T13:23:40+00:00" + "time": "2020-03-23T09:12:05+00:00" }, { - "name": "phpgt/cssxpath", - "version": "v1.1.2", + "name": "ralouphie/getallheaders", + "version": "3.0.3", "source": { "type": "git", - "url": "https://github.com/PhpGt/CssXPath.git", - "reference": "cca4df1a33e18aff1bb775372ece5fddb032ba67" + "url": "https://github.com/ralouphie/getallheaders.git", + "reference": "120b605dfeb996808c31b6477290a714d356e822" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PhpGt/CssXPath/zipball/cca4df1a33e18aff1bb775372ece5fddb032ba67", - "reference": "cca4df1a33e18aff1bb775372ece5fddb032ba67", + "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", + "reference": "120b605dfeb996808c31b6477290a714d356e822", "shasum": "" }, "require": { - "php": ">=7.2" + "php": ">=5.6" }, "require-dev": { - "phpgt/dom": "*", - "phpunit/phpunit": "^8.0" + "php-coveralls/php-coveralls": "^2.1", + "phpunit/phpunit": "^5 || ^6.5" }, "type": "library", "autoload": { - "psr-4": { - "Gt\\CssXPath\\": "./src" - } + "files": [ + "src/getallheaders.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -19639,44 +20841,65 @@ ], "authors": [ { - "name": "Greg Bowler", - "email": "greg.bowler@g105b.com", - "homepage": "https://www.g105b.com", - "role": "Developer" + "name": "Ralph Khattar", + "email": "ralph.khattar@gmail.com" } ], - "description": "Convert CSS selectors to XPath queries.", - "time": "2019-11-08T13:40:04+00:00" + "description": "A polyfill for getallheaders.", + "time": "2019-03-08T08:55:37+00:00" }, { - "name": "phpgt/dom", - "version": "v2.1.6", + "name": "ramsey/uuid", + "version": "3.8.0", "source": { "type": "git", - "url": "https://github.com/PhpGt/Dom.git", - "reference": "fceb86cdb32e846178f75b7f9806d2b77635a879" + "url": "https://github.com/ramsey/uuid.git", + "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PhpGt/Dom/zipball/fceb86cdb32e846178f75b7f9806d2b77635a879", - "reference": "fceb86cdb32e846178f75b7f9806d2b77635a879", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/d09ea80159c1929d75b3f9c60504d613aeb4a1e3", + "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3", "shasum": "" }, "require": { - "ext-dom": "*", - "ext-libxml": "*", - "ext-mbstring": "*", - "php": ">=7.2", - "phpgt/cssxpath": "*", - "psr/http-message": "1.*" + "paragonie/random_compat": "^1.0|^2.0|9.99.99", + "php": "^5.4 || ^7.0", + "symfony/polyfill-ctype": "^1.8" + }, + "replace": { + "rhumsaa/uuid": "self.version" }, "require-dev": { - "phpunit/phpunit": "8.*" + "codeception/aspect-mock": "^1.0 | ~2.0.0", + "doctrine/annotations": "~1.2.0", + "goaop/framework": "1.0.0-alpha.2 | ^1.0 | ~2.1.0", + "ircmaxell/random-lib": "^1.1", + "jakub-onderka/php-parallel-lint": "^0.9.0", + "mockery/mockery": "^0.9.9", + "moontoast/math": "^1.1", + "php-mock/php-mock-phpunit": "^0.3|^1.1", + "phpunit/phpunit": "^4.7|^5.0|^6.5", + "squizlabs/php_codesniffer": "^2.3" + }, + "suggest": { + "ext-ctype": "Provides support for PHP Ctype functions", + "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator", + "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator", + "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter", + "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).", + "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid", + "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type." }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, "autoload": { "psr-4": { - "Gt\\Dom\\": "./src" + "Ramsey\\Uuid\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -19685,78 +20908,55 @@ ], "authors": [ { - "name": "Greg Bowler", - "email": "greg.bowler@g105b.com", - "homepage": "https://www.g105b.com", - "role": "Developer" - }, - { - "name": "Alvaro Guimaraes", - "homepage": "https://github.com/aguimaraes", - "role": "Developer" - }, - { - "name": "James Fellows", - "homepage": "https://github.com/j4m3s", - "role": "Developer" - }, - { - "name": "Emile Ward", - "homepage": "https://github.com/emileward", - "role": "Developer" - }, - { - "name": "Jelmer Wijnja", - "homepage": "https://github.com/Jelmergu", - "role": "Developer" - }, - { - "name": "Ognjen Petrovic", - "homepage": "https://github.com/ognjen-petrovic", - "role": "Developer" + "name": "Ben Ramsey", + "email": "ben@benramsey.com", + "homepage": "https://benramsey.com" }, { - "name": "Jacob Bearden", - "homepage": "https://github.com/jacobbearden", - "role": "Documentation contributor" + "name": "Marijn Huizendveld", + "email": "marijn.huizendveld@gmail.com" }, { - "name": "Jaroslav Týc", - "homepage": "https://www.jaroslavtyc.com/", - "role": "Developer" + "name": "Thibaud Fabre", + "email": "thibaud@aztech.io" } ], - "description": "The modern DOM API for PHP 7 projects.", - "time": "2020-01-15T08:28:10+00:00" + "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).", + "homepage": "https://github.com/ramsey/uuid", + "keywords": [ + "guid", + "identifier", + "uuid" + ], + "time": "2018-07-19T23:38:55+00:00" }, { - "name": "phpseclib/mcrypt_compat", - "version": "1.0.8", + "name": "react/promise", + "version": "v2.8.0", "source": { "type": "git", - "url": "https://github.com/phpseclib/mcrypt_compat.git", - "reference": "f74c7b1897b62f08f268184b8bb98d9d9ab723b0" + "url": "https://github.com/reactphp/promise.git", + "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpseclib/mcrypt_compat/zipball/f74c7b1897b62f08f268184b8bb98d9d9ab723b0", - "reference": "f74c7b1897b62f08f268184b8bb98d9d9ab723b0", + "url": "https://api.github.com/repos/reactphp/promise/zipball/f3cff96a19736714524ca0dd1d4130de73dbbbc4", + "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4", "shasum": "" }, "require": { - "php": ">=5.3.3", - "phpseclib/phpseclib": ">=2.0.11 <3.0.0" + "php": ">=5.4.0" }, "require-dev": { - "phpunit/phpunit": "^4.8.35|^5.7|^6.0" - }, - "suggest": { - "ext-openssl": "Will enable faster cryptographic operations" + "phpunit/phpunit": "^7.0 || ^6.5 || ^5.7 || ^4.8.36" }, "type": "library", "autoload": { + "psr-4": { + "React\\Promise\\": "src/" + }, "files": [ - "lib/mcrypt.php" + "src/functions_include.php" ] }, "notification-url": "https://packagist.org/downloads/", @@ -19765,55 +20965,44 @@ ], "authors": [ { - "name": "Jim Wigginton", - "email": "terrafrost@php.net", - "homepage": "http://phpseclib.sourceforge.net" + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com" } ], - "description": "PHP 7.1 polyfill for the mcrypt extension from PHP <= 7.0", + "description": "A lightweight implementation of CommonJS Promises/A for PHP", "keywords": [ - "cryptograpy", - "encryption", - "mcrypt" + "promise", + "promises" ], - "time": "2018-08-22T03:11:43+00:00" + "time": "2020-05-12T15:16:56+00:00" }, { - "name": "phpseclib/phpseclib", - "version": "2.0.28", + "name": "seld/jsonlint", + "version": "1.8.2", "source": { "type": "git", - "url": "https://github.com/phpseclib/phpseclib.git", - "reference": "d1ca58cf33cb21046d702ae3a7b14fdacd9f3260" + "url": "https://github.com/Seldaek/jsonlint.git", + "reference": "590cfec960b77fd55e39b7d9246659e95dd6d337" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/d1ca58cf33cb21046d702ae3a7b14fdacd9f3260", - "reference": "d1ca58cf33cb21046d702ae3a7b14fdacd9f3260", + "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/590cfec960b77fd55e39b7d9246659e95dd6d337", + "reference": "590cfec960b77fd55e39b7d9246659e95dd6d337", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": "^5.3 || ^7.0 || ^8.0" }, "require-dev": { - "phing/phing": "~2.7", - "phpunit/phpunit": "^4.8.35|^5.7|^6.0", - "sami/sami": "~2.0", - "squizlabs/php_codesniffer": "~2.0" - }, - "suggest": { - "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.", - "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.", - "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.", - "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations." + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0" }, + "bin": [ + "bin/jsonlint" + ], "type": "library", "autoload": { - "files": [ - "phpseclib/bootstrap.php" - ], "psr-4": { - "phpseclib\\": "phpseclib/" + "Seld\\JsonLint\\": "src/Seld/JsonLint/" } }, "notification-url": "https://packagist.org/downloads/", @@ -19822,94 +21011,56 @@ ], "authors": [ { - "name": "Jim Wigginton", - "email": "terrafrost@php.net", - "role": "Lead Developer" - }, - { - "name": "Patrick Monnerat", - "email": "pm@datasphere.ch", - "role": "Developer" - }, - { - "name": "Andreas Fischer", - "email": "bantu@phpbb.com", - "role": "Developer" - }, - { - "name": "Hans-Jürgen Petrich", - "email": "petrich@tronic-media.com", - "role": "Developer" - }, - { - "name": "Graham Campbell", - "email": "graham@alt-three.com", - "role": "Developer" + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" } ], - "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.", - "homepage": "http://phpseclib.sourceforge.net", + "description": "JSON Linter", "keywords": [ - "BigInteger", - "aes", - "asn.1", - "asn1", - "blowfish", - "crypto", - "cryptography", - "encryption", - "rsa", - "security", - "sftp", - "signature", - "signing", - "ssh", - "twofish", - "x.509", - "x509" + "json", + "linter", + "parser", + "validator" ], "funding": [ { - "url": "https://github.com/terrafrost", + "url": "https://github.com/Seldaek", "type": "github" }, { - "url": "https://www.patreon.com/phpseclib", - "type": "patreon" - }, - { - "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib", + "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint", "type": "tidelift" } ], - "time": "2020-07-08T09:08:33+00:00" + "time": "2020-08-25T06:56:57+00:00" }, { - "name": "psr/container", - "version": "1.0.0", + "name": "seld/phar-utils", + "version": "1.1.1", "source": { "type": "git", - "url": "https://github.com/php-fig/container.git", - "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f" + "url": "https://github.com/Seldaek/phar-utils.git", + "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f", - "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f", + "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796", + "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796", "shasum": "" }, "require": { - "php": ">=5.3.0" + "php": ">=5.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { "psr-4": { - "Psr\\Container\\": "src/" + "Seld\\PharUtils\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -19918,47 +21069,58 @@ ], "authors": [ { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be" } ], - "description": "Common Container Interface (PHP FIG PSR-11)", - "homepage": "https://github.com/php-fig/container", + "description": "PHAR file format utilities, for when PHP phars you up", "keywords": [ - "PSR-11", - "container", - "container-interface", - "container-interop", - "psr" + "phar" ], - "time": "2017-02-14T16:28:37+00:00" + "time": "2020-07-07T18:42:57+00:00" }, { - "name": "psr/http-message", - "version": "1.0.1", + "name": "spomky-labs/otphp", + "version": "v10.0.1", "source": { "type": "git", - "url": "https://github.com/php-fig/http-message.git", - "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363" + "url": "https://github.com/Spomky-Labs/otphp.git", + "reference": "f44cce5a9db4b8da410215d992110482c931232f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363", - "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363", + "url": "https://api.github.com/repos/Spomky-Labs/otphp/zipball/f44cce5a9db4b8da410215d992110482c931232f", + "reference": "f44cce5a9db4b8da410215d992110482c931232f", "shasum": "" }, "require": { - "php": ">=5.3.0" + "beberlei/assert": "^3.0", + "ext-mbstring": "*", + "paragonie/constant_time_encoding": "^2.0", + "php": "^7.2|^8.0", + "thecodingmachine/safe": "^0.1.14|^1.0" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.0", + "phpstan/phpstan": "^0.12", + "phpstan/phpstan-beberlei-assert": "^0.12", + "phpstan/phpstan-deprecation-rules": "^0.12", + "phpstan/phpstan-phpunit": "^0.12", + "phpstan/phpstan-strict-rules": "^0.12", + "phpunit/phpunit": "^8.0", + "thecodingmachine/phpstan-safe-rule": "^1.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "v10.0": "10.0.x-dev", + "v9.0": "9.0.x-dev", + "v8.3": "8.3.x-dev" } }, "autoload": { "psr-4": { - "Psr\\Http\\Message\\": "src/" + "OTPHP\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -19967,94 +21129,84 @@ ], "authors": [ { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "name": "Florent Morselli", + "homepage": "https://github.com/Spomky" + }, + { + "name": "All contributors", + "homepage": "https://github.com/Spomky-Labs/otphp/contributors" } ], - "description": "Common interface for HTTP messages", - "homepage": "https://github.com/php-fig/http-message", + "description": "A PHP library for generating one time passwords according to RFC 4226 (HOTP Algorithm) and the RFC 6238 (TOTP Algorithm) and compatible with Google Authenticator", + "homepage": "https://github.com/Spomky-Labs/otphp", "keywords": [ - "http", - "http-message", - "psr", - "psr-7", - "request", - "response" + "FreeOTP", + "RFC 4226", + "RFC 6238", + "google authenticator", + "hotp", + "otp", + "totp" ], - "time": "2016-08-06T14:39:51+00:00" + "time": "2020-01-28T09:24:19+00:00" }, { - "name": "psr/log", - "version": "1.1.3", + "name": "symfony/console", + "version": "v4.4.15", "source": { "type": "git", - "url": "https://github.com/php-fig/log.git", - "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc" + "url": "https://github.com/symfony/console.git", + "reference": "90933b39c7b312fc3ceaa1ddeac7eb48cb953124" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc", - "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc", + "url": "https://api.github.com/repos/symfony/console/zipball/90933b39c7b312fc3ceaa1ddeac7eb48cb953124", + "reference": "90933b39c7b312fc3ceaa1ddeac7eb48cb953124", "shasum": "" }, "require": { - "php": ">=5.3.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.1.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\Log\\": "Psr/Log/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" - } - ], - "description": "Common interface for logging libraries", - "homepage": "https://github.com/php-fig/log", - "keywords": [ - "log", - "psr", - "psr-3" - ], - "time": "2020-03-23T09:12:05+00:00" - }, - { - "name": "ralouphie/getallheaders", - "version": "3.0.3", - "source": { - "type": "git", - "url": "https://github.com/ralouphie/getallheaders.git", - "reference": "120b605dfeb996808c31b6477290a714d356e822" + "php": ">=7.1.3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php73": "^1.8", + "symfony/polyfill-php80": "^1.15", + "symfony/service-contracts": "^1.1|^2" }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", - "reference": "120b605dfeb996808c31b6477290a714d356e822", - "shasum": "" + "conflict": { + "symfony/dependency-injection": "<3.4", + "symfony/event-dispatcher": "<4.3|>=5", + "symfony/lock": "<4.4", + "symfony/process": "<3.3" }, - "require": { - "php": ">=5.6" + "provide": { + "psr/log-implementation": "1.0" }, "require-dev": { - "php-coveralls/php-coveralls": "^2.1", - "phpunit/phpunit": "^5 || ^6.5" + "psr/log": "~1.0", + "symfony/config": "^3.4|^4.0|^5.0", + "symfony/dependency-injection": "^3.4|^4.0|^5.0", + "symfony/event-dispatcher": "^4.3", + "symfony/lock": "^4.4|^5.0", + "symfony/process": "^3.4|^4.0|^5.0", + "symfony/var-dumper": "^4.3|^5.0" + }, + "suggest": { + "psr/log": "For using the console logger", + "symfony/event-dispatcher": "", + "symfony/lock": "", + "symfony/process": "" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.4-dev" + } + }, "autoload": { - "files": [ - "src/getallheaders.php" + "psr-4": { + "Symfony\\Component\\Console\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", @@ -20063,66 +21215,62 @@ ], "authors": [ { - "name": "Ralph Khattar", - "email": "ralph.khattar@gmail.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "A polyfill for getallheaders.", - "time": "2019-03-08T08:55:37+00:00" + "description": "Symfony Console Component", + "homepage": "https://symfony.com", + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-09-15T07:58:55+00:00" }, { - "name": "ramsey/uuid", - "version": "3.8.0", + "name": "symfony/css-selector", + "version": "v5.1.7", "source": { "type": "git", - "url": "https://github.com/ramsey/uuid.git", - "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3" + "url": "https://github.com/symfony/css-selector.git", + "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/uuid/zipball/d09ea80159c1929d75b3f9c60504d613aeb4a1e3", - "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/e544e24472d4c97b2d11ade7caacd446727c6bf9", + "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9", "shasum": "" }, "require": { - "paragonie/random_compat": "^1.0|^2.0|9.99.99", - "php": "^5.4 || ^7.0", - "symfony/polyfill-ctype": "^1.8" - }, - "replace": { - "rhumsaa/uuid": "self.version" - }, - "require-dev": { - "codeception/aspect-mock": "^1.0 | ~2.0.0", - "doctrine/annotations": "~1.2.0", - "goaop/framework": "1.0.0-alpha.2 | ^1.0 | ~2.1.0", - "ircmaxell/random-lib": "^1.1", - "jakub-onderka/php-parallel-lint": "^0.9.0", - "mockery/mockery": "^0.9.9", - "moontoast/math": "^1.1", - "php-mock/php-mock-phpunit": "^0.3|^1.1", - "phpunit/phpunit": "^4.7|^5.0|^6.5", - "squizlabs/php_codesniffer": "^2.3" - }, - "suggest": { - "ext-ctype": "Provides support for PHP Ctype functions", - "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator", - "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator", - "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter", - "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).", - "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid", - "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type." + "php": ">=7.2.5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.x-dev" + "dev-master": "5.1-dev" } }, "autoload": { "psr-4": { - "Ramsey\\Uuid\\": "src/" - } + "Symfony\\Component\\CssSelector\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -20130,55 +21278,66 @@ ], "authors": [ { - "name": "Ben Ramsey", - "email": "ben@benramsey.com", - "homepage": "https://benramsey.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { - "name": "Marijn Huizendveld", - "email": "marijn.huizendveld@gmail.com" + "name": "Jean-François Simon", + "email": "jeanfrancois.simon@sensiolabs.com" }, { - "name": "Thibaud Fabre", - "email": "thibaud@aztech.io" + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).", - "homepage": "https://github.com/ramsey/uuid", - "keywords": [ - "guid", - "identifier", - "uuid" + "description": "Symfony CssSelector Component", + "homepage": "https://symfony.com", + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } ], - "time": "2018-07-19T23:38:55+00:00" + "time": "2020-05-20T17:43:50+00:00" }, { - "name": "react/promise", - "version": "v2.8.0", + "name": "symfony/deprecation-contracts", + "version": "v2.2.0", "source": { "type": "git", - "url": "https://github.com/reactphp/promise.git", - "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4" + "url": "https://github.com/symfony/deprecation-contracts.git", + "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/reactphp/promise/zipball/f3cff96a19736714524ca0dd1d4130de73dbbbc4", - "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665", + "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665", "shasum": "" }, "require": { - "php": ">=5.4.0" - }, - "require-dev": { - "phpunit/phpunit": "^7.0 || ^6.5 || ^5.7 || ^4.8.36" + "php": ">=7.1" }, "type": "library", - "autoload": { - "psr-4": { - "React\\Promise\\": "src/" + "extra": { + "branch-alias": { + "dev-master": "2.2-dev" }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { "files": [ - "src/functions_include.php" + "function.php" ] }, "notification-url": "https://packagist.org/downloads/", @@ -20187,45 +21346,84 @@ ], "authors": [ { - "name": "Jan Sorgalla", - "email": "jsorgalla@gmail.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "A lightweight implementation of CommonJS Promises/A for PHP", - "keywords": [ - "promise", - "promises" + "description": "A generic function and convention to trigger deprecation notices", + "homepage": "https://symfony.com", + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } ], - "time": "2020-05-12T15:16:56+00:00" + "time": "2020-09-07T11:33:47+00:00" }, { - "name": "seld/jsonlint", - "version": "1.8.0", + "name": "symfony/event-dispatcher", + "version": "v4.4.15", "source": { "type": "git", - "url": "https://github.com/Seldaek/jsonlint.git", - "reference": "ff2aa5420bfbc296cf6a0bc785fa5b35736de7c1" + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "e17bb5e0663dc725f7cdcafc932132735b4725cd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/ff2aa5420bfbc296cf6a0bc785fa5b35736de7c1", - "reference": "ff2aa5420bfbc296cf6a0bc785fa5b35736de7c1", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/e17bb5e0663dc725f7cdcafc932132735b4725cd", + "reference": "e17bb5e0663dc725f7cdcafc932132735b4725cd", "shasum": "" }, "require": { - "php": "^5.3 || ^7.0 || ^8.0" + "php": ">=7.1.3", + "symfony/event-dispatcher-contracts": "^1.1" + }, + "conflict": { + "symfony/dependency-injection": "<3.4" + }, + "provide": { + "psr/event-dispatcher-implementation": "1.0", + "symfony/event-dispatcher-implementation": "1.1" }, "require-dev": { - "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0" + "psr/log": "~1.0", + "symfony/config": "^3.4|^4.0|^5.0", + "symfony/dependency-injection": "^3.4|^4.0|^5.0", + "symfony/error-handler": "~3.4|~4.4", + "symfony/expression-language": "^3.4|^4.0|^5.0", + "symfony/http-foundation": "^3.4|^4.0|^5.0", + "symfony/service-contracts": "^1.1|^2", + "symfony/stopwatch": "^3.4|^4.0|^5.0" + }, + "suggest": { + "symfony/dependency-injection": "", + "symfony/http-kernel": "" }, - "bin": [ - "bin/jsonlint" - ], "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.4-dev" + } + }, "autoload": { "psr-4": { - "Seld\\JsonLint\\": "src/Seld/JsonLint/" - } + "Symfony\\Component\\EventDispatcher\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -20233,56 +21431,66 @@ ], "authors": [ { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "JSON Linter", - "keywords": [ - "json", - "linter", - "parser", - "validator" - ], + "description": "Symfony EventDispatcher Component", + "homepage": "https://symfony.com", "funding": [ { - "url": "https://github.com/Seldaek", + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", "type": "github" }, { - "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint", + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2020-04-30T19:05:18+00:00" + "time": "2020-09-18T14:07:46+00:00" }, { - "name": "seld/phar-utils", - "version": "1.1.1", + "name": "symfony/event-dispatcher-contracts", + "version": "v1.1.9", "source": { "type": "git", - "url": "https://github.com/Seldaek/phar-utils.git", - "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796" + "url": "https://github.com/symfony/event-dispatcher-contracts.git", + "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796", - "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7", + "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7", "shasum": "" }, "require": { - "php": ">=5.3" + "php": ">=7.1.3" + }, + "suggest": { + "psr/event-dispatcher": "", + "symfony/event-dispatcher-implementation": "" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.x-dev" + "dev-master": "1.1-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" } }, "autoload": { "psr-4": { - "Seld\\PharUtils\\": "src/" + "Symfony\\Contracts\\EventDispatcher\\": "" } }, "notification-url": "https://packagist.org/downloads/", @@ -20291,59 +21499,71 @@ ], "authors": [ { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "PHAR file format utilities, for when PHP phars you up", + "description": "Generic abstractions related to dispatching event", + "homepage": "https://symfony.com", "keywords": [ - "phar" + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" ], - "time": "2020-07-07T18:42:57+00:00" + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-07-06T13:19:58+00:00" }, { - "name": "spomky-labs/otphp", - "version": "v10.0.1", + "name": "symfony/filesystem", + "version": "v5.1.7", "source": { "type": "git", - "url": "https://github.com/Spomky-Labs/otphp.git", - "reference": "f44cce5a9db4b8da410215d992110482c931232f" + "url": "https://github.com/symfony/filesystem.git", + "reference": "1a8697545a8d87b9f2f6b1d32414199cc5e20aae" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Spomky-Labs/otphp/zipball/f44cce5a9db4b8da410215d992110482c931232f", - "reference": "f44cce5a9db4b8da410215d992110482c931232f", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/1a8697545a8d87b9f2f6b1d32414199cc5e20aae", + "reference": "1a8697545a8d87b9f2f6b1d32414199cc5e20aae", "shasum": "" }, "require": { - "beberlei/assert": "^3.0", - "ext-mbstring": "*", - "paragonie/constant_time_encoding": "^2.0", - "php": "^7.2|^8.0", - "thecodingmachine/safe": "^0.1.14|^1.0" - }, - "require-dev": { - "php-coveralls/php-coveralls": "^2.0", - "phpstan/phpstan": "^0.12", - "phpstan/phpstan-beberlei-assert": "^0.12", - "phpstan/phpstan-deprecation-rules": "^0.12", - "phpstan/phpstan-phpunit": "^0.12", - "phpstan/phpstan-strict-rules": "^0.12", - "phpunit/phpunit": "^8.0", - "thecodingmachine/phpstan-safe-rule": "^1.0" + "php": ">=7.2.5", + "symfony/polyfill-ctype": "~1.8" }, "type": "library", "extra": { "branch-alias": { - "v10.0": "10.0.x-dev", - "v9.0": "9.0.x-dev", - "v8.3": "8.3.x-dev" + "dev-master": "5.1-dev" } }, "autoload": { "psr-4": { - "OTPHP\\": "src/" - } + "Symfony\\Component\\Filesystem\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -20351,81 +21571,58 @@ ], "authors": [ { - "name": "Florent Morselli", - "homepage": "https://github.com/Spomky" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { - "name": "All contributors", - "homepage": "https://github.com/Spomky-Labs/otphp/contributors" + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "A PHP library for generating one time passwords according to RFC 4226 (HOTP Algorithm) and the RFC 6238 (TOTP Algorithm) and compatible with Google Authenticator", - "homepage": "https://github.com/Spomky-Labs/otphp", - "keywords": [ - "FreeOTP", - "RFC 4226", - "RFC 6238", - "google authenticator", - "hotp", - "otp", - "totp" + "description": "Symfony Filesystem Component", + "homepage": "https://symfony.com", + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } ], - "time": "2020-01-28T09:24:19+00:00" + "time": "2020-09-27T14:02:37+00:00" }, { - "name": "symfony/console", - "version": "v4.4.11", + "name": "symfony/finder", + "version": "v5.1.7", "source": { "type": "git", - "url": "https://github.com/symfony/console.git", - "reference": "55d07021da933dd0d633ffdab6f45d5b230c7e02" + "url": "https://github.com/symfony/finder.git", + "reference": "2c3ba7ad6884e6c4451ce2340e2dc23f6fa3e0d8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/55d07021da933dd0d633ffdab6f45d5b230c7e02", - "reference": "55d07021da933dd0d633ffdab6f45d5b230c7e02", + "url": "https://api.github.com/repos/symfony/finder/zipball/2c3ba7ad6884e6c4451ce2340e2dc23f6fa3e0d8", + "reference": "2c3ba7ad6884e6c4451ce2340e2dc23f6fa3e0d8", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php73": "^1.8", - "symfony/polyfill-php80": "^1.15", - "symfony/service-contracts": "^1.1|^2" - }, - "conflict": { - "symfony/dependency-injection": "<3.4", - "symfony/event-dispatcher": "<4.3|>=5", - "symfony/lock": "<4.4", - "symfony/process": "<3.3" - }, - "provide": { - "psr/log-implementation": "1.0" - }, - "require-dev": { - "psr/log": "~1.0", - "symfony/config": "^3.4|^4.0|^5.0", - "symfony/dependency-injection": "^3.4|^4.0|^5.0", - "symfony/event-dispatcher": "^4.3", - "symfony/lock": "^4.4|^5.0", - "symfony/process": "^3.4|^4.0|^5.0", - "symfony/var-dumper": "^4.3|^5.0" - }, - "suggest": { - "psr/log": "For using the console logger", - "symfony/event-dispatcher": "", - "symfony/lock": "", - "symfony/process": "" + "php": ">=7.2.5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.4-dev" + "dev-master": "5.1-dev" } }, "autoload": { "psr-4": { - "Symfony\\Component\\Console\\": "" + "Symfony\\Component\\Finder\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -20445,7 +21642,7 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Console Component", + "description": "Symfony Finder Component", "homepage": "https://symfony.com", "funding": [ { @@ -20461,24 +21658,26 @@ "type": "tidelift" } ], - "time": "2020-07-06T13:18:39+00:00" + "time": "2020-09-02T16:23:27+00:00" }, { - "name": "symfony/css-selector", - "version": "v5.1.3", + "name": "symfony/options-resolver", + "version": "v5.1.7", "source": { "type": "git", - "url": "https://github.com/symfony/css-selector.git", - "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9" + "url": "https://github.com/symfony/options-resolver.git", + "reference": "4c7e155bf7d93ea4ba3824d5a14476694a5278dd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/e544e24472d4c97b2d11ade7caacd446727c6bf9", - "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/4c7e155bf7d93ea4ba3824d5a14476694a5278dd", + "reference": "4c7e155bf7d93ea4ba3824d5a14476694a5278dd", "shasum": "" }, "require": { - "php": ">=7.2.5" + "php": ">=7.2.5", + "symfony/deprecation-contracts": "^2.1", + "symfony/polyfill-php80": "^1.15" }, "type": "library", "extra": { @@ -20488,7 +21687,7 @@ }, "autoload": { "psr-4": { - "Symfony\\Component\\CssSelector\\": "" + "Symfony\\Component\\OptionsResolver\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -20503,17 +21702,18 @@ "name": "Fabien Potencier", "email": "fabien@symfony.com" }, - { - "name": "Jean-François Simon", - "email": "jeanfrancois.simon@sensiolabs.com" - }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony CssSelector Component", + "description": "Symfony OptionsResolver Component", "homepage": "https://symfony.com", + "keywords": [ + "config", + "configuration", + "options" + ], "funding": [ { "url": "https://symfony.com/sponsor", @@ -20528,38 +21728,44 @@ "type": "tidelift" } ], - "time": "2020-05-20T17:43:50+00:00" + "time": "2020-09-27T03:44:28+00:00" }, { - "name": "symfony/deprecation-contracts", - "version": "v2.1.3", + "name": "symfony/polyfill-ctype", + "version": "v1.18.1", "source": { "type": "git", - "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "5e20b83385a77593259c9f8beb2c43cd03b2ac14" + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "1c302646f6efc070cd46856e600e5e0684d6b454" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5e20b83385a77593259c9f8beb2c43cd03b2ac14", - "reference": "5e20b83385a77593259c9f8beb2c43cd03b2ac14", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/1c302646f6efc070cd46856e600e5e0684d6b454", + "reference": "1c302646f6efc070cd46856e600e5e0684d6b454", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=5.3.3" + }, + "suggest": { + "ext-ctype": "For best performance" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.1-dev" + "dev-master": "1.18-dev" }, "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + }, "files": [ - "function.php" + "bootstrap.php" ] }, "notification-url": "https://packagist.org/downloads/", @@ -20568,16 +21774,22 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "A generic function and convention to trigger deprecation notices", + "description": "Symfony polyfill for ctype functions", "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ], "funding": [ { "url": "https://symfony.com/sponsor", @@ -20592,58 +21804,44 @@ "type": "tidelift" } ], - "time": "2020-06-06T08:49:21+00:00" + "time": "2020-07-14T12:35:20+00:00" }, { - "name": "symfony/event-dispatcher", - "version": "v4.4.11", + "name": "symfony/polyfill-intl-grapheme", + "version": "v1.18.1", "source": { "type": "git", - "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "6140fc7047dafc5abbe84ba16a34a86c0b0229b8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/6140fc7047dafc5abbe84ba16a34a86c0b0229b8", - "reference": "6140fc7047dafc5abbe84ba16a34a86c0b0229b8", - "shasum": "" - }, - "require": { - "php": ">=7.1.3", - "symfony/event-dispatcher-contracts": "^1.1" - }, - "conflict": { - "symfony/dependency-injection": "<3.4" + "url": "https://github.com/symfony/polyfill-intl-grapheme.git", + "reference": "b740103edbdcc39602239ee8860f0f45a8eb9aa5" }, - "provide": { - "psr/event-dispatcher-implementation": "1.0", - "symfony/event-dispatcher-implementation": "1.1" + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b740103edbdcc39602239ee8860f0f45a8eb9aa5", + "reference": "b740103edbdcc39602239ee8860f0f45a8eb9aa5", + "shasum": "" }, - "require-dev": { - "psr/log": "~1.0", - "symfony/config": "^3.4|^4.0|^5.0", - "symfony/dependency-injection": "^3.4|^4.0|^5.0", - "symfony/expression-language": "^3.4|^4.0|^5.0", - "symfony/http-foundation": "^3.4|^4.0|^5.0", - "symfony/service-contracts": "^1.1|^2", - "symfony/stopwatch": "^3.4|^4.0|^5.0" + "require": { + "php": ">=5.3.3" }, "suggest": { - "symfony/dependency-injection": "", - "symfony/http-kernel": "" + "ext-intl": "For best performance" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.4-dev" + "dev-master": "1.18-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { "psr-4": { - "Symfony\\Component\\EventDispatcher\\": "" + "Symfony\\Polyfill\\Intl\\Grapheme\\": "" }, - "exclude-from-classmap": [ - "/Tests/" + "files": [ + "bootstrap.php" ] }, "notification-url": "https://packagist.org/downloads/", @@ -20652,16 +21850,24 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony EventDispatcher Component", + "description": "Symfony polyfill for intl's grapheme_* functions", "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "grapheme", + "intl", + "polyfill", + "portable", + "shim" + ], "funding": [ { "url": "https://symfony.com/sponsor", @@ -20676,43 +21882,48 @@ "type": "tidelift" } ], - "time": "2020-06-18T17:59:13+00:00" + "time": "2020-07-14T12:35:20+00:00" }, { - "name": "symfony/event-dispatcher-contracts", - "version": "v1.1.9", + "name": "symfony/polyfill-intl-idn", + "version": "v1.18.1", "source": { "type": "git", - "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7" + "url": "https://github.com/symfony/polyfill-intl-idn.git", + "reference": "5dcab1bc7146cf8c1beaa4502a3d9be344334251" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7", - "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/5dcab1bc7146cf8c1beaa4502a3d9be344334251", + "reference": "5dcab1bc7146cf8c1beaa4502a3d9be344334251", "shasum": "" }, "require": { - "php": ">=7.1.3" + "php": ">=5.3.3", + "symfony/polyfill-intl-normalizer": "^1.10", + "symfony/polyfill-php70": "^1.10", + "symfony/polyfill-php72": "^1.10" }, "suggest": { - "psr/event-dispatcher": "", - "symfony/event-dispatcher-implementation": "" + "ext-intl": "For best performance" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.1-dev" + "dev-master": "1.18-dev" }, "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { "psr-4": { - "Symfony\\Contracts\\EventDispatcher\\": "" - } + "Symfony\\Polyfill\\Intl\\Idn\\": "" + }, + "files": [ + "bootstrap.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -20720,23 +21931,27 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Laurent Bassin", + "email": "laurent@bassin.info" + }, + { + "name": "Trevor Rowbotham", + "email": "trevor.rowbotham@pm.me" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Generic abstractions related to dispatching event", + "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", "homepage": "https://symfony.com", "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" + "compatibility", + "idn", + "intl", + "polyfill", + "portable", + "shim" ], "funding": [ { @@ -20752,38 +21967,47 @@ "type": "tidelift" } ], - "time": "2020-07-06T13:19:58+00:00" + "time": "2020-08-04T06:02:08+00:00" }, { - "name": "symfony/filesystem", - "version": "v5.1.3", + "name": "symfony/polyfill-intl-normalizer", + "version": "v1.18.1", "source": { "type": "git", - "url": "https://github.com/symfony/filesystem.git", - "reference": "6e4320f06d5f2cce0d96530162491f4465179157" + "url": "https://github.com/symfony/polyfill-intl-normalizer.git", + "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/6e4320f06d5f2cce0d96530162491f4465179157", - "reference": "6e4320f06d5f2cce0d96530162491f4465179157", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e", + "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e", "shasum": "" }, "require": { - "php": ">=7.2.5", - "symfony/polyfill-ctype": "~1.8" + "php": ">=5.3.3" + }, + "suggest": { + "ext-intl": "For best performance" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "5.1-dev" + "dev-master": "1.18-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { "psr-4": { - "Symfony\\Component\\Filesystem\\": "" + "Symfony\\Polyfill\\Intl\\Normalizer\\": "" }, - "exclude-from-classmap": [ - "/Tests/" + "files": [ + "bootstrap.php" + ], + "classmap": [ + "Resources/stubs" ] }, "notification-url": "https://packagist.org/downloads/", @@ -20792,16 +22016,24 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Filesystem Component", + "description": "Symfony polyfill for intl's Normalizer class and related functions", "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "intl", + "normalizer", + "polyfill", + "portable", + "shim" + ], "funding": [ { "url": "https://symfony.com/sponsor", @@ -20816,37 +22048,44 @@ "type": "tidelift" } ], - "time": "2020-05-30T20:35:19+00:00" + "time": "2020-07-14T12:35:20+00:00" }, { - "name": "symfony/finder", - "version": "v5.1.3", + "name": "symfony/polyfill-mbstring", + "version": "v1.18.1", "source": { "type": "git", - "url": "https://github.com/symfony/finder.git", - "reference": "4298870062bfc667cb78d2b379be4bf5dec5f187" + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/4298870062bfc667cb78d2b379be4bf5dec5f187", - "reference": "4298870062bfc667cb78d2b379be4bf5dec5f187", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/a6977d63bf9a0ad4c65cd352709e230876f9904a", + "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a", "shasum": "" }, "require": { - "php": ">=7.2.5" + "php": ">=5.3.3" + }, + "suggest": { + "ext-mbstring": "For best performance" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "5.1-dev" + "dev-master": "1.18-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { "psr-4": { - "Symfony\\Component\\Finder\\": "" + "Symfony\\Polyfill\\Mbstring\\": "" }, - "exclude-from-classmap": [ - "/Tests/" + "files": [ + "bootstrap.php" ] }, "notification-url": "https://packagist.org/downloads/", @@ -20855,16 +22094,23 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Finder Component", + "description": "Symfony polyfill for the Mbstring extension", "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ], "funding": [ { "url": "https://symfony.com/sponsor", @@ -20879,39 +22125,45 @@ "type": "tidelift" } ], - "time": "2020-05-20T17:43:50+00:00" + "time": "2020-07-14T12:35:20+00:00" }, { - "name": "symfony/options-resolver", - "version": "v5.1.3", + "name": "symfony/polyfill-php70", + "version": "v1.18.1", "source": { "type": "git", - "url": "https://github.com/symfony/options-resolver.git", - "reference": "9ff59517938f88d90b6e65311fef08faa640f681" + "url": "https://github.com/symfony/polyfill-php70.git", + "reference": "0dd93f2c578bdc9c72697eaa5f1dd25644e618d3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/options-resolver/zipball/9ff59517938f88d90b6e65311fef08faa640f681", - "reference": "9ff59517938f88d90b6e65311fef08faa640f681", + "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/0dd93f2c578bdc9c72697eaa5f1dd25644e618d3", + "reference": "0dd93f2c578bdc9c72697eaa5f1dd25644e618d3", "shasum": "" }, "require": { - "php": ">=7.2.5", - "symfony/deprecation-contracts": "^2.1", - "symfony/polyfill-php80": "^1.15" + "paragonie/random_compat": "~1.0|~2.0|~9.99", + "php": ">=5.3.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "5.1-dev" + "dev-master": "1.18-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { "psr-4": { - "Symfony\\Component\\OptionsResolver\\": "" + "Symfony\\Polyfill\\Php70\\": "" }, - "exclude-from-classmap": [ - "/Tests/" + "files": [ + "bootstrap.php" + ], + "classmap": [ + "Resources/stubs" ] }, "notification-url": "https://packagist.org/downloads/", @@ -20920,20 +22172,21 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony OptionsResolver Component", + "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ - "config", - "configuration", - "options" + "compatibility", + "polyfill", + "portable", + "shim" ], "funding": [ { @@ -20949,28 +22202,25 @@ "type": "tidelift" } ], - "time": "2020-07-12T12:58:00+00:00" + "time": "2020-07-14T12:35:20+00:00" }, { - "name": "symfony/polyfill-ctype", - "version": "v1.18.0", + "name": "symfony/polyfill-php72", + "version": "v1.18.1", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "1c302646f6efc070cd46856e600e5e0684d6b454" + "url": "https://github.com/symfony/polyfill-php72.git", + "reference": "639447d008615574653fb3bc60d1986d7172eaae" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/1c302646f6efc070cd46856e600e5e0684d6b454", - "reference": "1c302646f6efc070cd46856e600e5e0684d6b454", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/639447d008615574653fb3bc60d1986d7172eaae", + "reference": "639447d008615574653fb3bc60d1986d7172eaae", "shasum": "" }, "require": { "php": ">=5.3.3" }, - "suggest": { - "ext-ctype": "For best performance" - }, "type": "library", "extra": { "branch-alias": { @@ -20983,7 +22233,7 @@ }, "autoload": { "psr-4": { - "Symfony\\Polyfill\\Ctype\\": "" + "Symfony\\Polyfill\\Php72\\": "" }, "files": [ "bootstrap.php" @@ -20995,21 +22245,21 @@ ], "authors": [ { - "name": "Gert de Pagter", - "email": "BackEndTea@gmail.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill for ctype functions", + "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", - "ctype", "polyfill", - "portable" + "portable", + "shim" ], "funding": [ { @@ -21028,25 +22278,22 @@ "time": "2020-07-14T12:35:20+00:00" }, { - "name": "symfony/polyfill-intl-grapheme", - "version": "v1.18.0", + "name": "symfony/polyfill-php73", + "version": "v1.18.1", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "b740103edbdcc39602239ee8860f0f45a8eb9aa5" + "url": "https://github.com/symfony/polyfill-php73.git", + "reference": "fffa1a52a023e782cdcc221d781fe1ec8f87fcca" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b740103edbdcc39602239ee8860f0f45a8eb9aa5", - "reference": "b740103edbdcc39602239ee8860f0f45a8eb9aa5", + "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fffa1a52a023e782cdcc221d781fe1ec8f87fcca", + "reference": "fffa1a52a023e782cdcc221d781fe1ec8f87fcca", "shasum": "" }, "require": { "php": ">=5.3.3" }, - "suggest": { - "ext-intl": "For best performance" - }, "type": "library", "extra": { "branch-alias": { @@ -21059,10 +22306,13 @@ }, "autoload": { "psr-4": { - "Symfony\\Polyfill\\Intl\\Grapheme\\": "" + "Symfony\\Polyfill\\Php73\\": "" }, "files": [ "bootstrap.php" + ], + "classmap": [ + "Resources/stubs" ] }, "notification-url": "https://packagist.org/downloads/", @@ -21079,12 +22329,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill for intl's grapheme_* functions", + "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", - "grapheme", - "intl", "polyfill", "portable", "shim" @@ -21106,27 +22354,21 @@ "time": "2020-07-14T12:35:20+00:00" }, { - "name": "symfony/polyfill-intl-idn", - "version": "v1.18.0", + "name": "symfony/polyfill-php80", + "version": "v1.18.1", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "bc6549d068d0160e0f10f7a5a23c7d1406b95ebe" + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/bc6549d068d0160e0f10f7a5a23c7d1406b95ebe", - "reference": "bc6549d068d0160e0f10f7a5a23c7d1406b95ebe", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/d87d5766cbf48d72388a9f6b85f280c8ad51f981", + "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981", "shasum": "" }, "require": { - "php": ">=5.3.3", - "symfony/polyfill-intl-normalizer": "^1.10", - "symfony/polyfill-php70": "^1.10", - "symfony/polyfill-php72": "^1.10" - }, - "suggest": { - "ext-intl": "For best performance" + "php": ">=7.0.8" }, "type": "library", "extra": { @@ -21140,10 +22382,13 @@ }, "autoload": { "psr-4": { - "Symfony\\Polyfill\\Intl\\Idn\\": "" + "Symfony\\Polyfill\\Php80\\": "" }, "files": [ "bootstrap.php" + ], + "classmap": [ + "Resources/stubs" ] }, "notification-url": "https://packagist.org/downloads/", @@ -21152,24 +22397,22 @@ ], "authors": [ { - "name": "Laurent Bassin", - "email": "laurent@bassin.info" + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" }, { - "name": "Trevor Rowbotham", - "email": "trevor.rowbotham@pm.me" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", - "idn", - "intl", "polyfill", "portable", "shim" @@ -21191,44 +22434,34 @@ "time": "2020-07-14T12:35:20+00:00" }, { - "name": "symfony/polyfill-intl-normalizer", - "version": "v1.18.0", + "name": "symfony/process", + "version": "v4.4.15", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e" + "url": "https://github.com/symfony/process.git", + "reference": "9b887acc522935f77555ae8813495958c7771ba7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e", - "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e", + "url": "https://api.github.com/repos/symfony/process/zipball/9b887acc522935f77555ae8813495958c7771ba7", + "reference": "9b887acc522935f77555ae8813495958c7771ba7", "shasum": "" }, "require": { - "php": ">=5.3.3" - }, - "suggest": { - "ext-intl": "For best performance" + "php": ">=7.1.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.18-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "dev-master": "4.4-dev" } }, "autoload": { "psr-4": { - "Symfony\\Polyfill\\Intl\\Normalizer\\": "" + "Symfony\\Component\\Process\\": "" }, - "files": [ - "bootstrap.php" - ], - "classmap": [ - "Resources/stubs" + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", @@ -21237,24 +22470,16 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill for intl's Normalizer class and related functions", + "description": "Symfony Process Component", "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "intl", - "normalizer", - "polyfill", - "portable", - "shim" - ], "funding": [ { "url": "https://symfony.com/sponsor", @@ -21269,44 +22494,45 @@ "type": "tidelift" } ], - "time": "2020-07-14T12:35:20+00:00" + "time": "2020-09-02T16:08:58+00:00" }, { - "name": "symfony/polyfill-mbstring", - "version": "v1.18.0", + "name": "symfony/property-access", + "version": "v5.1.7", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a" + "url": "https://github.com/symfony/property-access.git", + "reference": "4c43f7ff784e1e3ee1c96e15f76b342af6617b39" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/a6977d63bf9a0ad4c65cd352709e230876f9904a", - "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a", + "url": "https://api.github.com/repos/symfony/property-access/zipball/4c43f7ff784e1e3ee1c96e15f76b342af6617b39", + "reference": "4c43f7ff784e1e3ee1c96e15f76b342af6617b39", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.2.5", + "symfony/polyfill-php80": "^1.15", + "symfony/property-info": "^5.1.1" + }, + "require-dev": { + "symfony/cache": "^4.4|^5.0" }, "suggest": { - "ext-mbstring": "For best performance" + "psr/cache-implementation": "To cache access methods." }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.18-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "dev-master": "5.1-dev" } }, "autoload": { "psr-4": { - "Symfony\\Polyfill\\Mbstring\\": "" + "Symfony\\Component\\PropertyAccess\\": "" }, - "files": [ - "bootstrap.php" + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", @@ -21315,22 +22541,26 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill for the Mbstring extension", + "description": "Symfony PropertyAccess Component", "homepage": "https://symfony.com", "keywords": [ - "compatibility", - "mbstring", - "polyfill", - "portable", - "shim" + "access", + "array", + "extraction", + "index", + "injection", + "object", + "property", + "property path", + "reflection" ], "funding": [ { @@ -21346,45 +22576,57 @@ "type": "tidelift" } ], - "time": "2020-07-14T12:35:20+00:00" + "time": "2020-09-02T16:23:27+00:00" }, { - "name": "symfony/polyfill-php70", - "version": "v1.18.0", + "name": "symfony/property-info", + "version": "v5.1.7", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-php70.git", - "reference": "0dd93f2c578bdc9c72697eaa5f1dd25644e618d3" + "url": "https://github.com/symfony/property-info.git", + "reference": "22518930091e0bdb249694efc509e3697f7e325e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/0dd93f2c578bdc9c72697eaa5f1dd25644e618d3", - "reference": "0dd93f2c578bdc9c72697eaa5f1dd25644e618d3", + "url": "https://api.github.com/repos/symfony/property-info/zipball/22518930091e0bdb249694efc509e3697f7e325e", + "reference": "22518930091e0bdb249694efc509e3697f7e325e", "shasum": "" }, "require": { - "paragonie/random_compat": "~1.0|~2.0|~9.99", - "php": ">=5.3.3" + "php": ">=7.2.5", + "symfony/polyfill-php80": "^1.15", + "symfony/string": "^5.1" + }, + "conflict": { + "phpdocumentor/reflection-docblock": "<3.2.2", + "phpdocumentor/type-resolver": "<0.3.0", + "symfony/dependency-injection": "<4.4" + }, + "require-dev": { + "doctrine/annotations": "~1.7", + "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", + "symfony/cache": "^4.4|^5.0", + "symfony/dependency-injection": "^4.4|^5.0", + "symfony/serializer": "^4.4|^5.0" + }, + "suggest": { + "phpdocumentor/reflection-docblock": "To use the PHPDoc", + "psr/cache-implementation": "To cache results", + "symfony/doctrine-bridge": "To use Doctrine metadata", + "symfony/serializer": "To use Serializer metadata" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.18-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "dev-master": "5.1-dev" } }, "autoload": { "psr-4": { - "Symfony\\Polyfill\\Php70\\": "" + "Symfony\\Component\\PropertyInfo\\": "" }, - "files": [ - "bootstrap.php" - ], - "classmap": [ - "Resources/stubs" + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", @@ -21393,21 +22635,23 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Kévin Dunglas", + "email": "dunglas@gmail.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions", + "description": "Symfony Property Info Component", "homepage": "https://symfony.com", "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" + "doctrine", + "phpdoc", + "property", + "symfony", + "type", + "validator" ], "funding": [ { @@ -21423,42 +22667,43 @@ "type": "tidelift" } ], - "time": "2020-07-14T12:35:20+00:00" + "time": "2020-09-07T05:10:28+00:00" }, { - "name": "symfony/polyfill-php72", - "version": "v1.18.0", + "name": "symfony/service-contracts", + "version": "v2.2.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "639447d008615574653fb3bc60d1986d7172eaae" + "url": "https://github.com/symfony/service-contracts.git", + "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/639447d008615574653fb3bc60d1986d7172eaae", - "reference": "639447d008615574653fb3bc60d1986d7172eaae", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1", + "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.2.5", + "psr/container": "^1.0" + }, + "suggest": { + "symfony/service-implementation": "" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.18-dev" + "dev-master": "2.2-dev" }, "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" } }, "autoload": { "psr-4": { - "Symfony\\Polyfill\\Php72\\": "" - }, - "files": [ - "bootstrap.php" - ] + "Symfony\\Contracts\\Service\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -21474,13 +22719,15 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions", + "description": "Generic abstractions related to writing services", "homepage": "https://symfony.com", "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" ], "funding": [ { @@ -21496,44 +22743,51 @@ "type": "tidelift" } ], - "time": "2020-07-14T12:35:20+00:00" + "time": "2020-09-07T11:33:47+00:00" }, { - "name": "symfony/polyfill-php73", - "version": "v1.18.0", + "name": "symfony/string", + "version": "v5.1.7", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-php73.git", - "reference": "fffa1a52a023e782cdcc221d781fe1ec8f87fcca" + "url": "https://github.com/symfony/string.git", + "reference": "4a9afe9d07bac506f75bcee8ed3ce76da5a9343e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fffa1a52a023e782cdcc221d781fe1ec8f87fcca", - "reference": "fffa1a52a023e782cdcc221d781fe1ec8f87fcca", + "url": "https://api.github.com/repos/symfony/string/zipball/4a9afe9d07bac506f75bcee8ed3ce76da5a9343e", + "reference": "4a9afe9d07bac506f75bcee8ed3ce76da5a9343e", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.2.5", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-intl-grapheme": "~1.0", + "symfony/polyfill-intl-normalizer": "~1.0", + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php80": "~1.15" + }, + "require-dev": { + "symfony/error-handler": "^4.4|^5.0", + "symfony/http-client": "^4.4|^5.0", + "symfony/translation-contracts": "^1.1|^2", + "symfony/var-exporter": "^4.4|^5.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.18-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "dev-master": "5.1-dev" } }, "autoload": { "psr-4": { - "Symfony\\Polyfill\\Php73\\": "" + "Symfony\\Component\\String\\": "" }, "files": [ - "bootstrap.php" + "Resources/functions.php" ], - "classmap": [ - "Resources/stubs" + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", @@ -21550,13 +22804,15 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions", + "description": "Symfony String component", "homepage": "https://symfony.com", "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" + "grapheme", + "i18n", + "string", + "unicode", + "utf-8", + "utf8" ], "funding": [ { @@ -21572,45 +22828,263 @@ "type": "tidelift" } ], - "time": "2020-07-14T12:35:20+00:00" + "time": "2020-09-15T12:23:47+00:00" }, { - "name": "symfony/polyfill-php80", - "version": "v1.18.0", + "name": "tedivm/jshrink", + "version": "v1.3.3", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981" + "url": "https://github.com/tedious/JShrink.git", + "reference": "566e0c731ba4e372be2de429ef7d54f4faf4477a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/d87d5766cbf48d72388a9f6b85f280c8ad51f981", - "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981", + "url": "https://api.github.com/repos/tedious/JShrink/zipball/566e0c731ba4e372be2de429ef7d54f4faf4477a", + "reference": "566e0c731ba4e372be2de429ef7d54f4faf4477a", + "shasum": "" + }, + "require": { + "php": "^5.6|^7.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^2.8", + "php-coveralls/php-coveralls": "^1.1.0", + "phpunit/phpunit": "^6" + }, + "type": "library", + "autoload": { + "psr-0": { + "JShrink": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Robert Hafner", + "email": "tedivm@tedivm.com" + } + ], + "description": "Javascript Minifier built in PHP", + "homepage": "http://github.com/tedious/JShrink", + "keywords": [ + "javascript", + "minifier" + ], + "time": "2019-06-28T18:11:46+00:00" + }, + { + "name": "temando/module-shipping", + "version": "2.0.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/temando/module-shipping/temando-module-shipping-2.0.0.0.zip", + "shasum": "78974a6f6a2bfb214e96882562111d35163971b1" + }, + "require": { + "temando/module-shipping-remover": "1.0.0" + }, + "type": "metapackage", + "license": [ + "OSL-3.0" + ], + "description": "Temando multi-carrier shipping extension for Magento 2" + }, + { + "name": "temando/module-shipping-remover", + "version": "1.0.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/temando/module-shipping-remover/temando-module-shipping-remover-1.0.0.0.zip", + "shasum": "fd37ccded9678386a94e104fbd37332254d7c429" + }, + "require": { + "magento/framework": "*", + "magento/module-eav": "*" + }, + "replace": { + "temando/module-shipping-m2": "*" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Temando\\ShippingRemover\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "Removes Temando multi-carrier shipping extension from Magento 2" + }, + { + "name": "thecodingmachine/safe", + "version": "v1.3.1", + "source": { + "type": "git", + "url": "https://github.com/thecodingmachine/safe.git", + "reference": "a6b795aeb367c90cc6ed88dadb4cdcac436377c2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thecodingmachine/safe/zipball/a6b795aeb367c90cc6ed88dadb4cdcac436377c2", + "reference": "a6b795aeb367c90cc6ed88dadb4cdcac436377c2", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "require-dev": { + "phpstan/phpstan": "^0.12", + "squizlabs/php_codesniffer": "^3.2", + "thecodingmachine/phpstan-strict-rules": "^0.12" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "0.1-dev" + } + }, + "autoload": { + "psr-4": { + "Safe\\": [ + "lib/", + "deprecated/", + "generated/" + ] + }, + "files": [ + "deprecated/apc.php", + "deprecated/libevent.php", + "deprecated/mssql.php", + "deprecated/stats.php", + "lib/special_cases.php", + "generated/apache.php", + "generated/apcu.php", + "generated/array.php", + "generated/bzip2.php", + "generated/calendar.php", + "generated/classobj.php", + "generated/com.php", + "generated/cubrid.php", + "generated/curl.php", + "generated/datetime.php", + "generated/dir.php", + "generated/eio.php", + "generated/errorfunc.php", + "generated/exec.php", + "generated/fileinfo.php", + "generated/filesystem.php", + "generated/filter.php", + "generated/fpm.php", + "generated/ftp.php", + "generated/funchand.php", + "generated/gmp.php", + "generated/gnupg.php", + "generated/hash.php", + "generated/ibase.php", + "generated/ibmDb2.php", + "generated/iconv.php", + "generated/image.php", + "generated/imap.php", + "generated/info.php", + "generated/ingres-ii.php", + "generated/inotify.php", + "generated/json.php", + "generated/ldap.php", + "generated/libxml.php", + "generated/lzf.php", + "generated/mailparse.php", + "generated/mbstring.php", + "generated/misc.php", + "generated/msql.php", + "generated/mysql.php", + "generated/mysqli.php", + "generated/mysqlndMs.php", + "generated/mysqlndQc.php", + "generated/network.php", + "generated/oci8.php", + "generated/opcache.php", + "generated/openssl.php", + "generated/outcontrol.php", + "generated/password.php", + "generated/pcntl.php", + "generated/pcre.php", + "generated/pdf.php", + "generated/pgsql.php", + "generated/posix.php", + "generated/ps.php", + "generated/pspell.php", + "generated/readline.php", + "generated/rpminfo.php", + "generated/rrd.php", + "generated/sem.php", + "generated/session.php", + "generated/shmop.php", + "generated/simplexml.php", + "generated/sockets.php", + "generated/sodium.php", + "generated/solr.php", + "generated/spl.php", + "generated/sqlsrv.php", + "generated/ssdeep.php", + "generated/ssh2.php", + "generated/stream.php", + "generated/strings.php", + "generated/swoole.php", + "generated/uodbc.php", + "generated/uopz.php", + "generated/url.php", + "generated/var.php", + "generated/xdiff.php", + "generated/xml.php", + "generated/xmlrpc.php", + "generated/yaml.php", + "generated/yaz.php", + "generated/zip.php", + "generated/zlib.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "PHP core functions that throw exceptions instead of returning FALSE on error", + "time": "2020-10-08T08:40:29+00:00" + }, + { + "name": "true/punycode", + "version": "v2.1.1", + "source": { + "type": "git", + "url": "https://github.com/true/php-punycode.git", + "reference": "a4d0c11a36dd7f4e7cd7096076cab6d3378a071e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/true/php-punycode/zipball/a4d0c11a36dd7f4e7cd7096076cab6d3378a071e", + "reference": "a4d0c11a36dd7f4e7cd7096076cab6d3378a071e", "shasum": "" }, "require": { - "php": ">=7.0.8" + "php": ">=5.3.0", + "symfony/polyfill-mbstring": "^1.3" }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.18-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" - } + "require-dev": { + "phpunit/phpunit": "~4.7", + "squizlabs/php_codesniffer": "~2.0" }, + "type": "library", "autoload": { "psr-4": { - "Symfony\\Polyfill\\Php80\\": "" - }, - "files": [ - "bootstrap.php" - ], - "classmap": [ - "Resources/stubs" - ] + "TrueBV\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -21618,516 +23092,477 @@ ], "authors": [ { - "name": "Ion Bazan", - "email": "ion.bazan@gmail.com" - }, - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "Renan Gonçalves", + "email": "renan.saddam@gmail.com" } ], - "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", - "homepage": "https://symfony.com", + "description": "A Bootstring encoding of Unicode for Internationalized Domain Names in Applications (IDNA)", + "homepage": "https://github.com/true/php-punycode", "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" - ], - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } + "idna", + "punycode" ], - "time": "2020-07-14T12:35:20+00:00" + "time": "2016-11-16T10:37:54+00:00" }, { - "name": "symfony/process", - "version": "v4.4.11", + "name": "tubalmartin/cssmin", + "version": "v4.1.1", "source": { "type": "git", - "url": "https://github.com/symfony/process.git", - "reference": "65e70bab62f3da7089a8d4591fb23fbacacb3479" + "url": "https://github.com/tubalmartin/YUI-CSS-compressor-PHP-port.git", + "reference": "3cbf557f4079d83a06f9c3ff9b957c022d7805cf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/65e70bab62f3da7089a8d4591fb23fbacacb3479", - "reference": "65e70bab62f3da7089a8d4591fb23fbacacb3479", + "url": "https://api.github.com/repos/tubalmartin/YUI-CSS-compressor-PHP-port/zipball/3cbf557f4079d83a06f9c3ff9b957c022d7805cf", + "reference": "3cbf557f4079d83a06f9c3ff9b957c022d7805cf", "shasum": "" }, "require": { - "php": ">=7.1.3" + "ext-pcre": "*", + "php": ">=5.3.2" }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.4-dev" - } + "require-dev": { + "cogpowered/finediff": "0.3.*", + "phpunit/phpunit": "4.8.*" }, + "bin": [ + "cssmin" + ], + "type": "library", "autoload": { "psr-4": { - "Symfony\\Component\\Process\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] + "tubalmartin\\CssMin\\": "src" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "Túbal Martín", + "homepage": "http://tubalmartin.me/" } ], - "description": "Symfony Process Component", - "homepage": "https://symfony.com", - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } + "description": "A PHP port of the YUI CSS compressor", + "homepage": "https://github.com/tubalmartin/YUI-CSS-compressor-PHP-port", + "keywords": [ + "compress", + "compressor", + "css", + "cssmin", + "minify", + "yui" ], - "time": "2020-07-23T08:31:43+00:00" + "time": "2018-01-15T15:26:51+00:00" }, { - "name": "symfony/property-access", - "version": "v5.1.3", - "source": { - "type": "git", - "url": "https://github.com/symfony/property-access.git", - "reference": "eb617a57fc38f43bf4208dcbdb2dab3c14d9cbd9" + "name": "vertex/module-address-validation", + "version": "2.1.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/vertex/module-address-validation/vertex-module-address-validation-2.1.0.0.zip", + "shasum": "9023166c5a152f3884322cde5af1b4e9f3854e71" + }, + "require": { + "ext-json": "*", + "ext-simplexml": "*", + "ext-soap": "*", + "magento/framework": "^100|^101|^102|^103", + "magento/module-checkout": "^100", + "magento/module-config": "^101", + "magento/module-quote": "^100|^101", + "magento/module-store": "^100|^101", + "magento/module-tax": "^100", + "php": "^7.0", + "vertex/module-address-validation-api": "^1", + "vertex/module-tax": "^4" + }, + "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2", + "ext-dom": "*", + "magento/magento-coding-standard": "^5.0", + "roave/security-advisories": "dev-master" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Vertex\\AddressValidation\\": "" + } }, + "license": [ + "proprietary" + ], + "description": "Vertex Address Validation module for Magento 2" + }, + { + "name": "vertex/module-address-validation-api", + "version": "1.0.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/property-access/zipball/eb617a57fc38f43bf4208dcbdb2dab3c14d9cbd9", - "reference": "eb617a57fc38f43bf4208dcbdb2dab3c14d9cbd9", - "shasum": "" + "url": "https://repo.magento.com/archives/vertex/module-address-validation-api/vertex-module-address-validation-api-1.0.0.0.zip", + "shasum": "85bcd6896132e132e0098db915eb9d506569646e" }, "require": { - "php": ">=7.2.5", - "symfony/polyfill-php80": "^1.15", - "symfony/property-info": "^5.1.1" + "magento/framework": "^100|^101|^102|^103", + "magento/module-store": "^100|^101", + "php": "^7.1", + "vertex/sdk": "^1" }, "require-dev": { - "symfony/cache": "^4.4|^5.0" + "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2", + "magento/magento-coding-standard": "^5.0", + "roave/security-advisories": "dev-master" }, "suggest": { - "psr/cache-implementation": "To cache access methods." + "magento/module-webapi": "^100" }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "5.1-dev" + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Vertex\\AddressValidationApi\\": "" } }, + "license": [ + "proprietary" + ], + "description": "Vertex Address Cleansing module for Magento 2 API" + }, + { + "name": "vertex/module-tax", + "version": "4.1.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/vertex/module-tax/vertex-module-tax-4.1.0.0.zip", + "shasum": "bca2e2d6a19294edf066c032ce26edd8dcc2f692" + }, + "require": { + "ext-intl": "*", + "ext-json": "*", + "ext-simplexml": "*", + "ext-soap": "*", + "magento/framework": "^100|^101|^102|^103", + "magento/module-backend": "^100|^101|^102", + "magento/module-catalog": "^100|^101|^102|^103|^104", + "magento/module-checkout": "^100", + "magento/module-config": "^100|^101", + "magento/module-cron": "^100", + "magento/module-customer": "^100|^101|^102|^103", + "magento/module-directory": "^100", + "magento/module-eav": "^100|^101|^102", + "magento/module-quote": ">=101.1.0 <= 101.1.5 || ^101.2", + "magento/module-sales": "^100|^101|^102|^103", + "magento/module-shipping": "^100", + "magento/module-store": "^100|^101", + "magento/module-tax": "^100", + "magento/module-ui": "^100|^101", + "php": "^7.1", + "vertex/sdk": "^1.2.0" + }, + "conflict": { + "pixafy/tax": "*", + "pixafy/tax-ee": "*", + "vertex/tax": "*", + "vertex/tax-ee": "*" + }, + "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2", + "ext-dom": "*", + "ext-simplexml": "*", + "magento/magento-coding-standard": "^5", + "magento/module-offline-shipping": "^100.2", + "magento/module-usps": "^100.2" + }, + "suggest": { + "magento/module-gift-card-account": "Vertex Tax Links for Magento 2 also supports Magento's Gift Card Account module", + "magento/module-gift-wrapping": "Vertex Tax Links for Magento 2 also supports Magento's Gift Wrapping module", + "magento/module-multishipping": "Vertex Tax Links for Magento 2 also supports Magento's Multishipping module", + "magento/module-reward": "Vertex Tax Links for Magento 2 also supports Magento's Reward module" + }, + "type": "magento2-module", "autoload": { + "files": [ + "registration.php" + ], "psr-4": { - "Symfony\\Component\\PropertyAccess\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] + "Vertex\\Tax\\": "" + } + }, + "license": [ + "proprietary" + ], + "description": "Vertex Tax Links for Magento 2" + }, + { + "name": "vertex/product-magento-module", + "version": "4.1.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/vertex/product-magento-module/vertex-product-magento-module-4.1.0.0.zip", + "shasum": "ef350f455be0e3e6784e86987e89b78be984f056" }, - "notification-url": "https://packagist.org/downloads/", + "require": { + "vertex/module-address-validation": "2.1.0", + "vertex/module-tax": "4.1.0" + }, + "type": "metapackage", "license": [ - "MIT" + "proprietary" ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "Mediotype", + "email": "diveinto@mediotype.com", + "homepage": "http://www.mediotype.com/", + "role": "Development Company" } ], - "description": "Symfony PropertyAccess Component", - "homepage": "https://symfony.com", + "description": "Vertex Tax Links for Magento 2", + "homepage": "http://go.vertexsmb.com/magento_cbe", "keywords": [ - "access", - "array", - "extraction", - "index", - "injection", - "object", - "property", - "property path", - "reflection" - ], - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2020-07-03T07:49:29+00:00" + "tax", + "vertex" + ] }, { - "name": "symfony/property-info", - "version": "v5.1.3", - "source": { - "type": "git", - "url": "https://github.com/symfony/property-info.git", - "reference": "0c4813930953f6db6c62ebec8ee695a897b89020" - }, + "name": "vertex/sdk", + "version": "1.2.7", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/property-info/zipball/0c4813930953f6db6c62ebec8ee695a897b89020", - "reference": "0c4813930953f6db6c62ebec8ee695a897b89020", - "shasum": "" + "url": "https://repo.magento.com/archives/vertex/sdk/vertex-sdk-1.2.7.0.zip", + "shasum": "821465662cc2d8ec186e2baf138a7c3075fcf3ee" }, "require": { - "php": ">=7.2.5", - "symfony/polyfill-php80": "^1.15", - "symfony/string": "^5.1" - }, - "conflict": { - "phpdocumentor/reflection-docblock": "<3.2.2", - "phpdocumentor/type-resolver": "<0.3.0", - "symfony/dependency-injection": "<4.4" + "ext-mbstring": "*", + "ext-openssl": "*", + "ext-soap": "*", + "php": "^5.4|^7" }, "require-dev": { - "doctrine/annotations": "~1.7", - "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", - "symfony/cache": "^4.4|^5.0", - "symfony/dependency-injection": "^4.4|^5.0", - "symfony/serializer": "^4.4|^5.0" - }, - "suggest": { - "phpdocumentor/reflection-docblock": "To use the PHPDoc", - "psr/cache-implementation": "To cache results", - "symfony/doctrine-bridge": "To use Doctrine metadata", - "symfony/serializer": "To use Serializer metadata" + "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2", + "magento/magento-coding-standard": "^5.0", + "php": "^7.3", + "phpmd/phpmd": "^2.6", + "phpunit/phpunit": "^9", + "squizlabs/php_codesniffer": "^3.3" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "5.1-dev" - } - }, "autoload": { "psr-4": { - "Symfony\\Component\\PropertyInfo\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] + "Vertex\\": "src/" + } }, - "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" - ], - "authors": [ - { - "name": "Kévin Dunglas", - "email": "dunglas@gmail.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony Property Info Component", - "homepage": "https://symfony.com", - "keywords": [ - "doctrine", - "phpdoc", - "property", - "symfony", - "type", - "validator" - ], - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } + "proprietary" ], - "time": "2020-06-18T21:19:28+00:00" + "description": "Tools for communicating with Vertex Cloud and Vertex O-Series" }, { - "name": "symfony/service-contracts", - "version": "v2.1.3", + "name": "webimpress/safe-writer", + "version": "2.1.0", "source": { "type": "git", - "url": "https://github.com/symfony/service-contracts.git", - "reference": "58c7475e5457c5492c26cc740cc0ad7464be9442" + "url": "https://github.com/webimpress/safe-writer.git", + "reference": "5cfafdec5873c389036f14bf832a5efc9390dcdd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/58c7475e5457c5492c26cc740cc0ad7464be9442", - "reference": "58c7475e5457c5492c26cc740cc0ad7464be9442", + "url": "https://api.github.com/repos/webimpress/safe-writer/zipball/5cfafdec5873c389036f14bf832a5efc9390dcdd", + "reference": "5cfafdec5873c389036f14bf832a5efc9390dcdd", "shasum": "" }, "require": { - "php": ">=7.2.5", - "psr/container": "^1.0" + "php": "^7.2 || ^8.0" }, - "suggest": { - "symfony/service-implementation": "" + "require-dev": { + "phpunit/phpunit": "^8.5.8 || ^9.3.7", + "vimeo/psalm": "^3.14.2", + "webimpress/coding-standard": "^1.1.5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.1-dev" - }, - "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" + "dev-master": "2.1.x-dev", + "dev-develop": "2.2.x-dev", + "dev-release-1.0": "1.0.x-dev" } }, "autoload": { "psr-4": { - "Symfony\\Contracts\\Service\\": "" + "Webimpress\\SafeWriter\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } + "BSD-2-Clause" ], - "description": "Generic abstractions related to writing services", - "homepage": "https://symfony.com", + "description": "Tool to write files safely, to avoid race conditions", "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" + "concurrent write", + "file writer", + "race condition", + "safe writer", + "webimpress" ], "funding": [ { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", + "url": "https://github.com/michalbundyra", "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" } ], - "time": "2020-07-06T13:23:11+00:00" + "time": "2020-08-25T07:21:11+00:00" }, { - "name": "symfony/string", - "version": "v5.1.3", + "name": "webonyx/graphql-php", + "version": "v0.13.9", "source": { "type": "git", - "url": "https://github.com/symfony/string.git", - "reference": "f629ba9b611c76224feb21fe2bcbf0b6f992300b" + "url": "https://github.com/webonyx/graphql-php.git", + "reference": "d9a94fddcad0a35d4bced212b8a44ad1bc59bdf3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/f629ba9b611c76224feb21fe2bcbf0b6f992300b", - "reference": "f629ba9b611c76224feb21fe2bcbf0b6f992300b", + "url": "https://api.github.com/repos/webonyx/graphql-php/zipball/d9a94fddcad0a35d4bced212b8a44ad1bc59bdf3", + "reference": "d9a94fddcad0a35d4bced212b8a44ad1bc59bdf3", "shasum": "" }, "require": { - "php": ">=7.2.5", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-intl-grapheme": "~1.0", - "symfony/polyfill-intl-normalizer": "~1.0", - "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php80": "~1.15" + "ext-json": "*", + "ext-mbstring": "*", + "php": "^7.1||^8.0" }, "require-dev": { - "symfony/error-handler": "^4.4|^5.0", - "symfony/http-client": "^4.4|^5.0", - "symfony/translation-contracts": "^1.1|^2", - "symfony/var-exporter": "^4.4|^5.0" + "doctrine/coding-standard": "^6.0", + "phpbench/phpbench": "^0.14.0", + "phpstan/phpstan": "^0.11.4", + "phpstan/phpstan-phpunit": "^0.11.0", + "phpstan/phpstan-strict-rules": "^0.11.0", + "phpunit/phpcov": "^5.0", + "phpunit/phpunit": "^7.2", + "psr/http-message": "^1.0", + "react/promise": "2.*" }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "5.1-dev" - } + "suggest": { + "psr/http-message": "To use standard GraphQL server", + "react/promise": "To leverage async resolving on React PHP platform" }, + "type": "library", "autoload": { "psr-4": { - "Symfony\\Component\\String\\": "" - }, - "files": [ - "Resources/functions.php" - ], - "exclude-from-classmap": [ - "/Tests/" - ] + "GraphQL\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony String component", - "homepage": "https://symfony.com", + "description": "A PHP port of GraphQL reference implementation", + "homepage": "https://github.com/webonyx/graphql-php", "keywords": [ - "grapheme", - "i18n", - "string", - "unicode", - "utf-8", - "utf8" - ], - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, + "api", + "graphql" + ], + "funding": [ { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" + "url": "https://opencollective.com/webonyx-graphql-php", + "type": "open_collective" } ], - "time": "2020-07-08T08:27:49+00:00" + "time": "2020-07-02T05:49:25+00:00" }, { - "name": "tedivm/jshrink", - "version": "v1.3.3", + "name": "wikimedia/less.php", + "version": "1.8.2", "source": { "type": "git", - "url": "https://github.com/tedious/JShrink.git", - "reference": "566e0c731ba4e372be2de429ef7d54f4faf4477a" + "url": "https://github.com/wikimedia/less.php.git", + "reference": "e238ad228d74b6ffd38209c799b34e9826909266" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/tedious/JShrink/zipball/566e0c731ba4e372be2de429ef7d54f4faf4477a", - "reference": "566e0c731ba4e372be2de429ef7d54f4faf4477a", + "url": "https://api.github.com/repos/wikimedia/less.php/zipball/e238ad228d74b6ffd38209c799b34e9826909266", + "reference": "e238ad228d74b6ffd38209c799b34e9826909266", "shasum": "" }, "require": { - "php": "^5.6|^7.0" + "php": ">=7.2.9" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^2.8", - "php-coveralls/php-coveralls": "^1.1.0", - "phpunit/phpunit": "^6" + "phpunit/phpunit": "7.5.14" }, + "bin": [ + "bin/lessc" + ], "type": "library", "autoload": { "psr-0": { - "JShrink": "src/" - } + "Less": "lib/" + }, + "classmap": [ + "lessc.inc.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "Apache-2.0" ], "authors": [ { - "name": "Robert Hafner", - "email": "tedivm@tedivm.com" + "name": "Josh Schmidt", + "homepage": "https://github.com/oyejorge" + }, + { + "name": "Matt Agar", + "homepage": "https://github.com/agar" + }, + { + "name": "Martin Jantošovič", + "homepage": "https://github.com/Mordred" } ], - "description": "Javascript Minifier built in PHP", - "homepage": "http://github.com/tedious/JShrink", + "description": "PHP port of the Javascript version of LESS http://lesscss.org (Originally maintained by Josh Schmidt)", "keywords": [ - "javascript", - "minifier" - ], - "time": "2019-06-28T18:11:46+00:00" - }, - { - "name": "temando/module-shipping", - "version": "2.0.0", - "dist": { - "type": "zip", - "url": "https://repo.magento.com/archives/temando/module-shipping/temando-module-shipping-2.0.0.0.zip", - "shasum": "78974a6f6a2bfb214e96882562111d35163971b1" - }, - "require": { - "temando/module-shipping-remover": "1.0.0" - }, - "type": "metapackage", - "license": [ - "OSL-3.0" + "css", + "less", + "less.js", + "lesscss", + "php", + "stylesheet" ], - "description": "Temando multi-carrier shipping extension for Magento 2" + "time": "2019-11-06T18:30:11+00:00" }, { - "name": "temando/module-shipping-remover", - "version": "1.0.0", + "name": "yotpo/magento2-module-yotpo-reviews", + "version": "3.1.2", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/temando/module-shipping-remover/temando-module-shipping-remover-1.0.0.0.zip", - "shasum": "fd37ccded9678386a94e104fbd37332254d7c429" + "url": "https://repo.magento.com/archives/yotpo/magento2-module-yotpo-reviews/yotpo-magento2-module-yotpo-reviews-3.1.2.0.zip", + "shasum": "686436cac2a13758388d720bc5c388517422e774" }, "require": { - "magento/framework": "*", - "magento/module-eav": "*" + "magento/framework": "103.0.*", + "magento/module-analytics": "*", + "magento/module-backend": "102.0.*", + "magento/module-catalog": "104.0.*", + "magento/module-checkout": "100.4.*", + "magento/module-config": "101.2.*", + "magento/module-grouped-product": "100.4.*", + "magento/module-reports": "^100", + "magento/module-review": "100.4.*", + "magento/module-sales": "102.1.*||^103.0", + "magento/module-store": "101.1.*", + "php": "~7.1.3||~7.2.0||~7.3.0||~7.4.0" }, "replace": { - "temando/module-shipping-m2": "*" + "yotpo/module-review": "*", + "yotpo/module-yotpo": "*" }, "type": "magento2-module", "autoload": { @@ -22135,869 +23570,696 @@ "registration.php" ], "psr-4": { - "Temando\\ShippingRemover\\": "" + "Yotpo\\Yotpo\\": "" } }, "license": [ "OSL-3.0", "AFL-3.0" ], - "description": "Removes Temando multi-carrier shipping extension from Magento 2" + "description": "Yotpo Reviews extension for Magento2" }, { - "name": "thecodingmachine/safe", - "version": "v1.1.3", + "name": "yotpo/magento2-module-yotpo-reviews-bundle", + "version": "3.1.2", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/yotpo/magento2-module-yotpo-reviews-bundle/yotpo-magento2-module-yotpo-reviews-bundle-3.1.2.0.zip", + "shasum": "fb070323fec2763df00062bab4a0b0b67eed60d1" + }, + "require": { + "yotpo/magento2-module-yotpo-reviews": "3.1.2" + }, + "type": "metapackage", + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "Bundling metapackage for yotpo/magento2-module-yotpo-reviews: Yotpo Reviews extension for Magento2" + } + ], + "packages-dev": [ + { + "name": "allure-framework/allure-codeception", + "version": "1.4.4", "source": { "type": "git", - "url": "https://github.com/thecodingmachine/safe.git", - "reference": "9f277171e296a3c8629c04ac93ec95ff0f208ccb" + "url": "https://github.com/allure-framework/allure-codeception.git", + "reference": "a69800eeef83007ced9502a3349ff72f5fb6b4e2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thecodingmachine/safe/zipball/9f277171e296a3c8629c04ac93ec95ff0f208ccb", - "reference": "9f277171e296a3c8629c04ac93ec95ff0f208ccb", + "url": "https://api.github.com/repos/allure-framework/allure-codeception/zipball/a69800eeef83007ced9502a3349ff72f5fb6b4e2", + "reference": "a69800eeef83007ced9502a3349ff72f5fb6b4e2", "shasum": "" }, "require": { - "php": ">=7.2" - }, - "require-dev": { - "phpstan/phpstan": "^0.12", - "squizlabs/php_codesniffer": "^3.2", - "thecodingmachine/phpstan-strict-rules": "^0.12" + "allure-framework/allure-php-api": "~1.1.8", + "codeception/codeception": "^2.3|^3.0|^4.0", + "php": ">=5.6", + "symfony/filesystem": ">=2.6", + "symfony/finder": ">=2.6" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "0.1-dev" - } - }, "autoload": { - "psr-4": { - "Safe\\": [ - "lib/", - "generated/" - ] - }, - "files": [ - "generated/apache.php", - "generated/apc.php", - "generated/apcu.php", - "generated/array.php", - "generated/bzip2.php", - "generated/classobj.php", - "generated/com.php", - "generated/cubrid.php", - "generated/curl.php", - "generated/datetime.php", - "generated/dir.php", - "generated/eio.php", - "generated/errorfunc.php", - "generated/exec.php", - "generated/fileinfo.php", - "generated/filesystem.php", - "generated/filter.php", - "generated/fpm.php", - "generated/ftp.php", - "generated/funchand.php", - "generated/gmp.php", - "generated/gnupg.php", - "generated/hash.php", - "generated/ibase.php", - "generated/ibmDb2.php", - "generated/iconv.php", - "generated/image.php", - "generated/imap.php", - "generated/info.php", - "generated/ingres-ii.php", - "generated/inotify.php", - "generated/json.php", - "generated/ldap.php", - "generated/libevent.php", - "generated/libxml.php", - "generated/lzf.php", - "generated/mailparse.php", - "generated/mbstring.php", - "generated/misc.php", - "generated/msql.php", - "generated/mssql.php", - "generated/mysql.php", - "generated/mysqli.php", - "generated/mysqlndMs.php", - "generated/mysqlndQc.php", - "generated/network.php", - "generated/oci8.php", - "generated/opcache.php", - "generated/openssl.php", - "generated/outcontrol.php", - "generated/password.php", - "generated/pcntl.php", - "generated/pcre.php", - "generated/pdf.php", - "generated/pgsql.php", - "generated/posix.php", - "generated/ps.php", - "generated/pspell.php", - "generated/readline.php", - "generated/rpminfo.php", - "generated/rrd.php", - "generated/sem.php", - "generated/session.php", - "generated/shmop.php", - "generated/simplexml.php", - "generated/sockets.php", - "generated/sodium.php", - "generated/solr.php", - "generated/spl.php", - "generated/sqlsrv.php", - "generated/ssdeep.php", - "generated/ssh2.php", - "generated/stats.php", - "generated/stream.php", - "generated/strings.php", - "generated/swoole.php", - "generated/uodbc.php", - "generated/uopz.php", - "generated/url.php", - "generated/var.php", - "generated/xdiff.php", - "generated/xml.php", - "generated/xmlrpc.php", - "generated/yaml.php", - "generated/yaz.php", - "generated/zip.php", - "generated/zlib.php", - "lib/special_cases.php" - ] + "psr-0": { + "Yandex": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "Apache-2.0" ], - "description": "PHP core functions that throw exceptions instead of returning FALSE on error", - "time": "2020-07-10T09:34:29+00:00" + "authors": [ + { + "name": "Ivan Krutov", + "email": "vania-pooh@yandex-team.ru", + "role": "Developer" + } + ], + "description": "A Codeception adapter for Allure report.", + "homepage": "http://allure.qatools.ru/", + "keywords": [ + "allure", + "attachments", + "cases", + "codeception", + "report", + "steps", + "testing" + ], + "time": "2020-09-09T10:51:33+00:00" }, { - "name": "true/punycode", - "version": "v2.1.1", + "name": "allure-framework/allure-php-api", + "version": "1.1.8", "source": { "type": "git", - "url": "https://github.com/true/php-punycode.git", - "reference": "a4d0c11a36dd7f4e7cd7096076cab6d3378a071e" + "url": "https://github.com/allure-framework/allure-php-commons.git", + "reference": "5ae2deac1c7e1b992cfa572167370de45bdd346d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/true/php-punycode/zipball/a4d0c11a36dd7f4e7cd7096076cab6d3378a071e", - "reference": "a4d0c11a36dd7f4e7cd7096076cab6d3378a071e", + "url": "https://api.github.com/repos/allure-framework/allure-php-commons/zipball/5ae2deac1c7e1b992cfa572167370de45bdd346d", + "reference": "5ae2deac1c7e1b992cfa572167370de45bdd346d", "shasum": "" }, "require": { - "php": ">=5.3.0", - "symfony/polyfill-mbstring": "^1.3" + "jms/serializer": "^0.16 || ^1.0", + "php": ">=5.4.0", + "ramsey/uuid": "^3.0", + "symfony/http-foundation": "^2.0 || ^3.0 || ^4.0 || ^5.0" }, "require-dev": { - "phpunit/phpunit": "~4.7", - "squizlabs/php_codesniffer": "~2.0" + "phpunit/phpunit": "^4.0.0" }, "type": "library", "autoload": { - "psr-4": { - "TrueBV\\": "src/" + "psr-0": { + "Yandex": [ + "src/", + "test/" + ] } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "Apache-2.0" ], "authors": [ { - "name": "Renan Gonçalves", - "email": "renan.saddam@gmail.com" + "name": "Ivan Krutov", + "email": "vania-pooh@yandex-team.ru", + "role": "Developer" } ], - "description": "A Bootstring encoding of Unicode for Internationalized Domain Names in Applications (IDNA)", - "homepage": "https://github.com/true/php-punycode", + "description": "PHP API for Allure adapter", + "homepage": "http://allure.qatools.ru/", "keywords": [ - "idna", - "punycode" + "allure", + "api", + "php", + "report" ], - "time": "2016-11-16T10:37:54+00:00" + "time": "2020-03-13T10:47:35+00:00" }, { - "name": "tubalmartin/cssmin", - "version": "v4.1.1", + "name": "allure-framework/allure-phpunit", + "version": "1.2.4", "source": { "type": "git", - "url": "https://github.com/tubalmartin/YUI-CSS-compressor-PHP-port.git", - "reference": "3cbf557f4079d83a06f9c3ff9b957c022d7805cf" + "url": "https://github.com/allure-framework/allure-phpunit.git", + "reference": "9399629c6eed79da4be18fd22adf83ef36c2d2e0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/tubalmartin/YUI-CSS-compressor-PHP-port/zipball/3cbf557f4079d83a06f9c3ff9b957c022d7805cf", - "reference": "3cbf557f4079d83a06f9c3ff9b957c022d7805cf", + "url": "https://api.github.com/repos/allure-framework/allure-phpunit/zipball/9399629c6eed79da4be18fd22adf83ef36c2d2e0", + "reference": "9399629c6eed79da4be18fd22adf83ef36c2d2e0", "shasum": "" }, "require": { - "ext-pcre": "*", - "php": ">=5.3.2" - }, - "require-dev": { - "cogpowered/finediff": "0.3.*", - "phpunit/phpunit": "4.8.*" + "allure-framework/allure-php-api": "~1.1.0", + "mikey179/vfsstream": "1.*", + "php": ">=7.1.0", + "phpunit/phpunit": ">=7.0.0" }, - "bin": [ - "cssmin" - ], "type": "library", "autoload": { - "psr-4": { - "tubalmartin\\CssMin\\": "src" + "psr-0": { + "Yandex": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "Apache-2.0" ], "authors": [ { - "name": "Túbal Martín", - "homepage": "http://tubalmartin.me/" + "name": "Ivan Krutov", + "email": "vania-pooh@yandex-team.ru", + "role": "Developer" } ], - "description": "A PHP port of the YUI CSS compressor", - "homepage": "https://github.com/tubalmartin/YUI-CSS-compressor-PHP-port", + "description": "A PHPUnit adapter for Allure report.", + "homepage": "http://allure.qatools.ru/", "keywords": [ - "compress", - "compressor", - "css", - "cssmin", - "minify", - "yui" + "allure", + "attachments", + "cases", + "phpunit", + "report", + "steps", + "testing" ], - "time": "2018-01-15T15:26:51+00:00" + "time": "2018-10-25T12:03:54+00:00" }, { - "name": "vertex/module-address-validation", - "version": "2.0.0", - "dist": { - "type": "zip", - "url": "https://repo.magento.com/archives/vertex/module-address-validation/vertex-module-address-validation-2.0.0.0.zip", - "shasum": "24bbeaba65d0f940ad649e3b3871eb89673420b5" - }, - "require": { - "ext-json": "*", - "ext-simplexml": "*", - "ext-soap": "*", - "magento/framework": "^100|^101|^102|^103", - "magento/module-checkout": "^100", - "magento/module-config": "^101", - "magento/module-quote": "^100|^101|^102", - "magento/module-store": "^100|^101", - "magento/module-tax": "^100", - "php": "^7.0", - "vertex/module-tax": "^4" - }, - "require-dev": { - "ext-dom": "*", - "ext-simplexml": "*", - "magento/marketplace-eqp": "^1.0", - "magento/module-offline-shipping": "^100.2", - "magento/module-usps": "^100.2" - }, - "type": "magento2-module", - "autoload": { - "files": [ - "registration.php" - ], - "psr-4": { - "Vertex\\AddressValidation\\": "" - } + "name": "aws/aws-sdk-php", + "version": "3.158.7", + "source": { + "type": "git", + "url": "https://github.com/aws/aws-sdk-php.git", + "reference": "9afc422ad4ef0f1de9fa2a0be4b856c1dfa31123" }, - "license": [ - "proprietary" - ], - "description": "Vertex Address Validation module for Magento 2" - }, - { - "name": "vertex/module-tax", - "version": "4.0.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/vertex/module-tax/vertex-module-tax-4.0.0.0.zip", - "shasum": "da54bf6f1d37f9ab94573ca9094b5408e40b2c2e" + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/9afc422ad4ef0f1de9fa2a0be4b856c1dfa31123", + "reference": "9afc422ad4ef0f1de9fa2a0be4b856c1dfa31123", + "shasum": "" }, "require": { - "ext-intl": "*", "ext-json": "*", + "ext-pcre": "*", "ext-simplexml": "*", - "ext-soap": "*", - "magento/framework": "^100|^101|^102|^103", - "magento/module-backend": "^100|^101|^102", - "magento/module-catalog": "^100|^101|^102|^103|^104", - "magento/module-checkout": "^100", - "magento/module-config": "^100|^101", - "magento/module-cron": "^100", - "magento/module-customer": "^100|^101|^102|^103", - "magento/module-directory": "^100", - "magento/module-eav": "^100|^101|^102|^103", - "magento/module-quote": "^100|^101|^102 ", - "magento/module-sales": "^100|^101|^102|^103", - "magento/module-shipping": "^100", - "magento/module-store": "^100|^101", - "magento/module-tax": "^100", - "magento/module-ui": "^100|^101", - "php": "^7.1", - "vertex/sdk": "^1.2.0" - }, - "conflict": { - "pixafy/tax": "*", - "pixafy/tax-ee": "*", - "vertex/tax": "*", - "vertex/tax-ee": "*" + "guzzlehttp/guzzle": "^5.3.3|^6.2.1|^7.0", + "guzzlehttp/promises": "^1.0", + "guzzlehttp/psr7": "^1.4.1", + "mtdowling/jmespath.php": "^2.5", + "php": ">=5.5" }, "require-dev": { + "andrewsville/php-token-reflection": "^1.4", + "aws/aws-php-sns-message-validator": "~1.0", + "behat/behat": "~3.0", + "doctrine/cache": "~1.4", "ext-dom": "*", - "ext-simplexml": "*", - "magento/magento-coding-standard": "^5", - "magento/module-offline-shipping": "^100.2", - "magento/module-usps": "^100.2" - }, - "suggest": { - "magento/module-gift-card-account": "Vertex Tax Links for Magento 2 also supports Magento's Gift Card Account module", - "magento/module-gift-wrapping": "Vertex Tax Links for Magento 2 also supports Magento's Gift Wrapping module", - "magento/module-multishipping": "Vertex Tax Links for Magento 2 also supports Magento's Multishipping module", - "magento/module-reward": "Vertex Tax Links for Magento 2 also supports Magento's Reward module" - }, - "type": "magento2-module", - "autoload": { - "files": [ - "registration.php" - ], - "psr-4": { - "Vertex\\Tax\\": "" - } - }, - "license": [ - "proprietary" - ], - "description": "Vertex Tax Links for Magento 2" - }, - { - "name": "vertex/product-magento-module", - "version": "4.0.0", - "dist": { - "type": "zip", - "url": "https://repo.magento.com/archives/vertex/product-magento-module/vertex-product-magento-module-4.0.0.0.zip", - "shasum": "6048ffc711bb6635fc0288345b87724225345481" - }, - "require": { - "vertex/module-address-validation": "2.0.0", - "vertex/module-tax": "4.0.0" - }, - "type": "metapackage", - "license": [ - "proprietary" - ], - "authors": [ - { - "name": "Mediotype", - "email": "diveinto@mediotype.com", - "homepage": "http://www.mediotype.com/", - "role": "Development Company" - } - ], - "description": "Vertex Tax Links for Magento 2", - "homepage": "http://go.vertexsmb.com/magento_cbe", - "keywords": [ - "tax", - "vertex" - ] - }, - { - "name": "vertex/sdk", - "version": "1.2.4", - "dist": { - "type": "zip", - "url": "https://repo.magento.com/archives/vertex/sdk/vertex-sdk-1.2.4.0.zip", - "shasum": "2b9fd3deb46f45930b90d4e020f3236d8256cd4a" - }, - "require": { - "ext-mbstring": "*", "ext-openssl": "*", - "ext-soap": "*", - "php": "^5.4|^7" + "ext-pcntl": "*", + "ext-sockets": "*", + "nette/neon": "^2.3", + "paragonie/random_compat": ">= 2", + "phpunit/phpunit": "^4.8.35|^5.4.3", + "psr/cache": "^1.0", + "psr/simple-cache": "^1.0", + "sebastian/comparator": "^1.2.3" }, - "require-dev": { - "php": "^7.3", - "phpmd/phpmd": "^2.6", - "phpunit/phpunit": "^9", - "squizlabs/php_codesniffer": "^3.3" + "suggest": { + "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications", + "doctrine/cache": "To use the DoctrineCacheAdapter", + "ext-curl": "To send requests using cURL", + "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages", + "ext-sockets": "To use client-side monitoring" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" + } + }, "autoload": { "psr-4": { - "Vertex\\": "src/" - } + "Aws\\": "src/" + }, + "files": [ + "src/functions.php" + ] }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "proprietary" + "Apache-2.0" ], - "description": "Tools for communicating with Vertex Cloud and Vertex O-Series" + "authors": [ + { + "name": "Amazon Web Services", + "homepage": "http://aws.amazon.com" + } + ], + "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project", + "homepage": "http://aws.amazon.com/sdkforphp", + "keywords": [ + "amazon", + "aws", + "cloud", + "dynamodb", + "ec2", + "glacier", + "s3", + "sdk" + ], + "time": "2020-10-15T18:16:19+00:00" }, { - "name": "webonyx/graphql-php", - "version": "v0.13.9", + "name": "behat/gherkin", + "version": "v4.6.2", "source": { "type": "git", - "url": "https://github.com/webonyx/graphql-php.git", - "reference": "d9a94fddcad0a35d4bced212b8a44ad1bc59bdf3" + "url": "https://github.com/Behat/Gherkin.git", + "reference": "51ac4500c4dc30cbaaabcd2f25694299df666a31" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webonyx/graphql-php/zipball/d9a94fddcad0a35d4bced212b8a44ad1bc59bdf3", - "reference": "d9a94fddcad0a35d4bced212b8a44ad1bc59bdf3", + "url": "https://api.github.com/repos/Behat/Gherkin/zipball/51ac4500c4dc30cbaaabcd2f25694299df666a31", + "reference": "51ac4500c4dc30cbaaabcd2f25694299df666a31", "shasum": "" }, "require": { - "ext-json": "*", - "ext-mbstring": "*", - "php": "^7.1||^8.0" + "php": ">=5.3.1" }, "require-dev": { - "doctrine/coding-standard": "^6.0", - "phpbench/phpbench": "^0.14.0", - "phpstan/phpstan": "^0.11.4", - "phpstan/phpstan-phpunit": "^0.11.0", - "phpstan/phpstan-strict-rules": "^0.11.0", - "phpunit/phpcov": "^5.0", - "phpunit/phpunit": "^7.2", - "psr/http-message": "^1.0", - "react/promise": "2.*" + "phpunit/phpunit": "~4.5|~5", + "symfony/phpunit-bridge": "~2.7|~3|~4", + "symfony/yaml": "~2.3|~3|~4" }, "suggest": { - "psr/http-message": "To use standard GraphQL server", - "react/promise": "To leverage async resolving on React PHP platform" + "symfony/yaml": "If you want to parse features, represented in YAML files" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.4-dev" + } + }, "autoload": { - "psr-4": { - "GraphQL\\": "src/" + "psr-0": { + "Behat\\Gherkin": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "description": "A PHP port of GraphQL reference implementation", - "homepage": "https://github.com/webonyx/graphql-php", - "keywords": [ - "api", - "graphql" - ], - "funding": [ + "authors": [ { - "url": "https://opencollective.com/webonyx-graphql-php", - "type": "open_collective" + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" } ], - "time": "2020-07-02T05:49:25+00:00" + "description": "Gherkin DSL parser for PHP 5.3", + "homepage": "http://behat.org/", + "keywords": [ + "BDD", + "Behat", + "Cucumber", + "DSL", + "gherkin", + "parser" + ], + "time": "2020-03-17T14:03:26+00:00" }, { - "name": "wikimedia/less.php", - "version": "1.8.2", + "name": "cache/cache", + "version": "0.4.0", "source": { "type": "git", - "url": "https://github.com/wikimedia/less.php.git", - "reference": "e238ad228d74b6ffd38209c799b34e9826909266" + "url": "https://github.com/php-cache/cache.git", + "reference": "902b2e5b54ea57e3a801437748652228c4c58604" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wikimedia/less.php/zipball/e238ad228d74b6ffd38209c799b34e9826909266", - "reference": "e238ad228d74b6ffd38209c799b34e9826909266", + "url": "https://api.github.com/repos/php-cache/cache/zipball/902b2e5b54ea57e3a801437748652228c4c58604", + "reference": "902b2e5b54ea57e3a801437748652228c4c58604", "shasum": "" }, "require": { - "php": ">=7.2.9" + "doctrine/cache": "^1.3", + "league/flysystem": "^1.0", + "php": "^5.6 || ^7.0", + "psr/cache": "^1.0", + "psr/log": "^1.0", + "psr/simple-cache": "^1.0" + }, + "conflict": { + "cache/adapter-common": "*", + "cache/apc-adapter": "*", + "cache/apcu-adapter": "*", + "cache/array-adapter": "*", + "cache/chain-adapter": "*", + "cache/doctrine-adapter": "*", + "cache/filesystem-adapter": "*", + "cache/hierarchical-cache": "*", + "cache/illuminate-adapter": "*", + "cache/memcache-adapter": "*", + "cache/memcached-adapter": "*", + "cache/mongodb-adapter": "*", + "cache/predis-adapter": "*", + "cache/psr-6-doctrine-bridge": "*", + "cache/redis-adapter": "*", + "cache/session-handler": "*", + "cache/taggable-cache": "*", + "cache/void-adapter": "*" }, "require-dev": { - "phpunit/phpunit": "7.5.14" + "cache/integration-tests": "^0.16", + "defuse/php-encryption": "^2.0", + "illuminate/cache": "^5.4", + "mockery/mockery": "^0.9", + "phpunit/phpunit": "^4.0 || ^5.1", + "predis/predis": "^1.0", + "symfony/cache": "dev-master" + }, + "suggest": { + "ext-apc": "APC extension is required to use the APC Adapter", + "ext-apcu": "APCu extension is required to use the APCu Adapter", + "ext-memcache": "Memcache extension is required to use the Memcache Adapter", + "ext-memcached": "Memcached extension is required to use the Memcached Adapter", + "ext-mongodb": "Mongodb extension required to use the Mongodb adapter", + "ext-redis": "Redis extension is required to use the Redis adapter", + "mongodb/mongodb": "Mongodb lib required to use the Mongodb adapter" }, - "bin": [ - "bin/lessc" - ], "type": "library", "autoload": { - "psr-0": { - "Less": "lib/" + "psr-4": { + "Cache\\": "src/" }, - "classmap": [ - "lessc.inc.php" + "exclude-from-classmap": [ + "**/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "Apache-2.0" + "MIT" ], "authors": [ { - "name": "Josh Schmidt", - "homepage": "https://github.com/oyejorge" - }, - { - "name": "Matt Agar", - "homepage": "https://github.com/agar" + "name": "Aaron Scherer", + "email": "aequasi@gmail.com", + "homepage": "https://github.com/aequasi" }, { - "name": "Martin Jantošovič", - "homepage": "https://github.com/Mordred" + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" } ], - "description": "PHP port of the Javascript version of LESS http://lesscss.org (Originally maintained by Josh Schmidt)", + "description": "Library of all the php-cache adapters", + "homepage": "http://www.php-cache.com/en/latest/", "keywords": [ - "css", - "less", - "less.js", - "lesscss", - "php", - "stylesheet" - ], - "time": "2019-11-06T18:30:11+00:00" - }, - { - "name": "yotpo/magento2-module-yotpo-reviews", - "version": "3.1.1", - "dist": { - "type": "zip", - "url": "https://repo.magento.com/archives/yotpo/magento2-module-yotpo-reviews/yotpo-magento2-module-yotpo-reviews-3.1.1.0.zip", - "shasum": "2a7c0636c17d5b698b89d49cadd429709a2b477b" - }, - "require": { - "magento/framework": "103.0.*", - "magento/module-analytics": "*", - "magento/module-backend": "102.0.*", - "magento/module-catalog": "104.0.*", - "magento/module-checkout": "100.4.*", - "magento/module-config": "101.2.*", - "magento/module-grouped-product": "100.4.*", - "magento/module-reports": "^100", - "magento/module-review": "100.4.*", - "magento/module-sales": "102.1.*||^103.0", - "magento/module-store": "101.1.*", - "php": "~7.1.3||~7.2.0||~7.3.0||~7.4.0" - }, - "replace": { - "yotpo/module-review": "*", - "yotpo/module-yotpo": "*" - }, - "type": "magento2-module", - "autoload": { - "files": [ - "registration.php" - ], - "psr-4": { - "Yotpo\\Yotpo\\": "" - } - }, - "license": [ - "OSL-3.0", - "AFL-3.0" - ], - "description": "Yotpo Reviews extension for Magento2" - }, - { - "name": "yotpo/magento2-module-yotpo-reviews-bundle", - "version": "3.1.1", - "dist": { - "type": "zip", - "url": "https://repo.magento.com/archives/yotpo/magento2-module-yotpo-reviews-bundle/yotpo-magento2-module-yotpo-reviews-bundle-3.1.1.0.zip", - "shasum": "72da94c9906f5a140aeead630c7cbd2cafecf2f2" - }, - "require": { - "yotpo/magento2-module-yotpo-reviews": "3.1.1" - }, - "type": "metapackage", - "license": [ - "OSL-3.0", - "AFL-3.0" + "cache", + "psr6" ], - "description": "Bundling metapackage for yotpo/magento2-module-yotpo-reviews: Yotpo Reviews extension for Magento2" - } - ], - "packages-dev": [ + "time": "2017-03-28T16:08:48+00:00" + }, { - "name": "allure-framework/allure-codeception", - "version": "1.4.3", + "name": "codeception/codeception", + "version": "4.1.8", "source": { "type": "git", - "url": "https://github.com/allure-framework/allure-codeception.git", - "reference": "9e0e25f8960fa5ac17c65c932ea8153ce6700713" + "url": "https://github.com/Codeception/Codeception.git", + "reference": "41036e8af66e727c4587012f0366b7f0576a99da" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/allure-framework/allure-codeception/zipball/9e0e25f8960fa5ac17c65c932ea8153ce6700713", - "reference": "9e0e25f8960fa5ac17c65c932ea8153ce6700713", + "url": "https://api.github.com/repos/Codeception/Codeception/zipball/41036e8af66e727c4587012f0366b7f0576a99da", + "reference": "41036e8af66e727c4587012f0366b7f0576a99da", "shasum": "" }, "require": { - "allure-framework/allure-php-api": "~1.1.8", - "codeception/codeception": "^2.3|^3.0|^4.0", - "php": ">=5.6", - "symfony/filesystem": ">=2.6", - "symfony/finder": ">=2.6" + "behat/gherkin": "^4.4.0", + "codeception/lib-asserts": "^1.0", + "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.1.1 | ^9.0", + "codeception/stub": "^2.0 | ^3.0", + "ext-curl": "*", + "ext-json": "*", + "ext-mbstring": "*", + "guzzlehttp/psr7": "~1.4", + "php": ">=5.6.0 <8.0", + "symfony/console": ">=2.7 <6.0", + "symfony/css-selector": ">=2.7 <6.0", + "symfony/event-dispatcher": ">=2.7 <6.0", + "symfony/finder": ">=2.7 <6.0", + "symfony/yaml": ">=2.7 <6.0" + }, + "require-dev": { + "codeception/module-asserts": "*@dev", + "codeception/module-cli": "*@dev", + "codeception/module-db": "*@dev", + "codeception/module-filesystem": "*@dev", + "codeception/module-phpbrowser": "*@dev", + "codeception/specify": "~0.3", + "codeception/util-universalframework": "*@dev", + "monolog/monolog": "~1.8", + "squizlabs/php_codesniffer": "~2.0", + "symfony/process": ">=2.7 <6.0", + "vlucas/phpdotenv": "^2.0 | ^3.0 | ^4.0" + }, + "suggest": { + "codeception/specify": "BDD-style code blocks", + "codeception/verify": "BDD-style assertions", + "hoa/console": "For interactive console functionality", + "stecman/symfony-console-completion": "For BASH autocompletion", + "symfony/phpunit-bridge": "For phpunit-bridge support" }, + "bin": [ + "codecept" + ], "type": "library", + "extra": { + "branch-alias": [] + }, "autoload": { - "psr-0": { - "Yandex": "src/" + "psr-4": { + "Codeception\\": "src/Codeception", + "Codeception\\Extension\\": "ext" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "Apache-2.0" + "MIT" ], "authors": [ { - "name": "Ivan Krutov", - "email": "vania-pooh@yandex-team.ru", - "role": "Developer" + "name": "Michael Bodnarchuk", + "email": "davert@mail.ua", + "homepage": "http://codegyre.com" } ], - "description": "A Codeception adapter for Allure report.", - "homepage": "http://allure.qatools.ru/", + "description": "BDD-style testing framework", + "homepage": "http://codeception.com/", "keywords": [ - "allure", - "attachments", - "cases", - "codeception", - "report", - "steps", - "testing" + "BDD", + "TDD", + "acceptance testing", + "functional testing", + "unit testing" ], - "time": "2020-03-13T11:07:13+00:00" + "funding": [ + { + "url": "https://opencollective.com/codeception", + "type": "open_collective" + } + ], + "time": "2020-10-11T17:54:58+00:00" }, { - "name": "allure-framework/allure-php-api", - "version": "1.1.8", + "name": "codeception/lib-asserts", + "version": "1.13.1", "source": { "type": "git", - "url": "https://github.com/allure-framework/allure-php-commons.git", - "reference": "5ae2deac1c7e1b992cfa572167370de45bdd346d" + "url": "https://github.com/Codeception/lib-asserts.git", + "reference": "263ef0b7eff80643e82f4cf55351eca553a09a10" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/allure-framework/allure-php-commons/zipball/5ae2deac1c7e1b992cfa572167370de45bdd346d", - "reference": "5ae2deac1c7e1b992cfa572167370de45bdd346d", + "url": "https://api.github.com/repos/Codeception/lib-asserts/zipball/263ef0b7eff80643e82f4cf55351eca553a09a10", + "reference": "263ef0b7eff80643e82f4cf55351eca553a09a10", "shasum": "" }, "require": { - "jms/serializer": "^0.16 || ^1.0", - "php": ">=5.4.0", - "ramsey/uuid": "^3.0", - "symfony/http-foundation": "^2.0 || ^3.0 || ^4.0 || ^5.0" - }, - "require-dev": { - "phpunit/phpunit": "^4.0.0" + "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.0.3 | ^9.0", + "ext-dom": "*", + "php": ">=5.6.0 <8.0" }, "type": "library", "autoload": { - "psr-0": { - "Yandex": [ - "src/", - "test/" - ] - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "Apache-2.0" + "MIT" ], "authors": [ { - "name": "Ivan Krutov", - "email": "vania-pooh@yandex-team.ru", - "role": "Developer" + "name": "Michael Bodnarchuk", + "email": "davert@mail.ua", + "homepage": "http://codegyre.com" + }, + { + "name": "Gintautas Miselis" + }, + { + "name": "Gustavo Nieves", + "homepage": "https://medium.com/@ganieves" } ], - "description": "PHP API for Allure adapter", - "homepage": "http://allure.qatools.ru/", + "description": "Assertion methods used by Codeception core and Asserts module", + "homepage": "https://codeception.com/", "keywords": [ - "allure", - "api", - "php", - "report" + "codeception" ], - "time": "2020-03-13T10:47:35+00:00" + "time": "2020-08-28T07:49:36+00:00" }, { - "name": "allure-framework/allure-phpunit", - "version": "1.2.4", + "name": "codeception/module-asserts", + "version": "1.3.0", "source": { "type": "git", - "url": "https://github.com/allure-framework/allure-phpunit.git", - "reference": "9399629c6eed79da4be18fd22adf83ef36c2d2e0" + "url": "https://github.com/Codeception/module-asserts.git", + "reference": "32e5be519faaeb60ed3692383dcd1b3390ec2667" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/allure-framework/allure-phpunit/zipball/9399629c6eed79da4be18fd22adf83ef36c2d2e0", - "reference": "9399629c6eed79da4be18fd22adf83ef36c2d2e0", + "url": "https://api.github.com/repos/Codeception/module-asserts/zipball/32e5be519faaeb60ed3692383dcd1b3390ec2667", + "reference": "32e5be519faaeb60ed3692383dcd1b3390ec2667", "shasum": "" }, "require": { - "allure-framework/allure-php-api": "~1.1.0", - "mikey179/vfsstream": "1.*", - "php": ">=7.1.0", - "phpunit/phpunit": ">=7.0.0" + "codeception/codeception": "*@dev", + "codeception/lib-asserts": "^1.13.1", + "php": ">=5.6.0 <8.0" + }, + "conflict": { + "codeception/codeception": "<4.0" + }, + "require-dev": { + "codeception/util-robohelpers": "dev-master" }, "type": "library", "autoload": { - "psr-0": { - "Yandex": "src/" - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "Apache-2.0" + "MIT" ], "authors": [ { - "name": "Ivan Krutov", - "email": "vania-pooh@yandex-team.ru", - "role": "Developer" + "name": "Michael Bodnarchuk" + }, + { + "name": "Gintautas Miselis" + }, + { + "name": "Gustavo Nieves", + "homepage": "https://medium.com/@ganieves" } ], - "description": "A PHPUnit adapter for Allure report.", - "homepage": "http://allure.qatools.ru/", + "description": "Codeception module containing various assertions", + "homepage": "https://codeception.com/", "keywords": [ - "allure", - "attachments", - "cases", - "phpunit", - "report", - "steps", - "testing" + "assertions", + "asserts", + "codeception" ], - "time": "2018-10-25T12:03:54+00:00" + "time": "2020-08-28T08:06:29+00:00" }, { - "name": "aws/aws-sdk-php", - "version": "3.147.6", + "name": "codeception/module-sequence", + "version": "1.0.0", "source": { "type": "git", - "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "a487671fc722b839c647d7dc4907bfb485f956db" + "url": "https://github.com/Codeception/module-sequence.git", + "reference": "70563527b768194d6ab22e1ff943a5e69741c5dd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/a487671fc722b839c647d7dc4907bfb485f956db", - "reference": "a487671fc722b839c647d7dc4907bfb485f956db", + "url": "https://api.github.com/repos/Codeception/module-sequence/zipball/70563527b768194d6ab22e1ff943a5e69741c5dd", + "reference": "70563527b768194d6ab22e1ff943a5e69741c5dd", "shasum": "" }, "require": { - "ext-json": "*", - "ext-pcre": "*", - "ext-simplexml": "*", - "guzzlehttp/guzzle": "^5.3.3|^6.2.1|^7.0", - "guzzlehttp/promises": "^1.0", - "guzzlehttp/psr7": "^1.4.1", - "mtdowling/jmespath.php": "^2.5", - "php": ">=5.5" + "codeception/codeception": "4.0.x-dev | ^4.0", + "php": ">=5.6.0 <8.0" }, "require-dev": { - "andrewsville/php-token-reflection": "^1.4", - "aws/aws-php-sns-message-validator": "~1.0", - "behat/behat": "~3.0", - "doctrine/cache": "~1.4", - "ext-dom": "*", - "ext-openssl": "*", - "ext-pcntl": "*", - "ext-sockets": "*", - "nette/neon": "^2.3", - "paragonie/random_compat": ">= 2", - "phpunit/phpunit": "^4.8.35|^5.4.3", - "psr/cache": "^1.0", - "psr/simple-cache": "^1.0", - "sebastian/comparator": "^1.2.3" - }, - "suggest": { - "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications", - "doctrine/cache": "To use the DoctrineCacheAdapter", - "ext-curl": "To send requests using cURL", - "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages", - "ext-sockets": "To use client-side monitoring" + "codeception/util-robohelpers": "dev-master" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.0-dev" - } - }, "autoload": { - "psr-4": { - "Aws\\": "src/" - }, - "files": [ - "src/functions.php" + "classmap": [ + "src/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "Apache-2.0" + "MIT" ], "authors": [ { - "name": "Amazon Web Services", - "homepage": "http://aws.amazon.com" + "name": "Michael Bodnarchuk" } ], - "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project", - "homepage": "http://aws.amazon.com/sdkforphp", - "keywords": [ - "amazon", - "aws", - "cloud", - "dynamodb", - "ec2", - "glacier", - "s3", - "sdk" + "description": "Sequence module for Codeception", + "homepage": "http://codeception.com/", + "keywords": [ + "codeception" ], - "time": "2020-07-27T18:13:59+00:00" + "time": "2019-10-10T12:08:50+00:00" }, { - "name": "behat/gherkin", - "version": "v4.6.2", + "name": "codeception/module-webdriver", + "version": "1.1.2", "source": { "type": "git", - "url": "https://github.com/Behat/Gherkin.git", - "reference": "51ac4500c4dc30cbaaabcd2f25694299df666a31" + "url": "https://github.com/Codeception/module-webdriver.git", + "reference": "d055c645f600e991e33d1f289a9645eee46c384e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Behat/Gherkin/zipball/51ac4500c4dc30cbaaabcd2f25694299df666a31", - "reference": "51ac4500c4dc30cbaaabcd2f25694299df666a31", + "url": "https://api.github.com/repos/Codeception/module-webdriver/zipball/d055c645f600e991e33d1f289a9645eee46c384e", + "reference": "d055c645f600e991e33d1f289a9645eee46c384e", "shasum": "" }, "require": { - "php": ">=5.3.1" + "codeception/codeception": "^4.0", + "php": ">=5.6.0 <8.0", + "php-webdriver/webdriver": "^1.6.0" }, "require-dev": { - "phpunit/phpunit": "~4.5|~5", - "symfony/phpunit-bridge": "~2.7|~3|~4", - "symfony/yaml": "~2.3|~3|~4" + "codeception/util-robohelpers": "dev-master" }, "suggest": { - "symfony/yaml": "If you want to parse features, represented in YAML files" + "codeception/phpbuiltinserver": "Start and stop PHP built-in web server for your tests" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.4-dev" - } - }, "autoload": { - "psr-0": { - "Behat\\Gherkin": "src/" - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -23005,91 +24267,51 @@ ], "authors": [ { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "http://everzet.com" + "name": "Michael Bodnarchuk" + }, + { + "name": "Gintautas Miselis" + }, + { + "name": "Zaahid Bateson" } ], - "description": "Gherkin DSL parser for PHP 5.3", - "homepage": "http://behat.org/", + "description": "WebDriver module for Codeception", + "homepage": "http://codeception.com/", "keywords": [ - "BDD", - "Behat", - "Cucumber", - "DSL", - "gherkin", - "parser" + "acceptance-testing", + "browser-testing", + "codeception" ], - "time": "2020-03-17T14:03:26+00:00" + "time": "2020-10-11T18:54:47+00:00" }, { - "name": "cache/cache", - "version": "0.4.0", + "name": "codeception/phpunit-wrapper", + "version": "9.0.5", "source": { "type": "git", - "url": "https://github.com/php-cache/cache.git", - "reference": "902b2e5b54ea57e3a801437748652228c4c58604" + "url": "https://github.com/Codeception/phpunit-wrapper.git", + "reference": "72bac7770866799e23a7dda1ac6bec2f8baccf45" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-cache/cache/zipball/902b2e5b54ea57e3a801437748652228c4c58604", - "reference": "902b2e5b54ea57e3a801437748652228c4c58604", + "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/72bac7770866799e23a7dda1ac6bec2f8baccf45", + "reference": "72bac7770866799e23a7dda1ac6bec2f8baccf45", "shasum": "" }, "require": { - "doctrine/cache": "^1.3", - "league/flysystem": "^1.0", - "php": "^5.6 || ^7.0", - "psr/cache": "^1.0", - "psr/log": "^1.0", - "psr/simple-cache": "^1.0" - }, - "conflict": { - "cache/adapter-common": "*", - "cache/apc-adapter": "*", - "cache/apcu-adapter": "*", - "cache/array-adapter": "*", - "cache/chain-adapter": "*", - "cache/doctrine-adapter": "*", - "cache/filesystem-adapter": "*", - "cache/hierarchical-cache": "*", - "cache/illuminate-adapter": "*", - "cache/memcache-adapter": "*", - "cache/memcached-adapter": "*", - "cache/mongodb-adapter": "*", - "cache/predis-adapter": "*", - "cache/psr-6-doctrine-bridge": "*", - "cache/redis-adapter": "*", - "cache/session-handler": "*", - "cache/taggable-cache": "*", - "cache/void-adapter": "*" + "php": ">=7.2", + "phpunit/phpunit": "^9.0" }, "require-dev": { - "cache/integration-tests": "^0.16", - "defuse/php-encryption": "^2.0", - "illuminate/cache": "^5.4", - "mockery/mockery": "^0.9", - "phpunit/phpunit": "^4.0 || ^5.1", - "predis/predis": "^1.0", - "symfony/cache": "dev-master" - }, - "suggest": { - "ext-apc": "APC extension is required to use the APC Adapter", - "ext-apcu": "APCu extension is required to use the APCu Adapter", - "ext-memcache": "Memcache extension is required to use the Memcache Adapter", - "ext-memcached": "Memcached extension is required to use the Memcached Adapter", - "ext-mongodb": "Mongodb extension required to use the Mongodb adapter", - "ext-redis": "Redis extension is required to use the Redis adapter", - "mongodb/mongodb": "Mongodb lib required to use the Mongodb adapter" + "codeception/specify": "*", + "vlucas/phpdotenv": "^3.0" }, "type": "library", "autoload": { "psr-4": { - "Cache\\": "src/" - }, - "exclude-from-classmap": [ - "**/Tests/" - ] + "Codeception\\PHPUnit\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -23097,85 +24319,79 @@ ], "authors": [ { - "name": "Aaron Scherer", - "email": "aequasi@gmail.com", - "homepage": "https://github.com/aequasi" + "name": "Davert", + "email": "davert.php@resend.cc" }, { - "name": "Tobias Nyholm", - "email": "tobias.nyholm@gmail.com", - "homepage": "https://github.com/Nyholm" + "name": "Naktibalda" } ], - "description": "Library of all the php-cache adapters", - "homepage": "http://www.php-cache.com/en/latest/", - "keywords": [ - "cache", - "psr6" + "description": "PHPUnit classes used by Codeception", + "time": "2020-10-11T18:14:42+00:00" + }, + { + "name": "codeception/stub", + "version": "3.7.0", + "source": { + "type": "git", + "url": "https://github.com/Codeception/Stub.git", + "reference": "468dd5fe659f131fc997f5196aad87512f9b1304" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Codeception/Stub/zipball/468dd5fe659f131fc997f5196aad87512f9b1304", + "reference": "468dd5fe659f131fc997f5196aad87512f9b1304", + "shasum": "" + }, + "require": { + "phpunit/phpunit": "^8.4 | ^9.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Codeception\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" ], - "time": "2017-03-28T16:08:48+00:00" + "description": "Flexible Stub wrapper for PHPUnit's Mock Builder", + "time": "2020-07-03T15:54:43+00:00" }, { - "name": "codeception/codeception", - "version": "4.1.6", + "name": "csharpru/vault-php", + "version": "3.5.3", "source": { "type": "git", - "url": "https://github.com/Codeception/Codeception.git", - "reference": "5515b6a6c6f1e1c909aaff2e5f3a15c177dfd1a9" + "url": "https://github.com/CSharpRU/vault-php.git", + "reference": "04be9776310fe7d1afb97795645f95c21e6b4fcf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/Codeception/zipball/5515b6a6c6f1e1c909aaff2e5f3a15c177dfd1a9", - "reference": "5515b6a6c6f1e1c909aaff2e5f3a15c177dfd1a9", + "url": "https://api.github.com/repos/CSharpRU/vault-php/zipball/04be9776310fe7d1afb97795645f95c21e6b4fcf", + "reference": "04be9776310fe7d1afb97795645f95c21e6b4fcf", "shasum": "" }, "require": { - "behat/gherkin": "^4.4.0", - "codeception/lib-asserts": "^1.0", - "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.1.1 | ^9.0", - "codeception/stub": "^2.0 | ^3.0", - "ext-curl": "*", - "ext-json": "*", - "ext-mbstring": "*", - "guzzlehttp/psr7": "~1.4", - "php": ">=5.6.0 <8.0", - "symfony/console": ">=2.7 <6.0", - "symfony/css-selector": ">=2.7 <6.0", - "symfony/event-dispatcher": ">=2.7 <6.0", - "symfony/finder": ">=2.7 <6.0", - "symfony/yaml": ">=2.7 <6.0" + "cache/cache": "^0.4.0", + "doctrine/inflector": "~1.1.0", + "guzzlehttp/promises": "^1.3", + "guzzlehttp/psr7": "^1.4", + "psr/cache": "^1.0", + "psr/log": "^1.0", + "weew/helpers-array": "^1.3" }, "require-dev": { - "codeception/module-asserts": "*@dev", - "codeception/module-cli": "*@dev", - "codeception/module-db": "*@dev", - "codeception/module-filesystem": "*@dev", - "codeception/module-phpbrowser": "*@dev", - "codeception/specify": "~0.3", - "codeception/util-universalframework": "*@dev", - "monolog/monolog": "~1.8", - "squizlabs/php_codesniffer": "~2.0", - "symfony/process": ">=2.7 <6.0", - "vlucas/phpdotenv": "^2.0 | ^3.0 | ^4.0" - }, - "suggest": { - "codeception/specify": "BDD-style code blocks", - "codeception/verify": "BDD-style assertions", - "hoa/console": "For interactive console functionality", - "stecman/symfony-console-completion": "For BASH autocompletion", - "symfony/phpunit-bridge": "For phpunit-bridge support" + "codacy/coverage": "^1.1", + "codeception/codeception": "^2.2", + "csharpru/vault-php-guzzle6-transport": "~2.0", + "php-vcr/php-vcr": "^1.3" }, - "bin": [ - "codecept" - ], "type": "library", - "extra": { - "branch-alias": [] - }, "autoload": { "psr-4": { - "Codeception\\": "src/Codeception", - "Codeception\\Extension\\": "ext" + "Vault\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -23184,51 +24400,83 @@ ], "authors": [ { - "name": "Michael Bodnarchuk", - "email": "davert@mail.ua", - "homepage": "http://codegyre.com" + "name": "Yaroslav Lukyanov", + "email": "c_sharp@mail.ru" } ], - "description": "BDD-style testing framework", - "homepage": "http://codeception.com/", - "keywords": [ - "BDD", - "TDD", - "acceptance testing", - "functional testing", - "unit testing" + "description": "Best Vault client for PHP that you can find", + "time": "2018-04-28T04:52:17+00:00" + }, + { + "name": "csharpru/vault-php-guzzle6-transport", + "version": "2.0.4", + "source": { + "type": "git", + "url": "https://github.com/CSharpRU/vault-php-guzzle6-transport.git", + "reference": "33c392120ac9f253b62b034e0e8ffbbdb3513bd8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/CSharpRU/vault-php-guzzle6-transport/zipball/33c392120ac9f253b62b034e0e8ffbbdb3513bd8", + "reference": "33c392120ac9f253b62b034e0e8ffbbdb3513bd8", + "shasum": "" + }, + "require": { + "guzzlehttp/guzzle": "~6.2", + "guzzlehttp/promises": "^1.3", + "guzzlehttp/psr7": "^1.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "VaultTransports\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" ], - "funding": [ + "authors": [ { - "url": "https://opencollective.com/codeception", - "type": "open_collective" + "name": "Yaroslav Lukyanov", + "email": "c_sharp@mail.ru" } ], - "time": "2020-06-07T16:31:51+00:00" + "description": "Guzzle6 transport for Vault PHP client", + "time": "2019-03-10T06:17:37+00:00" }, { - "name": "codeception/lib-asserts", - "version": "1.12.0", + "name": "dealerdirect/phpcodesniffer-composer-installer", + "version": "v0.5.0", "source": { "type": "git", - "url": "https://github.com/Codeception/lib-asserts.git", - "reference": "acd0dc8b394595a74b58dcc889f72569ff7d8e71" + "url": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer.git", + "reference": "e749410375ff6fb7a040a68878c656c2e610b132" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/lib-asserts/zipball/acd0dc8b394595a74b58dcc889f72569ff7d8e71", - "reference": "acd0dc8b394595a74b58dcc889f72569ff7d8e71", + "url": "https://api.github.com/repos/Dealerdirect/phpcodesniffer-composer-installer/zipball/e749410375ff6fb7a040a68878c656c2e610b132", + "reference": "e749410375ff6fb7a040a68878c656c2e610b132", "shasum": "" }, "require": { - "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.0.3 | ^9.0", - "php": ">=5.6.0 <8.0" + "composer-plugin-api": "^1.0", + "php": "^5.3|^7", + "squizlabs/php_codesniffer": "^2|^3" + }, + "require-dev": { + "composer/composer": "*", + "phpcompatibility/php-compatibility": "^9.0", + "sensiolabs/security-checker": "^4.1.0" + }, + "type": "composer-plugin", + "extra": { + "class": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin" }, - "type": "library", "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -23236,51 +24484,67 @@ ], "authors": [ { - "name": "Michael Bodnarchuk", - "email": "davert@mail.ua", - "homepage": "http://codegyre.com" - }, - { - "name": "Gintautas Miselis" + "name": "Franck Nijhof", + "email": "franck.nijhof@dealerdirect.com", + "homepage": "http://www.frenck.nl", + "role": "Developer / IT Manager" } ], - "description": "Assertion methods used by Codeception core and Asserts module", - "homepage": "http://codeception.com/", + "description": "PHP_CodeSniffer Standards Composer Installer Plugin", + "homepage": "http://www.dealerdirect.com", "keywords": [ - "codeception" + "PHPCodeSniffer", + "PHP_CodeSniffer", + "code quality", + "codesniffer", + "composer", + "installer", + "phpcs", + "plugin", + "qa", + "quality", + "standard", + "standards", + "style guide", + "stylecheck", + "tests" ], - "time": "2020-04-17T18:20:46+00:00" + "time": "2018-10-26T13:21:45+00:00" }, { - "name": "codeception/module-asserts", - "version": "1.2.1", + "name": "doctrine/annotations", + "version": "1.10.4", "source": { "type": "git", - "url": "https://github.com/Codeception/module-asserts.git", - "reference": "79f13d05b63f2fceba4d0e78044bab668c9b2a6b" + "url": "https://github.com/doctrine/annotations.git", + "reference": "bfe91e31984e2ba76df1c1339681770401ec262f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/module-asserts/zipball/79f13d05b63f2fceba4d0e78044bab668c9b2a6b", - "reference": "79f13d05b63f2fceba4d0e78044bab668c9b2a6b", + "url": "https://api.github.com/repos/doctrine/annotations/zipball/bfe91e31984e2ba76df1c1339681770401ec262f", + "reference": "bfe91e31984e2ba76df1c1339681770401ec262f", "shasum": "" }, "require": { - "codeception/codeception": "*@dev", - "codeception/lib-asserts": "^1.12.0", - "php": ">=5.6.0 <8.0" - }, - "conflict": { - "codeception/codeception": "<4.0" + "doctrine/lexer": "1.*", + "ext-tokenizer": "*", + "php": "^7.1 || ^8.0" }, "require-dev": { - "codeception/util-robohelpers": "dev-master" + "doctrine/cache": "1.*", + "phpstan/phpstan": "^0.12.20", + "phpunit/phpunit": "^7.5 || ^9.1.5" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.9.x-dev" + } + }, "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -23288,47 +24552,75 @@ ], "authors": [ { - "name": "Michael Bodnarchuk" + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" }, { - "name": "Gintautas Miselis" + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" } ], - "description": "Codeception module containing various assertions", - "homepage": "http://codeception.com/", + "description": "Docblock Annotations Parser", + "homepage": "http://www.doctrine-project.org", "keywords": [ - "assertions", - "asserts", - "codeception" + "annotations", + "docblock", + "parser" ], - "time": "2020-04-20T07:26:11+00:00" + "time": "2020-08-10T19:35:50+00:00" }, { - "name": "codeception/module-sequence", - "version": "1.0.0", + "name": "doctrine/cache", + "version": "1.10.2", "source": { "type": "git", - "url": "https://github.com/Codeception/module-sequence.git", - "reference": "70563527b768194d6ab22e1ff943a5e69741c5dd" + "url": "https://github.com/doctrine/cache.git", + "reference": "13e3381b25847283a91948d04640543941309727" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/module-sequence/zipball/70563527b768194d6ab22e1ff943a5e69741c5dd", - "reference": "70563527b768194d6ab22e1ff943a5e69741c5dd", + "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727", + "reference": "13e3381b25847283a91948d04640543941309727", "shasum": "" }, "require": { - "codeception/codeception": "4.0.x-dev | ^4.0", - "php": ">=5.6.0 <8.0" + "php": "~7.1 || ^8.0" + }, + "conflict": { + "doctrine/common": ">2.2,<2.4" }, "require-dev": { - "codeception/util-robohelpers": "dev-master" + "alcaeus/mongo-php-adapter": "^1.1", + "doctrine/coding-standard": "^6.0", + "mongodb/mongodb": "^1.1", + "phpunit/phpunit": "^7.0", + "predis/predis": "~1.0" + }, + "suggest": { + "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.9.x-dev" + } + }, "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -23336,46 +24628,85 @@ ], "authors": [ { - "name": "Michael Bodnarchuk" + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" } ], - "description": "Sequence module for Codeception", - "homepage": "http://codeception.com/", + "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.", + "homepage": "https://www.doctrine-project.org/projects/cache.html", "keywords": [ - "codeception" + "abstraction", + "apcu", + "cache", + "caching", + "couchdb", + "memcached", + "php", + "redis", + "xcache" ], - "time": "2019-10-10T12:08:50+00:00" + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache", + "type": "tidelift" + } + ], + "time": "2020-07-07T18:54:01+00:00" }, { - "name": "codeception/module-webdriver", - "version": "1.1.0", + "name": "doctrine/inflector", + "version": "v1.1.0", "source": { "type": "git", - "url": "https://github.com/Codeception/module-webdriver.git", - "reference": "09c167817393090ce3dbce96027d94656b1963ce" + "url": "https://github.com/doctrine/inflector.git", + "reference": "90b2128806bfde671b6952ab8bea493942c1fdae" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/module-webdriver/zipball/09c167817393090ce3dbce96027d94656b1963ce", - "reference": "09c167817393090ce3dbce96027d94656b1963ce", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/90b2128806bfde671b6952ab8bea493942c1fdae", + "reference": "90b2128806bfde671b6952ab8bea493942c1fdae", "shasum": "" }, "require": { - "codeception/codeception": "^4.0", - "php": ">=5.6.0 <8.0", - "php-webdriver/webdriver": "^1.6.0" + "php": ">=5.3.2" }, "require-dev": { - "codeception/util-robohelpers": "dev-master" - }, - "suggest": { - "codeception/phpbuiltinserver": "Start and stop PHP built-in web server for your tests" + "phpunit/phpunit": "4.*" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1.x-dev" + } + }, "autoload": { - "classmap": [ - "src/" - ] + "psr-0": { + "Doctrine\\Common\\Inflector\\": "lib/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -23383,50 +24714,71 @@ ], "authors": [ { - "name": "Michael Bodnarchuk" + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" }, { - "name": "Gintautas Miselis" + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" }, { - "name": "Zaahid Bateson" + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" } ], - "description": "WebDriver module for Codeception", - "homepage": "http://codeception.com/", + "description": "Common String Manipulations with regard to casing and singular/plural rules.", + "homepage": "http://www.doctrine-project.org", "keywords": [ - "acceptance-testing", - "browser-testing", - "codeception" + "inflection", + "pluralize", + "singularize", + "string" ], - "time": "2020-05-31T08:47:24+00:00" + "time": "2015-11-06T14:35:42+00:00" }, { - "name": "codeception/phpunit-wrapper", - "version": "9.0.2", + "name": "doctrine/instantiator", + "version": "1.3.1", "source": { "type": "git", - "url": "https://github.com/Codeception/phpunit-wrapper.git", - "reference": "eb27243d8edde68593bf8d9ef5e9074734777931" + "url": "https://github.com/doctrine/instantiator.git", + "reference": "f350df0268e904597e3bd9c4685c53e0e333feea" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/eb27243d8edde68593bf8d9ef5e9074734777931", - "reference": "eb27243d8edde68593bf8d9ef5e9074734777931", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/f350df0268e904597e3bd9c4685c53e0e333feea", + "reference": "f350df0268e904597e3bd9c4685c53e0e333feea", "shasum": "" }, "require": { - "php": ">=7.2", - "phpunit/phpunit": "^9.0" + "php": "^7.1 || ^8.0" }, "require-dev": { - "codeception/specify": "*", - "vlucas/phpdotenv": "^3.0" + "doctrine/coding-standard": "^6.0", + "ext-pdo": "*", + "ext-phar": "*", + "phpbench/phpbench": "^0.13", + "phpstan/phpstan-phpunit": "^0.11", + "phpstan/phpstan-shim": "^0.11", + "phpunit/phpunit": "^7.0" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2.x-dev" + } + }, "autoload": { "psr-4": { - "Codeception\\PHPUnit\\": "src/" + "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" } }, "notification-url": "https://packagist.org/downloads/", @@ -23435,80 +24787,182 @@ ], "authors": [ { - "name": "Davert", - "email": "davert.php@resend.cc" + "name": "Marco Pivetta", + "email": "ocramius@gmail.com", + "homepage": "http://ocramius.github.com/" + } + ], + "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", + "homepage": "https://www.doctrine-project.org/projects/instantiator.html", + "keywords": [ + "constructor", + "instantiate" + ], + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" }, { - "name": "Naktibalda" + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator", + "type": "tidelift" } ], - "description": "PHPUnit classes used by Codeception", - "time": "2020-04-17T18:16:31+00:00" + "time": "2020-05-29T17:27:14+00:00" }, { - "name": "codeception/stub", - "version": "3.7.0", + "name": "doctrine/lexer", + "version": "1.2.1", "source": { "type": "git", - "url": "https://github.com/Codeception/Stub.git", - "reference": "468dd5fe659f131fc997f5196aad87512f9b1304" + "url": "https://github.com/doctrine/lexer.git", + "reference": "e864bbf5904cb8f5bb334f99209b48018522f042" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/Stub/zipball/468dd5fe659f131fc997f5196aad87512f9b1304", - "reference": "468dd5fe659f131fc997f5196aad87512f9b1304", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042", + "reference": "e864bbf5904cb8f5bb334f99209b48018522f042", "shasum": "" }, "require": { - "phpunit/phpunit": "^8.4 | ^9.0" + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^6.0", + "phpstan/phpstan": "^0.11.8", + "phpunit/phpunit": "^8.2" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2.x-dev" + } + }, "autoload": { "psr-4": { - "Codeception\\": "src/" + "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "description": "Flexible Stub wrapper for PHPUnit's Mock Builder", - "time": "2020-07-03T15:54:43+00:00" + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.", + "homepage": "https://www.doctrine-project.org/projects/lexer.html", + "keywords": [ + "annotations", + "docblock", + "lexer", + "parser", + "php" + ], + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer", + "type": "tidelift" + } + ], + "time": "2020-05-25T17:44:05+00:00" }, { - "name": "csharpru/vault-php", - "version": "3.5.3", + "name": "friendsofphp/php-cs-fixer", + "version": "v2.16.4", "source": { "type": "git", - "url": "https://github.com/CSharpRU/vault-php.git", - "reference": "04be9776310fe7d1afb97795645f95c21e6b4fcf" + "url": "https://github.com/FriendsOfPHP/PHP-CS-Fixer.git", + "reference": "1023c3458137ab052f6ff1e09621a721bfdeca13" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/CSharpRU/vault-php/zipball/04be9776310fe7d1afb97795645f95c21e6b4fcf", - "reference": "04be9776310fe7d1afb97795645f95c21e6b4fcf", + "url": "https://api.github.com/repos/FriendsOfPHP/PHP-CS-Fixer/zipball/1023c3458137ab052f6ff1e09621a721bfdeca13", + "reference": "1023c3458137ab052f6ff1e09621a721bfdeca13", "shasum": "" }, "require": { - "cache/cache": "^0.4.0", - "doctrine/inflector": "~1.1.0", - "guzzlehttp/promises": "^1.3", - "guzzlehttp/psr7": "^1.4", - "psr/cache": "^1.0", - "psr/log": "^1.0", - "weew/helpers-array": "^1.3" + "composer/semver": "^1.4", + "composer/xdebug-handler": "^1.2", + "doctrine/annotations": "^1.2", + "ext-json": "*", + "ext-tokenizer": "*", + "php": "^5.6 || ^7.0", + "php-cs-fixer/diff": "^1.3", + "symfony/console": "^3.4.17 || ^4.1.6 || ^5.0", + "symfony/event-dispatcher": "^3.0 || ^4.0 || ^5.0", + "symfony/filesystem": "^3.0 || ^4.0 || ^5.0", + "symfony/finder": "^3.0 || ^4.0 || ^5.0", + "symfony/options-resolver": "^3.0 || ^4.0 || ^5.0", + "symfony/polyfill-php70": "^1.0", + "symfony/polyfill-php72": "^1.4", + "symfony/process": "^3.0 || ^4.0 || ^5.0", + "symfony/stopwatch": "^3.0 || ^4.0 || ^5.0" }, "require-dev": { - "codacy/coverage": "^1.1", - "codeception/codeception": "^2.2", - "csharpru/vault-php-guzzle6-transport": "~2.0", - "php-vcr/php-vcr": "^1.3" + "johnkary/phpunit-speedtrap": "^1.1 || ^2.0 || ^3.0", + "justinrainbow/json-schema": "^5.0", + "keradus/cli-executor": "^1.2", + "mikey179/vfsstream": "^1.6", + "php-coveralls/php-coveralls": "^2.1", + "php-cs-fixer/accessible-object": "^1.0", + "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.1", + "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.1", + "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.1", + "phpunitgoodpractices/traits": "^1.8", + "symfony/phpunit-bridge": "^5.1", + "symfony/yaml": "^3.0 || ^4.0 || ^5.0" }, - "type": "library", + "suggest": { + "ext-dom": "For handling output formats in XML", + "ext-mbstring": "For handling non-UTF8 characters.", + "php-cs-fixer/phpunit-constraint-isidenticalstring": "For IsIdenticalString constraint.", + "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "For XmlMatchesXsd constraint.", + "symfony/polyfill-mbstring": "When enabling `ext-mbstring` is not possible." + }, + "bin": [ + "php-cs-fixer" + ], + "type": "application", "autoload": { "psr-4": { - "Vault\\": "src/" - } + "PhpCsFixer\\": "src/" + }, + "classmap": [ + "tests/Test/AbstractFixerTestCase.php", + "tests/Test/AbstractIntegrationCaseFactory.php", + "tests/Test/AbstractIntegrationTestCase.php", + "tests/Test/Assert/AssertTokensTrait.php", + "tests/Test/IntegrationCase.php", + "tests/Test/IntegrationCaseFactory.php", + "tests/Test/IntegrationCaseFactoryInterface.php", + "tests/Test/InternalIntegrationCaseFactory.php", + "tests/Test/IsIdenticalConstraint.php", + "tests/TestCase.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -23516,591 +24970,571 @@ ], "authors": [ { - "name": "Yaroslav Lukyanov", - "email": "c_sharp@mail.ru" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Dariusz Rumiński", + "email": "dariusz.ruminski@gmail.com" } ], - "description": "Best Vault client for PHP that you can find", - "time": "2018-04-28T04:52:17+00:00" + "description": "A tool to automatically fix PHP code style", + "funding": [ + { + "url": "https://github.com/keradus", + "type": "github" + } + ], + "time": "2020-06-27T23:57:46+00:00" }, { - "name": "csharpru/vault-php-guzzle6-transport", - "version": "2.0.4", + "name": "hoa/consistency", + "version": "1.17.05.02", "source": { "type": "git", - "url": "https://github.com/CSharpRU/vault-php-guzzle6-transport.git", - "reference": "33c392120ac9f253b62b034e0e8ffbbdb3513bd8" + "url": "https://github.com/hoaproject/Consistency.git", + "reference": "fd7d0adc82410507f332516faf655b6ed22e4c2f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/CSharpRU/vault-php-guzzle6-transport/zipball/33c392120ac9f253b62b034e0e8ffbbdb3513bd8", - "reference": "33c392120ac9f253b62b034e0e8ffbbdb3513bd8", + "url": "https://api.github.com/repos/hoaproject/Consistency/zipball/fd7d0adc82410507f332516faf655b6ed22e4c2f", + "reference": "fd7d0adc82410507f332516faf655b6ed22e4c2f", "shasum": "" }, "require": { - "guzzlehttp/guzzle": "~6.2", - "guzzlehttp/promises": "^1.3", - "guzzlehttp/psr7": "^1.4" + "hoa/exception": "~1.0", + "php": ">=5.5.0" + }, + "require-dev": { + "hoa/stream": "~1.0", + "hoa/test": "~2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } }, - "type": "library", "autoload": { "psr-4": { - "VaultTransports\\": "src/" - } + "Hoa\\Consistency\\": "." + }, + "files": [ + "Prelude.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Yaroslav Lukyanov", - "email": "c_sharp@mail.ru" + "name": "Ivan Enderlin", + "email": "ivan.enderlin@hoa-project.net" + }, + { + "name": "Hoa community", + "homepage": "https://hoa-project.net/" } ], - "description": "Guzzle6 transport for Vault PHP client", - "time": "2019-03-10T06:17:37+00:00" + "description": "The Hoa\\Consistency library.", + "homepage": "https://hoa-project.net/", + "keywords": [ + "autoloader", + "callable", + "consistency", + "entity", + "flex", + "keyword", + "library" + ], + "time": "2017-05-02T12:18:12+00:00" }, { - "name": "dealerdirect/phpcodesniffer-composer-installer", - "version": "v0.5.0", + "name": "hoa/console", + "version": "3.17.05.02", "source": { "type": "git", - "url": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer.git", - "reference": "e749410375ff6fb7a040a68878c656c2e610b132" + "url": "https://github.com/hoaproject/Console.git", + "reference": "e231fd3ea70e6d773576ae78de0bdc1daf331a66" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Dealerdirect/phpcodesniffer-composer-installer/zipball/e749410375ff6fb7a040a68878c656c2e610b132", - "reference": "e749410375ff6fb7a040a68878c656c2e610b132", + "url": "https://api.github.com/repos/hoaproject/Console/zipball/e231fd3ea70e6d773576ae78de0bdc1daf331a66", + "reference": "e231fd3ea70e6d773576ae78de0bdc1daf331a66", "shasum": "" }, "require": { - "composer-plugin-api": "^1.0", - "php": "^5.3|^7", - "squizlabs/php_codesniffer": "^2|^3" + "hoa/consistency": "~1.0", + "hoa/event": "~1.0", + "hoa/exception": "~1.0", + "hoa/file": "~1.0", + "hoa/protocol": "~1.0", + "hoa/stream": "~1.0", + "hoa/ustring": "~4.0" }, "require-dev": { - "composer/composer": "*", - "phpcompatibility/php-compatibility": "^9.0", - "sensiolabs/security-checker": "^4.1.0" + "hoa/test": "~2.0" }, - "type": "composer-plugin", + "suggest": { + "ext-pcntl": "To enable hoa://Event/Console/Window:resize.", + "hoa/dispatcher": "To use the console kit.", + "hoa/router": "To use the console kit." + }, + "type": "library", "extra": { - "class": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin" + "branch-alias": { + "dev-master": "3.x-dev" + } }, "autoload": { "psr-4": { - "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/" + "Hoa\\Console\\": "." } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Franck Nijhof", - "email": "franck.nijhof@dealerdirect.com", - "homepage": "http://www.frenck.nl", - "role": "Developer / IT Manager" + "name": "Ivan Enderlin", + "email": "ivan.enderlin@hoa-project.net" + }, + { + "name": "Hoa community", + "homepage": "https://hoa-project.net/" } ], - "description": "PHP_CodeSniffer Standards Composer Installer Plugin", - "homepage": "http://www.dealerdirect.com", + "description": "The Hoa\\Console library.", + "homepage": "https://hoa-project.net/", "keywords": [ - "PHPCodeSniffer", - "PHP_CodeSniffer", - "code quality", - "codesniffer", - "composer", - "installer", - "phpcs", - "plugin", - "qa", - "quality", - "standard", - "standards", - "style guide", - "stylecheck", - "tests" + "autocompletion", + "chrome", + "cli", + "console", + "cursor", + "getoption", + "library", + "option", + "parser", + "processus", + "readline", + "terminfo", + "tput", + "window" ], - "time": "2018-10-26T13:21:45+00:00" + "time": "2017-05-02T12:26:19+00:00" }, { - "name": "doctrine/annotations", - "version": "1.10.3", + "name": "hoa/event", + "version": "1.17.01.13", "source": { "type": "git", - "url": "https://github.com/doctrine/annotations.git", - "reference": "5db60a4969eba0e0c197a19c077780aadbc43c5d" + "url": "https://github.com/hoaproject/Event.git", + "reference": "6c0060dced212ffa3af0e34bb46624f990b29c54" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/annotations/zipball/5db60a4969eba0e0c197a19c077780aadbc43c5d", - "reference": "5db60a4969eba0e0c197a19c077780aadbc43c5d", + "url": "https://api.github.com/repos/hoaproject/Event/zipball/6c0060dced212ffa3af0e34bb46624f990b29c54", + "reference": "6c0060dced212ffa3af0e34bb46624f990b29c54", "shasum": "" }, "require": { - "doctrine/lexer": "1.*", - "ext-tokenizer": "*", - "php": "^7.1 || ^8.0" + "hoa/consistency": "~1.0", + "hoa/exception": "~1.0" }, "require-dev": { - "doctrine/cache": "1.*", - "phpunit/phpunit": "^7.5" + "hoa/test": "~2.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.9.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { "psr-4": { - "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations" + "Hoa\\Event\\": "." } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, - { - "name": "Benjamin Eberlei", - "email": "kontakt@beberlei.de" - }, - { - "name": "Jonathan Wage", - "email": "jonwage@gmail.com" + "name": "Ivan Enderlin", + "email": "ivan.enderlin@hoa-project.net" }, { - "name": "Johannes Schmitt", - "email": "schmittjoh@gmail.com" + "name": "Hoa community", + "homepage": "https://hoa-project.net/" } ], - "description": "Docblock Annotations Parser", - "homepage": "http://www.doctrine-project.org", + "description": "The Hoa\\Event library.", + "homepage": "https://hoa-project.net/", "keywords": [ - "annotations", - "docblock", - "parser" + "event", + "library", + "listener", + "observer" ], - "time": "2020-05-25T17:24:27+00:00" + "time": "2017-01-13T15:30:50+00:00" }, { - "name": "doctrine/cache", - "version": "1.10.2", + "name": "hoa/exception", + "version": "1.17.01.16", "source": { "type": "git", - "url": "https://github.com/doctrine/cache.git", - "reference": "13e3381b25847283a91948d04640543941309727" + "url": "https://github.com/hoaproject/Exception.git", + "reference": "091727d46420a3d7468ef0595651488bfc3a458f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727", - "reference": "13e3381b25847283a91948d04640543941309727", + "url": "https://api.github.com/repos/hoaproject/Exception/zipball/091727d46420a3d7468ef0595651488bfc3a458f", + "reference": "091727d46420a3d7468ef0595651488bfc3a458f", "shasum": "" }, "require": { - "php": "~7.1 || ^8.0" - }, - "conflict": { - "doctrine/common": ">2.2,<2.4" + "hoa/consistency": "~1.0", + "hoa/event": "~1.0" }, "require-dev": { - "alcaeus/mongo-php-adapter": "^1.1", - "doctrine/coding-standard": "^6.0", - "mongodb/mongodb": "^1.1", - "phpunit/phpunit": "^7.0", - "predis/predis": "~1.0" - }, - "suggest": { - "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver" + "hoa/test": "~2.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.9.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { "psr-4": { - "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache" + "Hoa\\Exception\\": "." } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, - { - "name": "Benjamin Eberlei", - "email": "kontakt@beberlei.de" - }, - { - "name": "Jonathan Wage", - "email": "jonwage@gmail.com" + "name": "Ivan Enderlin", + "email": "ivan.enderlin@hoa-project.net" }, { - "name": "Johannes Schmitt", - "email": "schmittjoh@gmail.com" + "name": "Hoa community", + "homepage": "https://hoa-project.net/" } ], - "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.", - "homepage": "https://www.doctrine-project.org/projects/cache.html", + "description": "The Hoa\\Exception library.", + "homepage": "https://hoa-project.net/", "keywords": [ - "abstraction", - "apcu", - "cache", - "caching", - "couchdb", - "memcached", - "php", - "redis", - "xcache" - ], - "funding": [ - { - "url": "https://www.doctrine-project.org/sponsorship.html", - "type": "custom" - }, - { - "url": "https://www.patreon.com/phpdoctrine", - "type": "patreon" - }, - { - "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache", - "type": "tidelift" - } + "exception", + "library" ], - "time": "2020-07-07T18:54:01+00:00" + "time": "2017-01-16T07:53:27+00:00" }, { - "name": "doctrine/inflector", - "version": "v1.1.0", + "name": "hoa/file", + "version": "1.17.07.11", "source": { "type": "git", - "url": "https://github.com/doctrine/inflector.git", - "reference": "90b2128806bfde671b6952ab8bea493942c1fdae" + "url": "https://github.com/hoaproject/File.git", + "reference": "35cb979b779bc54918d2f9a4e02ed6c7a1fa67ca" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/inflector/zipball/90b2128806bfde671b6952ab8bea493942c1fdae", - "reference": "90b2128806bfde671b6952ab8bea493942c1fdae", + "url": "https://api.github.com/repos/hoaproject/File/zipball/35cb979b779bc54918d2f9a4e02ed6c7a1fa67ca", + "reference": "35cb979b779bc54918d2f9a4e02ed6c7a1fa67ca", "shasum": "" }, "require": { - "php": ">=5.3.2" + "hoa/consistency": "~1.0", + "hoa/event": "~1.0", + "hoa/exception": "~1.0", + "hoa/iterator": "~2.0", + "hoa/stream": "~1.0" }, "require-dev": { - "phpunit/phpunit": "4.*" + "hoa/test": "~2.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.1.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { - "psr-0": { - "Doctrine\\Common\\Inflector\\": "lib/" + "psr-4": { + "Hoa\\File\\": "." } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, - { - "name": "Benjamin Eberlei", - "email": "kontakt@beberlei.de" - }, - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, - { - "name": "Jonathan Wage", - "email": "jonwage@gmail.com" + "name": "Ivan Enderlin", + "email": "ivan.enderlin@hoa-project.net" }, { - "name": "Johannes Schmitt", - "email": "schmittjoh@gmail.com" + "name": "Hoa community", + "homepage": "https://hoa-project.net/" } ], - "description": "Common String Manipulations with regard to casing and singular/plural rules.", - "homepage": "http://www.doctrine-project.org", + "description": "The Hoa\\File library.", + "homepage": "https://hoa-project.net/", "keywords": [ - "inflection", - "pluralize", - "singularize", - "string" + "Socket", + "directory", + "file", + "finder", + "library", + "link", + "temporary" ], - "time": "2015-11-06T14:35:42+00:00" + "time": "2017-07-11T07:42:15+00:00" }, { - "name": "doctrine/instantiator", - "version": "1.3.1", + "name": "hoa/iterator", + "version": "2.17.01.10", "source": { "type": "git", - "url": "https://github.com/doctrine/instantiator.git", - "reference": "f350df0268e904597e3bd9c4685c53e0e333feea" + "url": "https://github.com/hoaproject/Iterator.git", + "reference": "d1120ba09cb4ccd049c86d10058ab94af245f0cc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/instantiator/zipball/f350df0268e904597e3bd9c4685c53e0e333feea", - "reference": "f350df0268e904597e3bd9c4685c53e0e333feea", + "url": "https://api.github.com/repos/hoaproject/Iterator/zipball/d1120ba09cb4ccd049c86d10058ab94af245f0cc", + "reference": "d1120ba09cb4ccd049c86d10058ab94af245f0cc", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0" + "hoa/consistency": "~1.0", + "hoa/exception": "~1.0" }, "require-dev": { - "doctrine/coding-standard": "^6.0", - "ext-pdo": "*", - "ext-phar": "*", - "phpbench/phpbench": "^0.13", - "phpstan/phpstan-phpunit": "^0.11", - "phpstan/phpstan-shim": "^0.11", - "phpunit/phpunit": "^7.0" + "hoa/test": "~2.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.2.x-dev" + "dev-master": "2.x-dev" } }, "autoload": { "psr-4": { - "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" + "Hoa\\Iterator\\": "." } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Marco Pivetta", - "email": "ocramius@gmail.com", - "homepage": "http://ocramius.github.com/" + "name": "Ivan Enderlin", + "email": "ivan.enderlin@hoa-project.net" + }, + { + "name": "Hoa community", + "homepage": "https://hoa-project.net/" } ], - "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", - "homepage": "https://www.doctrine-project.org/projects/instantiator.html", + "description": "The Hoa\\Iterator library.", + "homepage": "https://hoa-project.net/", "keywords": [ - "constructor", - "instantiate" + "iterator", + "library" ], - "funding": [ - { - "url": "https://www.doctrine-project.org/sponsorship.html", - "type": "custom" + "time": "2017-01-10T10:34:47+00:00" + }, + { + "name": "hoa/protocol", + "version": "1.17.01.14", + "source": { + "type": "git", + "url": "https://github.com/hoaproject/Protocol.git", + "reference": "5c2cf972151c45f373230da170ea015deecf19e2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hoaproject/Protocol/zipball/5c2cf972151c45f373230da170ea015deecf19e2", + "reference": "5c2cf972151c45f373230da170ea015deecf19e2", + "shasum": "" + }, + "require": { + "hoa/consistency": "~1.0", + "hoa/exception": "~1.0" + }, + "require-dev": { + "hoa/test": "~2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Hoa\\Protocol\\": "." }, + "files": [ + "Wrapper.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ { - "url": "https://www.patreon.com/phpdoctrine", - "type": "patreon" + "name": "Ivan Enderlin", + "email": "ivan.enderlin@hoa-project.net" }, { - "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator", - "type": "tidelift" + "name": "Hoa community", + "homepage": "https://hoa-project.net/" } ], - "time": "2020-05-29T17:27:14+00:00" + "description": "The Hoa\\Protocol library.", + "homepage": "https://hoa-project.net/", + "keywords": [ + "library", + "protocol", + "resource", + "stream", + "wrapper" + ], + "time": "2017-01-14T12:26:10+00:00" }, { - "name": "doctrine/lexer", - "version": "1.2.1", + "name": "hoa/stream", + "version": "1.17.02.21", "source": { "type": "git", - "url": "https://github.com/doctrine/lexer.git", - "reference": "e864bbf5904cb8f5bb334f99209b48018522f042" + "url": "https://github.com/hoaproject/Stream.git", + "reference": "3293cfffca2de10525df51436adf88a559151d82" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042", - "reference": "e864bbf5904cb8f5bb334f99209b48018522f042", + "url": "https://api.github.com/repos/hoaproject/Stream/zipball/3293cfffca2de10525df51436adf88a559151d82", + "reference": "3293cfffca2de10525df51436adf88a559151d82", "shasum": "" }, "require": { - "php": "^7.2 || ^8.0" + "hoa/consistency": "~1.0", + "hoa/event": "~1.0", + "hoa/exception": "~1.0", + "hoa/protocol": "~1.0" }, "require-dev": { - "doctrine/coding-standard": "^6.0", - "phpstan/phpstan": "^0.11.8", - "phpunit/phpunit": "^8.2" + "hoa/test": "~2.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.2.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { "psr-4": { - "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer" + "Hoa\\Stream\\": "." } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" + "name": "Ivan Enderlin", + "email": "ivan.enderlin@hoa-project.net" }, { - "name": "Johannes Schmitt", - "email": "schmittjoh@gmail.com" + "name": "Hoa community", + "homepage": "https://hoa-project.net/" } ], - "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.", - "homepage": "https://www.doctrine-project.org/projects/lexer.html", + "description": "The Hoa\\Stream library.", + "homepage": "https://hoa-project.net/", "keywords": [ - "annotations", - "docblock", - "lexer", - "parser", - "php" - ], - "funding": [ - { - "url": "https://www.doctrine-project.org/sponsorship.html", - "type": "custom" - }, - { - "url": "https://www.patreon.com/phpdoctrine", - "type": "patreon" - }, - { - "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer", - "type": "tidelift" - } + "Context", + "bucket", + "composite", + "filter", + "in", + "library", + "out", + "protocol", + "stream", + "wrapper" ], - "time": "2020-05-25T17:44:05+00:00" + "time": "2017-02-21T16:01:06+00:00" }, { - "name": "friendsofphp/php-cs-fixer", - "version": "v2.16.4", + "name": "hoa/ustring", + "version": "4.17.01.16", "source": { "type": "git", - "url": "https://github.com/FriendsOfPHP/PHP-CS-Fixer.git", - "reference": "1023c3458137ab052f6ff1e09621a721bfdeca13" + "url": "https://github.com/hoaproject/Ustring.git", + "reference": "e6326e2739178799b1fe3fdd92029f9517fa17a0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/FriendsOfPHP/PHP-CS-Fixer/zipball/1023c3458137ab052f6ff1e09621a721bfdeca13", - "reference": "1023c3458137ab052f6ff1e09621a721bfdeca13", + "url": "https://api.github.com/repos/hoaproject/Ustring/zipball/e6326e2739178799b1fe3fdd92029f9517fa17a0", + "reference": "e6326e2739178799b1fe3fdd92029f9517fa17a0", "shasum": "" }, "require": { - "composer/semver": "^1.4", - "composer/xdebug-handler": "^1.2", - "doctrine/annotations": "^1.2", - "ext-json": "*", - "ext-tokenizer": "*", - "php": "^5.6 || ^7.0", - "php-cs-fixer/diff": "^1.3", - "symfony/console": "^3.4.17 || ^4.1.6 || ^5.0", - "symfony/event-dispatcher": "^3.0 || ^4.0 || ^5.0", - "symfony/filesystem": "^3.0 || ^4.0 || ^5.0", - "symfony/finder": "^3.0 || ^4.0 || ^5.0", - "symfony/options-resolver": "^3.0 || ^4.0 || ^5.0", - "symfony/polyfill-php70": "^1.0", - "symfony/polyfill-php72": "^1.4", - "symfony/process": "^3.0 || ^4.0 || ^5.0", - "symfony/stopwatch": "^3.0 || ^4.0 || ^5.0" + "hoa/consistency": "~1.0", + "hoa/exception": "~1.0" }, "require-dev": { - "johnkary/phpunit-speedtrap": "^1.1 || ^2.0 || ^3.0", - "justinrainbow/json-schema": "^5.0", - "keradus/cli-executor": "^1.2", - "mikey179/vfsstream": "^1.6", - "php-coveralls/php-coveralls": "^2.1", - "php-cs-fixer/accessible-object": "^1.0", - "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.1", - "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.1", - "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.1", - "phpunitgoodpractices/traits": "^1.8", - "symfony/phpunit-bridge": "^5.1", - "symfony/yaml": "^3.0 || ^4.0 || ^5.0" + "hoa/test": "~2.0" }, "suggest": { - "ext-dom": "For handling output formats in XML", - "ext-mbstring": "For handling non-UTF8 characters.", - "php-cs-fixer/phpunit-constraint-isidenticalstring": "For IsIdenticalString constraint.", - "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "For XmlMatchesXsd constraint.", - "symfony/polyfill-mbstring": "When enabling `ext-mbstring` is not possible." + "ext-iconv": "ext/iconv must be present (or a third implementation) to use Hoa\\Ustring::transcode().", + "ext-intl": "To get a better Hoa\\Ustring::toAscii() and Hoa\\Ustring::compareTo()." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.x-dev" + } }, - "bin": [ - "php-cs-fixer" - ], - "type": "application", "autoload": { "psr-4": { - "PhpCsFixer\\": "src/" - }, - "classmap": [ - "tests/Test/AbstractFixerTestCase.php", - "tests/Test/AbstractIntegrationCaseFactory.php", - "tests/Test/AbstractIntegrationTestCase.php", - "tests/Test/Assert/AssertTokensTrait.php", - "tests/Test/IntegrationCase.php", - "tests/Test/IntegrationCaseFactory.php", - "tests/Test/IntegrationCaseFactoryInterface.php", - "tests/Test/InternalIntegrationCaseFactory.php", - "tests/Test/IsIdenticalConstraint.php", - "tests/TestCase.php" - ] + "Hoa\\Ustring\\": "." + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Ivan Enderlin", + "email": "ivan.enderlin@hoa-project.net" }, { - "name": "Dariusz Rumiński", - "email": "dariusz.ruminski@gmail.com" + "name": "Hoa community", + "homepage": "https://hoa-project.net/" } ], - "description": "A tool to automatically fix PHP code style", - "funding": [ - { - "url": "https://github.com/keradus", - "type": "github" - } + "description": "The Hoa\\Ustring library.", + "homepage": "https://hoa-project.net/", + "keywords": [ + "library", + "search", + "string", + "unicode" ], - "time": "2020-06-27T23:57:46+00:00" + "time": "2017-01-16T07:08:25+00:00" }, { "name": "jms/metadata", @@ -24278,28 +25712,29 @@ }, { "name": "league/flysystem", - "version": "1.0.70", + "version": "1.1.3", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "585824702f534f8d3cf7fab7225e8466cc4b7493" + "reference": "9be3b16c877d477357c015cec057548cf9b2a14a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/585824702f534f8d3cf7fab7225e8466cc4b7493", - "reference": "585824702f534f8d3cf7fab7225e8466cc4b7493", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a", + "reference": "9be3b16c877d477357c015cec057548cf9b2a14a", "shasum": "" }, "require": { "ext-fileinfo": "*", - "php": ">=5.5.9" + "league/mime-type-detection": "^1.3", + "php": "^7.2.5 || ^8.0" }, "conflict": { "league/flysystem-sftp": "<1.0.6" }, "require-dev": { - "phpspec/phpspec": "^3.4 || ^4.0 || ^5.0 || ^6.0", - "phpunit/phpunit": "^5.7.26" + "phpspec/prophecy": "^1.11.1", + "phpunit/phpunit": "^8.5.8" }, "suggest": { "ext-fileinfo": "Required for MimeType", @@ -24364,7 +25799,58 @@ "type": "other" } ], - "time": "2020-07-26T07:20:36+00:00" + "time": "2020-08-23T07:39:11+00:00" + }, + { + "name": "league/mime-type-detection", + "version": "1.5.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/mime-type-detection.git", + "reference": "ea2fbfc988bade315acd5967e6d02274086d0f28" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ea2fbfc988bade315acd5967e6d02274086d0f28", + "reference": "ea2fbfc988bade315acd5967e6d02274086d0f28", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^0.12.36", + "phpunit/phpunit": "^8.5.8" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\MimeTypeDetection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Mime-type detection for Flysystem", + "funding": [ + { + "url": "https://github.com/frankdejonge", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/flysystem", + "type": "tidelift" + } + ], + "time": "2020-09-21T18:10:53+00:00" }, { "name": "lusitanian/oauth", @@ -24474,16 +25960,16 @@ }, { "name": "magento/magento2-functional-testing-framework", - "version": "3.0.0", + "version": "3.1.1", "source": { "type": "git", "url": "https://github.com/magento/magento2-functional-testing-framework.git", - "reference": "8d98efa7434a30ab9e82ef128c430ef8e3a50699" + "reference": "c6760313811f2c04545a261c706d2a73dd727b9a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/magento/magento2-functional-testing-framework/zipball/8d98efa7434a30ab9e82ef128c430ef8e3a50699", - "reference": "8d98efa7434a30ab9e82ef128c430ef8e3a50699", + "url": "https://api.github.com/repos/magento/magento2-functional-testing-framework/zipball/c6760313811f2c04545a261c706d2a73dd727b9a", + "reference": "c6760313811f2c04545a261c706d2a73dd727b9a", "shasum": "" }, "require": { @@ -24501,6 +25987,7 @@ "ext-intl": "*", "ext-json": "*", "ext-openssl": "*", + "hoa/console": "~3.0", "monolog/monolog": "^1.17", "mustache/mustache": "~2.5", "php": "^7.3", @@ -24560,7 +26047,7 @@ "magento", "testing" ], - "time": "2020-07-09T21:26:19+00:00" + "time": "2020-09-28T18:26:59+00:00" }, { "name": "mikey179/vfsstream", @@ -24610,25 +26097,25 @@ }, { "name": "mtdowling/jmespath.php", - "version": "2.5.0", + "version": "2.6.0", "source": { "type": "git", "url": "https://github.com/jmespath/jmespath.php.git", - "reference": "52168cb9472de06979613d365c7f1ab8798be895" + "reference": "42dae2cbd13154083ca6d70099692fef8ca84bfb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/52168cb9472de06979613d365c7f1ab8798be895", - "reference": "52168cb9472de06979613d365c7f1ab8798be895", + "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/42dae2cbd13154083ca6d70099692fef8ca84bfb", + "reference": "42dae2cbd13154083ca6d70099692fef8ca84bfb", "shasum": "" }, "require": { - "php": ">=5.4.0", - "symfony/polyfill-mbstring": "^1.4" + "php": "^5.4 || ^7.0 || ^8.0", + "symfony/polyfill-mbstring": "^1.17" }, "require-dev": { - "composer/xdebug-handler": "^1.2", - "phpunit/phpunit": "^4.8.36|^7.5.15" + "composer/xdebug-handler": "^1.4", + "phpunit/phpunit": "^4.8.36 || ^7.5.15" }, "bin": [ "bin/jp.php" @@ -24636,7 +26123,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.5-dev" + "dev-master": "2.6-dev" } }, "autoload": { @@ -24663,7 +26150,7 @@ "json", "jsonpath" ], - "time": "2019-12-30T18:03:34+00:00" + "time": "2020-07-31T21:01:56+00:00" }, { "name": "mustache/mustache", @@ -24916,23 +26403,23 @@ }, { "name": "php-cs-fixer/diff", - "version": "v1.3.0", + "version": "v1.3.1", "source": { "type": "git", "url": "https://github.com/PHP-CS-Fixer/diff.git", - "reference": "78bb099e9c16361126c86ce82ec4405ebab8e756" + "reference": "dbd31aeb251639ac0b9e7e29405c1441907f5759" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHP-CS-Fixer/diff/zipball/78bb099e9c16361126c86ce82ec4405ebab8e756", - "reference": "78bb099e9c16361126c86ce82ec4405ebab8e756", + "url": "https://api.github.com/repos/PHP-CS-Fixer/diff/zipball/dbd31aeb251639ac0b9e7e29405c1441907f5759", + "reference": "dbd31aeb251639ac0b9e7e29405c1441907f5759", "shasum": "" }, "require": { - "php": "^5.6 || ^7.0" + "php": "^5.6 || ^7.0 || ^8.0" }, "require-dev": { - "phpunit/phpunit": "^5.7.23 || ^6.4.3", + "phpunit/phpunit": "^5.7.23 || ^6.4.3 || ^7.0", "symfony/process": "^3.3" }, "type": "library", @@ -24946,14 +26433,14 @@ "BSD-3-Clause" ], "authors": [ - { - "name": "Kore Nordmann", - "email": "mail@kore-nordmann.de" - }, { "name": "Sebastian Bergmann", "email": "sebastian@phpunit.de" }, + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" + }, { "name": "SpacePossum" } @@ -24963,7 +26450,7 @@ "keywords": [ "diff" ], - "time": "2018-02-15T16:58:55+00:00" + "time": "2020-10-14T08:39:05+00:00" }, { "name": "php-webdriver/webdriver", @@ -25187,16 +26674,16 @@ }, { "name": "phpdocumentor/reflection-docblock", - "version": "5.2.0", + "version": "5.2.2", "source": { "type": "git", "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "3170448f5769fe19f456173d833734e0ff1b84df" + "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/3170448f5769fe19f456173d833734e0ff1b84df", - "reference": "3170448f5769fe19f456173d833734e0ff1b84df", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556", + "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556", "shasum": "" }, "require": { @@ -25235,20 +26722,20 @@ } ], "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", - "time": "2020-07-20T20:05:34+00:00" + "time": "2020-09-03T19:13:55+00:00" }, { "name": "phpdocumentor/type-resolver", - "version": "1.3.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://github.com/phpDocumentor/TypeResolver.git", - "reference": "e878a14a65245fbe78f8080eba03b47c3b705651" + "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/e878a14a65245fbe78f8080eba03b47c3b705651", - "reference": "e878a14a65245fbe78f8080eba03b47c3b705651", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0", + "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0", "shasum": "" }, "require": { @@ -25280,20 +26767,20 @@ } ], "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", - "time": "2020-06-27T10:12:23+00:00" + "time": "2020-09-17T18:55:26+00:00" }, { "name": "phpmd/phpmd", - "version": "2.8.2", + "version": "2.9.1", "source": { "type": "git", "url": "https://github.com/phpmd/phpmd.git", - "reference": "714629ed782537f638fe23c4346637659b779a77" + "reference": "ce10831d4ddc2686c1348a98069771dd314534a8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpmd/phpmd/zipball/714629ed782537f638fe23c4346637659b779a77", - "reference": "714629ed782537f638fe23c4346637659b779a77", + "url": "https://api.github.com/repos/phpmd/phpmd/zipball/ce10831d4ddc2686c1348a98069771dd314534a8", + "reference": "ce10831d4ddc2686c1348a98069771dd314534a8", "shasum": "" }, "require": { @@ -25304,6 +26791,8 @@ }, "require-dev": { "easy-doc/easy-doc": "0.0.0 || ^1.3.2", + "ext-json": "*", + "ext-simplexml": "*", "gregwar/rst": "^1.0", "mikey179/vfsstream": "^1.6.4", "phpunit/phpunit": "^4.8.36 || ^5.7.27", @@ -25350,7 +26839,13 @@ "phpmd", "pmd" ], - "time": "2020-02-16T20:15:50+00:00" + "funding": [ + { + "url": "https://tidelift.com/funding/github/packagist/phpmd/phpmd", + "type": "tidelift" + } + ], + "time": "2020-09-23T22:06:32+00:00" }, { "name": "phpoption/phpoption", @@ -25419,28 +26914,28 @@ }, { "name": "phpspec/prophecy", - "version": "1.11.1", + "version": "1.12.1", "source": { "type": "git", "url": "https://github.com/phpspec/prophecy.git", - "reference": "b20034be5efcdab4fb60ca3a29cba2949aead160" + "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/b20034be5efcdab4fb60ca3a29cba2949aead160", - "reference": "b20034be5efcdab4fb60ca3a29cba2949aead160", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/8ce87516be71aae9b956f81906aaf0338e0d8a2d", + "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d", "shasum": "" }, "require": { "doctrine/instantiator": "^1.2", - "php": "^7.2", - "phpdocumentor/reflection-docblock": "^5.0", + "php": "^7.2 || ~8.0, <8.1", + "phpdocumentor/reflection-docblock": "^5.2", "sebastian/comparator": "^3.0 || ^4.0", "sebastian/recursion-context": "^3.0 || ^4.0" }, "require-dev": { "phpspec/phpspec": "^6.0", - "phpunit/phpunit": "^8.0" + "phpunit/phpunit": "^8.0 || ^9.0 <9.3" }, "type": "library", "extra": { @@ -25478,7 +26973,7 @@ "spy", "stub" ], - "time": "2020-07-08T12:44:21+00:00" + "time": "2020-09-29T09:10:42+00:00" }, { "name": "phpstan/phpstan", @@ -25608,23 +27103,23 @@ }, { "name": "phpunit/php-file-iterator", - "version": "3.0.4", + "version": "3.0.5", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-file-iterator.git", - "reference": "25fefc5b19835ca653877fe081644a3f8c1d915e" + "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/25fefc5b19835ca653877fe081644a3f8c1d915e", - "reference": "25fefc5b19835ca653877fe081644a3f8c1d915e", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8", + "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8", "shasum": "" }, "require": { - "php": "^7.3 || ^8.0" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^9.0" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { @@ -25660,28 +27155,28 @@ "type": "github" } ], - "time": "2020-07-11T05:18:21+00:00" + "time": "2020-09-28T05:57:25+00:00" }, { "name": "phpunit/php-invoker", - "version": "3.0.2", + "version": "3.1.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-invoker.git", - "reference": "f6eedfed1085dd1f4c599629459a0277d25f9a66" + "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f6eedfed1085dd1f4c599629459a0277d25f9a66", - "reference": "f6eedfed1085dd1f4c599629459a0277d25f9a66", + "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67", + "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67", "shasum": "" }, "require": { - "php": "^7.3 || ^8.0" + "php": ">=7.3" }, "require-dev": { "ext-pcntl": "*", - "phpunit/phpunit": "^9.0" + "phpunit/phpunit": "^9.3" }, "suggest": { "ext-pcntl": "*" @@ -25689,7 +27184,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-master": "3.1-dev" } }, "autoload": { @@ -25719,27 +27214,27 @@ "type": "github" } ], - "time": "2020-06-26T11:53:53+00:00" + "time": "2020-09-28T05:58:55+00:00" }, { "name": "phpunit/php-text-template", - "version": "2.0.2", + "version": "2.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-text-template.git", - "reference": "6ff9c8ea4d3212b88fcf74e25e516e2c51c99324" + "reference": "18c887016e60e52477e54534956d7b47bc52cd84" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/6ff9c8ea4d3212b88fcf74e25e516e2c51c99324", - "reference": "6ff9c8ea4d3212b88fcf74e25e516e2c51c99324", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/18c887016e60e52477e54534956d7b47bc52cd84", + "reference": "18c887016e60e52477e54534956d7b47bc52cd84", "shasum": "" }, "require": { - "php": "^7.3 || ^8.0" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^9.0" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { @@ -25774,7 +27269,7 @@ "type": "github" } ], - "time": "2020-06-26T11:55:37+00:00" + "time": "2020-09-28T06:03:05+00:00" }, { "name": "phpunit/php-timer", @@ -25833,16 +27328,16 @@ }, { "name": "phpunit/php-token-stream", - "version": "4.0.3", + "version": "4.0.4", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-token-stream.git", - "reference": "5672711b6b07b14d5ab694e700c62eeb82fcf374" + "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/5672711b6b07b14d5ab694e700c62eeb82fcf374", - "reference": "5672711b6b07b14d5ab694e700c62eeb82fcf374", + "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/a853a0e183b9db7eed023d7933a858fa1c8d25a3", + "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3", "shasum": "" }, "require": { @@ -25884,7 +27379,8 @@ "type": "github" } ], - "time": "2020-06-27T06:36:25+00:00" + "abandoned": true, + "time": "2020-08-04T08:28:15+00:00" }, { "name": "phpunit/phpunit", @@ -26080,23 +27576,23 @@ }, { "name": "sebastian/code-unit", - "version": "1.0.5", + "version": "1.0.7", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/code-unit.git", - "reference": "c1e2df332c905079980b119c4db103117e5e5c90" + "reference": "59236be62b1bb9919e6d7f60b0b832dc05cef9ab" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/c1e2df332c905079980b119c4db103117e5e5c90", - "reference": "c1e2df332c905079980b119c4db103117e5e5c90", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/59236be62b1bb9919e6d7f60b0b832dc05cef9ab", + "reference": "59236be62b1bb9919e6d7f60b0b832dc05cef9ab", "shasum": "" }, "require": { - "php": "^7.3 || ^8.0" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^9.0" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { @@ -26128,27 +27624,27 @@ "type": "github" } ], - "time": "2020-06-26T12:50:45+00:00" + "time": "2020-10-02T14:47:54+00:00" }, { "name": "sebastian/code-unit-reverse-lookup", - "version": "2.0.2", + "version": "2.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", - "reference": "ee51f9bb0c6d8a43337055db3120829fa14da819" + "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ee51f9bb0c6d8a43337055db3120829fa14da819", - "reference": "ee51f9bb0c6d8a43337055db3120829fa14da819", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", + "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", "shasum": "" }, "require": { - "php": "^7.3 || ^8.0" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^9.0" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { @@ -26179,29 +27675,29 @@ "type": "github" } ], - "time": "2020-06-26T12:04:00+00:00" + "time": "2020-09-28T05:30:19+00:00" }, { "name": "sebastian/comparator", - "version": "4.0.3", + "version": "4.0.5", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "dcc580eadfaa4e7f9d2cf9ae1922134ea962e14f" + "reference": "7a8ff306445707539c1a6397372a982a1ec55120" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/dcc580eadfaa4e7f9d2cf9ae1922134ea962e14f", - "reference": "dcc580eadfaa4e7f9d2cf9ae1922134ea962e14f", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/7a8ff306445707539c1a6397372a982a1ec55120", + "reference": "7a8ff306445707539c1a6397372a982a1ec55120", "shasum": "" }, "require": { - "php": "^7.3 || ^8.0", + "php": ">=7.3", "sebastian/diff": "^4.0", "sebastian/exporter": "^4.0" }, "require-dev": { - "phpunit/phpunit": "^9.0" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { @@ -26249,27 +27745,27 @@ "type": "github" } ], - "time": "2020-06-26T12:05:46+00:00" + "time": "2020-09-30T06:47:25+00:00" }, { "name": "sebastian/diff", - "version": "4.0.2", + "version": "4.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/diff.git", - "reference": "1e90b4cf905a7d06c420b1d2e9d11a4dc8a13113" + "reference": "ffc949a1a2aae270ea064453d7535b82e4c32092" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/1e90b4cf905a7d06c420b1d2e9d11a4dc8a13113", - "reference": "1e90b4cf905a7d06c420b1d2e9d11a4dc8a13113", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ffc949a1a2aae270ea064453d7535b82e4c32092", + "reference": "ffc949a1a2aae270ea064453d7535b82e4c32092", "shasum": "" }, "require": { - "php": "^7.3 || ^8.0" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^9.0", + "phpunit/phpunit": "^9.3", "symfony/process": "^4.2 || ^5" }, "type": "library", @@ -26311,27 +27807,27 @@ "type": "github" } ], - "time": "2020-06-30T04:46:02+00:00" + "time": "2020-09-28T05:32:55+00:00" }, { "name": "sebastian/environment", - "version": "5.1.2", + "version": "5.1.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/environment.git", - "reference": "0a757cab9d5b7ef49a619f1143e6c9c1bc0fe9d2" + "reference": "388b6ced16caa751030f6a69e588299fa09200ac" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/0a757cab9d5b7ef49a619f1143e6c9c1bc0fe9d2", - "reference": "0a757cab9d5b7ef49a619f1143e6c9c1bc0fe9d2", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac", + "reference": "388b6ced16caa751030f6a69e588299fa09200ac", "shasum": "" }, "require": { - "php": "^7.3 || ^8.0" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^9.0" + "phpunit/phpunit": "^9.3" }, "suggest": { "ext-posix": "*" @@ -26339,7 +27835,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "5.0-dev" + "dev-master": "5.1-dev" } }, "autoload": { @@ -26370,29 +27866,29 @@ "type": "github" } ], - "time": "2020-06-26T12:07:24+00:00" + "time": "2020-09-28T05:52:38+00:00" }, { "name": "sebastian/exporter", - "version": "4.0.2", + "version": "4.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "571d721db4aec847a0e59690b954af33ebf9f023" + "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/571d721db4aec847a0e59690b954af33ebf9f023", - "reference": "571d721db4aec847a0e59690b954af33ebf9f023", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d89cc98761b8cb5a1a235a6b703ae50d34080e65", + "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65", "shasum": "" }, "require": { - "php": "^7.3 || ^8.0", + "php": ">=7.3", "sebastian/recursion-context": "^4.0" }, "require-dev": { "ext-mbstring": "*", - "phpunit/phpunit": "^9.2" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { @@ -26443,7 +27939,7 @@ "type": "github" } ], - "time": "2020-06-26T12:08:55+00:00" + "time": "2020-09-28T05:24:23+00:00" }, { "name": "sebastian/finder-facade", @@ -26489,6 +27985,7 @@ ], "description": "FinderFacade is a convenience wrapper for Symfony's Finder component.", "homepage": "https://github.com/sebastianbergmann/finder-facade", + "abandoned": true, "time": "2020-02-08T06:07:58+00:00" }, { @@ -26547,25 +28044,25 @@ }, { "name": "sebastian/object-enumerator", - "version": "4.0.2", + "version": "4.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/object-enumerator.git", - "reference": "074fed2d0a6d08e1677dd8ce9d32aecb384917b8" + "reference": "f6f5957013d84725427d361507e13513702888a4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/074fed2d0a6d08e1677dd8ce9d32aecb384917b8", - "reference": "074fed2d0a6d08e1677dd8ce9d32aecb384917b8", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f6f5957013d84725427d361507e13513702888a4", + "reference": "f6f5957013d84725427d361507e13513702888a4", "shasum": "" }, "require": { - "php": "^7.3 || ^8.0", + "php": ">=7.3", "sebastian/object-reflector": "^2.0", "sebastian/recursion-context": "^4.0" }, "require-dev": { - "phpunit/phpunit": "^9.0" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { @@ -26596,27 +28093,27 @@ "type": "github" } ], - "time": "2020-06-26T12:11:32+00:00" + "time": "2020-09-28T05:55:06+00:00" }, { "name": "sebastian/object-reflector", - "version": "2.0.2", + "version": "2.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/object-reflector.git", - "reference": "127a46f6b057441b201253526f81d5406d6c7840" + "reference": "d9d0ab3b12acb1768bc1e0a89b23c90d2043cbe5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/127a46f6b057441b201253526f81d5406d6c7840", - "reference": "127a46f6b057441b201253526f81d5406d6c7840", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/d9d0ab3b12acb1768bc1e0a89b23c90d2043cbe5", + "reference": "d9d0ab3b12acb1768bc1e0a89b23c90d2043cbe5", "shasum": "" }, "require": { - "php": "^7.3 || ^8.0" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^9.0" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { @@ -26647,7 +28144,7 @@ "type": "github" } ], - "time": "2020-06-26T12:12:55+00:00" + "time": "2020-09-28T05:56:16+00:00" }, { "name": "sebastian/phpcpd", @@ -26702,23 +28199,23 @@ }, { "name": "sebastian/recursion-context", - "version": "4.0.2", + "version": "4.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/recursion-context.git", - "reference": "062231bf61d2b9448c4fa5a7643b5e1829c11d63" + "reference": "ed8c9cd355089134bc9cba421b5cfdd58f0eaef7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/062231bf61d2b9448c4fa5a7643b5e1829c11d63", - "reference": "062231bf61d2b9448c4fa5a7643b5e1829c11d63", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/ed8c9cd355089134bc9cba421b5cfdd58f0eaef7", + "reference": "ed8c9cd355089134bc9cba421b5cfdd58f0eaef7", "shasum": "" }, "require": { - "php": "^7.3 || ^8.0" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^9.0" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { @@ -26757,24 +28254,24 @@ "type": "github" } ], - "time": "2020-06-26T12:14:17+00:00" + "time": "2020-09-28T05:17:32+00:00" }, { "name": "sebastian/resource-operations", - "version": "3.0.2", + "version": "3.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/resource-operations.git", - "reference": "0653718a5a629b065e91f774595267f8dc32e213" + "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0653718a5a629b065e91f774595267f8dc32e213", - "reference": "0653718a5a629b065e91f774595267f8dc32e213", + "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", + "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", "shasum": "" }, "require": { - "php": "^7.3 || ^8.0" + "php": ">=7.3" }, "require-dev": { "phpunit/phpunit": "^9.0" @@ -26808,32 +28305,32 @@ "type": "github" } ], - "time": "2020-06-26T12:16:22+00:00" + "time": "2020-09-28T06:45:17+00:00" }, { "name": "sebastian/type", - "version": "2.2.1", + "version": "2.3.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/type.git", - "reference": "86991e2b33446cd96e648c18bcdb1e95afb2c05a" + "reference": "fa592377f3923946cb90bf1f6a71ba2e5f229909" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/86991e2b33446cd96e648c18bcdb1e95afb2c05a", - "reference": "86991e2b33446cd96e648c18bcdb1e95afb2c05a", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fa592377f3923946cb90bf1f6a71ba2e5f229909", + "reference": "fa592377f3923946cb90bf1f6a71ba2e5f229909", "shasum": "" }, "require": { - "php": "^7.3 || ^8.0" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^9.2" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.2-dev" + "dev-master": "2.3-dev" } }, "autoload": { @@ -26860,24 +28357,24 @@ "type": "github" } ], - "time": "2020-07-05T08:31:53+00:00" + "time": "2020-10-06T08:41:03+00:00" }, { "name": "sebastian/version", - "version": "3.0.1", + "version": "3.0.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/version.git", - "reference": "626586115d0ed31cb71483be55beb759b5af5a3c" + "reference": "c6c1022351a901512170118436c764e473f6de8c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/626586115d0ed31cb71483be55beb759b5af5a3c", - "reference": "626586115d0ed31cb71483be55beb759b5af5a3c", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c", + "reference": "c6c1022351a901512170118436c764e473f6de8c", "shasum": "" }, "require": { - "php": "^7.3 || ^8.0" + "php": ">=7.3" }, "type": "library", "extra": { @@ -26909,20 +28406,20 @@ "type": "github" } ], - "time": "2020-06-26T12:18:43+00:00" + "time": "2020-09-28T06:39:44+00:00" }, { "name": "squizlabs/php_codesniffer", - "version": "3.5.5", + "version": "3.5.6", "source": { "type": "git", "url": "https://github.com/squizlabs/PHP_CodeSniffer.git", - "reference": "73e2e7f57d958e7228fce50dc0c61f58f017f9f6" + "reference": "e97627871a7eab2f70e59166072a6b767d5834e0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/73e2e7f57d958e7228fce50dc0c61f58f017f9f6", - "reference": "73e2e7f57d958e7228fce50dc0c61f58f017f9f6", + "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/e97627871a7eab2f70e59166072a6b767d5834e0", + "reference": "e97627871a7eab2f70e59166072a6b767d5834e0", "shasum": "" }, "require": { @@ -26960,20 +28457,20 @@ "phpcs", "standards" ], - "time": "2020-04-17T01:09:41+00:00" + "time": "2020-08-10T04:50:15+00:00" }, { "name": "symfony/config", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "cf63f0613a6c6918e96db39c07a43b01e19a0773" + "reference": "6ad8be6e1280f6734150d8a04a9160dd34ceb191" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/cf63f0613a6c6918e96db39c07a43b01e19a0773", - "reference": "cf63f0613a6c6918e96db39c07a43b01e19a0773", + "url": "https://api.github.com/repos/symfony/config/zipball/6ad8be6e1280f6734150d8a04a9160dd34ceb191", + "reference": "6ad8be6e1280f6734150d8a04a9160dd34ceb191", "shasum": "" }, "require": { @@ -27040,20 +28537,20 @@ "type": "tidelift" } ], - "time": "2020-07-15T10:53:22+00:00" + "time": "2020-09-02T16:23:27+00:00" }, { "name": "symfony/dependency-injection", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "c45c3f26d2ae7c5239e5ad420b0c2717dbbc0bcb" + "reference": "2dea4a3ef2eb79138354c1d49e9372cc921af20b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/c45c3f26d2ae7c5239e5ad420b0c2717dbbc0bcb", - "reference": "c45c3f26d2ae7c5239e5ad420b0c2717dbbc0bcb", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/2dea4a3ef2eb79138354c1d49e9372cc921af20b", + "reference": "2dea4a3ef2eb79138354c1d49e9372cc921af20b", "shasum": "" }, "require": { @@ -27129,20 +28626,20 @@ "type": "tidelift" } ], - "time": "2020-07-23T08:36:24+00:00" + "time": "2020-10-01T12:14:45+00:00" }, { "name": "symfony/http-foundation", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "1f0d6627e680591c61e9176f04a0dc887b4e6702" + "reference": "353b42e7b4fd1c898aab09a059466c9cea74039b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/1f0d6627e680591c61e9176f04a0dc887b4e6702", - "reference": "1f0d6627e680591c61e9176f04a0dc887b4e6702", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/353b42e7b4fd1c898aab09a059466c9cea74039b", + "reference": "353b42e7b4fd1c898aab09a059466c9cea74039b", "shasum": "" }, "require": { @@ -27204,20 +28701,20 @@ "type": "tidelift" } ], - "time": "2020-07-23T10:04:31+00:00" + "time": "2020-09-27T14:14:57+00:00" }, { "name": "symfony/mime", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "149fb0ad35aae3c7637b496b38478797fa6a7ea6" + "reference": "4404d6545125863561721514ad9388db2661eec5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/149fb0ad35aae3c7637b496b38478797fa6a7ea6", - "reference": "149fb0ad35aae3c7637b496b38478797fa6a7ea6", + "url": "https://api.github.com/repos/symfony/mime/zipball/4404d6545125863561721514ad9388db2661eec5", + "reference": "4404d6545125863561721514ad9388db2661eec5", "shasum": "" }, "require": { @@ -27281,11 +28778,11 @@ "type": "tidelift" } ], - "time": "2020-07-23T10:04:31+00:00" + "time": "2020-09-02T16:23:27+00:00" }, { "name": "symfony/stopwatch", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/stopwatch.git", @@ -27349,16 +28846,16 @@ }, { "name": "symfony/yaml", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "ea342353a3ef4f453809acc4ebc55382231d4d23" + "reference": "e147a68cb66a8b510f4b7481fe4da5b2ab65ec6a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/ea342353a3ef4f453809acc4ebc55382231d4d23", - "reference": "ea342353a3ef4f453809acc4ebc55382231d4d23", + "url": "https://api.github.com/repos/symfony/yaml/zipball/e147a68cb66a8b510f4b7481fe4da5b2ab65ec6a", + "reference": "e147a68cb66a8b510f4b7481fe4da5b2ab65ec6a", "shasum": "" }, "require": { @@ -27422,7 +28919,7 @@ "type": "tidelift" } ], - "time": "2020-05-20T17:43:50+00:00" + "time": "2020-09-27T03:44:28+00:00" }, { "name": "theseer/fdomdocument", @@ -27672,7 +29169,7 @@ "aliases": [], "minimum-stability": "stable", "stability-flags": [], - "prefer-stable": false, + "prefer-stable": true, "prefer-lowest": false, "platform": [], "platform-dev": [], diff --git a/src/_data/codebase/v2_4/open-source/composer_lock.json b/src/_data/codebase/v2_4/open-source/composer_lock.json index ed7c00ad26a..984d5c9ed33 100644 --- a/src/_data/codebase/v2_4/open-source/composer_lock.json +++ b/src/_data/codebase/v2_4/open-source/composer_lock.json @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "0d657b4ca9de68c04d8c6c7b33e7942f", + "content-hash": "05ba8e667f7ccee241fc7e157ba033a0", "packages": [ { "name": "2tvenom/cborencode", @@ -49,16 +49,16 @@ }, { "name": "amzn/amazon-pay-and-login-magento-2-module", - "version": "4.0.2", + "version": "4.0.4", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/amzn/amazon-pay-and-login-magento-2-module/amzn-amazon-pay-and-login-magento-2-module-4.0.2.0.zip", - "shasum": "1fb726b3424fe9f006dfb6442df5fbb25bbc0053" + "url": "https://repo.magento.com/archives/amzn/amazon-pay-and-login-magento-2-module/amzn-amazon-pay-and-login-magento-2-module-4.0.4.0.zip", + "shasum": "f2fd46eae1287b3a870981c6db98ad6faaed77be" }, "require": { - "amzn/amazon-pay-and-login-with-amazon-core-module": "4.0.2", - "amzn/amazon-pay-module": "4.0.2", - "amzn/login-with-amazon-module": "4.0.2" + "amzn/amazon-pay-and-login-with-amazon-core-module": "4.0.4", + "amzn/amazon-pay-module": "4.0.4", + "amzn/login-with-amazon-module": "4.0.4" }, "type": "metapackage", "license": [ @@ -68,11 +68,11 @@ }, { "name": "amzn/amazon-pay-and-login-with-amazon-core-module", - "version": "4.0.2", + "version": "4.0.4", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/amzn/amazon-pay-and-login-with-amazon-core-module/amzn-amazon-pay-and-login-with-amazon-core-module-4.0.2.0.zip", - "shasum": "2ceab6d9226b15f20af17090e46c7c30fd64fbc9" + "url": "https://repo.magento.com/archives/amzn/amazon-pay-and-login-with-amazon-core-module/amzn-amazon-pay-and-login-with-amazon-core-module-4.0.4.0.zip", + "shasum": "b2b8a2d134e93377f29950a5e512824f63beca12" }, "require": { "amzn/amazon-pay-sdk-php": "^3.2.0", @@ -107,15 +107,15 @@ }, { "name": "amzn/amazon-pay-module", - "version": "4.0.2", + "version": "4.0.4", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/amzn/amazon-pay-module/amzn-amazon-pay-module-4.0.2.0.zip", - "shasum": "6ed5ad082c21756b7ce6698c4d58ae6baba70cfb" + "url": "https://repo.magento.com/archives/amzn/amazon-pay-module/amzn-amazon-pay-module-4.0.4.0.zip", + "shasum": "85dec4b75da4301eebf12ed6de4cd1f93129437d" }, "require": { - "amzn/amazon-pay-and-login-with-amazon-core-module": "^4.0.2", - "amzn/login-with-amazon-module": "^4.0.2", + "amzn/amazon-pay-and-login-with-amazon-core-module": "^4.0.4", + "amzn/login-with-amazon-module": "^4.0.4", "magento/framework": "*", "magento/module-backend": "*", "magento/module-catalog": "*", @@ -201,14 +201,14 @@ }, { "name": "amzn/login-with-amazon-module", - "version": "4.0.2", + "version": "4.0.4", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/amzn/login-with-amazon-module/amzn-login-with-amazon-module-4.0.2.0.zip", - "shasum": "4db680418aefd94153d05501d4c42e7b32bc16c9" + "url": "https://repo.magento.com/archives/amzn/login-with-amazon-module/amzn-login-with-amazon-module-4.0.4.0.zip", + "shasum": "3706a86e6e199b14757c7f5a05f3f58214cea034" }, "require": { - "amzn/amazon-pay-and-login-with-amazon-core-module": "^4.0.2", + "amzn/amazon-pay-and-login-with-amazon-core-module": "^4.0.4", "magento/framework": "*", "magento/module-checkout": "*", "magento/module-checkout-agreements": "*", @@ -272,16 +272,16 @@ }, { "name": "bacon/bacon-qr-code", - "version": "2.0.1", + "version": "2.0.2", "source": { "type": "git", "url": "https://github.com/Bacon/BaconQrCode.git", - "reference": "6e53ced3d2499cee4a0ef23a7c4d6449607ac7da" + "reference": "add6d9ff97336b62f95a3b94f75cea4e085465b2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/6e53ced3d2499cee4a0ef23a7c4d6449607ac7da", - "reference": "6e53ced3d2499cee4a0ef23a7c4d6449607ac7da", + "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/add6d9ff97336b62f95a3b94f75cea4e085465b2", + "reference": "add6d9ff97336b62f95a3b94f75cea4e085465b2", "shasum": "" }, "require": { @@ -291,8 +291,8 @@ }, "require-dev": { "phly/keep-a-changelog": "^1.4", - "phpunit/phpunit": "^6.4", - "squizlabs/php_codesniffer": "^3.1" + "phpunit/phpunit": "^7 | ^8 | ^9", + "squizlabs/php_codesniffer": "^3.4" }, "suggest": { "ext-imagick": "to generate QR code images" @@ -311,13 +311,13 @@ { "name": "Ben Scholzen 'DASPRiD'", "email": "mail@dasprids.de", - "homepage": "http://www.dasprids.de", + "homepage": "https://dasprids.de/", "role": "Developer" } ], "description": "BaconQrCode is a QR code generator for PHP.", "homepage": "https://github.com/Bacon/BaconQrCode", - "time": "2020-07-14T11:04:05+00:00" + "time": "2020-07-30T16:40:58+00:00" }, { "name": "beberlei/assert", @@ -383,16 +383,16 @@ }, { "name": "braintree/braintree_php", - "version": "4.5.0", + "version": "5.2.0", "source": { "type": "git", "url": "https://github.com/braintree/braintree_php.git", - "reference": "4aa200601e126183a572133d7ea2037de44b3d2d" + "reference": "6cf3447ecd0303caa6f2d4f22b653dc5c71b4589" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/braintree/braintree_php/zipball/4aa200601e126183a572133d7ea2037de44b3d2d", - "reference": "4aa200601e126183a572133d7ea2037de44b3d2d", + "url": "https://api.github.com/repos/braintree/braintree_php/zipball/6cf3447ecd0303caa6f2d4f22b653dc5c71b4589", + "reference": "6cf3447ecd0303caa6f2d4f22b653dc5c71b4589", "shasum": "" }, "require": { @@ -408,9 +408,6 @@ }, "type": "library", "autoload": { - "psr-0": { - "Braintree": "lib/" - }, "psr-4": { "Braintree\\": "lib/Braintree" } @@ -426,7 +423,7 @@ } ], "description": "Braintree PHP Client Library", - "time": "2019-10-28T16:05:37+00:00" + "time": "2020-06-15T19:02:23+00:00" }, { "name": "christian-riesen/base32", @@ -594,21 +591,21 @@ }, { "name": "colinmollenhour/php-redis-session-abstract", - "version": "v1.4.2", + "version": "v1.4.3", "source": { "type": "git", "url": "https://github.com/colinmollenhour/php-redis-session-abstract.git", - "reference": "669521218794f125c7b668252f4f576eda65e1e4" + "reference": "39ca38da5e0a981bc1a7e39a86693c128784a513" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/colinmollenhour/php-redis-session-abstract/zipball/669521218794f125c7b668252f4f576eda65e1e4", - "reference": "669521218794f125c7b668252f4f576eda65e1e4", + "url": "https://api.github.com/repos/colinmollenhour/php-redis-session-abstract/zipball/39ca38da5e0a981bc1a7e39a86693c128784a513", + "reference": "39ca38da5e0a981bc1a7e39a86693c128784a513", "shasum": "" }, "require": { "colinmollenhour/credis": "~1.6", - "php": "^5.5 || ^7.0" + "php": "^5.5 || ^7.0|| ^7.1 || ^7.2" }, "type": "library", "autoload": { @@ -627,20 +624,20 @@ ], "description": "A Redis-based session handler with optimistic locking", "homepage": "https://github.com/colinmollenhour/php-redis-session-abstract", - "time": "2020-01-08T17:41:01+00:00" + "time": "2020-10-07T09:47:22+00:00" }, { "name": "composer/ca-bundle", - "version": "1.2.7", + "version": "1.2.8", "source": { "type": "git", "url": "https://github.com/composer/ca-bundle.git", - "reference": "95c63ab2117a72f48f5a55da9740a3273d45b7fd" + "reference": "8a7ecad675253e4654ea05505233285377405215" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/95c63ab2117a72f48f5a55da9740a3273d45b7fd", - "reference": "95c63ab2117a72f48f5a55da9740a3273d45b7fd", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/8a7ecad675253e4654ea05505233285377405215", + "reference": "8a7ecad675253e4654ea05505233285377405215", "shasum": "" }, "require": { @@ -688,12 +685,16 @@ "url": "https://packagist.com", "type": "custom" }, + { + "url": "https://github.com/composer", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/composer/composer", "type": "tidelift" } ], - "time": "2020-04-08T08:27:21+00:00" + "time": "2020-08-23T12:54:47+00:00" }, { "name": "composer/composer", @@ -788,16 +789,16 @@ }, { "name": "composer/semver", - "version": "1.5.1", + "version": "1.7.1", "source": { "type": "git", "url": "https://github.com/composer/semver.git", - "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de" + "reference": "38276325bd896f90dfcfe30029aa5db40df387a7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/semver/zipball/c6bea70230ef4dd483e6bbcab6005f682ed3a8de", - "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de", + "url": "https://api.github.com/repos/composer/semver/zipball/38276325bd896f90dfcfe30029aa5db40df387a7", + "reference": "38276325bd896f90dfcfe30029aa5db40df387a7", "shasum": "" }, "require": { @@ -845,7 +846,21 @@ "validation", "versioning" ], - "time": "2020-01-13T12:06:48+00:00" + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2020-09-27T13:13:07+00:00" }, { "name": "composer/spdx-licenses", @@ -923,16 +938,16 @@ }, { "name": "composer/xdebug-handler", - "version": "1.4.2", + "version": "1.4.3", "source": { "type": "git", "url": "https://github.com/composer/xdebug-handler.git", - "reference": "fa2aaf99e2087f013a14f7432c1cd2dd7d8f1f51" + "reference": "ebd27a9866ae8254e873866f795491f02418c5a5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/fa2aaf99e2087f013a14f7432c1cd2dd7d8f1f51", - "reference": "fa2aaf99e2087f013a14f7432c1cd2dd7d8f1f51", + "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ebd27a9866ae8254e873866f795491f02418c5a5", + "reference": "ebd27a9866ae8254e873866f795491f02418c5a5", "shasum": "" }, "require": { @@ -977,7 +992,7 @@ "type": "tidelift" } ], - "time": "2020-06-04T11:16:35+00:00" + "time": "2020-08-19T10:27:58+00:00" }, { "name": "container-interop/container-interop", @@ -1013,21 +1028,21 @@ }, { "name": "dasprid/enum", - "version": "1.0.0", + "version": "1.0.3", "source": { "type": "git", "url": "https://github.com/DASPRiD/Enum.git", - "reference": "631ef6e638e9494b0310837fa531bedd908fc22b" + "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/631ef6e638e9494b0310837fa531bedd908fc22b", - "reference": "631ef6e638e9494b0310837fa531bedd908fc22b", + "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2", + "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2", "shasum": "" }, "require-dev": { - "phpunit/phpunit": "^6.4", - "squizlabs/php_codesniffer": "^3.1" + "phpunit/phpunit": "^7 | ^8 | ^9", + "squizlabs/php_codesniffer": "^3.4" }, "type": "library", "autoload": { @@ -1043,7 +1058,8 @@ { "name": "Ben Scholzen 'DASPRiD'", "email": "mail@dasprids.de", - "homepage": "https://dasprids.de/" + "homepage": "https://dasprids.de/", + "role": "Developer" } ], "description": "PHP 7.1 enum implementation", @@ -1051,20 +1067,20 @@ "enum", "map" ], - "time": "2017-10-25T22:45:27+00:00" + "time": "2020-10-02T16:03:48+00:00" }, { "name": "donatj/phpuseragentparser", - "version": "v0.16.0", + "version": "v0.17.0", "source": { "type": "git", "url": "https://github.com/donatj/PhpUserAgent.git", - "reference": "b3551112ed84524aef6542a8778a3f812c8098ce" + "reference": "e159493010d4b71c9620a43fd05f8284f29dcfeb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/donatj/PhpUserAgent/zipball/b3551112ed84524aef6542a8778a3f812c8098ce", - "reference": "b3551112ed84524aef6542a8778a3f812c8098ce", + "url": "https://api.github.com/repos/donatj/PhpUserAgent/zipball/e159493010d4b71c9620a43fd05f8284f29dcfeb", + "reference": "e159493010d4b71c9620a43fd05f8284f29dcfeb", "shasum": "" }, "require": { @@ -1112,18 +1128,19 @@ "type": "github" } ], - "time": "2020-04-07T15:47:30+00:00" + "time": "2020-09-01T16:15:49+00:00" }, { "name": "dotmailer/dotmailer-magento2-extension", - "version": "4.6.0", + "version": "4.8.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension/dotmailer-dotmailer-magento2-extension-4.6.0.0.zip", - "shasum": "9d16976f52bbb3aee2356687a8bc7c7028a4e51d" + "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension/dotmailer-dotmailer-magento2-extension-4.8.0.0.zip", + "shasum": "936e7cb91b6c1d981f4c6c195130603288b3284d" }, "require": { "magento/framework": ">=101 <104", + "magento/module-authorization": "100.4.*", "magento/module-backend": ">=100 <103", "magento/module-bundle": ">=100 <102", "magento/module-catalog": ">=101 <105", @@ -1175,14 +1192,15 @@ }, { "name": "dotmailer/dotmailer-magento2-extension-chat", - "version": "1.1.0", + "version": "1.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-chat/dotmailer-dotmailer-magento2-extension-chat-1.1.0.0.zip", - "shasum": "70c2a165be11b865dd8de7a8e2cd2b867aa8dce6" + "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-chat/dotmailer-dotmailer-magento2-extension-chat-1.2.0.0.zip", + "shasum": "f70ba21b96985e6826ff208cefc3b0a88f26146c" }, "require": { "dotmailer/dotmailer-magento2-extension": "^4.3.1", + "magento/framework": ">=101 <104", "magento/module-backend": ">=100 <103", "magento/module-checkout": "100.*", "magento/module-config": ">=100 <103", @@ -1207,15 +1225,15 @@ }, { "name": "dotmailer/dotmailer-magento2-extension-package", - "version": "4.6.0", + "version": "4.8.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-package/dotmailer-dotmailer-magento2-extension-package-4.6.0.0.zip", - "shasum": "d00023ec7e379b215db599f0133f2106f3dea31a" + "url": "https://repo.magento.com/archives/dotmailer/dotmailer-magento2-extension-package/dotmailer-dotmailer-magento2-extension-package-4.8.0.0.zip", + "shasum": "ed68af95837c3cea0be8cad328a4fd0682451356" }, "require": { - "dotmailer/dotmailer-magento2-extension": "4.6.0", - "dotmailer/dotmailer-magento2-extension-chat": "1.1.0" + "dotmailer/dotmailer-magento2-extension": "4.8.0", + "dotmailer/dotmailer-magento2-extension-chat": "1.2.0" }, "type": "metapackage", "license": [ @@ -1288,16 +1306,16 @@ }, { "name": "endroid/qr-code", - "version": "3.9.1", + "version": "3.9.3", "source": { "type": "git", "url": "https://github.com/endroid/qr-code.git", - "reference": "8605e2c958ed568788da4e16bd8a9502e32f375f" + "reference": "58d5872ca46b99b5c2e72cd2c8dea09ce2988156" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/endroid/qr-code/zipball/8605e2c958ed568788da4e16bd8a9502e32f375f", - "reference": "8605e2c958ed568788da4e16bd8a9502e32f375f", + "url": "https://api.github.com/repos/endroid/qr-code/zipball/58d5872ca46b99b5c2e72cd2c8dea09ce2988156", + "reference": "58d5872ca46b99b5c2e72cd2c8dea09ce2988156", "shasum": "" }, "require": { @@ -1355,7 +1373,7 @@ "type": "github" } ], - "time": "2020-07-10T10:16:06+00:00" + "time": "2020-10-07T09:42:59+00:00" }, { "name": "ezimuel/guzzlestreams", @@ -1574,23 +1592,23 @@ }, { "name": "guzzlehttp/promises", - "version": "v1.3.1", + "version": "1.4.0", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646" + "reference": "60d379c243457e073cff02bc323a2a86cb355631" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646", + "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631", + "reference": "60d379c243457e073cff02bc323a2a86cb355631", "shasum": "" }, "require": { - "php": ">=5.5.0" + "php": ">=5.5" }, "require-dev": { - "phpunit/phpunit": "^4.0" + "symfony/phpunit-bridge": "^4.4 || ^5.1" }, "type": "library", "extra": { @@ -1621,20 +1639,20 @@ "keywords": [ "promise" ], - "time": "2016-12-20T10:07:11+00:00" + "time": "2020-09-30T07:37:28+00:00" }, { "name": "guzzlehttp/psr7", - "version": "1.6.1", + "version": "1.7.0", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "239400de7a173fe9901b9ac7c06497751f00727a" + "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a", - "reference": "239400de7a173fe9901b9ac7c06497751f00727a", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3", + "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3", "shasum": "" }, "require": { @@ -1647,15 +1665,15 @@ }, "require-dev": { "ext-zlib": "*", - "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8" + "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10" }, "suggest": { - "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses" + "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.6-dev" + "dev-master": "1.7-dev" } }, "autoload": { @@ -1692,7 +1710,7 @@ "uri", "url" ], - "time": "2019-07-01T23:21:34+00:00" + "time": "2020-09-30T07:37:11+00:00" }, { "name": "justinrainbow/json-schema", @@ -1812,17 +1830,18 @@ }, { "name": "klarna/m2-payments", - "version": "8.0.2", + "version": "8.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/klarna/m2-payments/klarna-m2-payments-8.0.2.0.zip", - "shasum": "81ed938d910a52c0df4181c464c62091f2a8a634" + "url": "https://repo.magento.com/archives/klarna/m2-payments/klarna-m2-payments-8.1.0.0.zip", + "shasum": "c31e4d0746cf9b281ee2058a0353ab8f5dcdf7b0" }, "require": { - "klarna/module-core": "6.0.1", - "klarna/module-kp": "7.0.1", - "klarna/module-onsitemessaging": "1.0.1", - "klarna/module-ordermanagement": "6.0.2" + "klarna/module-core": "6.0.2", + "klarna/module-kp": "7.1.0", + "klarna/module-kp-graph-ql": "0.9.0", + "klarna/module-onsitemessaging": "1.0.2", + "klarna/module-ordermanagement": "6.0.3" }, "require-dev": { "friendsofphp/php-cs-fixer": "~2.16.0", @@ -1834,7 +1853,7 @@ "pdepend/pdepend": "^2.5.2", "phploc/phploc": "^6.0", "phpmd/phpmd": "@stable", - "phpro/grumphp": "^0.14", + "phpro/grumphp": "^0.19", "phpunit/phpunit": "^9", "sebastian/phpcpd": "~5.0.0", "squizlabs/php_codesniffer": "~3.5.4" @@ -1847,16 +1866,16 @@ }, { "name": "klarna/module-core", - "version": "6.0.1", + "version": "6.0.2", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/klarna/module-core/klarna-module-core-6.0.1.0.zip", - "shasum": "782be784675bd9d586cda2d267053456e212f00f" + "url": "https://repo.magento.com/archives/klarna/module-core/klarna-module-core-6.0.2.0.zip", + "shasum": "d3878dc3a1a1d9c7e70681291412982dfa00b22e" }, "require": { "guzzlehttp/guzzle": "^6.0", "magento/framework": "^102|^103", - "magento/module-bundle": "^100.3 ||^101.0", + "magento/module-bundle": "^100.3||^101.0", "magento/module-catalog": "^103.0|^104.0", "magento/module-config": "^101.1", "magento/module-customer": "^102.0|^103.0", @@ -1934,11 +1953,11 @@ }, { "name": "klarna/module-kp", - "version": "7.0.1", + "version": "7.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/klarna/module-kp/klarna-module-kp-7.0.1.0.zip", - "shasum": "45082a499985c7fa9385b85abdd1bd1b49f81e3c" + "url": "https://repo.magento.com/archives/klarna/module-kp/klarna-module-kp-7.1.0.0.zip", + "shasum": "7266fec0ff572260945069c5f0360e18931b12c4" }, "require": { "klarna/module-core": "^6.0", @@ -2001,13 +2020,55 @@ ], "description": "Klarna Payments Magento 2 Extension" }, + { + "name": "klarna/module-kp-graph-ql", + "version": "0.9.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/klarna/module-kp-graph-ql/klarna-module-kp-graph-ql-0.9.0.0.zip", + "shasum": "a877f3b010cc16b026b2c82998184a88fd83d42b" + }, + "require": { + "klarna/module-kp": "^7.0.2", + "magento/framework": "^102|^103", + "magento/module-graph-ql": "^100", + "magento/module-payment": "^100.1", + "magento/module-quote-graph-ql": "^100", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Klarna\\KpGraphQl\\": "" + } + }, + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Dario Kassler", + "email": "dario.kassler@klarna.com", + "role": "Developer" + }, + { + "name": "Markus Simon", + "email": "markus.simon2@klarna.com", + "role": "Developer" + } + ], + "description": "Klarna KpGraphQl Magento 2 Extension" + }, { "name": "klarna/module-onsitemessaging", - "version": "1.0.1", + "version": "1.0.2", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/klarna/module-onsitemessaging/klarna-module-onsitemessaging-1.0.1.0.zip", - "shasum": "dade15bbef2ae9230b4612de5f0bc59cbeafb0f9" + "url": "https://repo.magento.com/archives/klarna/module-onsitemessaging/klarna-module-onsitemessaging-1.0.2.0.zip", + "shasum": "303e3b36a4720cda912128ec3bb33f9324d4c495" }, "require": { "klarna/module-core": "^6.0", @@ -2046,11 +2107,11 @@ }, { "name": "klarna/module-ordermanagement", - "version": "6.0.2", + "version": "6.0.3", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/klarna/module-ordermanagement/klarna-module-ordermanagement-6.0.2.0.zip", - "shasum": "aef328ea439f0b0f06760af9378b7005b4b0272e" + "url": "https://repo.magento.com/archives/klarna/module-ordermanagement/klarna-module-ordermanagement-6.0.3.0.zip", + "shasum": "4010e13db02da44929ff12f20091bb01f4c5c21f" }, "require": { "klarna/module-core": "^6.0", @@ -2692,41 +2753,41 @@ }, { "name": "laminas/laminas-eventmanager", - "version": "3.2.1", + "version": "3.3.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-eventmanager.git", - "reference": "ce4dc0bdf3b14b7f9815775af9dfee80a63b4748" + "reference": "1940ccf30e058b2fd66f5a9d696f1b5e0027b082" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-eventmanager/zipball/ce4dc0bdf3b14b7f9815775af9dfee80a63b4748", - "reference": "ce4dc0bdf3b14b7f9815775af9dfee80a63b4748", + "url": "https://api.github.com/repos/laminas/laminas-eventmanager/zipball/1940ccf30e058b2fd66f5a9d696f1b5e0027b082", + "reference": "1940ccf30e058b2fd66f5a9d696f1b5e0027b082", "shasum": "" }, "require": { "laminas/laminas-zendframework-bridge": "^1.0", - "php": "^5.6 || ^7.0" + "php": "^7.3 || ^8.0" }, "replace": { - "zendframework/zend-eventmanager": "self.version" + "zendframework/zend-eventmanager": "^3.2.1" }, "require-dev": { - "athletic/athletic": "^0.1", - "container-interop/container-interop": "^1.1.0", + "container-interop/container-interop": "^1.1", "laminas/laminas-coding-standard": "~1.0.0", "laminas/laminas-stdlib": "^2.7.3 || ^3.0", - "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2" + "phpbench/phpbench": "^0.17.1", + "phpunit/phpunit": "^8.5.8" }, "suggest": { - "container-interop/container-interop": "^1.1.0, to use the lazy listeners feature", + "container-interop/container-interop": "^1.1, to use the lazy listeners feature", "laminas/laminas-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.2-dev", - "dev-develop": "3.3-dev" + "dev-master": "3.3.x-dev", + "dev-develop": "3.4.x-dev" } }, "autoload": { @@ -2746,20 +2807,26 @@ "events", "laminas" ], - "time": "2019-12-31T16:44:52+00:00" + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2020-08-25T11:10:44+00:00" }, { "name": "laminas/laminas-feed", - "version": "2.12.2", + "version": "2.12.3", "source": { "type": "git", "url": "https://github.com/laminas/laminas-feed.git", - "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654" + "reference": "3c91415633cb1be6f9d78683d69b7dcbfe6b4012" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/8a193ac96ebcb3e16b6ee754ac2a889eefacb654", - "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654", + "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/3c91415633cb1be6f9d78683d69b7dcbfe6b4012", + "reference": "3c91415633cb1be6f9d78683d69b7dcbfe6b4012", "shasum": "" }, "require": { @@ -2813,7 +2880,13 @@ "feed", "laminas" ], - "time": "2020-03-29T12:36:29+00:00" + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2020-08-18T13:45:04+00:00" }, { "name": "laminas/laminas-filter", @@ -2974,16 +3047,16 @@ }, { "name": "laminas/laminas-http", - "version": "2.12.0", + "version": "2.13.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-http.git", - "reference": "48bd06ffa3a6875e2b77d6852405eb7b1589d575" + "reference": "33b7942f51ce905ce9bfc8bf28badc501d3904b5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-http/zipball/48bd06ffa3a6875e2b77d6852405eb7b1589d575", - "reference": "48bd06ffa3a6875e2b77d6852405eb7b1589d575", + "url": "https://api.github.com/repos/laminas/laminas-http/zipball/33b7942f51ce905ce9bfc8bf28badc501d3904b5", + "reference": "33b7942f51ce905ce9bfc8bf28badc501d3904b5", "shasum": "" }, "require": { @@ -3006,12 +3079,6 @@ "paragonie/certainty": "For automated management of cacert.pem" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.12.x-dev", - "dev-develop": "2.13.x-dev" - } - }, "autoload": { "psr-4": { "Laminas\\Http\\": "src/" @@ -3034,7 +3101,7 @@ "type": "community_bridge" } ], - "time": "2020-06-23T15:14:37+00:00" + "time": "2020-08-18T17:11:58+00:00" }, { "name": "laminas/laminas-hydrator", @@ -3420,16 +3487,16 @@ }, { "name": "laminas/laminas-mail", - "version": "2.11.0", + "version": "2.12.3", "source": { "type": "git", "url": "https://github.com/laminas/laminas-mail.git", - "reference": "4c5545637eea3dc745668ddff1028692ed004c4b" + "reference": "c154a733b122539ac2c894561996c770db289f70" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-mail/zipball/4c5545637eea3dc745668ddff1028692ed004c4b", - "reference": "4c5545637eea3dc745668ddff1028692ed004c4b", + "url": "https://api.github.com/repos/laminas/laminas-mail/zipball/c154a733b122539ac2c894561996c770db289f70", + "reference": "c154a733b122539ac2c894561996c770db289f70", "shasum": "" }, "require": { @@ -3439,7 +3506,7 @@ "laminas/laminas-stdlib": "^2.7 || ^3.0", "laminas/laminas-validator": "^2.10.2", "laminas/laminas-zendframework-bridge": "^1.0", - "php": "^5.6 || ^7.0", + "php": "^7.1", "true/punycode": "^2.1" }, "replace": { @@ -3449,8 +3516,8 @@ "laminas/laminas-coding-standard": "~1.0.0", "laminas/laminas-config": "^2.6", "laminas/laminas-crypt": "^2.6 || ^3.0", - "laminas/laminas-servicemanager": "^2.7.10 || ^3.3.1", - "phpunit/phpunit": "^5.7.25 || ^6.4.4 || ^7.1.4" + "laminas/laminas-servicemanager": "^3.2.1", + "phpunit/phpunit": "^7.5.20" }, "suggest": { "laminas/laminas-crypt": "Crammd5 support in SMTP Auth", @@ -3458,10 +3525,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-master": "2.11.x-dev", - "dev-develop": "2.12.x-dev" - }, "laminas": { "component": "Laminas\\Mail", "config-provider": "Laminas\\Mail\\ConfigProvider" @@ -3488,7 +3551,7 @@ "type": "community_bridge" } ], - "time": "2020-06-30T20:17:23+00:00" + "time": "2020-08-12T14:51:33+00:00" }, { "name": "laminas/laminas-math", @@ -3600,16 +3663,16 @@ }, { "name": "laminas/laminas-modulemanager", - "version": "2.8.4", + "version": "2.9.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-modulemanager.git", - "reference": "92b1cde1aab5aef687b863face6dd5d9c6751c78" + "reference": "789bbd4ab391da9221f265f6bb2d594f8f11855b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-modulemanager/zipball/92b1cde1aab5aef687b863face6dd5d9c6751c78", - "reference": "92b1cde1aab5aef687b863face6dd5d9c6751c78", + "url": "https://api.github.com/repos/laminas/laminas-modulemanager/zipball/789bbd4ab391da9221f265f6bb2d594f8f11855b", + "reference": "789bbd4ab391da9221f265f6bb2d594f8f11855b", "shasum": "" }, "require": { @@ -3617,10 +3680,11 @@ "laminas/laminas-eventmanager": "^3.2 || ^2.6.3", "laminas/laminas-stdlib": "^3.1 || ^2.7", "laminas/laminas-zendframework-bridge": "^1.0", - "php": "^5.6 || ^7.0" + "php": "^5.6 || ^7.0", + "webimpress/safe-writer": "^1.0.2 || ^2.1" }, "replace": { - "zendframework/zend-modulemanager": "self.version" + "zendframework/zend-modulemanager": "^2.8.4" }, "require-dev": { "laminas/laminas-coding-standard": "~1.0.0", @@ -3640,8 +3704,8 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.8.x-dev", - "dev-develop": "2.9.x-dev" + "dev-master": "2.9.x-dev", + "dev-develop": "2.10.x-dev" } }, "autoload": { @@ -3659,7 +3723,13 @@ "laminas", "modulemanager" ], - "time": "2019-12-31T17:26:56+00:00" + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2020-08-25T09:29:22+00:00" }, { "name": "laminas/laminas-mvc", @@ -4109,35 +4179,35 @@ }, { "name": "laminas/laminas-stdlib", - "version": "3.2.1", + "version": "3.3.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-stdlib.git", - "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6" + "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/2b18347625a2f06a1a485acfbc870f699dbe51c6", - "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6", + "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/b9d84eaa39fde733356ea948cdef36c631f202b6", + "reference": "b9d84eaa39fde733356ea948cdef36c631f202b6", "shasum": "" }, "require": { "laminas/laminas-zendframework-bridge": "^1.0", - "php": "^5.6 || ^7.0" + "php": "^7.3 || ^8.0" }, "replace": { - "zendframework/zend-stdlib": "self.version" + "zendframework/zend-stdlib": "^3.2.1" }, "require-dev": { "laminas/laminas-coding-standard": "~1.0.0", - "phpbench/phpbench": "^0.13", - "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2" + "phpbench/phpbench": "^0.17.1", + "phpunit/phpunit": "^9.3.7" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.2.x-dev", - "dev-develop": "3.3.x-dev" + "dev-master": "3.3.x-dev", + "dev-develop": "3.4.x-dev" } }, "autoload": { @@ -4155,7 +4225,13 @@ "laminas", "stdlib" ], - "time": "2019-12-31T17:51:15+00:00" + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2020-08-25T09:08:16+00:00" }, { "name": "laminas/laminas-text", @@ -4432,31 +4508,27 @@ }, { "name": "laminas/laminas-zendframework-bridge", - "version": "1.0.4", + "version": "1.1.1", "source": { "type": "git", "url": "https://github.com/laminas/laminas-zendframework-bridge.git", - "reference": "fcd87520e4943d968557803919523772475e8ea3" + "reference": "6ede70583e101030bcace4dcddd648f760ddf642" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3", - "reference": "fcd87520e4943d968557803919523772475e8ea3", + "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/6ede70583e101030bcace4dcddd648f760ddf642", + "reference": "6ede70583e101030bcace4dcddd648f760ddf642", "shasum": "" }, "require": { - "php": "^5.6 || ^7.0" + "php": "^5.6 || ^7.0 || ^8.0" }, "require-dev": { - "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1", + "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^9.3", "squizlabs/php_codesniffer": "^3.5" }, "type": "library", "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev", - "dev-develop": "1.1.x-dev" - }, "laminas": { "module": "Laminas\\ZendFrameworkBridge" } @@ -4486,7 +4558,7 @@ "type": "community_bridge" } ], - "time": "2020-05-20T16:45:56+00:00" + "time": "2020-09-14T14:23:00+00:00" }, { "name": "league/iso3166", @@ -4542,37 +4614,42 @@ ], "time": "2020-01-29T07:08:12+00:00" }, + { + "name": "magento/adobe-ims", + "version": "2.1.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/adobe-ims/magento-adobe-ims-2.1.0.0.zip", + "shasum": "4c47779423d0bbe55951a3cfd08134e5cddfdbe9" + }, + "require": { + "magento/module-adobe-ims": "2.1.0", + "magento/module-adobe-ims-api": "2.1.0" + }, + "type": "metapackage", + "description": "Adobe IMS Integration" + }, { "name": "magento/adobe-stock-integration", - "version": "2.0.0", + "version": "2.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/adobe-stock-integration/magento-adobe-stock-integration-2.0.0.0.zip", - "shasum": "2da07f38b1316a518b1a5a87baa63aef9843b2be" - }, - "require": { - "magento/module-adobe-ims": "1.1.0", - "magento/module-adobe-ims-api": "2.0.0", - "magento/module-adobe-stock-admin-ui": "1.1.0", - "magento/module-adobe-stock-asset": "1.1.0", - "magento/module-adobe-stock-asset-api": "1.1.0", - "magento/module-adobe-stock-client": "1.1.0", - "magento/module-adobe-stock-client-api": "1.1.0", - "magento/module-adobe-stock-image": "1.1.0", - "magento/module-adobe-stock-image-admin-ui": "1.1.0", - "magento/module-adobe-stock-image-api": "1.1.0", - "magento/module-media-content-synchronization": "1.0.0", - "magento/module-media-content-synchronization-api": "1.0.0", - "magento/module-media-content-synchronization-catalog": "1.0.0", - "magento/module-media-content-synchronization-cms": "1.0.0", - "magento/module-media-gallery-integration": "1.0.0", - "magento/module-media-gallery-synchronization": "1.0.0", - "magento/module-media-gallery-synchronization-api": "1.0.0", - "magento/module-media-gallery-ui": "1.0.0", - "magento/module-media-gallery-ui-api": "1.0.0" + "url": "https://repo.magento.com/archives/magento/adobe-stock-integration/magento-adobe-stock-integration-2.1.0.0.zip", + "shasum": "c8f38ee734f6706b8d6ecfe593e000e9b87951ac" + }, + "require": { + "magento/adobe-ims": "2.1.0", + "magento/module-adobe-stock-admin-ui": "1.2.0", + "magento/module-adobe-stock-asset": "1.2.0", + "magento/module-adobe-stock-asset-api": "1.2.0", + "magento/module-adobe-stock-client": "1.2.0", + "magento/module-adobe-stock-client-api": "2.0.0", + "magento/module-adobe-stock-image": "1.2.0", + "magento/module-adobe-stock-image-admin-ui": "1.2.0", + "magento/module-adobe-stock-image-api": "1.2.0" }, "type": "metapackage", - "description": "Adobe Stock integration" + "description": "Adobe Stock Integration" }, { "name": "magento/composer", @@ -4637,11 +4714,11 @@ }, { "name": "magento/framework", - "version": "103.0.0", + "version": "103.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/framework/magento-framework-103.0.0.0.zip", - "shasum": "c6f70138f0048dca680d57aafe33778771b096bf" + "url": "https://repo.magento.com/archives/magento/framework/magento-framework-103.0.1.0.zip", + "shasum": "a26164efffe0cdb5ed2f821a1b6a599a74b957ff" }, "require": { "colinmollenhour/php-redis-session-abstract": "~1.4.0", @@ -4681,12 +4758,12 @@ }, "type": "magento2-library", "autoload": { - "psr-4": { - "Magento\\Framework\\": "" - }, "files": [ "registration.php" - ] + ], + "psr-4": { + "Magento\\Framework\\": "" + } }, "license": [ "OSL-3.0", @@ -4751,11 +4828,11 @@ }, { "name": "magento/framework-message-queue", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/framework-message-queue/magento-framework-message-queue-100.4.0.0.zip", - "shasum": "d15ab4611e564e86e2635f9e026babd434e69650" + "url": "https://repo.magento.com/archives/magento/framework-message-queue/magento-framework-message-queue-100.4.1.0.zip", + "shasum": "84002f5f98e987902b1378be040c3cd46cbe92d2" }, "require": { "magento/framework": "103.0.*", @@ -4763,12 +4840,12 @@ }, "type": "magento2-library", "autoload": { - "psr-4": { - "Magento\\Framework\\MessageQueue\\": "" - }, "files": [ "registration.php" - ] + ], + "psr-4": { + "Magento\\Framework\\MessageQueue\\": "" + } }, "license": [ "OSL-3.0", @@ -4836,16 +4913,16 @@ }, { "name": "magento/inventory-metapackage", - "version": "1.2.0", + "version": "1.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/inventory-metapackage/magento-inventory-metapackage-1.2.0.0.zip", - "shasum": "3474c67672b7c9bca13cd5dfb4249385dafd8fec" + "url": "https://repo.magento.com/archives/magento/inventory-metapackage/magento-inventory-metapackage-1.2.1.0.zip", + "shasum": "819bfcfeb6d72493274419b3a095be26b233f019" }, "require": { "magento/inventory-composer-installer": "1.1.0", - "magento/module-inventory": "1.1.0", - "magento/module-inventory-admin-ui": "1.1.0", + "magento/module-inventory": "1.1.1", + "magento/module-inventory-admin-ui": "1.1.2", "magento/module-inventory-advanced-checkout": "1.1.0", "magento/module-inventory-api": "1.1.0", "magento/module-inventory-bundle-import-export": "1.0.0", @@ -4853,8 +4930,8 @@ "magento/module-inventory-bundle-product-admin-ui": "1.1.0", "magento/module-inventory-bundle-product-indexer": "1.0.0", "magento/module-inventory-cache": "1.1.0", - "magento/module-inventory-catalog": "1.1.0", - "magento/module-inventory-catalog-admin-ui": "1.1.0", + "magento/module-inventory-catalog": "1.1.1", + "magento/module-inventory-catalog-admin-ui": "1.1.2", "magento/module-inventory-catalog-api": "1.2.0", "magento/module-inventory-catalog-search": "1.1.0", "magento/module-inventory-configurable-product": "1.1.0", @@ -4872,11 +4949,11 @@ "magento/module-inventory-grouped-product": "1.1.0", "magento/module-inventory-grouped-product-admin-ui": "1.1.0", "magento/module-inventory-grouped-product-indexer": "1.1.0", - "magento/module-inventory-import-export": "1.1.0", - "magento/module-inventory-in-store-pickup": "1.0.0", - "magento/module-inventory-in-store-pickup-admin-ui": "1.0.0", + "magento/module-inventory-import-export": "1.1.1", + "magento/module-inventory-in-store-pickup": "1.0.1", + "magento/module-inventory-in-store-pickup-admin-ui": "1.0.1", "magento/module-inventory-in-store-pickup-api": "1.0.0", - "magento/module-inventory-in-store-pickup-frontend": "1.0.0", + "magento/module-inventory-in-store-pickup-frontend": "1.0.1", "magento/module-inventory-in-store-pickup-graph-ql": "1.0.0", "magento/module-inventory-in-store-pickup-multishipping": "1.0.0", "magento/module-inventory-in-store-pickup-quote": "1.0.0", @@ -4889,25 +4966,26 @@ "magento/module-inventory-in-store-pickup-shipping-api": "1.0.0", "magento/module-inventory-in-store-pickup-webapi-extension": "1.0.0", "magento/module-inventory-indexer": "2.0.0", - "magento/module-inventory-low-quantity-notification": "1.1.0", - "magento/module-inventory-low-quantity-notification-admin-ui": "1.1.0", + "magento/module-inventory-low-quantity-notification": "1.1.1", + "magento/module-inventory-low-quantity-notification-admin-ui": "1.1.1", "magento/module-inventory-low-quantity-notification-api": "1.1.0", "magento/module-inventory-multi-dimensional-indexer-api": "1.1.0", "magento/module-inventory-product-alert": "1.1.0", "magento/module-inventory-requisition-list": "1.1.0", - "magento/module-inventory-reservation-cli": "1.1.0", - "magento/module-inventory-reservations": "1.1.0", + "magento/module-inventory-reservation-cli": "1.1.1", + "magento/module-inventory-reservations": "1.1.1", "magento/module-inventory-reservations-api": "1.1.0", - "magento/module-inventory-sales": "1.1.0", + "magento/module-inventory-sales": "1.1.1", "magento/module-inventory-sales-admin-ui": "1.1.0", "magento/module-inventory-sales-api": "1.1.0", "magento/module-inventory-sales-frontend-ui": "1.1.0", "magento/module-inventory-setup-fixture-generator": "1.1.0", - "magento/module-inventory-shipping": "1.1.0", + "magento/module-inventory-shipping": "1.1.1", "magento/module-inventory-shipping-admin-ui": "1.1.0", "magento/module-inventory-source-deduction-api": "1.1.0", "magento/module-inventory-source-selection": "1.1.0", - "magento/module-inventory-source-selection-api": "1.3.0" + "magento/module-inventory-source-selection-api": "1.3.1", + "magento/module-inventory-visual-merchandiser": "1.0.0" }, "type": "metapackage", "description": "Metapackage with Magento Inventory modules for simple installation" @@ -5154,11 +5232,11 @@ }, { "name": "magento/magento2-base", - "version": "2.4.0", + "version": "2.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/magento2-base/magento-magento2-base-2.4.0.0.zip", - "shasum": "c3244337e2d0f20022766749ea6e02c509e33255" + "url": "https://repo.magento.com/archives/magento/magento2-base/magento-magento2-base-2.4.1.0.zip", + "shasum": "2e62201dde82607daa5a9d56db9bea3e5535f93d" }, "require": { "composer/composer": "^1.9", @@ -5211,27 +5289,29 @@ }, "type": "magento2-component", "extra": { + "chmod": [ + { + "mask": "0755", + "path": "bin/magento" + } + ], "component_paths": { - "trentrichardson/jquery-timepicker-addon": "lib/web/jquery/jquery-ui-timepicker-addon.js", + "blueimp/jquery-file-upload": "lib/web/jquery/fileUploader", "components/jquery": [ "lib/web/jquery.js", "lib/web/jquery/jquery.min.js", "lib/web/jquery/jquery-migrate.js" ], - "blueimp/jquery-file-upload": "lib/web/jquery/fileUploader", "components/jqueryui": "lib/web/jquery/jquery-ui.js", - "twbs/bootstrap": "lib/web/jquery/jquery.tabs.js", - "tinymce/tinymce": "lib/web/tiny_mce_4" + "tinymce/tinymce": "lib/web/tiny_mce_4", + "trentrichardson/jquery-timepicker-addon": "lib/web/jquery/jquery-ui-timepicker-addon.js", + "twbs/bootstrap": "lib/web/jquery/jquery.tabs.js" }, "map": [ [ ".editorconfig", ".editorconfig" ], - [ - ".github", - ".github" - ], [ ".htaccess", ".htaccess" @@ -5520,14 +5600,14 @@ "lib/web/images", "lib/web/images" ], - [ - "lib/web/jquery.js", - "lib/web/jquery.js" - ], [ "lib/web/jquery", "lib/web/jquery" ], + [ + "lib/web/jquery.js", + "lib/web/jquery.js" + ], [ "lib/web/knockoutjs", "lib/web/knockoutjs" @@ -5664,14 +5744,14 @@ "pub/opt", "pub/opt" ], - [ - "pub/static.php", - "pub/static.php" - ], [ "pub/static/.htaccess", "pub/static/.htaccess" ], + [ + "pub/static.php", + "pub/static.php" + ], [ "setup", "setup" @@ -5684,12 +5764,6 @@ "vendor/.htaccess", "vendor/.htaccess" ] - ], - "chmod": [ - { - "mask": "0755", - "path": "bin/magento" - } ] }, "license": [ @@ -5700,11 +5774,11 @@ }, { "name": "magento/module-admin-analytics", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-admin-analytics/magento-module-admin-analytics-100.4.0.0.zip", - "shasum": "bf83acd2288effd433438d20b38bdeec49ac8bdd" + "url": "https://repo.magento.com/archives/magento/module-admin-analytics/magento-module-admin-analytics-100.4.1.0.zip", + "shasum": "c7d3d0f138c18f00482f0af3a75dcd6c3de277ed" }, "require": { "magento/framework": "103.0.*", @@ -5764,15 +5838,15 @@ }, { "name": "magento/module-adobe-ims", - "version": "1.1.0", + "version": "2.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-ims/magento-module-adobe-ims-1.1.0.0.zip", - "shasum": "17147174448ab48ef5119d70c2a1f9e12e64b2d8" + "url": "https://repo.magento.com/archives/magento/module-adobe-ims/magento-module-adobe-ims-2.1.0.0.zip", + "shasum": "90fa1d2e45978e2a5e023293f1f3ba6820be7f65" }, "require": { "magento/framework": "*", - "magento/module-adobe-ims-api": "2.0.*", + "magento/module-adobe-ims-api": "2.1.*", "magento/module-authorization": "*", "magento/module-backend": "*", "magento/module-config": "*", @@ -5796,11 +5870,11 @@ }, { "name": "magento/module-adobe-ims-api", - "version": "2.0.0", + "version": "2.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-ims-api/magento-module-adobe-ims-api-2.0.0.0.zip", - "shasum": "b73c31968fecdcb6bf28fb19731709e2108acb30" + "url": "https://repo.magento.com/archives/magento/module-adobe-ims-api/magento-module-adobe-ims-api-2.1.0.0.zip", + "shasum": "d2d6efb45a10cecb2c6370d15d42b1139a314b81" }, "require": { "magento/framework": "*", @@ -5823,16 +5897,16 @@ }, { "name": "magento/module-adobe-stock-admin-ui", - "version": "1.1.0", + "version": "1.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-admin-ui/magento-module-adobe-stock-admin-ui-1.1.0.0.zip", - "shasum": "dabbf54b359fe7fb144f4f2efa49a6eacc9da981" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-admin-ui/magento-module-adobe-stock-admin-ui-1.2.0.0.zip", + "shasum": "23f516262484ee476eef26e8eec3b42da0745276" }, "require": { "magento/framework": "*", - "magento/module-adobe-ims-api": "2.0.*", - "magento/module-adobe-stock-client-api": "1.1.*", + "magento/module-adobe-ims-api": "2.1.*", + "magento/module-adobe-stock-client-api": "2.0.*", "magento/module-backend": "*", "magento/module-config": "*", "php": "~7.3.0||~7.4.0" @@ -5857,16 +5931,16 @@ }, { "name": "magento/module-adobe-stock-asset", - "version": "1.1.0", + "version": "1.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-asset/magento-module-adobe-stock-asset-1.1.0.0.zip", - "shasum": "e3e51bdc87ff8e5904a31aeed2b8b7d1d0f82344" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-asset/magento-module-adobe-stock-asset-1.2.0.0.zip", + "shasum": "7f6f041099cc7972fbaa589ef979311db743785f" }, "require": { "magento/framework": "*", - "magento/module-adobe-stock-asset-api": "1.1.*", - "magento/module-adobe-stock-client-api": "1.1.*", + "magento/module-adobe-stock-asset-api": "1.2.*", + "magento/module-adobe-stock-client-api": "2.0.*", "magento/module-config": "*", "magento/module-media-gallery": "*", "magento/module-media-gallery-api": "*", @@ -5889,11 +5963,11 @@ }, { "name": "magento/module-adobe-stock-asset-api", - "version": "1.1.0", + "version": "1.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-asset-api/magento-module-adobe-stock-asset-api-1.1.0.0.zip", - "shasum": "9c7d33acaf9e049b06d568fe6480a867ff57e251" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-asset-api/magento-module-adobe-stock-asset-api-1.2.0.0.zip", + "shasum": "9f9cd8863ffbbd3f16debf9be7d78f58f03f0e5d" }, "require": { "magento/framework": "*", @@ -5916,17 +5990,17 @@ }, { "name": "magento/module-adobe-stock-client", - "version": "1.1.0", + "version": "1.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-client/magento-module-adobe-stock-client-1.1.0.0.zip", - "shasum": "cc1d94f91106f98e08b5938a66a1b8de57679b49" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-client/magento-module-adobe-stock-client-1.2.0.0.zip", + "shasum": "dc90ad4a134df1d4afd6afe80c0882e3287e90d2" }, "require": { "astock/stock-api-libphp": "^1.1.2", "magento/framework": "*", - "magento/module-adobe-ims-api": "2.0.*", - "magento/module-adobe-stock-client-api": "1.1.*", + "magento/module-adobe-ims-api": "2.1.*", + "magento/module-adobe-stock-client-api": "2.0.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -5946,11 +6020,11 @@ }, { "name": "magento/module-adobe-stock-client-api", - "version": "1.1.0", + "version": "2.0.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-client-api/magento-module-adobe-stock-client-api-1.1.0.0.zip", - "shasum": "e1e986652ff89e41824d0546a8947925d033efda" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-client-api/magento-module-adobe-stock-client-api-2.0.0.0.zip", + "shasum": "37eb6691c4c7926a0293661a3a4a6f021b2d8e9c" }, "require": { "magento/framework": "*", @@ -5973,19 +6047,19 @@ }, { "name": "magento/module-adobe-stock-image", - "version": "1.1.0", + "version": "1.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image/magento-module-adobe-stock-image-1.1.0.0.zip", - "shasum": "fcbc4468a86d3fc84c8bdbb9f75d481075bb7093" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image/magento-module-adobe-stock-image-1.2.0.0.zip", + "shasum": "364603aa22c544b3e40e4d3f8f7edde6d487e068" }, "require": { "magento/framework": "*", - "magento/module-adobe-stock-asset-api": "1.1.*", - "magento/module-adobe-stock-client-api": "1.1.*", - "magento/module-adobe-stock-image-api": "1.1.*", - "magento/module-cms": "*", + "magento/module-adobe-stock-asset-api": "1.2.*", + "magento/module-adobe-stock-client-api": "2.0.*", + "magento/module-adobe-stock-image-api": "1.2.*", "magento/module-media-gallery-api": "*", + "magento/module-media-gallery-synchronization-api": "*", "php": "~7.3.0||~7.4.0" }, "suggest": { @@ -6008,21 +6082,22 @@ }, { "name": "magento/module-adobe-stock-image-admin-ui", - "version": "1.1.0", + "version": "1.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image-admin-ui/magento-module-adobe-stock-image-admin-ui-1.1.0.0.zip", - "shasum": "7e10f45d9cc42b79bd60fe8269182d2df87318b7" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image-admin-ui/magento-module-adobe-stock-image-admin-ui-1.2.0.0.zip", + "shasum": "9009bda4867a288317434ef130ee325c182bceb7" }, "require": { "magento/framework": "*", - "magento/module-adobe-ims": "1.1.*", - "magento/module-adobe-ims-api": "2.0.*", - "magento/module-adobe-stock-asset-api": "1.1.*", - "magento/module-adobe-stock-client-api": "1.1.*", - "magento/module-adobe-stock-image-api": "1.1.*", + "magento/module-adobe-ims": "2.1.*", + "magento/module-adobe-ims-api": "2.1.*", + "magento/module-adobe-stock-asset-api": "1.2.*", + "magento/module-adobe-stock-client-api": "2.0.*", + "magento/module-adobe-stock-image-api": "1.2.*", "magento/module-backend": "*", - "magento/module-media-gallery-ui": "1.0.*", + "magento/module-media-gallery-api": "*", + "magento/module-media-gallery-ui": "*", "magento/module-ui": "*", "php": "~7.3.0||~7.4.0" }, @@ -6046,11 +6121,11 @@ }, { "name": "magento/module-adobe-stock-image-api", - "version": "1.1.0", + "version": "1.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image-api/magento-module-adobe-stock-image-api-1.1.0.0.zip", - "shasum": "f0731af35a21ca09d51750741413da0bd56e43d9" + "url": "https://repo.magento.com/archives/magento/module-adobe-stock-image-api/magento-module-adobe-stock-image-api-1.2.0.0.zip", + "shasum": "b6a894607df2d38446dde2efe928483d1ce058cd" }, "require": { "magento/framework": "*", @@ -6073,11 +6148,11 @@ }, { "name": "magento/module-advanced-pricing-import-export", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-advanced-pricing-import-export/magento-module-advanced-pricing-import-export-100.4.0.0.zip", - "shasum": "1e17693cbf4b71688c353e57ef1371e9d194fd7a" + "url": "https://repo.magento.com/archives/magento/module-advanced-pricing-import-export/magento-module-advanced-pricing-import-export-100.4.1.0.zip", + "shasum": "507279ac2b39e9f8c9e95e92d7dcf0d6095aeee3" }, "require": { "magento/framework": "103.0.*", @@ -6203,11 +6278,11 @@ }, { "name": "magento/module-analytics", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-analytics/magento-module-analytics-100.4.0.0.zip", - "shasum": "cc706617851941292d53867117785c101cd98ad4" + "url": "https://repo.magento.com/archives/magento/module-analytics/magento-module-analytics-100.4.1.0.zip", + "shasum": "0d8d21cd754db18be3ec001063c16a5d09d440ce" }, "require": { "magento/framework": "103.0.*", @@ -6234,11 +6309,11 @@ }, { "name": "magento/module-asynchronous-operations", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-asynchronous-operations/magento-module-asynchronous-operations-100.4.0.0.zip", - "shasum": "6a56ce8d20f38a832ceb558bc0f58a77905be22c" + "url": "https://repo.magento.com/archives/magento/module-asynchronous-operations/magento-module-asynchronous-operations-100.4.1.0.zip", + "shasum": "814fe86466644ab4542e5e0bbddd7a217d532b4f" }, "require": { "magento/framework": "103.0.*", @@ -6251,7 +6326,7 @@ }, "suggest": { "magento/module-admin-notification": "100.4.*", - "magento/module-logging": "101.2.*" + "magento/module-logging": "*" }, "type": "magento2-module", "autoload": { @@ -6270,11 +6345,11 @@ }, { "name": "magento/module-authorization", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-authorization/magento-module-authorization-100.4.0.0.zip", - "shasum": "6b0409ed55a82662097db7e35f20f7a13d57e30b" + "url": "https://repo.magento.com/archives/magento/module-authorization/magento-module-authorization-100.4.1.0.zip", + "shasum": "0b41ed63fdf10d5f9553c8a310d0499d65d3c39f" }, "require": { "magento/framework": "103.0.*", @@ -6298,11 +6373,11 @@ }, { "name": "magento/module-backend", - "version": "102.0.0", + "version": "102.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-backend/magento-module-backend-102.0.0.0.zip", - "shasum": "8a1bf66c5e6dd2279f99340145c2afb582fb986f" + "url": "https://repo.magento.com/archives/magento/module-backend/magento-module-backend-102.0.1.0.zip", + "shasum": "bbb52b121acd7107abc6e846fa3400283b5519c6" }, "require": { "magento/framework": "103.0.*", @@ -6344,11 +6419,11 @@ }, { "name": "magento/module-backup", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-backup/magento-module-backup-100.4.0.0.zip", - "shasum": "99f602843baf059c5e74ebf0c9344e2890faaff9" + "url": "https://repo.magento.com/archives/magento/module-backup/magento-module-backup-100.4.1.0.zip", + "shasum": "543a2dffcdc0e1fd4d9e7a2ae7b1979aa6d79fb7" }, "require": { "magento/framework": "103.0.*", @@ -6374,11 +6449,11 @@ }, { "name": "magento/module-bundle", - "version": "101.0.0", + "version": "101.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-bundle/magento-module-bundle-101.0.0.0.zip", - "shasum": "6be53d368f6b64ecf49d6daabad98a08a0b0baf8" + "url": "https://repo.magento.com/archives/magento/module-bundle/magento-module-bundle-101.0.1.0.zip", + "shasum": "4dca663bbc5f6835c2e3a12e88d9416c9edfa206" }, "require": { "magento/framework": "103.0.*", @@ -6421,11 +6496,11 @@ }, { "name": "magento/module-bundle-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-bundle-graph-ql/magento-module-bundle-graph-ql-100.4.0.0.zip", - "shasum": "dace13e9da2be339bb5fd7dd6dea1184af1f1666" + "url": "https://repo.magento.com/archives/magento/module-bundle-graph-ql/magento-module-bundle-graph-ql-100.4.1.0.zip", + "shasum": "816cc1ec4c5f0cee0283fbeb9f4dba178917b0ec" }, "require": { "magento/framework": "103.0.*", @@ -6434,6 +6509,8 @@ "magento/module-catalog-graph-ql": "100.4.*", "magento/module-quote": "101.2.*", "magento/module-quote-graph-ql": "100.4.*", + "magento/module-sales": "103.0.*", + "magento/module-sales-graph-ql": "100.4.*", "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, @@ -6515,17 +6592,18 @@ }, { "name": "magento/module-captcha", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-captcha/magento-module-captcha-100.4.0.0.zip", - "shasum": "e86d5696144577a7d7b9ba7c36ac435a1c4b02d1" + "url": "https://repo.magento.com/archives/magento/module-captcha/magento-module-captcha-100.4.1.0.zip", + "shasum": "38f7925b06310d50c87d062d53bbdc2fdc5920f5" }, "require": { "laminas/laminas-captcha": "^2.7.1", "laminas/laminas-db": "^2.8.2", "laminas/laminas-session": "^2.7.3", "magento/framework": "103.0.*", + "magento/module-authorization": "100.4.*", "magento/module-backend": "102.0.*", "magento/module-checkout": "100.4.*", "magento/module-customer": "103.0.*", @@ -6579,11 +6657,11 @@ }, { "name": "magento/module-catalog", - "version": "104.0.0", + "version": "104.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog/magento-module-catalog-104.0.0.0.zip", - "shasum": "36c1174284754b3fa992e5a832643af195ed7082" + "url": "https://repo.magento.com/archives/magento/module-catalog/magento-module-catalog-104.0.1.0.zip", + "shasum": "573c5c090fac813941027a797bc14d0690fd41a8" }, "require": { "magento/framework": "103.0.*", @@ -6699,11 +6777,11 @@ }, { "name": "magento/module-catalog-customer-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-customer-graph-ql/magento-module-catalog-customer-graph-ql-100.4.0.0.zip", - "shasum": "5ed7beed2acc812145f325baa646b7ca392d97ee" + "url": "https://repo.magento.com/archives/magento/module-catalog-customer-graph-ql/magento-module-catalog-customer-graph-ql-100.4.1.0.zip", + "shasum": "dddbec549a3a9546cf437cec95bf3a4909294d89" }, "require": { "magento/framework": "103.0.*", @@ -6730,11 +6808,11 @@ }, { "name": "magento/module-catalog-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-graph-ql/magento-module-catalog-graph-ql-100.4.0.0.zip", - "shasum": "e0171524c27ccfcabe0641e7e49f825eccf8a691" + "url": "https://repo.magento.com/archives/magento/module-catalog-graph-ql/magento-module-catalog-graph-ql-100.4.1.0.zip", + "shasum": "d17c9d14142d2723f3e57c9e5bde98a9f1b665aa" }, "require": { "magento/framework": "103.0.*", @@ -6743,12 +6821,12 @@ "magento/module-catalog-search": "102.0.*", "magento/module-eav": "102.1.*", "magento/module-eav-graph-ql": "100.4.*", + "magento/module-graph-ql": "100.4.*", "magento/module-search": "101.1.*", "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-graph-ql": "100.4.*", "magento/module-graph-ql-cache": "100.4.*", "magento/module-store-graph-ql": "100.4.*" }, @@ -6769,11 +6847,11 @@ }, { "name": "magento/module-catalog-import-export", - "version": "101.1.0", + "version": "101.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-import-export/magento-module-catalog-import-export-101.1.0.0.zip", - "shasum": "9588ebc86f35d4363ee0f0fd051de36ebbbda966" + "url": "https://repo.magento.com/archives/magento/module-catalog-import-export/magento-module-catalog-import-export-101.1.1.0.zip", + "shasum": "e6761f2f46b78234d49c8f251b1a29f485832928" }, "require": { "ext-ctype": "*", @@ -6807,11 +6885,11 @@ }, { "name": "magento/module-catalog-inventory", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-inventory/magento-module-catalog-inventory-100.4.0.0.zip", - "shasum": "660af2a2b58dc795e87d56abf4d25e63da3acd42" + "url": "https://repo.magento.com/archives/magento/module-catalog-inventory/magento-module-catalog-inventory-100.4.1.0.zip", + "shasum": "7736d83444b73dec7b0c5c6035739739013763bf" }, "require": { "magento/framework": "103.0.*", @@ -6871,11 +6949,11 @@ }, { "name": "magento/module-catalog-rule", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-rule/magento-module-catalog-rule-101.2.0.0.zip", - "shasum": "dff3d586a4b9b18fc9b493839cfc403c8138a22c" + "url": "https://repo.magento.com/archives/magento/module-catalog-rule/magento-module-catalog-rule-101.2.1.0.zip", + "shasum": "96be335eaf75ac296f745e4d09160748f06ce191" }, "require": { "magento/framework": "103.0.*", @@ -6973,11 +7051,11 @@ }, { "name": "magento/module-catalog-search", - "version": "102.0.0", + "version": "102.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-search/magento-module-catalog-search-102.0.0.0.zip", - "shasum": "a9b74ae5689d0a81e6b33aa62858c6dba4926808" + "url": "https://repo.magento.com/archives/magento/module-catalog-search/magento-module-catalog-search-102.0.1.0.zip", + "shasum": "435a36afe5f8bfdbb0c81c68470a7c8859c7b55d" }, "require": { "magento/framework": "103.0.*", @@ -7014,11 +7092,11 @@ }, { "name": "magento/module-catalog-url-rewrite", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-url-rewrite/magento-module-catalog-url-rewrite-100.4.0.0.zip", - "shasum": "dc06042f8b61a64a81b2660f504d414f5a026fa5" + "url": "https://repo.magento.com/archives/magento/module-catalog-url-rewrite/magento-module-catalog-url-rewrite-100.4.1.0.zip", + "shasum": "61f50535c4826e65d72af9823d48c7414c8b9237" }, "require": { "magento/framework": "103.0.*", @@ -7086,11 +7164,11 @@ }, { "name": "magento/module-catalog-widget", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-catalog-widget/magento-module-catalog-widget-100.4.0.0.zip", - "shasum": "6a998f268e7399f26f0f556428aed6e35d38053f" + "url": "https://repo.magento.com/archives/magento/module-catalog-widget/magento-module-catalog-widget-100.4.1.0.zip", + "shasum": "93d26be38f7e7ea94f4f716bcf7a5ff6874e867d" }, "require": { "magento/framework": "103.0.*", @@ -7122,14 +7200,15 @@ }, { "name": "magento/module-checkout", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-checkout/magento-module-checkout-100.4.0.0.zip", - "shasum": "e4e5025d992740cb726aec7f65e8dc27a3ad671c" + "url": "https://repo.magento.com/archives/magento/module-checkout/magento-module-checkout-100.4.1.0.zip", + "shasum": "2a5734afe062bdd1d2bcd75be1d3207600d4b1cd" }, "require": { "magento/framework": "103.0.*", + "magento/module-authorization": "100.4.*", "magento/module-captcha": "100.4.*", "magento/module-catalog": "104.0.*", "magento/module-catalog-inventory": "100.4.*", @@ -7233,11 +7312,11 @@ }, { "name": "magento/module-cms", - "version": "104.0.0", + "version": "104.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-cms/magento-module-cms-104.0.0.0.zip", - "shasum": "2e0c9a3eb8c7aa83a4e2856d1ccef89dc071fb63" + "url": "https://repo.magento.com/archives/magento/module-cms/magento-module-cms-104.0.1.0.zip", + "shasum": "1c5c8d11502dbac51f396a800318c300166d30a9" }, "require": { "magento/framework": "103.0.*", @@ -7307,11 +7386,11 @@ }, { "name": "magento/module-cms-url-rewrite", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-cms-url-rewrite/magento-module-cms-url-rewrite-100.4.0.0.zip", - "shasum": "19dcfaf8658f4f5c855fc4b290cdcad88199b809" + "url": "https://repo.magento.com/archives/magento/module-cms-url-rewrite/magento-module-cms-url-rewrite-100.4.1.0.zip", + "shasum": "7d0078ba3fc02de9414c2d21e2fa2c1b42694467" }, "require": { "magento/framework": "103.0.*", @@ -7371,11 +7450,11 @@ }, { "name": "magento/module-config", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-config/magento-module-config-101.2.0.0.zip", - "shasum": "2a4de22a1af83fee9531c09f4ddef93ed28a634a" + "url": "https://repo.magento.com/archives/magento/module-config/magento-module-config-101.2.1.0.zip", + "shasum": "05bb2df12fa2f13ba476a327a8a313394fa6743e" }, "require": { "magento/framework": "103.0.*", @@ -7438,11 +7517,11 @@ }, { "name": "magento/module-configurable-product", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-configurable-product/magento-module-configurable-product-100.4.0.0.zip", - "shasum": "bd9cd79cfce3fee88f4bc135a3b9872f5a6ab88a" + "url": "https://repo.magento.com/archives/magento/module-configurable-product/magento-module-configurable-product-100.4.1.0.zip", + "shasum": "5fd6c7ced2356129cc09e6837dc2d77c79d7e006" }, "require": { "magento/framework": "103.0.*", @@ -7485,17 +7564,18 @@ }, { "name": "magento/module-configurable-product-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-configurable-product-graph-ql/magento-module-configurable-product-graph-ql-100.4.0.0.zip", - "shasum": "f2f6f35eda676b7c2e923beb0d918bdb88856a7c" + "url": "https://repo.magento.com/archives/magento/module-configurable-product-graph-ql/magento-module-configurable-product-graph-ql-100.4.1.0.zip", + "shasum": "12c44fae9964a4f27926df978f688461075e52cf" }, "require": { "magento/framework": "103.0.*", "magento/module-catalog": "104.0.*", "magento/module-catalog-graph-ql": "100.4.*", "magento/module-configurable-product": "100.4.*", + "magento/module-graph-ql": "100.4.*", "magento/module-quote": "101.2.*", "magento/module-quote-graph-ql": "100.4.*", "php": "~7.3.0||~7.4.0" @@ -7550,11 +7630,11 @@ }, { "name": "magento/module-contact", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-contact/magento-module-contact-100.4.0.0.zip", - "shasum": "9ea0606355a83c45f3d225b3abe28e0780992402" + "url": "https://repo.magento.com/archives/magento/module-contact/magento-module-contact-100.4.1.0.zip", + "shasum": "d4c5baccc6de5a296a80a73d787126d137f1b2a4" }, "require": { "magento/framework": "103.0.*", @@ -7581,11 +7661,11 @@ }, { "name": "magento/module-cookie", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-cookie/magento-module-cookie-100.4.0.0.zip", - "shasum": "d2fde4538540900f60677db6eba33ecc9797a17b" + "url": "https://repo.magento.com/archives/magento/module-cookie/magento-module-cookie-100.4.1.0.zip", + "shasum": "4a912c43b535cfbcf758b7eb6a600220278f2c93" }, "require": { "magento/framework": "103.0.*", @@ -7612,11 +7692,11 @@ }, { "name": "magento/module-cron", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-cron/magento-module-cron-100.4.0.0.zip", - "shasum": "6afa4ea3198c535b5685fb3900a388cf85b0085a" + "url": "https://repo.magento.com/archives/magento/module-cron/magento-module-cron-100.4.1.0.zip", + "shasum": "ad1d4c544ba2d9d923ba5c9fe81f58fcfd67e4fa" }, "require": { "magento/framework": "103.0.*", @@ -7703,11 +7783,11 @@ }, { "name": "magento/module-customer", - "version": "103.0.0", + "version": "103.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-customer/magento-module-customer-103.0.0.0.zip", - "shasum": "f57f04a8edcb876fa2823aeabaee3875647c3fed" + "url": "https://repo.magento.com/archives/magento/module-customer/magento-module-customer-103.0.1.0.zip", + "shasum": "f1d77e157bf64730d8504eede550a62eac2fe6b6" }, "require": { "magento/framework": "103.0.*", @@ -7813,11 +7893,11 @@ }, { "name": "magento/module-customer-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-customer-graph-ql/magento-module-customer-graph-ql-100.4.0.0.zip", - "shasum": "be17e25e7ac89f75e4c8b1f68a960f6f8e046bec" + "url": "https://repo.magento.com/archives/magento/module-customer-graph-ql/magento-module-customer-graph-ql-100.4.1.0.zip", + "shasum": "01eb382b847513213d6bcf859e540af748f47410" }, "require": { "magento/framework": "103.0.*", @@ -7848,11 +7928,11 @@ }, { "name": "magento/module-customer-import-export", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-customer-import-export/magento-module-customer-import-export-100.4.0.0.zip", - "shasum": "b038805e05c313e517211d2c61f06e5ba43f2db2" + "url": "https://repo.magento.com/archives/magento/module-customer-import-export/magento-module-customer-import-export-100.4.1.0.zip", + "shasum": "96b6fed38ea9965b4c73bed9484c0f18565d608b" }, "require": { "magento/framework": "103.0.*", @@ -7881,11 +7961,11 @@ }, { "name": "magento/module-deploy", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-deploy/magento-module-deploy-100.4.0.0.zip", - "shasum": "a96d2ee89198e2c56aad0a660334dfb8d4a532bb" + "url": "https://repo.magento.com/archives/magento/module-deploy/magento-module-deploy-100.4.1.0.zip", + "shasum": "e3243986149cc97e12ab89d6453a84252f70223c" }, "require": { "magento/framework": "103.0.*", @@ -7913,11 +7993,11 @@ }, { "name": "magento/module-developer", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-developer/magento-module-developer-100.4.0.0.zip", - "shasum": "ecf9dda2e67a8d12b7e4872848b0034d6e421c1f" + "url": "https://repo.magento.com/archives/magento/module-developer/magento-module-developer-100.4.1.0.zip", + "shasum": "6df9bee93b7977dccaa72512e4b136a74993c3ef" }, "require": { "magento/framework": "103.0.*", @@ -7982,11 +8062,11 @@ }, { "name": "magento/module-directory", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-directory/magento-module-directory-100.4.0.0.zip", - "shasum": "236cd6cfed6e4edbbfb22035153c311768f4feef" + "url": "https://repo.magento.com/archives/magento/module-directory/magento-module-directory-100.4.1.0.zip", + "shasum": "a3e502a836af07e820b9b81dd62a79970442300a" }, "require": { "lib-libxml": "*", @@ -8043,11 +8123,11 @@ }, { "name": "magento/module-downloadable", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-downloadable/magento-module-downloadable-100.4.0.0.zip", - "shasum": "572dcd214f12c936161ca6a7d7a7e170087b0521" + "url": "https://repo.magento.com/archives/magento/module-downloadable/magento-module-downloadable-100.4.1.0.zip", + "shasum": "e8b3d64d3aa6851f7dab3401694109f01cfe8b1c" }, "require": { "magento/framework": "103.0.*", @@ -8089,11 +8169,11 @@ }, { "name": "magento/module-downloadable-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-downloadable-graph-ql/magento-module-downloadable-graph-ql-100.4.0.0.zip", - "shasum": "05469df18674e6a3d9564a789e48b2b9e4b1623e" + "url": "https://repo.magento.com/archives/magento/module-downloadable-graph-ql/magento-module-downloadable-graph-ql-100.4.1.0.zip", + "shasum": "cf287ee98ba85d490748fa7210f04f985cbfe2d1" }, "require": { "magento/framework": "103.0.*", @@ -8101,10 +8181,13 @@ "magento/module-downloadable": "100.4.*", "magento/module-quote": "101.2.*", "magento/module-quote-graph-ql": "100.4.*", - "php": "~7.3.0||~7.4.0" + "magento/module-sales": "103.0.*", + "magento/module-store": "101.1.*", + "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-catalog-graph-ql": "100.4.*" + "magento/module-catalog-graph-ql": "100.4.*", + "magento/module-sales-graph-ql": "100.4.*" }, "type": "magento2-module", "autoload": { @@ -8156,11 +8239,11 @@ }, { "name": "magento/module-eav", - "version": "102.1.0", + "version": "102.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-eav/magento-module-eav-102.1.0.0.zip", - "shasum": "0d9cdb60c5f15afe85721bac2256cead89d07640" + "url": "https://repo.magento.com/archives/magento/module-eav/magento-module-eav-102.1.1.0.zip", + "shasum": "03b2b59ec72a4ae0840da7ad054282a3ee3b48f2" }, "require": { "magento/framework": "103.0.*", @@ -8219,11 +8302,11 @@ }, { "name": "magento/module-elasticsearch", - "version": "101.0.0", + "version": "101.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-elasticsearch/magento-module-elasticsearch-101.0.0.0.zip", - "shasum": "f6dfe5646a1011e7059daf54d0041c6e64e1a0c5" + "url": "https://repo.magento.com/archives/magento/module-elasticsearch/magento-module-elasticsearch-101.0.1.0.zip", + "shasum": "f495fe004d07b435ee750b983a70ca6cbaa3ebe7" }, "require": { "elasticsearch/elasticsearch": "~7.7.0", @@ -8258,11 +8341,11 @@ }, { "name": "magento/module-elasticsearch-6", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-elasticsearch-6/magento-module-elasticsearch-6-100.4.0.0.zip", - "shasum": "d67f6b116afd206098248c7b6945684e9ca2f22c" + "url": "https://repo.magento.com/archives/magento/module-elasticsearch-6/magento-module-elasticsearch-6-100.4.1.0.zip", + "shasum": "a00dfdb1aab3a49d1bf1ee3e356c61993e13ca6f" }, "require": { "elasticsearch/elasticsearch": "~7.7.0", @@ -8293,11 +8376,11 @@ }, { "name": "magento/module-elasticsearch-7", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-elasticsearch-7/magento-module-elasticsearch-7-100.4.0.0.zip", - "shasum": "bee1e7f5b15660414feba6dd5110df2c8b3f2fda" + "url": "https://repo.magento.com/archives/magento/module-elasticsearch-7/magento-module-elasticsearch-7-100.4.1.0.zip", + "shasum": "205981031bec3dd5084ec40298de75394abb60ba" }, "require": { "elasticsearch/elasticsearch": "~7.7.0", @@ -8328,11 +8411,11 @@ }, { "name": "magento/module-email", - "version": "101.1.0", + "version": "101.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-email/magento-module-email-101.1.0.0.zip", - "shasum": "7947b2ce88d2800162a697913c009fa48348f4a6" + "url": "https://repo.magento.com/archives/magento/module-email/magento-module-email-101.1.1.0.zip", + "shasum": "42887f4bd3c92634aa83c3dfeb110a2872bc0995" }, "require": { "magento/framework": "103.0.*", @@ -8396,11 +8479,11 @@ }, { "name": "magento/module-fedex", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-fedex/magento-module-fedex-100.4.0.0.zip", - "shasum": "63b17a564f337f88d7c3d1671ce5ba1457f3a8cd" + "url": "https://repo.magento.com/archives/magento/module-fedex/magento-module-fedex-100.4.1.0.zip", + "shasum": "43cfaafd20695314930c14213d26d4aa3a733faa" }, "require": { "lib-libxml": "*", @@ -8469,6 +8552,37 @@ ], "description": "N/A" }, + { + "name": "magento/module-gift-message-graph-ql", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-gift-message-graph-ql/magento-module-gift-message-graph-ql-100.4.0.0.zip", + "shasum": "3657cead0c7c969fbc4e9b99d2d4fef72e0b6cf0" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-gift-message": "100.4.*", + "php": "~7.3.0||~7.4.0" + }, + "suggest": { + "magento/module-graph-ql": "100.4.*" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\GiftMessageGraphQl\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "N/A" + }, { "name": "magento/module-google-adwords", "version": "100.4.0", @@ -8533,11 +8647,11 @@ }, { "name": "magento/module-google-optimizer", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-google-optimizer/magento-module-google-optimizer-100.4.0.0.zip", - "shasum": "e48c7b3eae7dea7b0ba2948c2a53320a839f32f5" + "url": "https://repo.magento.com/archives/magento/module-google-optimizer/magento-module-google-optimizer-100.4.1.0.zip", + "shasum": "704e95284b292b70c155feba5430c7b1121862a2" }, "require": { "magento/framework": "103.0.*", @@ -8566,20 +8680,20 @@ }, { "name": "magento/module-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-graph-ql/magento-module-graph-ql-100.4.0.0.zip", - "shasum": "1e55fb05d13c0368ce4b1cc60135155376de4763" + "url": "https://repo.magento.com/archives/magento/module-graph-ql/magento-module-graph-ql-100.4.1.0.zip", + "shasum": "a8634f6da7a37c9fbec98ce9af0d38aec0d79b76" }, "require": { "magento/framework": "103.0.*", "magento/module-eav": "102.1.*", + "magento/module-webapi": "100.4.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-graph-ql-cache": "100.4.*", - "magento/module-webapi": "100.4.*" + "magento/module-graph-ql-cache": "100.4.*" }, "type": "magento2-module", "autoload": { @@ -8689,11 +8803,11 @@ }, { "name": "magento/module-grouped-product", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-grouped-product/magento-module-grouped-product-100.4.0.0.zip", - "shasum": "25968382e595e0cc0a27b399a627abc1d65a2758" + "url": "https://repo.magento.com/archives/magento/module-grouped-product/magento-module-grouped-product-100.4.1.0.zip", + "shasum": "da1b6dc8680e006e552ce291889bfd4f1185023e" }, "require": { "magento/framework": "103.0.*", @@ -8732,11 +8846,11 @@ }, { "name": "magento/module-grouped-product-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-grouped-product-graph-ql/magento-module-grouped-product-graph-ql-100.4.0.0.zip", - "shasum": "a3e2e69ff935c33c140b86e4aa875b9fe4652edc" + "url": "https://repo.magento.com/archives/magento/module-grouped-product-graph-ql/magento-module-grouped-product-graph-ql-100.4.1.0.zip", + "shasum": "b3ab99fcaa83024d3e811960b5dd9d2dd9814fbc" }, "require": { "magento/framework": "103.0.*", @@ -8762,11 +8876,11 @@ }, { "name": "magento/module-import-export", - "version": "101.0.0", + "version": "101.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-import-export/magento-module-import-export-101.0.0.0.zip", - "shasum": "d6399fe4ee4e02292c64d470b072283b7fac9e0d" + "url": "https://repo.magento.com/archives/magento/module-import-export/magento-module-import-export-101.0.1.0.zip", + "shasum": "09c23354fa38a3e3efe9e8a8747cfcb23828b879" }, "require": { "ext-ctype": "*", @@ -8796,11 +8910,11 @@ }, { "name": "magento/module-indexer", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-indexer/magento-module-indexer-100.4.0.0.zip", - "shasum": "e301e2e47f054de057dcb4bb4e72dcdb28e36e65" + "url": "https://repo.magento.com/archives/magento/module-indexer/magento-module-indexer-100.4.1.0.zip", + "shasum": "fc3c7a58d2644ea12fb6bfe8fc871dedd5cda4c9" }, "require": { "magento/framework": "103.0.*", @@ -8858,11 +8972,11 @@ }, { "name": "magento/module-integration", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-integration/magento-module-integration-100.4.0.0.zip", - "shasum": "be468bb54a51e52bfe828ca0cb48e19293cda81b" + "url": "https://repo.magento.com/archives/magento/module-integration/magento-module-integration-100.4.1.0.zip", + "shasum": "b8d7f364be6908ccfc2dea0fc513e8763e579131" }, "require": { "magento/framework": "103.0.*", @@ -8892,11 +9006,11 @@ }, { "name": "magento/module-inventory", - "version": "1.1.0", + "version": "1.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory/magento-module-inventory-1.1.0.0.zip", - "shasum": "5109cf1b25101ab64c693799a424b9cf1e48234b" + "url": "https://repo.magento.com/archives/magento/module-inventory/magento-module-inventory-1.1.1.0.zip", + "shasum": "431857698e06daaf33a2beb2159d04d63de9816d" }, "require": { "magento/framework": "*", @@ -8920,11 +9034,11 @@ }, { "name": "magento/module-inventory-admin-ui", - "version": "1.1.0", + "version": "1.1.2", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-admin-ui/magento-module-inventory-admin-ui-1.1.0.0.zip", - "shasum": "b29fa8a4a1dc318a96ca1f07e7ae9d267d8685f0" + "url": "https://repo.magento.com/archives/magento/module-inventory-admin-ui/magento-module-inventory-admin-ui-1.1.2.0.zip", + "shasum": "af49d87f5d76980bc229e05432df986dc4a79931" }, "require": { "magento/framework": "*", @@ -9182,11 +9296,11 @@ }, { "name": "magento/module-inventory-catalog", - "version": "1.1.0", + "version": "1.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-catalog/magento-module-inventory-catalog-1.1.0.0.zip", - "shasum": "16633c4c505b3043dda41460c97f23772f223147" + "url": "https://repo.magento.com/archives/magento/module-inventory-catalog/magento-module-inventory-catalog-1.1.1.0.zip", + "shasum": "5f7b3d99861612627b0999246e097235932e1161" }, "require": { "magento/framework": "*", @@ -9222,11 +9336,11 @@ }, { "name": "magento/module-inventory-catalog-admin-ui", - "version": "1.1.0", + "version": "1.1.2", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-catalog-admin-ui/magento-module-inventory-catalog-admin-ui-1.1.0.0.zip", - "shasum": "e8af992a00280d2458aeaf671d66be93ab8a0611" + "url": "https://repo.magento.com/archives/magento/module-inventory-catalog-admin-ui/magento-module-inventory-catalog-admin-ui-1.1.2.0.zip", + "shasum": "8327eeca9aa27d0044ea5315f593a6af70fd1c2f" }, "require": { "magento/framework": "*", @@ -9798,11 +9912,11 @@ }, { "name": "magento/module-inventory-import-export", - "version": "1.1.0", + "version": "1.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-import-export/magento-module-inventory-import-export-1.1.0.0.zip", - "shasum": "5d72aada4e3d05ecf99733260c1a99d5c14a6849" + "url": "https://repo.magento.com/archives/magento/module-inventory-import-export/magento-module-inventory-import-export-1.1.1.0.zip", + "shasum": "b25f146acdf7dd718499b01b863c3d418aa7a2f1" }, "require": { "magento/framework": "*", @@ -9834,11 +9948,11 @@ }, { "name": "magento/module-inventory-in-store-pickup", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-in-store-pickup/magento-module-inventory-in-store-pickup-1.0.0.0.zip", - "shasum": "303ed46a86984384d8f24c78f76031fb965cc13f" + "url": "https://repo.magento.com/archives/magento/module-inventory-in-store-pickup/magento-module-inventory-in-store-pickup-1.0.1.0.zip", + "shasum": "5f45ecc169e80d329e4206881184eb4b27270039" }, "require": { "magento/framework": "*", @@ -9869,11 +9983,11 @@ }, { "name": "magento/module-inventory-in-store-pickup-admin-ui", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-in-store-pickup-admin-ui/magento-module-inventory-in-store-pickup-admin-ui-1.0.0.0.zip", - "shasum": "2c33271b20b1ee5e3f58175de64f978975c3e89d" + "url": "https://repo.magento.com/archives/magento/module-inventory-in-store-pickup-admin-ui/magento-module-inventory-in-store-pickup-admin-ui-1.0.1.0.zip", + "shasum": "3e2daff9b30770102bca878473bbb7b38a9b3451" }, "require": { "magento/framework": "*", @@ -9929,11 +10043,11 @@ }, { "name": "magento/module-inventory-in-store-pickup-frontend", - "version": "1.0.0", + "version": "1.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-in-store-pickup-frontend/magento-module-inventory-in-store-pickup-frontend-1.0.0.0.zip", - "shasum": "457dc03470e7aa12062e59e90d4936490a691b61" + "url": "https://repo.magento.com/archives/magento/module-inventory-in-store-pickup-frontend/magento-module-inventory-in-store-pickup-frontend-1.0.1.0.zip", + "shasum": "59bd37f5111dc4884572f4310b6042ad7bd5bd28" }, "require": { "magento/framework": "*", @@ -10339,11 +10453,11 @@ }, { "name": "magento/module-inventory-low-quantity-notification", - "version": "1.1.0", + "version": "1.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-low-quantity-notification/magento-module-inventory-low-quantity-notification-1.1.0.0.zip", - "shasum": "245640a404b8e5dd7e4d1a77a917d12aade61d16" + "url": "https://repo.magento.com/archives/magento/module-inventory-low-quantity-notification/magento-module-inventory-low-quantity-notification-1.1.1.0.zip", + "shasum": "4ca2aec356fe6d3d9c03b5433912b0de558713c1" }, "require": { "magento/framework": "*", @@ -10375,11 +10489,11 @@ }, { "name": "magento/module-inventory-low-quantity-notification-admin-ui", - "version": "1.1.0", + "version": "1.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-low-quantity-notification-admin-ui/magento-module-inventory-low-quantity-notification-admin-ui-1.1.0.0.zip", - "shasum": "d4e5c2c08203a39d981e4ad4f1f20c718f2dcefb" + "url": "https://repo.magento.com/archives/magento/module-inventory-low-quantity-notification-admin-ui/magento-module-inventory-low-quantity-notification-admin-ui-1.1.1.0.zip", + "shasum": "4ff086bea7b4aea18a6bffe413b433a65e0d364a" }, "require": { "magento/framework": "*", @@ -10533,11 +10647,11 @@ }, { "name": "magento/module-inventory-reservation-cli", - "version": "1.1.0", + "version": "1.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-reservation-cli/magento-module-inventory-reservation-cli-1.1.0.0.zip", - "shasum": "4bce06cb6a0d3e9a6bc877737980f7c71797af5c" + "url": "https://repo.magento.com/archives/magento/module-inventory-reservation-cli/magento-module-inventory-reservation-cli-1.1.1.0.zip", + "shasum": "c1f5c90b878bd6d751d4ddd1395f108626892415" }, "require": { "magento/framework": "*", @@ -10565,11 +10679,11 @@ }, { "name": "magento/module-inventory-reservations", - "version": "1.1.0", + "version": "1.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-reservations/magento-module-inventory-reservations-1.1.0.0.zip", - "shasum": "fcaa8a85a3881a0b03e521ce5e04cd4018faa046" + "url": "https://repo.magento.com/archives/magento/module-inventory-reservations/magento-module-inventory-reservations-1.1.1.0.zip", + "shasum": "d6bfb7c8b5929faa55c09fad0b4ba2fda74a5860" }, "require": { "magento/framework": "*", @@ -10620,11 +10734,11 @@ }, { "name": "magento/module-inventory-sales", - "version": "1.1.0", + "version": "1.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-sales/magento-module-inventory-sales-1.1.0.0.zip", - "shasum": "0ee4c05493a210473d327cbf9b922df787d23a10" + "url": "https://repo.magento.com/archives/magento/module-inventory-sales/magento-module-inventory-sales-1.1.1.0.zip", + "shasum": "0fd6213eea798b0b15d0df9dcd741ba4133b2809" }, "require": { "magento/framework": "*", @@ -10789,11 +10903,11 @@ }, { "name": "magento/module-inventory-shipping", - "version": "1.1.0", + "version": "1.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-shipping/magento-module-inventory-shipping-1.1.0.0.zip", - "shasum": "1102bd299e0ce31366baa24e2f32738ba69b3d0a" + "url": "https://repo.magento.com/archives/magento/module-inventory-shipping/magento-module-inventory-shipping-1.1.1.0.zip", + "shasum": "002159ce58342e8f786cd4c2c809c3fe743bf874" }, "require": { "magento/framework": "*", @@ -10918,11 +11032,11 @@ }, { "name": "magento/module-inventory-source-selection-api", - "version": "1.3.0", + "version": "1.3.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-inventory-source-selection-api/magento-module-inventory-source-selection-api-1.3.0.0.zip", - "shasum": "c074fbdfa96de014265c7b3419a854854884dc47" + "url": "https://repo.magento.com/archives/magento/module-inventory-source-selection-api/magento-module-inventory-source-selection-api-1.3.1.0.zip", + "shasum": "c7bd51bb40f2ec0840f3f77a93fe76279f0e528c" }, "require": { "magento/framework": "*", @@ -10947,13 +11061,53 @@ ], "description": "N/A" }, + { + "name": "magento/module-inventory-visual-merchandiser", + "version": "1.0.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-inventory-visual-merchandiser/magento-module-inventory-visual-merchandiser-1.0.0.0.zip", + "shasum": "16530dfa034151b341658d41f5baa7e37411b669" + }, + "require": { + "magento/framework": "*", + "magento/module-catalog": "*", + "magento/module-inventory": "1.1.*", + "magento/module-inventory-catalog-api": "1.2.*", + "magento/module-inventory-indexer": "2.0.*", + "magento/module-inventory-sales-api": "1.1.*", + "magento/module-store": "*", + "php": "~7.3.0||~7.4.0" + }, + "require-dev": { + "magento/module-inventory-api": "*", + "magento/module-inventory-configuration-api": "*" + }, + "suggest": { + "magento/module-visual-merchandiser": "*" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\InventoryVisualMerchandiser\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "N/A" + }, { "name": "magento/module-layered-navigation", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-layered-navigation/magento-module-layered-navigation-100.4.0.0.zip", - "shasum": "dbbeec3773fcd21cb868d39d6689ae1696572083" + "url": "https://repo.magento.com/archives/magento/module-layered-navigation/magento-module-layered-navigation-100.4.1.0.zip", + "shasum": "92087b1618edd369f7240b61b0964f2798bc8e20" }, "require": { "magento/framework": "103.0.*", @@ -10978,14 +11132,15 @@ }, { "name": "magento/module-login-as-customer", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-login-as-customer/magento-module-login-as-customer-100.4.0.0.zip", - "shasum": "72a3d2d69cca982c11f47f8e128426e8e791a432" + "url": "https://repo.magento.com/archives/magento/module-login-as-customer/magento-module-login-as-customer-100.4.1.0.zip", + "shasum": "ed1916a23ce7e593a2b2493a1a7d32580bf21ad0" }, "require": { "magento/framework": "103.0.*", + "magento/module-backend": "102.0.*", "magento/module-customer": "103.0.*", "magento/module-login-as-customer-api": "100.4.*", "php": "~7.3.0||~7.4.0" @@ -11010,11 +11165,11 @@ }, { "name": "magento/module-login-as-customer-admin-ui", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-login-as-customer-admin-ui/magento-module-login-as-customer-admin-ui-100.4.0.0.zip", - "shasum": "49fc4007d1407b82fa701c4633b0fb5e1edd24ac" + "url": "https://repo.magento.com/archives/magento/module-login-as-customer-admin-ui/magento-module-login-as-customer-admin-ui-100.4.1.0.zip", + "shasum": "ca449e85a8e0a9a0c92cd51aa0f790e39202f305" }, "require": { "magento/framework": "103.0.*", @@ -11022,6 +11177,7 @@ "magento/module-customer": "103.0.*", "magento/module-login-as-customer-api": "100.4.*", "magento/module-login-as-customer-frontend-ui": "100.4.*", + "magento/module-sales": "103.0.*", "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, @@ -11044,11 +11200,11 @@ }, { "name": "magento/module-login-as-customer-api", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-login-as-customer-api/magento-module-login-as-customer-api-100.4.0.0.zip", - "shasum": "41a46864df031407d7c977369f8c0ecdc5e421b0" + "url": "https://repo.magento.com/archives/magento/module-login-as-customer-api/magento-module-login-as-customer-api-100.4.1.0.zip", + "shasum": "4196200cf12a2419ca4145790997bcfbe9eb2ec2" }, "require": { "magento/framework": "103.0.*", @@ -11070,12 +11226,46 @@ "description": "Allow for admin to enter a customer account" }, { - "name": "magento/module-login-as-customer-frontend-ui", + "name": "magento/module-login-as-customer-assistance", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-login-as-customer-frontend-ui/magento-module-login-as-customer-frontend-ui-100.4.0.0.zip", - "shasum": "8fb328e705ce499ecd13d660a070f2bc46f90d93" + "url": "https://repo.magento.com/archives/magento/module-login-as-customer-assistance/magento-module-login-as-customer-assistance-100.4.0.0.zip", + "shasum": "d1983cd39e2477e2193b1394d611009c0885fcac" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-backend": "102.0.*", + "magento/module-customer": "103.0.*", + "magento/module-login-as-customer": "100.4.*", + "magento/module-login-as-customer-api": "100.4.*", + "magento/module-store": "101.1.*", + "php": "~7.3.0||~7.4.0" + }, + "suggest": { + "magento/module-login-as-customer-admin-ui": "100.4.*" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\LoginAsCustomerAssistance\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ] + }, + { + "name": "magento/module-login-as-customer-frontend-ui", + "version": "100.4.1", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-login-as-customer-frontend-ui/magento-module-login-as-customer-frontend-ui-100.4.1.0.zip", + "shasum": "ed163897b44a78ea346e2387d66018e075a7d337" }, "require": { "magento/framework": "103.0.*", @@ -11134,15 +11324,15 @@ }, { "name": "magento/module-login-as-customer-page-cache", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-login-as-customer-page-cache/magento-module-login-as-customer-page-cache-100.4.0.0.zip", - "shasum": "986e4679536ee24a8ea50d508d04ff8455109c03" + "url": "https://repo.magento.com/archives/magento/module-login-as-customer-page-cache/magento-module-login-as-customer-page-cache-100.4.1.0.zip", + "shasum": "b817b36aa7f9ef8eb92f6ef5efb4bd571de3ef64" }, "require": { "magento/framework": "103.0.*", - "magento/module-customer": "103.0.*", + "magento/module-login-as-customer-api": "100.4.*", "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, @@ -11197,16 +11387,16 @@ }, { "name": "magento/module-login-as-customer-sales", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-login-as-customer-sales/magento-module-login-as-customer-sales-100.4.0.0.zip", - "shasum": "b0af6cb9cbd317de758590288ac93d6303c1ec11" + "url": "https://repo.magento.com/archives/magento/module-login-as-customer-sales/magento-module-login-as-customer-sales-100.4.1.0.zip", + "shasum": "df840f1c190c40dc3dae5d33578051a3dd250ce7" }, "require": { "magento/framework": "103.0.*", "magento/module-backend": "102.0.*", - "magento/module-customer": "103.0.*", + "magento/module-login-as-customer-api": "100.4.*", "magento/module-user": "101.2.*", "php": "~7.3.0||~7.4.0" }, @@ -11257,11 +11447,11 @@ }, { "name": "magento/module-media-content", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-content/magento-module-media-content-100.4.0.0.zip", - "shasum": "ec7927ffff864b341c5533c952742c3d13244242" + "url": "https://repo.magento.com/archives/magento/module-media-content/magento-module-media-content-100.4.1.0.zip", + "shasum": "fecea4462c80337ede954d301cd209325e61f0a8" }, "require": { "magento/framework": "103.0.*", @@ -11286,11 +11476,11 @@ }, { "name": "magento/module-media-content-api", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-content-api/magento-module-media-content-api-100.4.0.0.zip", - "shasum": "c5da1a6080670675591bbd395b28e0f21b794b0e" + "url": "https://repo.magento.com/archives/magento/module-media-content-api/magento-module-media-content-api-100.4.1.0.zip", + "shasum": "e94bddc8514c0fe5e52f14dd82da996f098418f9" }, "require": { "magento/framework": "103.0.*", @@ -11314,17 +11504,18 @@ }, { "name": "magento/module-media-content-catalog", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-content-catalog/magento-module-media-content-catalog-100.4.0.0.zip", - "shasum": "567dd79b973da79d7b22e44abecee611c7eab3b3" + "url": "https://repo.magento.com/archives/magento/module-media-content-catalog/magento-module-media-content-catalog-100.4.1.0.zip", + "shasum": "5c0045b8695d16a9c4be3c13c23bf250c9ae79f3" }, "require": { "magento/framework": "103.0.*", "magento/module-catalog": "104.0.*", "magento/module-eav": "102.1.*", "magento/module-media-content-api": "100.4.*", + "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -11344,11 +11535,11 @@ }, { "name": "magento/module-media-content-cms", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-content-cms/magento-module-media-content-cms-100.4.0.0.zip", - "shasum": "f35b451d666cb5f783c37595ddd564b7c4622614" + "url": "https://repo.magento.com/archives/magento/module-media-content-cms/magento-module-media-content-cms-100.4.1.0.zip", + "shasum": "cfae369321712081a9258535fddc20d97924092f" }, "require": { "magento/framework": "103.0.*", @@ -11373,20 +11564,21 @@ }, { "name": "magento/module-media-content-synchronization", - "version": "1.0.0", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-content-synchronization/magento-module-media-content-synchronization-1.0.0.0.zip", - "shasum": "3242e80e2f814431636d8bd8a0b4abeb7698d394" + "url": "https://repo.magento.com/archives/magento/module-media-content-synchronization/magento-module-media-content-synchronization-100.4.0.0.zip", + "shasum": "3783cce2c3642cb24fb2cac6933237157c84bbcb" }, "require": { - "magento/framework": "*", - "magento/framework-message-queue": "*", - "magento/module-media-content-synchronization-api": "1.0.*", + "magento/framework": "103.0.*", + "magento/framework-message-queue": "100.4.*", + "magento/module-media-content-api": "100.4.*", + "magento/module-media-content-synchronization-api": "100.4.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-media-gallery-synchronization": "1.0.*" + "magento/module-media-gallery-synchronization": "100.4.*" }, "type": "magento2-module", "autoload": { @@ -11405,14 +11597,14 @@ }, { "name": "magento/module-media-content-synchronization-api", - "version": "1.0.0", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-content-synchronization-api/magento-module-media-content-synchronization-api-1.0.0.0.zip", - "shasum": "b5a3dca7b54114d59111e1f5f0e1d72a6f1cce49" + "url": "https://repo.magento.com/archives/magento/module-media-content-synchronization-api/magento-module-media-content-synchronization-api-100.4.0.0.zip", + "shasum": "1d4737df3ec742b8cb2fa47d0e026740d99ec9f6" }, "require": { - "magento/framework": "*", + "magento/framework": "103.0.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -11432,17 +11624,17 @@ }, { "name": "magento/module-media-content-synchronization-catalog", - "version": "1.0.0", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-content-synchronization-catalog/magento-module-media-content-synchronization-catalog-1.0.0.0.zip", - "shasum": "ebd6207bc81cf9b3a88c269b9cc028ea3419b05c" + "url": "https://repo.magento.com/archives/magento/module-media-content-synchronization-catalog/magento-module-media-content-synchronization-catalog-100.4.0.0.zip", + "shasum": "6bdf3215d98a450169fefe0127d6cb70d7c5f387" }, "require": { - "magento/framework": "*", - "magento/module-media-content-api": "*", - "magento/module-media-content-synchronization-api": "1.0.*", - "magento/module-media-gallery-synchronization-api": "1.0.*", + "magento/framework": "103.0.*", + "magento/module-media-content-api": "100.4.*", + "magento/module-media-content-synchronization-api": "100.4.*", + "magento/module-media-gallery-synchronization-api": "100.4.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -11462,17 +11654,17 @@ }, { "name": "magento/module-media-content-synchronization-cms", - "version": "1.0.0", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-content-synchronization-cms/magento-module-media-content-synchronization-cms-1.0.0.0.zip", - "shasum": "98d07914a1e9dfe8eee4157ec2881a593ebce665" + "url": "https://repo.magento.com/archives/magento/module-media-content-synchronization-cms/magento-module-media-content-synchronization-cms-100.4.0.0.zip", + "shasum": "09fc182163ee8cb434f43cb72537cb17d0181187" }, "require": { - "magento/framework": "*", - "magento/module-media-content-api": "*", - "magento/module-media-content-synchronization-api": "1.0.*", - "magento/module-media-gallery-synchronization-api": "1.0.*", + "magento/framework": "103.0.*", + "magento/module-media-content-api": "100.4.*", + "magento/module-media-content-synchronization-api": "100.4.*", + "magento/module-media-gallery-synchronization-api": "100.4.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -11492,11 +11684,11 @@ }, { "name": "magento/module-media-gallery", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-gallery/magento-module-media-gallery-100.4.0.0.zip", - "shasum": "5764d22b998dddae5b7c18582ac5807a78fd4d2f" + "url": "https://repo.magento.com/archives/magento/module-media-gallery/magento-module-media-gallery-100.4.1.0.zip", + "shasum": "b1a5c8bd0e280ab993f3b903850a567e219f8dbd" }, "require": { "magento/framework": "103.0.*", @@ -11521,11 +11713,11 @@ }, { "name": "magento/module-media-gallery-api", - "version": "101.0.0", + "version": "101.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-gallery-api/magento-module-media-gallery-api-101.0.0.0.zip", - "shasum": "a16c2906a46f8e5d86f423d9f58b015de42b749c" + "url": "https://repo.magento.com/archives/magento/module-media-gallery-api/magento-module-media-gallery-api-101.0.1.0.zip", + "shasum": "1afad98a4d25563f1c3f21bf23c91651728fdc58" }, "require": { "magento/framework": "103.0.*", @@ -11576,23 +11768,23 @@ "description": "Magento module responsible for catalog gallery processor delete operation handling" }, { - "name": "magento/module-media-gallery-integration", - "version": "1.0.0", + "name": "magento/module-media-gallery-catalog-integration", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-gallery-integration/magento-module-media-gallery-integration-1.0.0.0.zip", - "shasum": "aca1404e6e392a389236e6fc1211de566ad13c44" + "url": "https://repo.magento.com/archives/magento/module-media-gallery-catalog-integration/magento-module-media-gallery-catalog-integration-100.4.0.0.zip", + "shasum": "d59c80944de882c9c4e610e8ce397e5c74ce5e5d" }, "require": { - "magento/framework": "*", - "magento/module-cms": "*", - "magento/module-media-gallery-api": "*", - "magento/module-media-gallery-synchronization": "1.0.*", - "magento/module-media-gallery-ui-api": "1.0.*", + "magento/framework": "103.0.*", + "magento/module-cms": "104.0.*", + "magento/module-media-gallery-api": "101.0.*", + "magento/module-media-gallery-synchronization-api": "100.4.*", + "magento/module-media-gallery-ui-api": "100.4.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-catalog": "*" + "magento/module-catalog": "104.0.*" }, "type": "magento2-module", "autoload": { @@ -11600,28 +11792,30 @@ "registration.php" ], "psr-4": { - "Magento\\MediaGalleryIntegration\\": "" + "Magento\\MediaGalleryCatalogIntegration\\": "" } }, "license": [ "OSL-3.0", "AFL-3.0" ], - "description": "Magento module responsible for integration of enhanced media gallery" + "description": "Magento module responsible for extending catalog image uploader functionality" }, { - "name": "magento/module-media-gallery-synchronization", - "version": "1.0.0", + "name": "magento/module-media-gallery-catalog-ui", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-gallery-synchronization/magento-module-media-gallery-synchronization-1.0.0.0.zip", - "shasum": "1a0087f50e693d39704d0f0602cb50bcf06a6e30" + "url": "https://repo.magento.com/archives/magento/module-media-gallery-catalog-ui/magento-module-media-gallery-catalog-ui-100.4.0.0.zip", + "shasum": "797ca4ca5a0b17b6b7b31b40ef5e0d633ae9e4f7" }, "require": { - "magento/framework": "*", - "magento/framework-message-queue": "*", - "magento/module-media-gallery-api": "*", - "magento/module-media-gallery-synchronization-api": "1.0.*", + "magento/framework": "103.0.*", + "magento/module-backend": "102.0.*", + "magento/module-catalog": "104.0.*", + "magento/module-cms": "104.0.*", + "magento/module-store": "101.1.*", + "magento/module-ui": "101.2.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -11630,25 +11824,27 @@ "registration.php" ], "psr-4": { - "Magento\\MediaGallerySynchronization\\": "" + "Magento\\MediaGalleryCatalogUi\\": "" } }, "license": [ "OSL-3.0", "AFL-3.0" ], - "description": "Magento module provides implementation of the media gallery data synchronization." + "description": "Magento module that implement category grid for media gallery." }, { - "name": "magento/module-media-gallery-synchronization-api", - "version": "1.0.0", + "name": "magento/module-media-gallery-cms-ui", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-gallery-synchronization-api/magento-module-media-gallery-synchronization-api-1.0.0.0.zip", - "shasum": "709986991c673e1d5b09be0976342ccd7c049fae" + "url": "https://repo.magento.com/archives/magento/module-media-gallery-cms-ui/magento-module-media-gallery-cms-ui-100.4.0.0.zip", + "shasum": "5f91c8f981e94210da69e0f37f9f15c04556219b" }, "require": { - "magento/framework": "*", + "magento/framework": "103.0.*", + "magento/module-backend": "102.0.*", + "magento/module-cms": "104.0.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -11657,61 +11853,64 @@ "registration.php" ], "psr-4": { - "Magento\\MediaGallerySynchronizationApi\\": "" + "Magento\\MediaGalleryCmsUi\\": "" } }, "license": [ "OSL-3.0", "AFL-3.0" ], - "description": "Magento module responsible for the media gallery synchronization implementation API" + "description": "Cms related UI elements in the magento media gallery" }, { - "name": "magento/module-media-gallery-ui", - "version": "1.0.0", + "name": "magento/module-media-gallery-integration", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-gallery-ui/magento-module-media-gallery-ui-1.0.0.0.zip", - "shasum": "5e3581423f8a66a4bafa2b239b1bb7515c470fc9" + "url": "https://repo.magento.com/archives/magento/module-media-gallery-integration/magento-module-media-gallery-integration-100.4.0.0.zip", + "shasum": "f5bb6edce6b7c28d1efd05fa969d7d13ea2ff070" }, "require": { - "magento/framework": "*", - "magento/module-backend": "*", - "magento/module-cms": "*", - "magento/module-media-content-api": "*", - "magento/module-media-gallery-api": "*", - "magento/module-media-gallery-synchronization": "1.0.*", - "magento/module-media-gallery-synchronization-api": "1.0.*", - "magento/module-media-gallery-ui-api": "1.0.*", - "magento/module-store": "*", - "magento/module-ui": "*", + "magento/framework": "103.0.*", + "magento/module-media-gallery-api": "101.0.*", + "magento/module-media-gallery-synchronization-api": "100.4.*", + "magento/module-media-gallery-ui-api": "100.4.*", + "magento/module-ui": "101.2.*", "php": "~7.3.0||~7.4.0" }, + "require-dev": { + "magento/module-cms": "*" + }, + "suggest": { + "magento/module-catalog": "104.0.*", + "magento/module-cms": "104.0.*" + }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\MediaGalleryUi\\": "" + "Magento\\MediaGalleryIntegration\\": "" } }, "license": [ "OSL-3.0", "AFL-3.0" ], - "description": "Magento module responsible for the media gallery UI implementation" + "description": "Magento module responsible for integration of enhanced media gallery" }, { - "name": "magento/module-media-gallery-ui-api", - "version": "1.0.0", + "name": "magento/module-media-gallery-metadata", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-gallery-ui-api/magento-module-media-gallery-ui-api-1.0.0.0.zip", - "shasum": "61c4058da2521f007851fe769cf63675d2bf4a64" + "url": "https://repo.magento.com/archives/magento/module-media-gallery-metadata/magento-module-media-gallery-metadata-100.4.0.0.zip", + "shasum": "cc2470c5131e1899b27383c54405eea1f456e571" }, "require": { - "magento/framework": "*", + "magento/framework": "103.0.*", + "magento/module-media-gallery-metadata-api": "100.4.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -11720,33 +11919,25 @@ "registration.php" ], "psr-4": { - "Magento\\MediaGalleryUiApi\\": "" + "Magento\\MediaGalleryMetadata\\": "" } }, "license": [ "OSL-3.0", "AFL-3.0" ], - "description": "Magento module responsible for the media gallery UI implementation API" + "description": "Magento module responsible for images metadata processing" }, { - "name": "magento/module-media-storage", + "name": "magento/module-media-gallery-metadata-api", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-media-storage/magento-module-media-storage-100.4.0.0.zip", - "shasum": "8c5783a214bda8691260ce98895d610ef1546614" + "url": "https://repo.magento.com/archives/magento/module-media-gallery-metadata-api/magento-module-media-gallery-metadata-api-100.4.0.0.zip", + "shasum": "a8c6a1c1497581cb1839cab46fc61ef9a67b1dbd" }, "require": { "magento/framework": "103.0.*", - "magento/framework-bulk": "101.0.*", - "magento/module-asynchronous-operations": "100.4.*", - "magento/module-authorization": "100.4.*", - "magento/module-backend": "102.0.*", - "magento/module-catalog": "104.0.*", - "magento/module-config": "101.2.*", - "magento/module-store": "101.1.*", - "magento/module-theme": "101.1.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -11755,7 +11946,193 @@ "registration.php" ], "psr-4": { - "Magento\\MediaStorage\\": "" + "Magento\\MediaGalleryMetadataApi\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "Magento module responsible for media gallery metadata implementation API" + }, + { + "name": "magento/module-media-gallery-synchronization", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-media-gallery-synchronization/magento-module-media-gallery-synchronization-100.4.0.0.zip", + "shasum": "eb535793174f15330db45a19ce85c588ec2b9f91" + }, + "require": { + "magento/framework": "103.0.*", + "magento/framework-message-queue": "100.4.*", + "magento/module-media-gallery-api": "101.0.*", + "magento/module-media-gallery-synchronization-api": "100.4.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\MediaGallerySynchronization\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "Magento module provides implementation of the media gallery data synchronization." + }, + { + "name": "magento/module-media-gallery-synchronization-api", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-media-gallery-synchronization-api/magento-module-media-gallery-synchronization-api-100.4.0.0.zip", + "shasum": "7585408242ad5bf0b7cc97fc671c836256733e3e" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-media-gallery-api": "101.0.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\MediaGallerySynchronizationApi\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "Magento module responsible for the media gallery synchronization implementation API" + }, + { + "name": "magento/module-media-gallery-synchronization-metadata", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-media-gallery-synchronization-metadata/magento-module-media-gallery-synchronization-metadata-100.4.0.0.zip", + "shasum": "c60bbe9ea155cc64d7cea0cf63e296e0f8b237e1" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-media-gallery-api": "101.0.*", + "magento/module-media-gallery-metadata-api": "100.4.*", + "magento/module-media-gallery-synchronization-api": "100.4.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\MediaGallerySynchronizationMetadata\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "Magento module responsible for images metadata synchronization" + }, + { + "name": "magento/module-media-gallery-ui", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-media-gallery-ui/magento-module-media-gallery-ui-100.4.0.0.zip", + "shasum": "832e615e417436f97a41cdbb824559efaabd0d71" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-backend": "102.0.*", + "magento/module-cms": "104.0.*", + "magento/module-media-content-api": "100.4.*", + "magento/module-media-gallery-api": "101.0.*", + "magento/module-media-gallery-metadata-api": "100.4.*", + "magento/module-media-gallery-synchronization-api": "100.4.*", + "magento/module-media-gallery-ui-api": "100.4.*", + "magento/module-store": "101.1.*", + "magento/module-ui": "101.2.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\MediaGalleryUi\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "Magento module responsible for the media gallery UI implementation" + }, + { + "name": "magento/module-media-gallery-ui-api", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-media-gallery-ui-api/magento-module-media-gallery-ui-api-100.4.0.0.zip", + "shasum": "014d1bcd24264b0dcd08ec977d1bba3ecc37b5fd" + }, + "require": { + "magento/framework": "103.0.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\MediaGalleryUiApi\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "Magento module responsible for the media gallery UI implementation API" + }, + { + "name": "magento/module-media-storage", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-media-storage/magento-module-media-storage-100.4.0.0.zip", + "shasum": "8c5783a214bda8691260ce98895d610ef1546614" + }, + "require": { + "magento/framework": "103.0.*", + "magento/framework-bulk": "101.0.*", + "magento/module-asynchronous-operations": "100.4.*", + "magento/module-authorization": "100.4.*", + "magento/module-backend": "102.0.*", + "magento/module-catalog": "104.0.*", + "magento/module-config": "101.2.*", + "magento/module-store": "101.1.*", + "magento/module-theme": "101.1.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\MediaStorage\\": "" } }, "license": [ @@ -11766,11 +12143,11 @@ }, { "name": "magento/module-message-queue", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-message-queue/magento-module-message-queue-100.4.0.0.zip", - "shasum": "540b0b266e2bd9c9a5b3078ff84398d422461039" + "url": "https://repo.magento.com/archives/magento/module-message-queue/magento-module-message-queue-100.4.1.0.zip", + "shasum": "137eafed34c6f12aed51daf399e5297649f1459b" }, "require": { "magento/framework": "103.0.*", @@ -11891,14 +12268,15 @@ }, { "name": "magento/module-multishipping", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-multishipping/magento-module-multishipping-100.4.0.0.zip", - "shasum": "6611a9c16190d4f6b9721b7a749ef5c338e67bc3" + "url": "https://repo.magento.com/archives/magento/module-multishipping/magento-module-multishipping-100.4.1.0.zip", + "shasum": "127f7ac9700422be364744d7e29fae796e2c61e4" }, "require": { "magento/framework": "103.0.*", + "magento/module-captcha": "100.4.*", "magento/module-checkout": "100.4.*", "magento/module-customer": "103.0.*", "magento/module-directory": "100.4.*", @@ -11991,11 +12369,11 @@ }, { "name": "magento/module-newsletter", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-newsletter/magento-module-newsletter-100.4.0.0.zip", - "shasum": "94d4535b429478f31d5ae3719321882d7c43ba37" + "url": "https://repo.magento.com/archives/magento/module-newsletter/magento-module-newsletter-100.4.1.0.zip", + "shasum": "35c4500d83eafae25bbb6c1ac0b372fb08fb9191" }, "require": { "magento/framework": "103.0.*", @@ -12025,6 +12403,39 @@ ], "description": "N/A" }, + { + "name": "magento/module-newsletter-graph-ql", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-newsletter-graph-ql/magento-module-newsletter-graph-ql-100.4.0.0.zip", + "shasum": "e5585c22858a6e8c7733f30161aa185570cc32f2" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-customer": "103.0.*", + "magento/module-newsletter": "100.4.*", + "magento/module-store": "101.1.*", + "php": "~7.3.0||~7.4.0" + }, + "suggest": { + "magento/module-graph-ql": "100.4.*" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\NewsletterGraphQl\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "Provides GraphQl functionality for the newsletter subscriptions." + }, { "name": "magento/module-offline-payments", "version": "100.4.0", @@ -12099,11 +12510,11 @@ }, { "name": "magento/module-page-cache", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-page-cache/magento-module-page-cache-100.4.0.0.zip", - "shasum": "123419536c1409d9c35f74620252243d37274cdd" + "url": "https://repo.magento.com/archives/magento/module-page-cache/magento-module-page-cache-100.4.1.0.zip", + "shasum": "8a99f0c727a647af8168adf4fb96690c2c1daa1a" }, "require": { "magento/framework": "103.0.*", @@ -12129,11 +12540,11 @@ }, { "name": "magento/module-payment", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-payment/magento-module-payment-100.4.0.0.zip", - "shasum": "ecc5c41cf4085a0c60fccc940bc952724c58e4b9" + "url": "https://repo.magento.com/archives/magento/module-payment/magento-module-payment-100.4.1.0.zip", + "shasum": "64407e124c23d19c67a0b7054e5a1ad5d870a528" }, "require": { "magento/framework": "103.0.*", @@ -12163,11 +12574,11 @@ }, { "name": "magento/module-paypal", - "version": "101.0.0", + "version": "101.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-paypal/magento-module-paypal-101.0.0.0.zip", - "shasum": "a08238a74023ad3c42c22001874a3bdfb11abf02" + "url": "https://repo.magento.com/archives/magento/module-paypal/magento-module-paypal-101.0.1.0.zip", + "shasum": "77473632069350fcf5a971b1c9862c95ba80fd3e" }, "require": { "lib-libxml": "*", @@ -12243,11 +12654,11 @@ }, { "name": "magento/module-paypal-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-paypal-graph-ql/magento-module-paypal-graph-ql-100.4.0.0.zip", - "shasum": "fc6e2fd0348bb09205246c533e93ba214cf3e155" + "url": "https://repo.magento.com/archives/magento/module-paypal-graph-ql/magento-module-paypal-graph-ql-100.4.1.0.zip", + "shasum": "7ad5496ea6418cdcf9dbf82e6915c925614308f6" }, "require": { "magento/framework": "103.0.*", @@ -12258,10 +12669,12 @@ "magento/module-quote-graph-ql": "100.4.*", "magento/module-sales": "103.0.*", "magento/module-store": "101.1.*", + "magento/module-vault": "101.2.*", "php": "~7.3.0||~7.4.0" }, "suggest": { - "magento/module-graph-ql": "100.4.*" + "magento/module-graph-ql": "100.4.*", + "magento/module-store-graph-ql": "100.4.*" }, "type": "magento2-module", "autoload": { @@ -12280,11 +12693,11 @@ }, { "name": "magento/module-persistent", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-persistent/magento-module-persistent-100.4.0.0.zip", - "shasum": "65f0b213725c661c3168b3cdfc5a8e8e2e5bb43c" + "url": "https://repo.magento.com/archives/magento/module-persistent/magento-module-persistent-100.4.1.0.zip", + "shasum": "f8a54bfed9db62c618b180a735a9c9e3d31239fb" }, "require": { "magento/framework": "103.0.*", @@ -12313,11 +12726,11 @@ }, { "name": "magento/module-product-alert", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-product-alert/magento-module-product-alert-100.4.0.0.zip", - "shasum": "2d1f5364fd3322d76c46c117f4e6c3749df7f82a" + "url": "https://repo.magento.com/archives/magento/module-product-alert/magento-module-product-alert-100.4.1.0.zip", + "shasum": "1945570a5bb73b1aa264a9a7fa1ba6e007a70690" }, "require": { "magento/framework": "103.0.*", @@ -12348,11 +12761,11 @@ }, { "name": "magento/module-product-video", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-product-video/magento-module-product-video-100.4.0.0.zip", - "shasum": "0499a054bf9ded45622da6c14f419f73c5a031e9" + "url": "https://repo.magento.com/archives/magento/module-product-video/magento-module-product-video-100.4.1.0.zip", + "shasum": "43e25564c5fd9da795108e412037004afc020134" }, "require": { "magento/framework": "103.0.*", @@ -12385,11 +12798,11 @@ }, { "name": "magento/module-quote", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-quote/magento-module-quote-101.2.0.0.zip", - "shasum": "b3b20916a7fbc286801b2bd2ce36bcb64199d124" + "url": "https://repo.magento.com/archives/magento/module-quote/magento-module-quote-101.2.1.0.zip", + "shasum": "75623438d1c4167a0283f3fb1793d45dc7151178" }, "require": { "magento/framework": "103.0.*", @@ -12429,11 +12842,11 @@ }, { "name": "magento/module-quote-analytics", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-quote-analytics/magento-module-quote-analytics-100.4.0.0.zip", - "shasum": "bbbd89971918862af4aa5868f58fd8c87800d1f6" + "url": "https://repo.magento.com/archives/magento/module-quote-analytics/magento-module-quote-analytics-100.4.1.0.zip", + "shasum": "05ee2b4e81f5a5b4003fb96ed18f3b901413bb8c" }, "require": { "magento/framework": "103.0.*", @@ -12457,56 +12870,44 @@ "description": "N/A" }, { - "name": "magento/module-quote-graph-ql", + "name": "magento/module-quote-bundle-options", "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-quote-graph-ql/magento-module-quote-graph-ql-100.4.0.0.zip", - "shasum": "ae58d39019962a34b246f0fe94180cc72ec7a4f5" + "url": "https://repo.magento.com/archives/magento/module-quote-bundle-options/magento-module-quote-bundle-options-100.4.0.0.zip", + "shasum": "600b519b3bbb05d4b3c9f4b16630e6dfc1fa4a6f" }, "require": { "magento/framework": "103.0.*", - "magento/module-catalog": "104.0.*", - "magento/module-checkout": "100.4.*", - "magento/module-customer": "103.0.*", - "magento/module-customer-graph-ql": "100.4.*", - "magento/module-directory": "100.4.*", - "magento/module-graph-ql": "100.4.*", "magento/module-quote": "101.2.*", - "magento/module-sales": "103.0.*", - "magento/module-store": "101.1.*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-graph-ql-cache": "100.4.*" - }, "type": "magento2-module", "autoload": { "files": [ "registration.php" ], "psr-4": { - "Magento\\QuoteGraphQl\\": "" + "Magento\\QuoteBundleOptions\\": "" } }, "license": [ "OSL-3.0", "AFL-3.0" ], - "description": "N/A" + "description": "Magento module provides data provider for creating buy request for bundle products" }, { - "name": "magento/module-re-captcha-admin-ui", - "version": "1.0.0", + "name": "magento/module-quote-configurable-options", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-admin-ui/magento-module-re-captcha-admin-ui-1.0.0.0.zip", - "shasum": "fda64de870bd54381489319ab071ce8b4a4a1715" + "url": "https://repo.magento.com/archives/magento/module-quote-configurable-options/magento-module-quote-configurable-options-100.4.0.0.zip", + "shasum": "45320a2c671d3f4a41840c9c96f21bf2b127e7dc" }, "require": { - "magento/framework": "*", - "magento/module-config": "*", - "magento/module-re-captcha-ui": "*", + "magento/framework": "103.0.*", + "magento/module-quote": "101.2.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -12515,26 +12916,26 @@ "registration.php" ], "psr-4": { - "Magento\\ReCaptchaAdminUi\\": "" + "Magento\\QuoteConfigurableOptions\\": "" } }, "license": [ - "OSL-3.0" + "OSL-3.0", + "AFL-3.0" ], - "description": "Google reCAPTCHA integration for Magento2" + "description": "Magento module provides data provider for creating buy request for configurable products" }, { - "name": "magento/module-re-captcha-checkout", - "version": "1.0.0", + "name": "magento/module-quote-downloadable-links", + "version": "100.4.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-checkout/magento-module-re-captcha-checkout-1.0.0.0.zip", - "shasum": "1ced533bc16fba1fb3b326e4eb3d4cc8335c11c0" + "url": "https://repo.magento.com/archives/magento/module-quote-downloadable-links/magento-module-quote-downloadable-links-100.4.0.0.zip", + "shasum": "dce1745d88c4e13de89ed114b86c242e1c0f5221" }, "require": { - "magento/framework": "*", - "magento/module-checkout": "*", - "magento/module-re-captcha-ui": "*", + "magento/framework": "103.0.*", + "magento/module-quote": "101.2.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -12543,29 +12944,127 @@ "registration.php" ], "psr-4": { - "Magento\\ReCaptchaCheckout\\": "" + "Magento\\QuoteDownloadableLinks\\": "" } }, "license": [ - "OSL-3.0" + "OSL-3.0", + "AFL-3.0" ], - "description": "Google reCAPTCHA integration for Magento2" + "description": "Magento module provides data provider for creating buy request for links of downloadable products" }, { - "name": "magento/module-re-captcha-contact", - "version": "1.0.0", + "name": "magento/module-quote-graph-ql", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-contact/magento-module-re-captcha-contact-1.0.0.0.zip", - "shasum": "8a6fa9fd7890a5bfd78b3dac145ad8c52f5d29a5" + "url": "https://repo.magento.com/archives/magento/module-quote-graph-ql/magento-module-quote-graph-ql-100.4.1.0.zip", + "shasum": "7dfaa9fad320206a8b5c939e6f4a455cf5065c22" }, "require": { - "magento/framework": "*", - "magento/module-re-captcha-ui": "*", - "php": "~7.3.0||~7.4.0" - }, - "type": "magento2-module", - "autoload": { + "magento/framework": "103.0.*", + "magento/module-catalog": "104.0.*", + "magento/module-checkout": "100.4.*", + "magento/module-customer": "103.0.*", + "magento/module-customer-graph-ql": "100.4.*", + "magento/module-directory": "100.4.*", + "magento/module-gift-message": "100.4.*", + "magento/module-graph-ql": "100.4.*", + "magento/module-quote": "101.2.*", + "magento/module-sales": "103.0.*", + "magento/module-store": "101.1.*", + "php": "~7.3.0||~7.4.0" + }, + "suggest": { + "magento/module-graph-ql-cache": "100.4.*" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\QuoteGraphQl\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "N/A" + }, + { + "name": "magento/module-re-captcha-admin-ui", + "version": "1.1.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-re-captcha-admin-ui/magento-module-re-captcha-admin-ui-1.1.0.0.zip", + "shasum": "f88ca56de721ba40a3b57f49a6f98fcceacd8c91" + }, + "require": { + "magento/framework": "*", + "magento/module-config": "*", + "magento/module-re-captcha-ui": "1.1.*", + "magento/module-store": "*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\ReCaptchaAdminUi\\": "" + } + }, + "license": [ + "OSL-3.0" + ], + "description": "Google reCAPTCHA integration for Magento2" + }, + { + "name": "magento/module-re-captcha-checkout", + "version": "1.1.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-re-captcha-checkout/magento-module-re-captcha-checkout-1.1.0.0.zip", + "shasum": "6d55c828dc35a8b5a870d17a6ec9e754d682f4de" + }, + "require": { + "magento/framework": "*", + "magento/module-checkout": "*", + "magento/module-re-captcha-ui": "1.1.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\ReCaptchaCheckout\\": "" + } + }, + "license": [ + "OSL-3.0" + ], + "description": "Google reCAPTCHA integration for Magento2" + }, + { + "name": "magento/module-re-captcha-contact", + "version": "1.1.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-re-captcha-contact/magento-module-re-captcha-contact-1.1.0.0.zip", + "shasum": "3ceb2b5c3e3afd6a0655378aa69b7803675d5429" + }, + "require": { + "magento/framework": "*", + "magento/module-re-captcha-ui": "1.1.*", + "php": "~7.3.0||~7.4.0" + }, + "type": "magento2-module", + "autoload": { "files": [ "registration.php" ], @@ -12580,17 +13079,17 @@ }, { "name": "magento/module-re-captcha-customer", - "version": "1.0.0", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-customer/magento-module-re-captcha-customer-1.0.0.0.zip", - "shasum": "b1964a538f7c0c53b15408a14c1c9aa4da49b7a6" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-customer/magento-module-re-captcha-customer-1.1.0.0.zip", + "shasum": "5d475ec29193f61386ea06e1f71d39213142b6f3" }, "require": { "magento/framework": "*", "magento/module-customer": "*", - "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.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -12609,15 +13108,15 @@ }, { "name": "magento/module-re-captcha-frontend-ui", - "version": "1.0.0", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-frontend-ui/magento-module-re-captcha-frontend-ui-1.0.0.0.zip", - "shasum": "d4da31edac5626333ec03bbcdefa53f8d8cc581f" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-frontend-ui/magento-module-re-captcha-frontend-ui-1.1.0.0.zip", + "shasum": "d1aa622ee1e4428fe830dbeb4e9131f736842a15" }, "require": { "magento/framework": "*", - "magento/module-re-captcha-ui": "*", + "magento/module-re-captcha-ui": "1.1.*", "magento/module-store": "*", "php": "~7.3.0||~7.4.0" }, @@ -12637,11 +13136,11 @@ }, { "name": "magento/module-re-captcha-migration", - "version": "1.0.0", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-migration/magento-module-re-captcha-migration-1.0.0.0.zip", - "shasum": "5572a2f825dced7650ba3ce1e732956824ec925e" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-migration/magento-module-re-captcha-migration-1.1.0.0.zip", + "shasum": "f2e9e44a089ce344078e5fd4b4c41c74c1f3d6e3" }, "require": { "magento/framework": "*", @@ -12664,15 +13163,15 @@ }, { "name": "magento/module-re-captcha-newsletter", - "version": "1.0.0", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-newsletter/magento-module-re-captcha-newsletter-1.0.0.0.zip", - "shasum": "9da6f608ba440c84a99f2732ace1c74446629ded" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-newsletter/magento-module-re-captcha-newsletter-1.1.0.0.zip", + "shasum": "b3ffbe9785e530a1a1b7f4f71e3fe151efabc708" }, "require": { "magento/framework": "*", - "magento/module-re-captcha-ui": "*", + "magento/module-re-captcha-ui": "1.1.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -12691,17 +13190,17 @@ }, { "name": "magento/module-re-captcha-paypal", - "version": "1.0.0", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-paypal/magento-module-re-captcha-paypal-1.0.0.0.zip", - "shasum": "8da4a3e4ea311405bda83baafea0d838040d811f" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-paypal/magento-module-re-captcha-paypal-1.1.0.0.zip", + "shasum": "b2d68dc57ced68c60ced8c9f939688464889c1cd" }, "require": { "magento/framework": "*", "magento/module-checkout": "*", - "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.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -12720,15 +13219,15 @@ }, { "name": "magento/module-re-captcha-review", - "version": "1.0.0", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-review/magento-module-re-captcha-review-1.0.0.0.zip", - "shasum": "2cc148c7315de455755ad16a48834aac68dddf21" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-review/magento-module-re-captcha-review-1.1.0.0.zip", + "shasum": "1534a0431995fc48ba6e076695eed57017a077c5" }, "require": { "magento/framework": "*", - "magento/module-re-captcha-ui": "*", + "magento/module-re-captcha-ui": "1.1.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -12747,15 +13246,15 @@ }, { "name": "magento/module-re-captcha-send-friend", - "version": "1.0.0", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-send-friend/magento-module-re-captcha-send-friend-1.0.0.0.zip", - "shasum": "48f87e21458c2ec554403f53a521f660313a5383" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-send-friend/magento-module-re-captcha-send-friend-1.1.0.0.zip", + "shasum": "bea1720bec4686a5257325fc71fb1d56b61fa1f4" }, "require": { "magento/framework": "*", - "magento/module-re-captcha-ui": "*", + "magento/module-re-captcha-ui": "1.1.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -12774,15 +13273,15 @@ }, { "name": "magento/module-re-captcha-ui", - "version": "1.0.0", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-ui/magento-module-re-captcha-ui-1.0.0.0.zip", - "shasum": "ff154ea5529e53eff2a5f4fa24f406444bb4743e" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-ui/magento-module-re-captcha-ui-1.1.0.0.zip", + "shasum": "21b9c5e3b70c6181a913debae9c0da20bb44f13e" }, "require": { "magento/framework": "*", - "magento/module-re-captcha-validation-api": "*", + "magento/module-re-captcha-validation-api": "1.1.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -12807,16 +13306,16 @@ }, { "name": "magento/module-re-captcha-user", - "version": "1.0.0", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-user/magento-module-re-captcha-user-1.0.0.0.zip", - "shasum": "87340c47919cf825877dc1b5b9bfff44bdbf63aa" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-user/magento-module-re-captcha-user-1.1.0.0.zip", + "shasum": "caa712bfd103beec01c22a20dfb4ce90106e9417" }, "require": { "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.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -12835,16 +13334,16 @@ }, { "name": "magento/module-re-captcha-validation", - "version": "1.0.0", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-validation/magento-module-re-captcha-validation-1.0.0.0.zip", - "shasum": "7442ac656dc5a79d75973f331403e9762a98e7a7" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-validation/magento-module-re-captcha-validation-1.1.0.0.zip", + "shasum": "1f084fb5089071b9ce0af780f30223ec3107a0f6" }, "require": { "google/recaptcha": "^1.2", "magento/framework": "*", - "magento/module-re-captcha-validation-api": "*", + "magento/module-re-captcha-validation-api": "1.1.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -12863,11 +13362,11 @@ }, { "name": "magento/module-re-captcha-validation-api", - "version": "1.0.0", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-validation-api/magento-module-re-captcha-validation-api-1.0.0.0.zip", - "shasum": "12a6b6124020338c2849f3f656c7a31994b8ee54" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-validation-api/magento-module-re-captcha-validation-api-1.1.0.0.zip", + "shasum": "6fa06fe393f30ccc25d29341e7bc3f47203ed14d" }, "require": { "magento/framework": "*", @@ -12889,22 +13388,22 @@ }, { "name": "magento/module-re-captcha-version-2-checkbox", - "version": "1.0.0", + "version": "2.0.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-version-2-checkbox/magento-module-re-captcha-version-2-checkbox-1.0.0.0.zip", - "shasum": "a8a25db92f6600bf0466f0946efb3a9adfc059db" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-version-2-checkbox/magento-module-re-captcha-version-2-checkbox-2.0.0.0.zip", + "shasum": "8b499934e07d259e273b56d56a230d6dee080d68" }, "require": { "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-store": "*", "php": "~7.3.0||~7.4.0" }, "suggest": { "magento/module-config": "*", - "magento/module-re-captcha-admin-ui": "1.0.*" + "magento/module-re-captcha-admin-ui": "1.1.*" }, "type": "magento2-module", "autoload": { @@ -12922,22 +13421,22 @@ }, { "name": "magento/module-re-captcha-version-2-invisible", - "version": "1.0.0", + "version": "2.0.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-version-2-invisible/magento-module-re-captcha-version-2-invisible-1.0.0.0.zip", - "shasum": "5e3aa45c68c85182cdea47dfcb19498496277cd1" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-version-2-invisible/magento-module-re-captcha-version-2-invisible-2.0.0.0.zip", + "shasum": "58ec898769fb85b11593d5d49b22149ce517f91f" }, "require": { "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-store": "*", "php": "~7.3.0||~7.4.0" }, "suggest": { "magento/module-config": "*", - "magento/module-re-captcha-admin-ui": "1.0.*" + "magento/module-re-captcha-admin-ui": "1.1.*" }, "type": "magento2-module", "autoload": { @@ -12955,22 +13454,22 @@ }, { "name": "magento/module-re-captcha-version-3-invisible", - "version": "1.0.0", + "version": "2.0.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-re-captcha-version-3-invisible/magento-module-re-captcha-version-3-invisible-1.0.0.0.zip", - "shasum": "1f2696f83f5dace6bc4c1b5d7c48ee3d2317ba58" + "url": "https://repo.magento.com/archives/magento/module-re-captcha-version-3-invisible/magento-module-re-captcha-version-3-invisible-2.0.0.0.zip", + "shasum": "1214fdf89a58c7e2ed267f1c33a55c40f1ec1054" }, "require": { "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-store": "*", "php": "~7.3.0||~7.4.0" }, "suggest": { "magento/module-config": "*", - "magento/module-re-captcha-admin-ui": "1.0.*" + "magento/module-re-captcha-admin-ui": "1.1.*" }, "type": "magento2-module", "autoload": { @@ -13053,11 +13552,11 @@ }, { "name": "magento/module-reports", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-reports/magento-module-reports-100.4.0.0.zip", - "shasum": "d5bfac444ac991aff16e88d12bb9619aa25e4090" + "url": "https://repo.magento.com/archives/magento/module-reports/magento-module-reports-100.4.1.0.zip", + "shasum": "507a4841a101d08e0b29cf33ff73e1c2072fa27d" }, "require": { "magento/framework": "103.0.*", @@ -13123,11 +13622,11 @@ }, { "name": "magento/module-review", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-review/magento-module-review-100.4.0.0.zip", - "shasum": "26de6f8b816476df517cbafc0ef582f027f37c24" + "url": "https://repo.magento.com/archives/magento/module-review/magento-module-review-100.4.1.0.zip", + "shasum": "3b53f164707f690daba2c344fa9f342d51ca8063" }, "require": { "magento/framework": "103.0.*", @@ -13189,6 +13688,40 @@ ], "description": "N/A" }, + { + "name": "magento/module-review-graph-ql", + "version": "100.4.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/magento/module-review-graph-ql/magento-module-review-graph-ql-100.4.0.0.zip", + "shasum": "b02dc8dfb8e39c8602ac38337e64eb8c60c5f492" + }, + "require": { + "magento/framework": "103.0.*", + "magento/module-catalog": "104.0.*", + "magento/module-review": "100.4.*", + "magento/module-store": "101.1.*", + "php": "~7.3.0||~7.4.0" + }, + "suggest": { + "magento/module-graph-ql": "100.4.*", + "magento/module-graph-ql-cache": "100.4.*" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\ReviewGraphQl\\": "" + } + }, + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "description": "N/A" + }, { "name": "magento/module-robots", "version": "101.1.0", @@ -13284,11 +13817,11 @@ }, { "name": "magento/module-sales", - "version": "103.0.0", + "version": "103.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sales/magento-module-sales-103.0.0.0.zip", - "shasum": "1ec4b2bba3a0f89ab4641a9e9ab4531485dea645" + "url": "https://repo.magento.com/archives/magento/module-sales/magento-module-sales-103.0.1.0.zip", + "shasum": "94d8a3b1e45b223fcaebd8da4dda7f91368d8c42" }, "require": { "magento/framework": "103.0.*", @@ -13367,16 +13900,21 @@ }, { "name": "magento/module-sales-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sales-graph-ql/magento-module-sales-graph-ql-100.4.0.0.zip", - "shasum": "4edf4c0befdaf06f45b705e409b886cc860397b0" + "url": "https://repo.magento.com/archives/magento/module-sales-graph-ql/magento-module-sales-graph-ql-100.4.1.0.zip", + "shasum": "ffd609d0daa15c4798f08fee141bbe4b7058b166" }, "require": { "magento/framework": "103.0.*", + "magento/module-catalog": "104.0.*", "magento/module-graph-ql": "100.4.*", + "magento/module-quote": "101.2.*", "magento/module-sales": "103.0.*", + "magento/module-shipping": "100.4.*", + "magento/module-store": "101.1.*", + "magento/module-tax": "100.4.*", "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", @@ -13427,11 +13965,11 @@ }, { "name": "magento/module-sales-rule", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sales-rule/magento-module-sales-rule-101.2.0.0.zip", - "shasum": "6c5064668400a2d3cb447f0b762f7daab2b9a09f" + "url": "https://repo.magento.com/archives/magento/module-sales-rule/magento-module-sales-rule-101.2.1.0.zip", + "shasum": "35c495f50571d4fbca942fdeb29f7e5f8724513f" }, "require": { "magento/framework": "103.0.*", @@ -13476,11 +14014,11 @@ }, { "name": "magento/module-sales-sequence", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sales-sequence/magento-module-sales-sequence-100.4.0.0.zip", - "shasum": "17c6d19b579f082e0fd5b7d1abcf21a11b60e85a" + "url": "https://repo.magento.com/archives/magento/module-sales-sequence/magento-module-sales-sequence-100.4.1.0.zip", + "shasum": "5508458a59641dccd017849f68a79573c41a4808" }, "require": { "magento/framework": "103.0.*", @@ -13503,11 +14041,11 @@ }, { "name": "magento/module-sample-data", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sample-data/magento-module-sample-data-100.4.0.0.zip", - "shasum": "ae4dd0d30a7a1938143253484ef582ad9bb3ef87" + "url": "https://repo.magento.com/archives/magento/module-sample-data/magento-module-sample-data-100.4.1.0.zip", + "shasum": "b576fe30e9fd28b6d332aaebb16a03def6c039bf" }, "require": { "magento/framework": "103.0.*", @@ -13534,11 +14072,11 @@ }, { "name": "magento/module-search", - "version": "101.1.0", + "version": "101.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-search/magento-module-search-101.1.0.0.zip", - "shasum": "e0b7555bd350ab0620f25c79bd4883d9e01e6294" + "url": "https://repo.magento.com/archives/magento/module-search/magento-module-search-101.1.1.0.zip", + "shasum": "bf9ed39a53d22eb3b903ed1f32eb9cbf74d808d6" }, "require": { "magento/framework": "103.0.*", @@ -13566,11 +14104,11 @@ }, { "name": "magento/module-security", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-security/magento-module-security-100.4.0.0.zip", - "shasum": "4ce36b7765f2ccaedd06d6b37a57f794861a4a4a" + "url": "https://repo.magento.com/archives/magento/module-security/magento-module-security-100.4.1.0.zip", + "shasum": "b6953177562c9cb4a4f3d4d625482fb060e8eb5b" }, "require": { "magento/framework": "103.0.*", @@ -13599,11 +14137,11 @@ }, { "name": "magento/module-securitytxt", - "version": "1.0.0", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-securitytxt/magento-module-securitytxt-1.0.0.0.zip", - "shasum": "301d85665c96a260b6fc9762585fcc0997a0c6cc" + "url": "https://repo.magento.com/archives/magento/module-securitytxt/magento-module-securitytxt-1.1.0.0.zip", + "shasum": "123186217c5e8ff358e266eb5157fff8b64fddff" }, "require": { "magento/framework": "*", @@ -13697,11 +14235,11 @@ }, { "name": "magento/module-shipping", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-shipping/magento-module-shipping-100.4.0.0.zip", - "shasum": "7e2aafcc5f38a8cb26b26175465d28d33c051ff8" + "url": "https://repo.magento.com/archives/magento/module-shipping/magento-module-shipping-100.4.1.0.zip", + "shasum": "cd84f8168196fd6470d1399dd1122a2ab23984a0" }, "require": { "ext-gd": "*", @@ -13743,11 +14281,11 @@ }, { "name": "magento/module-sitemap", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-sitemap/magento-module-sitemap-100.4.0.0.zip", - "shasum": "7f414420b8dbe5e4ff7dcef1b2d2851b1fde2b7d" + "url": "https://repo.magento.com/archives/magento/module-sitemap/magento-module-sitemap-100.4.1.0.zip", + "shasum": "abb5185f1adc722a3dd9ebee9f0c0c91fb5666be" }, "require": { "magento/framework": "103.0.*", @@ -13782,11 +14320,11 @@ }, { "name": "magento/module-store", - "version": "101.1.0", + "version": "101.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-store/magento-module-store-101.1.0.0.zip", - "shasum": "3a19d9c63531f77916fb19d8e5c9c34291c978c3" + "url": "https://repo.magento.com/archives/magento/module-store/magento-module-store-101.1.1.0.zip", + "shasum": "3bdbc7289b6e4a2e4d6a3c27a53015ed2ceb0d39" }, "require": { "magento/framework": "103.0.*", @@ -13820,11 +14358,11 @@ }, { "name": "magento/module-store-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-store-graph-ql/magento-module-store-graph-ql-100.4.0.0.zip", - "shasum": "a9111e9e748a7f24262488aae5117fa086fb3097" + "url": "https://repo.magento.com/archives/magento/module-store-graph-ql/magento-module-store-graph-ql-100.4.1.0.zip", + "shasum": "69699feda3fe1d21bbe2082f3cd3bdfa2d403999" }, "require": { "magento/framework": "103.0.*", @@ -13935,11 +14473,11 @@ }, { "name": "magento/module-swatches", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-swatches/magento-module-swatches-100.4.0.0.zip", - "shasum": "dba6085416a1ed78c8d60548858181406d8e7589" + "url": "https://repo.magento.com/archives/magento/module-swatches/magento-module-swatches-100.4.1.0.zip", + "shasum": "7db3f519e490de8c8ed5e34a51d965265c432912" }, "require": { "magento/framework": "103.0.*", @@ -13976,21 +14514,19 @@ }, { "name": "magento/module-swatches-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-swatches-graph-ql/magento-module-swatches-graph-ql-100.4.0.0.zip", - "shasum": "a664d436a73f676c9e515a5f676bafce666b9464" + "url": "https://repo.magento.com/archives/magento/module-swatches-graph-ql/magento-module-swatches-graph-ql-100.4.1.0.zip", + "shasum": "4788f5e071c9cd64276072474582d2ae45bfa8d7" }, "require": { "magento/framework": "103.0.*", "magento/module-catalog": "104.0.*", + "magento/module-catalog-graph-ql": "100.4.*", "magento/module-swatches": "100.4.*", "php": "~7.3.0||~7.4.0" }, - "suggest": { - "magento/module-catalog-graph-ql": "100.4.*" - }, "type": "magento2-module", "autoload": { "files": [ @@ -14036,11 +14572,11 @@ }, { "name": "magento/module-tax", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-tax/magento-module-tax-100.4.0.0.zip", - "shasum": "eeee9793b16140314f57f47e03331e494693241e" + "url": "https://repo.magento.com/archives/magento/module-tax/magento-module-tax-100.4.1.0.zip", + "shasum": "29eb56e51551199ce0b17e948e4ba9d4b673c590" }, "require": { "magento/framework": "103.0.*", @@ -14111,11 +14647,11 @@ }, { "name": "magento/module-tax-import-export", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-tax-import-export/magento-module-tax-import-export-100.4.0.0.zip", - "shasum": "b7e75d55aec11250aac048ddf68d5ac1cff11c1d" + "url": "https://repo.magento.com/archives/magento/module-tax-import-export/magento-module-tax-import-export-100.4.1.0.zip", + "shasum": "bdc4b5a29c380a0e010dbd7e3a3e27551f8519ec" }, "require": { "magento/framework": "103.0.*", @@ -14143,11 +14679,11 @@ }, { "name": "magento/module-theme", - "version": "101.1.0", + "version": "101.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-theme/magento-module-theme-101.1.0.0.zip", - "shasum": "2a0f4c62f42941af6e3e49c4c775fd85c55937c0" + "url": "https://repo.magento.com/archives/magento/module-theme/magento-module-theme-101.1.1.0.zip", + "shasum": "8f02c7613fbccba355ec5a4271f22221d18ebc60" }, "require": { "magento/framework": "103.0.*", @@ -14215,11 +14751,11 @@ }, { "name": "magento/module-tinymce-3", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-tinymce-3/magento-module-tinymce-3-100.4.0.0.zip", - "shasum": "e26848511ebe2f02073e5b3f16d35e8bc583b407" + "url": "https://repo.magento.com/archives/magento/module-tinymce-3/magento-module-tinymce-3-100.4.1.0.zip", + "shasum": "8e6445a4ef4ebe913fa326818bdb25d47e91af4f" }, "require": { "magento/framework": "103.0.*", @@ -14249,11 +14785,11 @@ }, { "name": "magento/module-translation", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-translation/magento-module-translation-100.4.0.0.zip", - "shasum": "9bf9a6081484de21db1e388e7d123a91457a1281" + "url": "https://repo.magento.com/archives/magento/module-translation/magento-module-translation-100.4.1.0.zip", + "shasum": "2279f7b98ad66c1176528ce18331ceb90bdad361" }, "require": { "magento/framework": "103.0.*", @@ -14283,11 +14819,11 @@ }, { "name": "magento/module-two-factor-auth", - "version": "1.0.0", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-two-factor-auth/magento-module-two-factor-auth-1.0.0.0.zip", - "shasum": "2cac3b59970a5ec3890154856e3f1e56ff4e8836" + "url": "https://repo.magento.com/archives/magento/module-two-factor-auth/magento-module-two-factor-auth-1.1.0.0.zip", + "shasum": "8cdb7265c9268a06654c229fe5b5e7d588810297" }, "require": { "2tvenom/cborencode": "^1.0", @@ -14323,11 +14859,11 @@ }, { "name": "magento/module-ui", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-ui/magento-module-ui-101.2.0.0.zip", - "shasum": "9bf33f8e9f60efc8fad04d65df58b47046468c72" + "url": "https://repo.magento.com/archives/magento/module-ui/magento-module-ui-101.2.1.0.zip", + "shasum": "f66f3ff72cf8b5d754b93221f733b75566d67ea0" }, "require": { "magento/framework": "103.0.*", @@ -14358,11 +14894,11 @@ }, { "name": "magento/module-ups", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-ups/magento-module-ups-100.4.0.0.zip", - "shasum": "441d79e3453f9b4f6e315d4862dcb7d7627c92b3" + "url": "https://repo.magento.com/archives/magento/module-ups/magento-module-ups-100.4.1.0.zip", + "shasum": "c1ab7b037dd915018c562c4d62d680b726d514f0" }, "require": { "magento/framework": "103.0.*", @@ -14395,11 +14931,11 @@ }, { "name": "magento/module-url-rewrite", - "version": "102.0.0", + "version": "102.0.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-url-rewrite/magento-module-url-rewrite-102.0.0.0.zip", - "shasum": "ab97bb625606c2e639a3f0b45d503adbfcf82f3f" + "url": "https://repo.magento.com/archives/magento/module-url-rewrite/magento-module-url-rewrite-102.0.1.0.zip", + "shasum": "9e27a79511124a3b4bb54635149df7259544677d" }, "require": { "magento/framework": "103.0.*", @@ -14460,11 +14996,11 @@ }, { "name": "magento/module-user", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-user/magento-module-user-101.2.0.0.zip", - "shasum": "0caaaa786e222f0ffe67ba4c4fe88d6fdbc6f643" + "url": "https://repo.magento.com/archives/magento/module-user/magento-module-user-101.2.1.0.zip", + "shasum": "a3f2951b2e8f03464bbca5a15024c3b4a072c51f" }, "require": { "magento/framework": "103.0.*", @@ -14561,11 +15097,11 @@ }, { "name": "magento/module-vault", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-vault/magento-module-vault-101.2.0.0.zip", - "shasum": "c959aa06935d83745efe96dd5a27f50450eb0c98" + "url": "https://repo.magento.com/archives/magento/module-vault/magento-module-vault-101.2.1.0.zip", + "shasum": "e35e0d8dc742aabc00dd56e09f089e4b7c71db30" }, "require": { "magento/framework": "103.0.*", @@ -14747,11 +15283,11 @@ }, { "name": "magento/module-weee", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-weee/magento-module-weee-100.4.0.0.zip", - "shasum": "36f8d7bfe0f77bd4afb3c2623903561306006f67" + "url": "https://repo.magento.com/archives/magento/module-weee/magento-module-weee-100.4.1.0.zip", + "shasum": "a4ffe3fbab088fc50788d909b189e4a27badd7c0" }, "require": { "magento/framework": "103.0.*", @@ -14822,11 +15358,11 @@ }, { "name": "magento/module-widget", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-widget/magento-module-widget-101.2.0.0.zip", - "shasum": "06981a9bf8d55cd83616648be8436d954f5bfffe" + "url": "https://repo.magento.com/archives/magento/module-widget/magento-module-widget-101.2.1.0.zip", + "shasum": "ed113b57bb9c093d5361c873f5920c92fc72c4ac" }, "require": { "magento/framework": "103.0.*", @@ -14859,11 +15395,11 @@ }, { "name": "magento/module-wishlist", - "version": "101.2.0", + "version": "101.2.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-wishlist/magento-module-wishlist-101.2.0.0.zip", - "shasum": "c5116be562966727b8fa72d46b966b9f35ad1893" + "url": "https://repo.magento.com/archives/magento/module-wishlist/magento-module-wishlist-101.2.1.0.zip", + "shasum": "0214c64d46496945913ff9e22d7925c5231993f5" }, "require": { "magento/framework": "103.0.*", @@ -14934,11 +15470,11 @@ }, { "name": "magento/module-wishlist-graph-ql", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/module-wishlist-graph-ql/magento-module-wishlist-graph-ql-100.4.0.0.zip", - "shasum": "d9da626ccfe7c150ef6f923c48e1d700088d8bd0" + "url": "https://repo.magento.com/archives/magento/module-wishlist-graph-ql/magento-module-wishlist-graph-ql-100.4.1.0.zip", + "shasum": "1d59c07d6f052fbe9fa9fa7cfa3ced3ac70d8e98" }, "require": { "magento/framework": "103.0.*", @@ -14964,20 +15500,20 @@ }, { "name": "magento/product-community-edition", - "version": "2.4.0", + "version": "2.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/product-community-edition/magento-product-community-edition-2.4.0.0.zip", - "shasum": "9306dd594ac714c29e5a8728e07fb03fcae7afde" + "url": "https://repo.magento.com/archives/magento/product-community-edition/magento-product-community-edition-2.4.1.0.zip", + "shasum": "7eefebc4396277fdfabdb079828488393a70cc83" }, "require": { - "amzn/amazon-pay-and-login-magento-2-module": "4.0.2", + "amzn/amazon-pay-and-login-magento-2-module": "4.0.4", "colinmollenhour/cache-backend-file": "~1.4.1", "colinmollenhour/cache-backend-redis": "1.11.0", "colinmollenhour/credis": "1.11.1", "colinmollenhour/php-redis-session-abstract": "~1.4.0", "composer/composer": "^1.9", - "dotmailer/dotmailer-magento2-extension-package": "4.6.0", + "dotmailer/dotmailer-magento2-extension-package": "4.8.0", "elasticsearch/elasticsearch": "~7.7.0", "ext-bcmath": "*", "ext-ctype": "*", @@ -14995,7 +15531,7 @@ "ext-xsl": "*", "ext-zip": "*", "guzzlehttp/guzzle": "^6.3.3", - "klarna/m2-payments": "8.0.2", + "klarna/m2-payments": "8.1.0", "laminas/laminas-captcha": "^2.7.1", "laminas/laminas-code": "~3.4.1", "laminas/laminas-config": "^2.6.0", @@ -15026,14 +15562,14 @@ "laminas/laminas-validator": "^2.6.0", "laminas/laminas-view": "~2.11.2", "lib-libxml": "*", - "magento/adobe-stock-integration": "2.0.0", + "magento/adobe-stock-integration": "2.1.0", "magento/composer": "1.6.0", - "magento/framework": "103.0.0", + "magento/framework": "103.0.1", "magento/framework-amqp": "100.4.0", "magento/framework-bulk": "101.0.0", - "magento/framework-message-queue": "100.4.0", + "magento/framework-message-queue": "100.4.1", "magento/google-shopping-ads": "4.0.1", - "magento/inventory-metapackage": "1.2.0", + "magento/inventory-metapackage": "1.2.1", "magento/language-de_de": "100.4.0", "magento/language-en_us": "100.4.0", "magento/language-es_es": "100.4.0", @@ -15042,194 +15578,216 @@ "magento/language-pt_br": "100.4.0", "magento/language-zh_hans_cn": "100.4.0", "magento/magento-composer-installer": ">=0.1.11", - "magento/magento2-base": "2.4.0", - "magento/module-admin-analytics": "100.4.0", + "magento/magento2-base": "2.4.1", + "magento/module-admin-analytics": "100.4.1", "magento/module-admin-notification": "100.4.0", - "magento/module-advanced-pricing-import-export": "100.4.0", + "magento/module-advanced-pricing-import-export": "100.4.1", "magento/module-advanced-search": "100.4.0", "magento/module-amqp": "100.4.0", "magento/module-amqp-store": "100.4.0", - "magento/module-analytics": "100.4.0", - "magento/module-asynchronous-operations": "100.4.0", - "magento/module-authorization": "100.4.0", - "magento/module-backend": "102.0.0", - "magento/module-backup": "100.4.0", - "magento/module-bundle": "101.0.0", - "magento/module-bundle-graph-ql": "100.4.0", + "magento/module-analytics": "100.4.1", + "magento/module-asynchronous-operations": "100.4.1", + "magento/module-authorization": "100.4.1", + "magento/module-backend": "102.0.1", + "magento/module-backup": "100.4.1", + "magento/module-bundle": "101.0.1", + "magento/module-bundle-graph-ql": "100.4.1", "magento/module-bundle-import-export": "100.4.0", "magento/module-cache-invalidate": "100.4.0", - "magento/module-captcha": "100.4.0", + "magento/module-captcha": "100.4.1", "magento/module-cardinal-commerce": "100.4.0", - "magento/module-catalog": "104.0.0", + "magento/module-catalog": "104.0.1", "magento/module-catalog-analytics": "100.4.0", "magento/module-catalog-cms-graph-ql": "100.4.0", - "magento/module-catalog-customer-graph-ql": "100.4.0", - "magento/module-catalog-graph-ql": "100.4.0", - "magento/module-catalog-import-export": "101.1.0", - "magento/module-catalog-inventory": "100.4.0", + "magento/module-catalog-customer-graph-ql": "100.4.1", + "magento/module-catalog-graph-ql": "100.4.1", + "magento/module-catalog-import-export": "101.1.1", + "magento/module-catalog-inventory": "100.4.1", "magento/module-catalog-inventory-graph-ql": "100.4.0", - "magento/module-catalog-rule": "101.2.0", + "magento/module-catalog-rule": "101.2.1", "magento/module-catalog-rule-configurable": "100.4.0", "magento/module-catalog-rule-graph-ql": "100.4.0", - "magento/module-catalog-search": "102.0.0", - "magento/module-catalog-url-rewrite": "100.4.0", + "magento/module-catalog-search": "102.0.1", + "magento/module-catalog-url-rewrite": "100.4.1", "magento/module-catalog-url-rewrite-graph-ql": "100.4.0", - "magento/module-catalog-widget": "100.4.0", - "magento/module-checkout": "100.4.0", + "magento/module-catalog-widget": "100.4.1", + "magento/module-checkout": "100.4.1", "magento/module-checkout-agreements": "100.4.0", "magento/module-checkout-agreements-graph-ql": "100.4.0", - "magento/module-cms": "104.0.0", + "magento/module-cms": "104.0.1", "magento/module-cms-graph-ql": "100.4.0", - "magento/module-cms-url-rewrite": "100.4.0", + "magento/module-cms-url-rewrite": "100.4.1", "magento/module-cms-url-rewrite-graph-ql": "100.4.0", - "magento/module-config": "101.2.0", + "magento/module-config": "101.2.1", "magento/module-configurable-import-export": "100.4.0", - "magento/module-configurable-product": "100.4.0", - "magento/module-configurable-product-graph-ql": "100.4.0", + "magento/module-configurable-product": "100.4.1", + "magento/module-configurable-product-graph-ql": "100.4.1", "magento/module-configurable-product-sales": "100.4.0", - "magento/module-contact": "100.4.0", - "magento/module-cookie": "100.4.0", - "magento/module-cron": "100.4.0", + "magento/module-contact": "100.4.1", + "magento/module-cookie": "100.4.1", + "magento/module-cron": "100.4.1", "magento/module-csp": "100.4.0", "magento/module-currency-symbol": "100.4.0", - "magento/module-customer": "103.0.0", + "magento/module-customer": "103.0.1", "magento/module-customer-analytics": "100.4.0", "magento/module-customer-downloadable-graph-ql": "100.4.0", - "magento/module-customer-graph-ql": "100.4.0", - "magento/module-customer-import-export": "100.4.0", - "magento/module-deploy": "100.4.0", - "magento/module-developer": "100.4.0", + "magento/module-customer-graph-ql": "100.4.1", + "magento/module-customer-import-export": "100.4.1", + "magento/module-deploy": "100.4.1", + "magento/module-developer": "100.4.1", "magento/module-dhl": "100.4.0", - "magento/module-directory": "100.4.0", + "magento/module-directory": "100.4.1", "magento/module-directory-graph-ql": "100.4.0", - "magento/module-downloadable": "100.4.0", - "magento/module-downloadable-graph-ql": "100.4.0", + "magento/module-downloadable": "100.4.1", + "magento/module-downloadable-graph-ql": "100.4.1", "magento/module-downloadable-import-export": "100.4.0", - "magento/module-eav": "102.1.0", + "magento/module-eav": "102.1.1", "magento/module-eav-graph-ql": "100.4.0", - "magento/module-elasticsearch": "101.0.0", - "magento/module-elasticsearch-6": "100.4.0", - "magento/module-elasticsearch-7": "100.4.0", - "magento/module-email": "101.1.0", + "magento/module-elasticsearch": "101.0.1", + "magento/module-elasticsearch-6": "100.4.1", + "magento/module-elasticsearch-7": "100.4.1", + "magento/module-email": "101.1.1", "magento/module-encryption-key": "100.4.0", - "magento/module-fedex": "100.4.0", + "magento/module-fedex": "100.4.1", "magento/module-gift-message": "100.4.0", + "magento/module-gift-message-graph-ql": "100.4.0", "magento/module-google-adwords": "100.4.0", "magento/module-google-analytics": "100.4.0", - "magento/module-google-optimizer": "100.4.0", - "magento/module-graph-ql": "100.4.0", + "magento/module-google-optimizer": "100.4.1", + "magento/module-graph-ql": "100.4.1", "magento/module-graph-ql-cache": "100.4.0", "magento/module-grouped-catalog-inventory": "100.4.0", "magento/module-grouped-import-export": "100.4.0", - "magento/module-grouped-product": "100.4.0", - "magento/module-grouped-product-graph-ql": "100.4.0", - "magento/module-import-export": "101.0.0", - "magento/module-indexer": "100.4.0", + "magento/module-grouped-product": "100.4.1", + "magento/module-grouped-product-graph-ql": "100.4.1", + "magento/module-import-export": "101.0.1", + "magento/module-indexer": "100.4.1", "magento/module-instant-purchase": "100.4.0", - "magento/module-integration": "100.4.0", - "magento/module-layered-navigation": "100.4.0", - "magento/module-login-as-customer": "100.4.0", - "magento/module-login-as-customer-admin-ui": "100.4.0", - "magento/module-login-as-customer-api": "100.4.0", - "magento/module-login-as-customer-frontend-ui": "100.4.0", + "magento/module-integration": "100.4.1", + "magento/module-layered-navigation": "100.4.1", + "magento/module-login-as-customer": "100.4.1", + "magento/module-login-as-customer-admin-ui": "100.4.1", + "magento/module-login-as-customer-api": "100.4.1", + "magento/module-login-as-customer-assistance": "100.4.0", + "magento/module-login-as-customer-frontend-ui": "100.4.1", "magento/module-login-as-customer-log": "100.4.0", - "magento/module-login-as-customer-page-cache": "100.4.0", + "magento/module-login-as-customer-page-cache": "100.4.1", "magento/module-login-as-customer-quote": "100.4.0", - "magento/module-login-as-customer-sales": "100.4.0", + "magento/module-login-as-customer-sales": "100.4.1", "magento/module-marketplace": "100.4.0", - "magento/module-media-content": "100.4.0", - "magento/module-media-content-api": "100.4.0", - "magento/module-media-content-catalog": "100.4.0", - "magento/module-media-content-cms": "100.4.0", - "magento/module-media-gallery": "100.4.0", - "magento/module-media-gallery-api": "101.0.0", + "magento/module-media-content": "100.4.1", + "magento/module-media-content-api": "100.4.1", + "magento/module-media-content-catalog": "100.4.1", + "magento/module-media-content-cms": "100.4.1", + "magento/module-media-content-synchronization": "100.4.0", + "magento/module-media-content-synchronization-api": "100.4.0", + "magento/module-media-content-synchronization-catalog": "100.4.0", + "magento/module-media-content-synchronization-cms": "100.4.0", + "magento/module-media-gallery": "100.4.1", + "magento/module-media-gallery-api": "101.0.1", "magento/module-media-gallery-catalog": "100.4.0", + "magento/module-media-gallery-catalog-integration": "100.4.0", + "magento/module-media-gallery-catalog-ui": "100.4.0", + "magento/module-media-gallery-cms-ui": "100.4.0", + "magento/module-media-gallery-integration": "100.4.0", + "magento/module-media-gallery-metadata": "100.4.0", + "magento/module-media-gallery-metadata-api": "100.4.0", + "magento/module-media-gallery-synchronization": "100.4.0", + "magento/module-media-gallery-synchronization-api": "100.4.0", + "magento/module-media-gallery-synchronization-metadata": "100.4.0", + "magento/module-media-gallery-ui": "100.4.0", + "magento/module-media-gallery-ui-api": "100.4.0", "magento/module-media-storage": "100.4.0", - "magento/module-message-queue": "100.4.0", + "magento/module-message-queue": "100.4.1", "magento/module-msrp": "100.4.0", "magento/module-msrp-configurable-product": "100.4.0", "magento/module-msrp-grouped-product": "100.4.0", - "magento/module-multishipping": "100.4.0", + "magento/module-multishipping": "100.4.1", "magento/module-mysql-mq": "100.4.0", "magento/module-new-relic-reporting": "100.4.0", - "magento/module-newsletter": "100.4.0", + "magento/module-newsletter": "100.4.1", + "magento/module-newsletter-graph-ql": "100.4.0", "magento/module-offline-payments": "100.4.0", "magento/module-offline-shipping": "100.4.0", - "magento/module-page-cache": "100.4.0", - "magento/module-payment": "100.4.0", - "magento/module-paypal": "101.0.0", + "magento/module-page-cache": "100.4.1", + "magento/module-payment": "100.4.1", + "magento/module-paypal": "101.0.1", "magento/module-paypal-captcha": "100.4.0", - "magento/module-paypal-graph-ql": "100.4.0", - "magento/module-persistent": "100.4.0", - "magento/module-product-alert": "100.4.0", - "magento/module-product-video": "100.4.0", - "magento/module-quote": "101.2.0", - "magento/module-quote-analytics": "100.4.0", - "magento/module-quote-graph-ql": "100.4.0", + "magento/module-paypal-graph-ql": "100.4.1", + "magento/module-persistent": "100.4.1", + "magento/module-product-alert": "100.4.1", + "magento/module-product-video": "100.4.1", + "magento/module-quote": "101.2.1", + "magento/module-quote-analytics": "100.4.1", + "magento/module-quote-bundle-options": "100.4.0", + "magento/module-quote-configurable-options": "100.4.0", + "magento/module-quote-downloadable-links": "100.4.0", + "magento/module-quote-graph-ql": "100.4.1", "magento/module-related-product-graph-ql": "100.4.0", "magento/module-release-notification": "100.4.0", - "magento/module-reports": "100.4.0", + "magento/module-reports": "100.4.1", "magento/module-require-js": "100.4.0", - "magento/module-review": "100.4.0", + "magento/module-review": "100.4.1", "magento/module-review-analytics": "100.4.0", + "magento/module-review-graph-ql": "100.4.0", "magento/module-robots": "101.1.0", "magento/module-rss": "100.4.0", "magento/module-rule": "100.4.0", - "magento/module-sales": "103.0.0", + "magento/module-sales": "103.0.1", "magento/module-sales-analytics": "100.4.0", - "magento/module-sales-graph-ql": "100.4.0", + "magento/module-sales-graph-ql": "100.4.1", "magento/module-sales-inventory": "100.4.0", - "magento/module-sales-rule": "101.2.0", - "magento/module-sales-sequence": "100.4.0", - "magento/module-sample-data": "100.4.0", - "magento/module-search": "101.1.0", - "magento/module-security": "100.4.0", + "magento/module-sales-rule": "101.2.1", + "magento/module-sales-sequence": "100.4.1", + "magento/module-sample-data": "100.4.1", + "magento/module-search": "101.1.1", + "magento/module-security": "100.4.1", "magento/module-send-friend": "100.4.0", "magento/module-send-friend-graph-ql": "100.4.0", - "magento/module-shipping": "100.4.0", - "magento/module-sitemap": "100.4.0", - "magento/module-store": "101.1.0", - "magento/module-store-graph-ql": "100.4.0", + "magento/module-shipping": "100.4.1", + "magento/module-sitemap": "100.4.1", + "magento/module-store": "101.1.1", + "magento/module-store-graph-ql": "100.4.1", "magento/module-swagger": "100.4.0", "magento/module-swagger-webapi": "100.4.0", "magento/module-swagger-webapi-async": "100.4.0", - "magento/module-swatches": "100.4.0", - "magento/module-swatches-graph-ql": "100.4.0", + "magento/module-swatches": "100.4.1", + "magento/module-swatches-graph-ql": "100.4.1", "magento/module-swatches-layered-navigation": "100.4.0", - "magento/module-tax": "100.4.0", + "magento/module-tax": "100.4.1", "magento/module-tax-graph-ql": "100.4.0", - "magento/module-tax-import-export": "100.4.0", - "magento/module-theme": "101.1.0", + "magento/module-tax-import-export": "100.4.1", + "magento/module-theme": "101.1.1", "magento/module-theme-graph-ql": "100.4.0", - "magento/module-tinymce-3": "100.4.0", - "magento/module-translation": "100.4.0", - "magento/module-ui": "101.2.0", - "magento/module-ups": "100.4.0", - "magento/module-url-rewrite": "102.0.0", + "magento/module-tinymce-3": "100.4.1", + "magento/module-translation": "100.4.1", + "magento/module-ui": "101.2.1", + "magento/module-ups": "100.4.1", + "magento/module-url-rewrite": "102.0.1", "magento/module-url-rewrite-graph-ql": "100.4.0", - "magento/module-user": "101.2.0", + "magento/module-user": "101.2.1", "magento/module-usps": "100.4.0", "magento/module-variable": "100.4.0", - "magento/module-vault": "101.2.0", + "magento/module-vault": "101.2.1", "magento/module-vault-graph-ql": "100.4.0", "magento/module-version": "100.4.0", "magento/module-webapi": "100.4.0", "magento/module-webapi-async": "100.4.0", "magento/module-webapi-security": "100.4.0", - "magento/module-weee": "100.4.0", + "magento/module-weee": "100.4.1", "magento/module-weee-graph-ql": "100.4.0", - "magento/module-widget": "101.2.0", - "magento/module-wishlist": "101.2.0", + "magento/module-widget": "101.2.1", + "magento/module-wishlist": "101.2.1", "magento/module-wishlist-analytics": "100.4.0", - "magento/module-wishlist-graph-ql": "100.4.0", - "magento/security-package": "1.0.0", - "magento/theme-adminhtml-backend": "100.4.0", - "magento/theme-frontend-blank": "100.4.0", - "magento/theme-frontend-luma": "100.4.0", + "magento/module-wishlist-graph-ql": "100.4.1", + "magento/security-package": "1.1.0", + "magento/theme-adminhtml-backend": "100.4.1", + "magento/theme-frontend-blank": "100.4.1", + "magento/theme-frontend-luma": "100.4.1", "magento/zendframework1": "~1.14.2", "monolog/monolog": "^1.17", "paragonie/sodium_compat": "^1.6", - "paypal/module-braintree": "4.1.0", + "paypal/module-braintree": "4.2.0", "pelago/emogrifier": "^3.1.0", "php": "~7.3.0||~7.4.0", "php-amqplib/php-amqplib": "~2.10.0", @@ -15242,10 +15800,10 @@ "tedivm/jshrink": "~1.3.0", "temando/module-shipping": "2.0.0", "tubalmartin/cssmin": "4.1.1", - "vertex/product-magento-module": "4.0.0", + "vertex/product-magento-module": "4.1.0", "webonyx/graphql-php": "^0.13.8", "wikimedia/less.php": "~1.8.0", - "yotpo/magento2-module-yotpo-reviews-bundle": "3.1.1" + "yotpo/magento2-module-yotpo-reviews-bundle": "3.1.2" }, "type": "metapackage", "license": [ @@ -15256,43 +15814,44 @@ }, { "name": "magento/security-package", - "version": "1.0.0", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/security-package/magento-security-package-1.0.0.0.zip", - "shasum": "35744adb8548c112800798579da82bfd35d8c39f" - }, - "require": { - "magento/module-re-captcha-admin-ui": "1.0.0", - "magento/module-re-captcha-checkout": "1.0.0", - "magento/module-re-captcha-contact": "1.0.0", - "magento/module-re-captcha-customer": "1.0.0", - "magento/module-re-captcha-frontend-ui": "1.0.0", - "magento/module-re-captcha-migration": "1.0.0", - "magento/module-re-captcha-newsletter": "1.0.0", - "magento/module-re-captcha-paypal": "1.0.0", - "magento/module-re-captcha-review": "1.0.0", - "magento/module-re-captcha-send-friend": "1.0.0", - "magento/module-re-captcha-ui": "1.0.0", - "magento/module-re-captcha-user": "1.0.0", - "magento/module-re-captcha-validation": "1.0.0", - "magento/module-re-captcha-validation-api": "1.0.0", - "magento/module-re-captcha-version-2-checkbox": "1.0.0", - "magento/module-re-captcha-version-2-invisible": "1.0.0", - "magento/module-re-captcha-version-3-invisible": "1.0.0", - "magento/module-securitytxt": "1.0.0", - "magento/module-two-factor-auth": "1.0.0" + "url": "https://repo.magento.com/archives/magento/security-package/magento-security-package-1.1.0.0.zip", + "shasum": "a3719d48b34ac464ee8692c7c5a2f155800430b3" + }, + "require": { + "google/recaptcha": "^1.2", + "magento/module-re-captcha-admin-ui": "1.1.0", + "magento/module-re-captcha-checkout": "1.1.0", + "magento/module-re-captcha-contact": "1.1.0", + "magento/module-re-captcha-customer": "1.1.0", + "magento/module-re-captcha-frontend-ui": "1.1.0", + "magento/module-re-captcha-migration": "1.1.0", + "magento/module-re-captcha-newsletter": "1.1.0", + "magento/module-re-captcha-paypal": "1.1.0", + "magento/module-re-captcha-review": "1.1.0", + "magento/module-re-captcha-send-friend": "1.1.0", + "magento/module-re-captcha-ui": "1.1.0", + "magento/module-re-captcha-user": "1.1.0", + "magento/module-re-captcha-validation": "1.1.0", + "magento/module-re-captcha-validation-api": "1.1.0", + "magento/module-re-captcha-version-2-checkbox": "2.0.0", + "magento/module-re-captcha-version-2-invisible": "2.0.0", + "magento/module-re-captcha-version-3-invisible": "2.0.0", + "magento/module-securitytxt": "1.1.0", + "magento/module-two-factor-auth": "1.1.0" }, "type": "metapackage", "description": "Magento Security Package" }, { "name": "magento/theme-adminhtml-backend", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/theme-adminhtml-backend/magento-theme-adminhtml-backend-100.4.0.0.zip", - "shasum": "b575cba61fa73982f3e5469ff65bd57fe78cc321" + "url": "https://repo.magento.com/archives/magento/theme-adminhtml-backend/magento-theme-adminhtml-backend-100.4.1.0.zip", + "shasum": "73398c0478f0e4dd5c2c25a40577cc554552a917" }, "require": { "magento/framework": "103.0.*", @@ -15312,11 +15871,11 @@ }, { "name": "magento/theme-frontend-blank", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/theme-frontend-blank/magento-theme-frontend-blank-100.4.0.0.zip", - "shasum": "d38bc758f681a7aee6706306bb1aa00f06360bfe" + "url": "https://repo.magento.com/archives/magento/theme-frontend-blank/magento-theme-frontend-blank-100.4.1.0.zip", + "shasum": "8f6187a999cabee73e5968b3a98519fbdf080531" }, "require": { "magento/framework": "103.0.*", @@ -15336,11 +15895,11 @@ }, { "name": "magento/theme-frontend-luma", - "version": "100.4.0", + "version": "100.4.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/magento/theme-frontend-luma/magento-theme-frontend-luma-100.4.0.0.zip", - "shasum": "9d3a2014796dd36e2ff0224ee367fb4e05a2cca5" + "url": "https://repo.magento.com/archives/magento/theme-frontend-luma/magento-theme-frontend-luma-100.4.1.0.zip", + "shasum": "38cf4b18eed6542e4f32cd894277389f2a57e856" }, "require": { "magento/framework": "103.0.*", @@ -15730,15 +16289,15 @@ }, { "name": "paypal/module-braintree", - "version": "4.1.0", + "version": "4.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/paypal/module-braintree/paypal-module-braintree-4.1.0.0.zip", - "shasum": "abb52b4930cbc91c5116bbf19b8044bb356a463c" + "url": "https://repo.magento.com/archives/paypal/module-braintree/paypal-module-braintree-4.2.0.0.zip", + "shasum": "7a13c18488bab661e6c06c862e9df371eee6f8a4" }, "require": { - "paypal/module-braintree-core": "4.1.0", - "paypal/module-braintree-graph-ql": "4.1.0" + "paypal/module-braintree-core": "4.2.0", + "paypal/module-braintree-graph-ql": "4.1.1" }, "type": "metapackage", "license": [ @@ -15748,14 +16307,14 @@ }, { "name": "paypal/module-braintree-core", - "version": "4.1.0", + "version": "4.2.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/paypal/module-braintree-core/paypal-module-braintree-core-4.1.0.0.zip", - "shasum": "28be379fc99016538d24d028d766b289cc522c41" + "url": "https://repo.magento.com/archives/paypal/module-braintree-core/paypal-module-braintree-core-4.2.0.0.zip", + "shasum": "dc646d71fb9a76c9ef2b37d8b0bfdd539ac19111" }, "require": { - "braintree/braintree_php": "4.5.0", + "braintree/braintree_php": "5.2.0", "ext-json": "*", "ext-simplexml": "*", "league/iso3166": "^2.1", @@ -15793,11 +16352,11 @@ }, { "name": "paypal/module-braintree-graph-ql", - "version": "4.1.0", + "version": "4.1.1", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/paypal/module-braintree-graph-ql/paypal-module-braintree-graph-ql-4.1.0.0.zip", - "shasum": "c9f7e844d807f10e1bfb964e234d747d755ad3fb" + "url": "https://repo.magento.com/archives/paypal/module-braintree-graph-ql/paypal-module-braintree-graph-ql-4.1.1.0.zip", + "shasum": "c9ec37feb321b5a2a4fc4c355e20c2206084b33c" }, "require": { "magento/framework": "^102||^103", @@ -16023,16 +16582,16 @@ }, { "name": "phpseclib/phpseclib", - "version": "2.0.28", + "version": "2.0.29", "source": { "type": "git", "url": "https://github.com/phpseclib/phpseclib.git", - "reference": "d1ca58cf33cb21046d702ae3a7b14fdacd9f3260" + "reference": "497856a8d997f640b4a516062f84228a772a48a8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/d1ca58cf33cb21046d702ae3a7b14fdacd9f3260", - "reference": "d1ca58cf33cb21046d702ae3a7b14fdacd9f3260", + "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/497856a8d997f640b4a516062f84228a772a48a8", + "reference": "497856a8d997f640b4a516062f84228a772a48a8", "shasum": "" }, "require": { @@ -16041,7 +16600,6 @@ "require-dev": { "phing/phing": "~2.7", "phpunit/phpunit": "^4.8.35|^5.7|^6.0", - "sami/sami": "~2.0", "squizlabs/php_codesniffer": "~2.0" }, "suggest": { @@ -16125,7 +16683,7 @@ "type": "tidelift" } ], - "time": "2020-07-08T09:08:33+00:00" + "time": "2020-09-08T04:24:43+00:00" }, { "name": "psr/container", @@ -16443,16 +17001,16 @@ }, { "name": "seld/jsonlint", - "version": "1.8.0", + "version": "1.8.2", "source": { "type": "git", "url": "https://github.com/Seldaek/jsonlint.git", - "reference": "ff2aa5420bfbc296cf6a0bc785fa5b35736de7c1" + "reference": "590cfec960b77fd55e39b7d9246659e95dd6d337" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/ff2aa5420bfbc296cf6a0bc785fa5b35736de7c1", - "reference": "ff2aa5420bfbc296cf6a0bc785fa5b35736de7c1", + "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/590cfec960b77fd55e39b7d9246659e95dd6d337", + "reference": "590cfec960b77fd55e39b7d9246659e95dd6d337", "shasum": "" }, "require": { @@ -16498,7 +17056,7 @@ "type": "tidelift" } ], - "time": "2020-04-30T19:05:18+00:00" + "time": "2020-08-25T06:56:57+00:00" }, { "name": "seld/phar-utils", @@ -16617,16 +17175,16 @@ }, { "name": "symfony/console", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "55d07021da933dd0d633ffdab6f45d5b230c7e02" + "reference": "90933b39c7b312fc3ceaa1ddeac7eb48cb953124" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/55d07021da933dd0d633ffdab6f45d5b230c7e02", - "reference": "55d07021da933dd0d633ffdab6f45d5b230c7e02", + "url": "https://api.github.com/repos/symfony/console/zipball/90933b39c7b312fc3ceaa1ddeac7eb48cb953124", + "reference": "90933b39c7b312fc3ceaa1ddeac7eb48cb953124", "shasum": "" }, "require": { @@ -16704,11 +17262,11 @@ "type": "tidelift" } ], - "time": "2020-07-06T13:18:39+00:00" + "time": "2020-09-15T07:58:55+00:00" }, { "name": "symfony/css-selector", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", @@ -16775,16 +17333,16 @@ }, { "name": "symfony/deprecation-contracts", - "version": "v2.1.3", + "version": "v2.2.0", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "5e20b83385a77593259c9f8beb2c43cd03b2ac14" + "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5e20b83385a77593259c9f8beb2c43cd03b2ac14", - "reference": "5e20b83385a77593259c9f8beb2c43cd03b2ac14", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665", + "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665", "shasum": "" }, "require": { @@ -16793,7 +17351,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.1-dev" + "dev-master": "2.2-dev" }, "thanks": { "name": "symfony/contracts", @@ -16835,20 +17393,20 @@ "type": "tidelift" } ], - "time": "2020-06-06T08:49:21+00:00" + "time": "2020-09-07T11:33:47+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "6140fc7047dafc5abbe84ba16a34a86c0b0229b8" + "reference": "e17bb5e0663dc725f7cdcafc932132735b4725cd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/6140fc7047dafc5abbe84ba16a34a86c0b0229b8", - "reference": "6140fc7047dafc5abbe84ba16a34a86c0b0229b8", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/e17bb5e0663dc725f7cdcafc932132735b4725cd", + "reference": "e17bb5e0663dc725f7cdcafc932132735b4725cd", "shasum": "" }, "require": { @@ -16866,6 +17424,7 @@ "psr/log": "~1.0", "symfony/config": "^3.4|^4.0|^5.0", "symfony/dependency-injection": "^3.4|^4.0|^5.0", + "symfony/error-handler": "~3.4|~4.4", "symfony/expression-language": "^3.4|^4.0|^5.0", "symfony/http-foundation": "^3.4|^4.0|^5.0", "symfony/service-contracts": "^1.1|^2", @@ -16919,7 +17478,7 @@ "type": "tidelift" } ], - "time": "2020-06-18T17:59:13+00:00" + "time": "2020-09-18T14:07:46+00:00" }, { "name": "symfony/event-dispatcher-contracts", @@ -16999,16 +17558,16 @@ }, { "name": "symfony/filesystem", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "6e4320f06d5f2cce0d96530162491f4465179157" + "reference": "1a8697545a8d87b9f2f6b1d32414199cc5e20aae" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/6e4320f06d5f2cce0d96530162491f4465179157", - "reference": "6e4320f06d5f2cce0d96530162491f4465179157", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/1a8697545a8d87b9f2f6b1d32414199cc5e20aae", + "reference": "1a8697545a8d87b9f2f6b1d32414199cc5e20aae", "shasum": "" }, "require": { @@ -17059,20 +17618,20 @@ "type": "tidelift" } ], - "time": "2020-05-30T20:35:19+00:00" + "time": "2020-09-27T14:02:37+00:00" }, { "name": "symfony/finder", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "4298870062bfc667cb78d2b379be4bf5dec5f187" + "reference": "2c3ba7ad6884e6c4451ce2340e2dc23f6fa3e0d8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/4298870062bfc667cb78d2b379be4bf5dec5f187", - "reference": "4298870062bfc667cb78d2b379be4bf5dec5f187", + "url": "https://api.github.com/repos/symfony/finder/zipball/2c3ba7ad6884e6c4451ce2340e2dc23f6fa3e0d8", + "reference": "2c3ba7ad6884e6c4451ce2340e2dc23f6fa3e0d8", "shasum": "" }, "require": { @@ -17122,20 +17681,20 @@ "type": "tidelift" } ], - "time": "2020-05-20T17:43:50+00:00" + "time": "2020-09-02T16:23:27+00:00" }, { "name": "symfony/options-resolver", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", - "reference": "9ff59517938f88d90b6e65311fef08faa640f681" + "reference": "4c7e155bf7d93ea4ba3824d5a14476694a5278dd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/options-resolver/zipball/9ff59517938f88d90b6e65311fef08faa640f681", - "reference": "9ff59517938f88d90b6e65311fef08faa640f681", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/4c7e155bf7d93ea4ba3824d5a14476694a5278dd", + "reference": "4c7e155bf7d93ea4ba3824d5a14476694a5278dd", "shasum": "" }, "require": { @@ -17192,11 +17751,11 @@ "type": "tidelift" } ], - "time": "2020-07-12T12:58:00+00:00" + "time": "2020-09-27T03:44:28+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.18.0", + "version": "v1.18.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", @@ -17272,7 +17831,7 @@ }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.18.0", + "version": "v1.18.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git", @@ -17350,16 +17909,16 @@ }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.18.0", + "version": "v1.18.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "bc6549d068d0160e0f10f7a5a23c7d1406b95ebe" + "reference": "5dcab1bc7146cf8c1beaa4502a3d9be344334251" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/bc6549d068d0160e0f10f7a5a23c7d1406b95ebe", - "reference": "bc6549d068d0160e0f10f7a5a23c7d1406b95ebe", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/5dcab1bc7146cf8c1beaa4502a3d9be344334251", + "reference": "5dcab1bc7146cf8c1beaa4502a3d9be344334251", "shasum": "" }, "require": { @@ -17431,11 +17990,11 @@ "type": "tidelift" } ], - "time": "2020-07-14T12:35:20+00:00" + "time": "2020-08-04T06:02:08+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.18.0", + "version": "v1.18.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", @@ -17516,7 +18075,7 @@ }, { "name": "symfony/polyfill-mbstring", - "version": "v1.18.0", + "version": "v1.18.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", @@ -17593,7 +18152,7 @@ }, { "name": "symfony/polyfill-php70", - "version": "v1.18.0", + "version": "v1.18.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php70.git", @@ -17670,7 +18229,7 @@ }, { "name": "symfony/polyfill-php72", - "version": "v1.18.0", + "version": "v1.18.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php72.git", @@ -17743,7 +18302,7 @@ }, { "name": "symfony/polyfill-php73", - "version": "v1.18.0", + "version": "v1.18.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php73.git", @@ -17819,7 +18378,7 @@ }, { "name": "symfony/polyfill-php80", - "version": "v1.18.0", + "version": "v1.18.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", @@ -17899,16 +18458,16 @@ }, { "name": "symfony/process", - "version": "v4.4.11", + "version": "v4.4.15", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "65e70bab62f3da7089a8d4591fb23fbacacb3479" + "reference": "9b887acc522935f77555ae8813495958c7771ba7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/65e70bab62f3da7089a8d4591fb23fbacacb3479", - "reference": "65e70bab62f3da7089a8d4591fb23fbacacb3479", + "url": "https://api.github.com/repos/symfony/process/zipball/9b887acc522935f77555ae8813495958c7771ba7", + "reference": "9b887acc522935f77555ae8813495958c7771ba7", "shasum": "" }, "require": { @@ -17958,20 +18517,20 @@ "type": "tidelift" } ], - "time": "2020-07-23T08:31:43+00:00" + "time": "2020-09-02T16:08:58+00:00" }, { "name": "symfony/property-access", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/property-access.git", - "reference": "eb617a57fc38f43bf4208dcbdb2dab3c14d9cbd9" + "reference": "4c43f7ff784e1e3ee1c96e15f76b342af6617b39" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/property-access/zipball/eb617a57fc38f43bf4208dcbdb2dab3c14d9cbd9", - "reference": "eb617a57fc38f43bf4208dcbdb2dab3c14d9cbd9", + "url": "https://api.github.com/repos/symfony/property-access/zipball/4c43f7ff784e1e3ee1c96e15f76b342af6617b39", + "reference": "4c43f7ff784e1e3ee1c96e15f76b342af6617b39", "shasum": "" }, "require": { @@ -18040,20 +18599,20 @@ "type": "tidelift" } ], - "time": "2020-07-03T07:49:29+00:00" + "time": "2020-09-02T16:23:27+00:00" }, { "name": "symfony/property-info", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/property-info.git", - "reference": "0c4813930953f6db6c62ebec8ee695a897b89020" + "reference": "22518930091e0bdb249694efc509e3697f7e325e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/property-info/zipball/0c4813930953f6db6c62ebec8ee695a897b89020", - "reference": "0c4813930953f6db6c62ebec8ee695a897b89020", + "url": "https://api.github.com/repos/symfony/property-info/zipball/22518930091e0bdb249694efc509e3697f7e325e", + "reference": "22518930091e0bdb249694efc509e3697f7e325e", "shasum": "" }, "require": { @@ -18131,20 +18690,20 @@ "type": "tidelift" } ], - "time": "2020-06-18T21:19:28+00:00" + "time": "2020-09-07T05:10:28+00:00" }, { "name": "symfony/service-contracts", - "version": "v2.1.3", + "version": "v2.2.0", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "58c7475e5457c5492c26cc740cc0ad7464be9442" + "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/58c7475e5457c5492c26cc740cc0ad7464be9442", - "reference": "58c7475e5457c5492c26cc740cc0ad7464be9442", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1", + "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1", "shasum": "" }, "require": { @@ -18157,7 +18716,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.1-dev" + "dev-master": "2.2-dev" }, "thanks": { "name": "symfony/contracts", @@ -18207,20 +18766,20 @@ "type": "tidelift" } ], - "time": "2020-07-06T13:23:11+00:00" + "time": "2020-09-07T11:33:47+00:00" }, { "name": "symfony/string", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "f629ba9b611c76224feb21fe2bcbf0b6f992300b" + "reference": "4a9afe9d07bac506f75bcee8ed3ce76da5a9343e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/f629ba9b611c76224feb21fe2bcbf0b6f992300b", - "reference": "f629ba9b611c76224feb21fe2bcbf0b6f992300b", + "url": "https://api.github.com/repos/symfony/string/zipball/4a9afe9d07bac506f75bcee8ed3ce76da5a9343e", + "reference": "4a9afe9d07bac506f75bcee8ed3ce76da5a9343e", "shasum": "" }, "require": { @@ -18292,7 +18851,7 @@ "type": "tidelift" } ], - "time": "2020-07-08T08:27:49+00:00" + "time": "2020-09-15T12:23:47+00:00" }, { "name": "tedivm/jshrink", @@ -18389,16 +18948,16 @@ }, { "name": "thecodingmachine/safe", - "version": "v1.1.3", + "version": "v1.3.1", "source": { "type": "git", "url": "https://github.com/thecodingmachine/safe.git", - "reference": "9f277171e296a3c8629c04ac93ec95ff0f208ccb" + "reference": "a6b795aeb367c90cc6ed88dadb4cdcac436377c2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thecodingmachine/safe/zipball/9f277171e296a3c8629c04ac93ec95ff0f208ccb", - "reference": "9f277171e296a3c8629c04ac93ec95ff0f208ccb", + "url": "https://api.github.com/repos/thecodingmachine/safe/zipball/a6b795aeb367c90cc6ed88dadb4cdcac436377c2", + "reference": "a6b795aeb367c90cc6ed88dadb4cdcac436377c2", "shasum": "" }, "require": { @@ -18419,15 +18978,21 @@ "psr-4": { "Safe\\": [ "lib/", + "deprecated/", "generated/" ] }, "files": [ + "deprecated/apc.php", + "deprecated/libevent.php", + "deprecated/mssql.php", + "deprecated/stats.php", + "lib/special_cases.php", "generated/apache.php", - "generated/apc.php", "generated/apcu.php", "generated/array.php", "generated/bzip2.php", + "generated/calendar.php", "generated/classobj.php", "generated/com.php", "generated/cubrid.php", @@ -18456,14 +19021,12 @@ "generated/inotify.php", "generated/json.php", "generated/ldap.php", - "generated/libevent.php", "generated/libxml.php", "generated/lzf.php", "generated/mailparse.php", "generated/mbstring.php", "generated/misc.php", "generated/msql.php", - "generated/mssql.php", "generated/mysql.php", "generated/mysqli.php", "generated/mysqlndMs.php", @@ -18495,7 +19058,6 @@ "generated/sqlsrv.php", "generated/ssdeep.php", "generated/ssh2.php", - "generated/stats.php", "generated/stream.php", "generated/strings.php", "generated/swoole.php", @@ -18509,8 +19071,7 @@ "generated/yaml.php", "generated/yaz.php", "generated/zip.php", - "generated/zlib.php", - "lib/special_cases.php" + "generated/zlib.php" ] }, "notification-url": "https://packagist.org/downloads/", @@ -18518,7 +19079,7 @@ "MIT" ], "description": "PHP core functions that throw exceptions instead of returning FALSE on error", - "time": "2020-07-10T09:34:29+00:00" + "time": "2020-10-08T08:40:29+00:00" }, { "name": "true/punycode", @@ -18621,11 +19182,11 @@ }, { "name": "vertex/module-address-validation", - "version": "2.0.0", + "version": "2.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/vertex/module-address-validation/vertex-module-address-validation-2.0.0.0.zip", - "shasum": "24bbeaba65d0f940ad649e3b3871eb89673420b5" + "url": "https://repo.magento.com/archives/vertex/module-address-validation/vertex-module-address-validation-2.1.0.0.zip", + "shasum": "9023166c5a152f3884322cde5af1b4e9f3854e71" }, "require": { "ext-json": "*", @@ -18634,18 +19195,18 @@ "magento/framework": "^100|^101|^102|^103", "magento/module-checkout": "^100", "magento/module-config": "^101", - "magento/module-quote": "^100|^101|^102", + "magento/module-quote": "^100|^101", "magento/module-store": "^100|^101", "magento/module-tax": "^100", "php": "^7.0", + "vertex/module-address-validation-api": "^1", "vertex/module-tax": "^4" }, "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2", "ext-dom": "*", - "ext-simplexml": "*", - "magento/marketplace-eqp": "^1.0", - "magento/module-offline-shipping": "^100.2", - "magento/module-usps": "^100.2" + "magento/magento-coding-standard": "^5.0", + "roave/security-advisories": "dev-master" }, "type": "magento2-module", "autoload": { @@ -18661,13 +19222,49 @@ ], "description": "Vertex Address Validation module for Magento 2" }, + { + "name": "vertex/module-address-validation-api", + "version": "1.0.0", + "dist": { + "type": "zip", + "url": "https://repo.magento.com/archives/vertex/module-address-validation-api/vertex-module-address-validation-api-1.0.0.0.zip", + "shasum": "85bcd6896132e132e0098db915eb9d506569646e" + }, + "require": { + "magento/framework": "^100|^101|^102|^103", + "magento/module-store": "^100|^101", + "php": "^7.1", + "vertex/sdk": "^1" + }, + "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2", + "magento/magento-coding-standard": "^5.0", + "roave/security-advisories": "dev-master" + }, + "suggest": { + "magento/module-webapi": "^100" + }, + "type": "magento2-module", + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Vertex\\AddressValidationApi\\": "" + } + }, + "license": [ + "proprietary" + ], + "description": "Vertex Address Cleansing module for Magento 2 API" + }, { "name": "vertex/module-tax", - "version": "4.0.0", + "version": "4.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/vertex/module-tax/vertex-module-tax-4.0.0.0.zip", - "shasum": "da54bf6f1d37f9ab94573ca9094b5408e40b2c2e" + "url": "https://repo.magento.com/archives/vertex/module-tax/vertex-module-tax-4.1.0.0.zip", + "shasum": "bca2e2d6a19294edf066c032ce26edd8dcc2f692" }, "require": { "ext-intl": "*", @@ -18682,8 +19279,8 @@ "magento/module-cron": "^100", "magento/module-customer": "^100|^101|^102|^103", "magento/module-directory": "^100", - "magento/module-eav": "^100|^101|^102|^103", - "magento/module-quote": "^100|^101|^102 ", + "magento/module-eav": "^100|^101|^102", + "magento/module-quote": ">=101.1.0 <= 101.1.5 || ^101.2", "magento/module-sales": "^100|^101|^102|^103", "magento/module-shipping": "^100", "magento/module-store": "^100|^101", @@ -18699,6 +19296,7 @@ "vertex/tax-ee": "*" }, "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2", "ext-dom": "*", "ext-simplexml": "*", "magento/magento-coding-standard": "^5", @@ -18727,15 +19325,15 @@ }, { "name": "vertex/product-magento-module", - "version": "4.0.0", + "version": "4.1.0", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/vertex/product-magento-module/vertex-product-magento-module-4.0.0.0.zip", - "shasum": "6048ffc711bb6635fc0288345b87724225345481" + "url": "https://repo.magento.com/archives/vertex/product-magento-module/vertex-product-magento-module-4.1.0.0.zip", + "shasum": "ef350f455be0e3e6784e86987e89b78be984f056" }, "require": { - "vertex/module-address-validation": "2.0.0", - "vertex/module-tax": "4.0.0" + "vertex/module-address-validation": "2.1.0", + "vertex/module-tax": "4.1.0" }, "type": "metapackage", "license": [ @@ -18758,11 +19356,11 @@ }, { "name": "vertex/sdk", - "version": "1.2.4", + "version": "1.2.7", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/vertex/sdk/vertex-sdk-1.2.4.0.zip", - "shasum": "2b9fd3deb46f45930b90d4e020f3236d8256cd4a" + "url": "https://repo.magento.com/archives/vertex/sdk/vertex-sdk-1.2.7.0.zip", + "shasum": "821465662cc2d8ec186e2baf138a7c3075fcf3ee" }, "require": { "ext-mbstring": "*", @@ -18771,6 +19369,8 @@ "php": "^5.4|^7" }, "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2", + "magento/magento-coding-standard": "^5.0", "php": "^7.3", "phpmd/phpmd": "^2.6", "phpunit/phpunit": "^9", @@ -18788,32 +19388,87 @@ "description": "Tools for communicating with Vertex Cloud and Vertex O-Series" }, { - "name": "webonyx/graphql-php", - "version": "v0.13.9", + "name": "webimpress/safe-writer", + "version": "2.1.0", "source": { "type": "git", - "url": "https://github.com/webonyx/graphql-php.git", - "reference": "d9a94fddcad0a35d4bced212b8a44ad1bc59bdf3" + "url": "https://github.com/webimpress/safe-writer.git", + "reference": "5cfafdec5873c389036f14bf832a5efc9390dcdd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webonyx/graphql-php/zipball/d9a94fddcad0a35d4bced212b8a44ad1bc59bdf3", - "reference": "d9a94fddcad0a35d4bced212b8a44ad1bc59bdf3", + "url": "https://api.github.com/repos/webimpress/safe-writer/zipball/5cfafdec5873c389036f14bf832a5efc9390dcdd", + "reference": "5cfafdec5873c389036f14bf832a5efc9390dcdd", "shasum": "" }, "require": { - "ext-json": "*", - "ext-mbstring": "*", - "php": "^7.1||^8.0" + "php": "^7.2 || ^8.0" }, "require-dev": { - "doctrine/coding-standard": "^6.0", - "phpbench/phpbench": "^0.14.0", - "phpstan/phpstan": "^0.11.4", - "phpstan/phpstan-phpunit": "^0.11.0", - "phpstan/phpstan-strict-rules": "^0.11.0", - "phpunit/phpcov": "^5.0", - "phpunit/phpunit": "^7.2", + "phpunit/phpunit": "^8.5.8 || ^9.3.7", + "vimeo/psalm": "^3.14.2", + "webimpress/coding-standard": "^1.1.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1.x-dev", + "dev-develop": "2.2.x-dev", + "dev-release-1.0": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Webimpress\\SafeWriter\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-2-Clause" + ], + "description": "Tool to write files safely, to avoid race conditions", + "keywords": [ + "concurrent write", + "file writer", + "race condition", + "safe writer", + "webimpress" + ], + "funding": [ + { + "url": "https://github.com/michalbundyra", + "type": "github" + } + ], + "time": "2020-08-25T07:21:11+00:00" + }, + { + "name": "webonyx/graphql-php", + "version": "v0.13.9", + "source": { + "type": "git", + "url": "https://github.com/webonyx/graphql-php.git", + "reference": "d9a94fddcad0a35d4bced212b8a44ad1bc59bdf3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/webonyx/graphql-php/zipball/d9a94fddcad0a35d4bced212b8a44ad1bc59bdf3", + "reference": "d9a94fddcad0a35d4bced212b8a44ad1bc59bdf3", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-mbstring": "*", + "php": "^7.1||^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^6.0", + "phpbench/phpbench": "^0.14.0", + "phpstan/phpstan": "^0.11.4", + "phpstan/phpstan-phpunit": "^0.11.0", + "phpstan/phpstan-strict-rules": "^0.11.0", + "phpunit/phpcov": "^5.0", + "phpunit/phpunit": "^7.2", "psr/http-message": "^1.0", "react/promise": "2.*" }, @@ -18908,11 +19563,11 @@ }, { "name": "yotpo/magento2-module-yotpo-reviews", - "version": "3.1.1", + "version": "3.1.2", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/yotpo/magento2-module-yotpo-reviews/yotpo-magento2-module-yotpo-reviews-3.1.1.0.zip", - "shasum": "2a7c0636c17d5b698b89d49cadd429709a2b477b" + "url": "https://repo.magento.com/archives/yotpo/magento2-module-yotpo-reviews/yotpo-magento2-module-yotpo-reviews-3.1.2.0.zip", + "shasum": "686436cac2a13758388d720bc5c388517422e774" }, "require": { "magento/framework": "103.0.*", @@ -18949,14 +19604,14 @@ }, { "name": "yotpo/magento2-module-yotpo-reviews-bundle", - "version": "3.1.1", + "version": "3.1.2", "dist": { "type": "zip", - "url": "https://repo.magento.com/archives/yotpo/magento2-module-yotpo-reviews-bundle/yotpo-magento2-module-yotpo-reviews-bundle-3.1.1.0.zip", - "shasum": "72da94c9906f5a140aeead630c7cbd2cafecf2f2" + "url": "https://repo.magento.com/archives/yotpo/magento2-module-yotpo-reviews-bundle/yotpo-magento2-module-yotpo-reviews-bundle-3.1.2.0.zip", + "shasum": "fb070323fec2763df00062bab4a0b0b67eed60d1" }, "require": { - "yotpo/magento2-module-yotpo-reviews": "3.1.1" + "yotpo/magento2-module-yotpo-reviews": "3.1.2" }, "type": "metapackage", "license": [ @@ -18969,16 +19624,16 @@ "packages-dev": [ { "name": "allure-framework/allure-codeception", - "version": "1.4.3", + "version": "1.4.4", "source": { "type": "git", "url": "https://github.com/allure-framework/allure-codeception.git", - "reference": "9e0e25f8960fa5ac17c65c932ea8153ce6700713" + "reference": "a69800eeef83007ced9502a3349ff72f5fb6b4e2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/allure-framework/allure-codeception/zipball/9e0e25f8960fa5ac17c65c932ea8153ce6700713", - "reference": "9e0e25f8960fa5ac17c65c932ea8153ce6700713", + "url": "https://api.github.com/repos/allure-framework/allure-codeception/zipball/a69800eeef83007ced9502a3349ff72f5fb6b4e2", + "reference": "a69800eeef83007ced9502a3349ff72f5fb6b4e2", "shasum": "" }, "require": { @@ -19016,7 +19671,7 @@ "steps", "testing" ], - "time": "2020-03-13T11:07:13+00:00" + "time": "2020-09-09T10:51:33+00:00" }, { "name": "allure-framework/allure-php-api", @@ -19123,16 +19778,16 @@ }, { "name": "aws/aws-sdk-php", - "version": "3.147.6", + "version": "3.158.6", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "a487671fc722b839c647d7dc4907bfb485f956db" + "reference": "4e912c1ae4d4b3538ada36ac1478f980f9bdf329" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/a487671fc722b839c647d7dc4907bfb485f956db", - "reference": "a487671fc722b839c647d7dc4907bfb485f956db", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/4e912c1ae4d4b3538ada36ac1478f980f9bdf329", + "reference": "4e912c1ae4d4b3538ada36ac1478f980f9bdf329", "shasum": "" }, "require": { @@ -19204,7 +19859,7 @@ "s3", "sdk" ], - "time": "2020-07-27T18:13:59+00:00" + "time": "2020-10-09T18:11:48+00:00" }, { "name": "behat/gherkin", @@ -19360,16 +20015,16 @@ }, { "name": "codeception/codeception", - "version": "4.1.6", + "version": "4.1.8", "source": { "type": "git", "url": "https://github.com/Codeception/Codeception.git", - "reference": "5515b6a6c6f1e1c909aaff2e5f3a15c177dfd1a9" + "reference": "41036e8af66e727c4587012f0366b7f0576a99da" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/Codeception/zipball/5515b6a6c6f1e1c909aaff2e5f3a15c177dfd1a9", - "reference": "5515b6a6c6f1e1c909aaff2e5f3a15c177dfd1a9", + "url": "https://api.github.com/repos/Codeception/Codeception/zipball/41036e8af66e727c4587012f0366b7f0576a99da", + "reference": "41036e8af66e727c4587012f0366b7f0576a99da", "shasum": "" }, "require": { @@ -19447,24 +20102,25 @@ "type": "open_collective" } ], - "time": "2020-06-07T16:31:51+00:00" + "time": "2020-10-11T17:54:58+00:00" }, { "name": "codeception/lib-asserts", - "version": "1.12.0", + "version": "1.13.1", "source": { "type": "git", "url": "https://github.com/Codeception/lib-asserts.git", - "reference": "acd0dc8b394595a74b58dcc889f72569ff7d8e71" + "reference": "263ef0b7eff80643e82f4cf55351eca553a09a10" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/lib-asserts/zipball/acd0dc8b394595a74b58dcc889f72569ff7d8e71", - "reference": "acd0dc8b394595a74b58dcc889f72569ff7d8e71", + "url": "https://api.github.com/repos/Codeception/lib-asserts/zipball/263ef0b7eff80643e82f4cf55351eca553a09a10", + "reference": "263ef0b7eff80643e82f4cf55351eca553a09a10", "shasum": "" }, "require": { "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.0.3 | ^9.0", + "ext-dom": "*", "php": ">=5.6.0 <8.0" }, "type": "library", @@ -19485,32 +20141,36 @@ }, { "name": "Gintautas Miselis" + }, + { + "name": "Gustavo Nieves", + "homepage": "https://medium.com/@ganieves" } ], "description": "Assertion methods used by Codeception core and Asserts module", - "homepage": "http://codeception.com/", + "homepage": "https://codeception.com/", "keywords": [ "codeception" ], - "time": "2020-04-17T18:20:46+00:00" + "time": "2020-08-28T07:49:36+00:00" }, { "name": "codeception/module-asserts", - "version": "1.2.1", + "version": "1.3.0", "source": { "type": "git", "url": "https://github.com/Codeception/module-asserts.git", - "reference": "79f13d05b63f2fceba4d0e78044bab668c9b2a6b" + "reference": "32e5be519faaeb60ed3692383dcd1b3390ec2667" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/module-asserts/zipball/79f13d05b63f2fceba4d0e78044bab668c9b2a6b", - "reference": "79f13d05b63f2fceba4d0e78044bab668c9b2a6b", + "url": "https://api.github.com/repos/Codeception/module-asserts/zipball/32e5be519faaeb60ed3692383dcd1b3390ec2667", + "reference": "32e5be519faaeb60ed3692383dcd1b3390ec2667", "shasum": "" }, "require": { "codeception/codeception": "*@dev", - "codeception/lib-asserts": "^1.12.0", + "codeception/lib-asserts": "^1.13.1", "php": ">=5.6.0 <8.0" }, "conflict": { @@ -19535,16 +20195,20 @@ }, { "name": "Gintautas Miselis" + }, + { + "name": "Gustavo Nieves", + "homepage": "https://medium.com/@ganieves" } ], "description": "Codeception module containing various assertions", - "homepage": "http://codeception.com/", + "homepage": "https://codeception.com/", "keywords": [ "assertions", "asserts", "codeception" ], - "time": "2020-04-20T07:26:11+00:00" + "time": "2020-08-28T08:06:29+00:00" }, { "name": "codeception/module-sequence", @@ -19591,16 +20255,16 @@ }, { "name": "codeception/module-webdriver", - "version": "1.1.0", + "version": "1.1.2", "source": { "type": "git", "url": "https://github.com/Codeception/module-webdriver.git", - "reference": "09c167817393090ce3dbce96027d94656b1963ce" + "reference": "d055c645f600e991e33d1f289a9645eee46c384e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/module-webdriver/zipball/09c167817393090ce3dbce96027d94656b1963ce", - "reference": "09c167817393090ce3dbce96027d94656b1963ce", + "url": "https://api.github.com/repos/Codeception/module-webdriver/zipball/d055c645f600e991e33d1f289a9645eee46c384e", + "reference": "d055c645f600e991e33d1f289a9645eee46c384e", "shasum": "" }, "require": { @@ -19642,20 +20306,20 @@ "browser-testing", "codeception" ], - "time": "2020-05-31T08:47:24+00:00" + "time": "2020-10-11T18:54:47+00:00" }, { "name": "codeception/phpunit-wrapper", - "version": "9.0.2", + "version": "9.0.5", "source": { "type": "git", "url": "https://github.com/Codeception/phpunit-wrapper.git", - "reference": "eb27243d8edde68593bf8d9ef5e9074734777931" + "reference": "72bac7770866799e23a7dda1ac6bec2f8baccf45" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/eb27243d8edde68593bf8d9ef5e9074734777931", - "reference": "eb27243d8edde68593bf8d9ef5e9074734777931", + "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/72bac7770866799e23a7dda1ac6bec2f8baccf45", + "reference": "72bac7770866799e23a7dda1ac6bec2f8baccf45", "shasum": "" }, "require": { @@ -19686,7 +20350,7 @@ } ], "description": "PHPUnit classes used by Codeception", - "time": "2020-04-17T18:16:31+00:00" + "time": "2020-10-11T18:14:42+00:00" }, { "name": "codeception/stub", @@ -19872,16 +20536,16 @@ }, { "name": "doctrine/annotations", - "version": "1.10.3", + "version": "1.10.4", "source": { "type": "git", "url": "https://github.com/doctrine/annotations.git", - "reference": "5db60a4969eba0e0c197a19c077780aadbc43c5d" + "reference": "bfe91e31984e2ba76df1c1339681770401ec262f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/annotations/zipball/5db60a4969eba0e0c197a19c077780aadbc43c5d", - "reference": "5db60a4969eba0e0c197a19c077780aadbc43c5d", + "url": "https://api.github.com/repos/doctrine/annotations/zipball/bfe91e31984e2ba76df1c1339681770401ec262f", + "reference": "bfe91e31984e2ba76df1c1339681770401ec262f", "shasum": "" }, "require": { @@ -19891,7 +20555,8 @@ }, "require-dev": { "doctrine/cache": "1.*", - "phpunit/phpunit": "^7.5" + "phpstan/phpstan": "^0.12.20", + "phpunit/phpunit": "^7.5 || ^9.1.5" }, "type": "library", "extra": { @@ -19937,7 +20602,7 @@ "docblock", "parser" ], - "time": "2020-05-25T17:24:27+00:00" + "time": "2020-08-10T19:35:50+00:00" }, { "name": "doctrine/cache", @@ -20162,188 +20827,737 @@ "type": "custom" }, { - "url": "https://www.patreon.com/phpdoctrine", - "type": "patreon" + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator", + "type": "tidelift" + } + ], + "time": "2020-05-29T17:27:14+00:00" + }, + { + "name": "doctrine/lexer", + "version": "1.2.1", + "source": { + "type": "git", + "url": "https://github.com/doctrine/lexer.git", + "reference": "e864bbf5904cb8f5bb334f99209b48018522f042" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042", + "reference": "e864bbf5904cb8f5bb334f99209b48018522f042", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^6.0", + "phpstan/phpstan": "^0.11.8", + "phpunit/phpunit": "^8.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.", + "homepage": "https://www.doctrine-project.org/projects/lexer.html", + "keywords": [ + "annotations", + "docblock", + "lexer", + "parser", + "php" + ], + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer", + "type": "tidelift" + } + ], + "time": "2020-05-25T17:44:05+00:00" + }, + { + "name": "friendsofphp/php-cs-fixer", + "version": "v2.16.4", + "source": { + "type": "git", + "url": "https://github.com/FriendsOfPHP/PHP-CS-Fixer.git", + "reference": "1023c3458137ab052f6ff1e09621a721bfdeca13" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/FriendsOfPHP/PHP-CS-Fixer/zipball/1023c3458137ab052f6ff1e09621a721bfdeca13", + "reference": "1023c3458137ab052f6ff1e09621a721bfdeca13", + "shasum": "" + }, + "require": { + "composer/semver": "^1.4", + "composer/xdebug-handler": "^1.2", + "doctrine/annotations": "^1.2", + "ext-json": "*", + "ext-tokenizer": "*", + "php": "^5.6 || ^7.0", + "php-cs-fixer/diff": "^1.3", + "symfony/console": "^3.4.17 || ^4.1.6 || ^5.0", + "symfony/event-dispatcher": "^3.0 || ^4.0 || ^5.0", + "symfony/filesystem": "^3.0 || ^4.0 || ^5.0", + "symfony/finder": "^3.0 || ^4.0 || ^5.0", + "symfony/options-resolver": "^3.0 || ^4.0 || ^5.0", + "symfony/polyfill-php70": "^1.0", + "symfony/polyfill-php72": "^1.4", + "symfony/process": "^3.0 || ^4.0 || ^5.0", + "symfony/stopwatch": "^3.0 || ^4.0 || ^5.0" + }, + "require-dev": { + "johnkary/phpunit-speedtrap": "^1.1 || ^2.0 || ^3.0", + "justinrainbow/json-schema": "^5.0", + "keradus/cli-executor": "^1.2", + "mikey179/vfsstream": "^1.6", + "php-coveralls/php-coveralls": "^2.1", + "php-cs-fixer/accessible-object": "^1.0", + "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.1", + "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.1", + "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.1", + "phpunitgoodpractices/traits": "^1.8", + "symfony/phpunit-bridge": "^5.1", + "symfony/yaml": "^3.0 || ^4.0 || ^5.0" + }, + "suggest": { + "ext-dom": "For handling output formats in XML", + "ext-mbstring": "For handling non-UTF8 characters.", + "php-cs-fixer/phpunit-constraint-isidenticalstring": "For IsIdenticalString constraint.", + "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "For XmlMatchesXsd constraint.", + "symfony/polyfill-mbstring": "When enabling `ext-mbstring` is not possible." + }, + "bin": [ + "php-cs-fixer" + ], + "type": "application", + "autoload": { + "psr-4": { + "PhpCsFixer\\": "src/" + }, + "classmap": [ + "tests/Test/AbstractFixerTestCase.php", + "tests/Test/AbstractIntegrationCaseFactory.php", + "tests/Test/AbstractIntegrationTestCase.php", + "tests/Test/Assert/AssertTokensTrait.php", + "tests/Test/IntegrationCase.php", + "tests/Test/IntegrationCaseFactory.php", + "tests/Test/IntegrationCaseFactoryInterface.php", + "tests/Test/InternalIntegrationCaseFactory.php", + "tests/Test/IsIdenticalConstraint.php", + "tests/TestCase.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Dariusz Rumiński", + "email": "dariusz.ruminski@gmail.com" + } + ], + "description": "A tool to automatically fix PHP code style", + "funding": [ + { + "url": "https://github.com/keradus", + "type": "github" + } + ], + "time": "2020-06-27T23:57:46+00:00" + }, + { + "name": "hoa/consistency", + "version": "1.17.05.02", + "source": { + "type": "git", + "url": "https://github.com/hoaproject/Consistency.git", + "reference": "fd7d0adc82410507f332516faf655b6ed22e4c2f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hoaproject/Consistency/zipball/fd7d0adc82410507f332516faf655b6ed22e4c2f", + "reference": "fd7d0adc82410507f332516faf655b6ed22e4c2f", + "shasum": "" + }, + "require": { + "hoa/exception": "~1.0", + "php": ">=5.5.0" + }, + "require-dev": { + "hoa/stream": "~1.0", + "hoa/test": "~2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Hoa\\Consistency\\": "." + }, + "files": [ + "Prelude.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Ivan Enderlin", + "email": "ivan.enderlin@hoa-project.net" + }, + { + "name": "Hoa community", + "homepage": "https://hoa-project.net/" + } + ], + "description": "The Hoa\\Consistency library.", + "homepage": "https://hoa-project.net/", + "keywords": [ + "autoloader", + "callable", + "consistency", + "entity", + "flex", + "keyword", + "library" + ], + "time": "2017-05-02T12:18:12+00:00" + }, + { + "name": "hoa/console", + "version": "3.17.05.02", + "source": { + "type": "git", + "url": "https://github.com/hoaproject/Console.git", + "reference": "e231fd3ea70e6d773576ae78de0bdc1daf331a66" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hoaproject/Console/zipball/e231fd3ea70e6d773576ae78de0bdc1daf331a66", + "reference": "e231fd3ea70e6d773576ae78de0bdc1daf331a66", + "shasum": "" + }, + "require": { + "hoa/consistency": "~1.0", + "hoa/event": "~1.0", + "hoa/exception": "~1.0", + "hoa/file": "~1.0", + "hoa/protocol": "~1.0", + "hoa/stream": "~1.0", + "hoa/ustring": "~4.0" + }, + "require-dev": { + "hoa/test": "~2.0" + }, + "suggest": { + "ext-pcntl": "To enable hoa://Event/Console/Window:resize.", + "hoa/dispatcher": "To use the console kit.", + "hoa/router": "To use the console kit." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Hoa\\Console\\": "." + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Ivan Enderlin", + "email": "ivan.enderlin@hoa-project.net" + }, + { + "name": "Hoa community", + "homepage": "https://hoa-project.net/" + } + ], + "description": "The Hoa\\Console library.", + "homepage": "https://hoa-project.net/", + "keywords": [ + "autocompletion", + "chrome", + "cli", + "console", + "cursor", + "getoption", + "library", + "option", + "parser", + "processus", + "readline", + "terminfo", + "tput", + "window" + ], + "time": "2017-05-02T12:26:19+00:00" + }, + { + "name": "hoa/event", + "version": "1.17.01.13", + "source": { + "type": "git", + "url": "https://github.com/hoaproject/Event.git", + "reference": "6c0060dced212ffa3af0e34bb46624f990b29c54" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hoaproject/Event/zipball/6c0060dced212ffa3af0e34bb46624f990b29c54", + "reference": "6c0060dced212ffa3af0e34bb46624f990b29c54", + "shasum": "" + }, + "require": { + "hoa/consistency": "~1.0", + "hoa/exception": "~1.0" + }, + "require-dev": { + "hoa/test": "~2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Hoa\\Event\\": "." + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Ivan Enderlin", + "email": "ivan.enderlin@hoa-project.net" + }, + { + "name": "Hoa community", + "homepage": "https://hoa-project.net/" + } + ], + "description": "The Hoa\\Event library.", + "homepage": "https://hoa-project.net/", + "keywords": [ + "event", + "library", + "listener", + "observer" + ], + "time": "2017-01-13T15:30:50+00:00" + }, + { + "name": "hoa/exception", + "version": "1.17.01.16", + "source": { + "type": "git", + "url": "https://github.com/hoaproject/Exception.git", + "reference": "091727d46420a3d7468ef0595651488bfc3a458f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hoaproject/Exception/zipball/091727d46420a3d7468ef0595651488bfc3a458f", + "reference": "091727d46420a3d7468ef0595651488bfc3a458f", + "shasum": "" + }, + "require": { + "hoa/consistency": "~1.0", + "hoa/event": "~1.0" + }, + "require-dev": { + "hoa/test": "~2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Hoa\\Exception\\": "." + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Ivan Enderlin", + "email": "ivan.enderlin@hoa-project.net" + }, + { + "name": "Hoa community", + "homepage": "https://hoa-project.net/" + } + ], + "description": "The Hoa\\Exception library.", + "homepage": "https://hoa-project.net/", + "keywords": [ + "exception", + "library" + ], + "time": "2017-01-16T07:53:27+00:00" + }, + { + "name": "hoa/file", + "version": "1.17.07.11", + "source": { + "type": "git", + "url": "https://github.com/hoaproject/File.git", + "reference": "35cb979b779bc54918d2f9a4e02ed6c7a1fa67ca" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hoaproject/File/zipball/35cb979b779bc54918d2f9a4e02ed6c7a1fa67ca", + "reference": "35cb979b779bc54918d2f9a4e02ed6c7a1fa67ca", + "shasum": "" + }, + "require": { + "hoa/consistency": "~1.0", + "hoa/event": "~1.0", + "hoa/exception": "~1.0", + "hoa/iterator": "~2.0", + "hoa/stream": "~1.0" + }, + "require-dev": { + "hoa/test": "~2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Hoa\\File\\": "." + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Ivan Enderlin", + "email": "ivan.enderlin@hoa-project.net" + }, + { + "name": "Hoa community", + "homepage": "https://hoa-project.net/" + } + ], + "description": "The Hoa\\File library.", + "homepage": "https://hoa-project.net/", + "keywords": [ + "Socket", + "directory", + "file", + "finder", + "library", + "link", + "temporary" + ], + "time": "2017-07-11T07:42:15+00:00" + }, + { + "name": "hoa/iterator", + "version": "2.17.01.10", + "source": { + "type": "git", + "url": "https://github.com/hoaproject/Iterator.git", + "reference": "d1120ba09cb4ccd049c86d10058ab94af245f0cc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hoaproject/Iterator/zipball/d1120ba09cb4ccd049c86d10058ab94af245f0cc", + "reference": "d1120ba09cb4ccd049c86d10058ab94af245f0cc", + "shasum": "" + }, + "require": { + "hoa/consistency": "~1.0", + "hoa/exception": "~1.0" + }, + "require-dev": { + "hoa/test": "~2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Hoa\\Iterator\\": "." + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Ivan Enderlin", + "email": "ivan.enderlin@hoa-project.net" + }, + { + "name": "Hoa community", + "homepage": "https://hoa-project.net/" + } + ], + "description": "The Hoa\\Iterator library.", + "homepage": "https://hoa-project.net/", + "keywords": [ + "iterator", + "library" + ], + "time": "2017-01-10T10:34:47+00:00" + }, + { + "name": "hoa/protocol", + "version": "1.17.01.14", + "source": { + "type": "git", + "url": "https://github.com/hoaproject/Protocol.git", + "reference": "5c2cf972151c45f373230da170ea015deecf19e2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hoaproject/Protocol/zipball/5c2cf972151c45f373230da170ea015deecf19e2", + "reference": "5c2cf972151c45f373230da170ea015deecf19e2", + "shasum": "" + }, + "require": { + "hoa/consistency": "~1.0", + "hoa/exception": "~1.0" + }, + "require-dev": { + "hoa/test": "~2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Hoa\\Protocol\\": "." + }, + "files": [ + "Wrapper.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Ivan Enderlin", + "email": "ivan.enderlin@hoa-project.net" }, { - "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator", - "type": "tidelift" + "name": "Hoa community", + "homepage": "https://hoa-project.net/" } ], - "time": "2020-05-29T17:27:14+00:00" + "description": "The Hoa\\Protocol library.", + "homepage": "https://hoa-project.net/", + "keywords": [ + "library", + "protocol", + "resource", + "stream", + "wrapper" + ], + "time": "2017-01-14T12:26:10+00:00" }, { - "name": "doctrine/lexer", - "version": "1.2.1", + "name": "hoa/stream", + "version": "1.17.02.21", "source": { "type": "git", - "url": "https://github.com/doctrine/lexer.git", - "reference": "e864bbf5904cb8f5bb334f99209b48018522f042" + "url": "https://github.com/hoaproject/Stream.git", + "reference": "3293cfffca2de10525df51436adf88a559151d82" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042", - "reference": "e864bbf5904cb8f5bb334f99209b48018522f042", + "url": "https://api.github.com/repos/hoaproject/Stream/zipball/3293cfffca2de10525df51436adf88a559151d82", + "reference": "3293cfffca2de10525df51436adf88a559151d82", "shasum": "" }, "require": { - "php": "^7.2 || ^8.0" + "hoa/consistency": "~1.0", + "hoa/event": "~1.0", + "hoa/exception": "~1.0", + "hoa/protocol": "~1.0" }, "require-dev": { - "doctrine/coding-standard": "^6.0", - "phpstan/phpstan": "^0.11.8", - "phpunit/phpunit": "^8.2" + "hoa/test": "~2.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.2.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { "psr-4": { - "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer" + "Hoa\\Stream\\": "." } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" + "name": "Ivan Enderlin", + "email": "ivan.enderlin@hoa-project.net" }, { - "name": "Johannes Schmitt", - "email": "schmittjoh@gmail.com" + "name": "Hoa community", + "homepage": "https://hoa-project.net/" } ], - "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.", - "homepage": "https://www.doctrine-project.org/projects/lexer.html", + "description": "The Hoa\\Stream library.", + "homepage": "https://hoa-project.net/", "keywords": [ - "annotations", - "docblock", - "lexer", - "parser", - "php" - ], - "funding": [ - { - "url": "https://www.doctrine-project.org/sponsorship.html", - "type": "custom" - }, - { - "url": "https://www.patreon.com/phpdoctrine", - "type": "patreon" - }, - { - "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer", - "type": "tidelift" - } + "Context", + "bucket", + "composite", + "filter", + "in", + "library", + "out", + "protocol", + "stream", + "wrapper" ], - "time": "2020-05-25T17:44:05+00:00" + "time": "2017-02-21T16:01:06+00:00" }, { - "name": "friendsofphp/php-cs-fixer", - "version": "v2.16.4", + "name": "hoa/ustring", + "version": "4.17.01.16", "source": { "type": "git", - "url": "https://github.com/FriendsOfPHP/PHP-CS-Fixer.git", - "reference": "1023c3458137ab052f6ff1e09621a721bfdeca13" + "url": "https://github.com/hoaproject/Ustring.git", + "reference": "e6326e2739178799b1fe3fdd92029f9517fa17a0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/FriendsOfPHP/PHP-CS-Fixer/zipball/1023c3458137ab052f6ff1e09621a721bfdeca13", - "reference": "1023c3458137ab052f6ff1e09621a721bfdeca13", + "url": "https://api.github.com/repos/hoaproject/Ustring/zipball/e6326e2739178799b1fe3fdd92029f9517fa17a0", + "reference": "e6326e2739178799b1fe3fdd92029f9517fa17a0", "shasum": "" }, "require": { - "composer/semver": "^1.4", - "composer/xdebug-handler": "^1.2", - "doctrine/annotations": "^1.2", - "ext-json": "*", - "ext-tokenizer": "*", - "php": "^5.6 || ^7.0", - "php-cs-fixer/diff": "^1.3", - "symfony/console": "^3.4.17 || ^4.1.6 || ^5.0", - "symfony/event-dispatcher": "^3.0 || ^4.0 || ^5.0", - "symfony/filesystem": "^3.0 || ^4.0 || ^5.0", - "symfony/finder": "^3.0 || ^4.0 || ^5.0", - "symfony/options-resolver": "^3.0 || ^4.0 || ^5.0", - "symfony/polyfill-php70": "^1.0", - "symfony/polyfill-php72": "^1.4", - "symfony/process": "^3.0 || ^4.0 || ^5.0", - "symfony/stopwatch": "^3.0 || ^4.0 || ^5.0" + "hoa/consistency": "~1.0", + "hoa/exception": "~1.0" }, "require-dev": { - "johnkary/phpunit-speedtrap": "^1.1 || ^2.0 || ^3.0", - "justinrainbow/json-schema": "^5.0", - "keradus/cli-executor": "^1.2", - "mikey179/vfsstream": "^1.6", - "php-coveralls/php-coveralls": "^2.1", - "php-cs-fixer/accessible-object": "^1.0", - "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.1", - "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.1", - "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.1", - "phpunitgoodpractices/traits": "^1.8", - "symfony/phpunit-bridge": "^5.1", - "symfony/yaml": "^3.0 || ^4.0 || ^5.0" + "hoa/test": "~2.0" }, "suggest": { - "ext-dom": "For handling output formats in XML", - "ext-mbstring": "For handling non-UTF8 characters.", - "php-cs-fixer/phpunit-constraint-isidenticalstring": "For IsIdenticalString constraint.", - "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "For XmlMatchesXsd constraint.", - "symfony/polyfill-mbstring": "When enabling `ext-mbstring` is not possible." + "ext-iconv": "ext/iconv must be present (or a third implementation) to use Hoa\\Ustring::transcode().", + "ext-intl": "To get a better Hoa\\Ustring::toAscii() and Hoa\\Ustring::compareTo()." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.x-dev" + } }, - "bin": [ - "php-cs-fixer" - ], - "type": "application", "autoload": { "psr-4": { - "PhpCsFixer\\": "src/" - }, - "classmap": [ - "tests/Test/AbstractFixerTestCase.php", - "tests/Test/AbstractIntegrationCaseFactory.php", - "tests/Test/AbstractIntegrationTestCase.php", - "tests/Test/Assert/AssertTokensTrait.php", - "tests/Test/IntegrationCase.php", - "tests/Test/IntegrationCaseFactory.php", - "tests/Test/IntegrationCaseFactoryInterface.php", - "tests/Test/InternalIntegrationCaseFactory.php", - "tests/Test/IsIdenticalConstraint.php", - "tests/TestCase.php" - ] + "Hoa\\Ustring\\": "." + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Ivan Enderlin", + "email": "ivan.enderlin@hoa-project.net" }, { - "name": "Dariusz Rumiński", - "email": "dariusz.ruminski@gmail.com" + "name": "Hoa community", + "homepage": "https://hoa-project.net/" } ], - "description": "A tool to automatically fix PHP code style", - "funding": [ - { - "url": "https://github.com/keradus", - "type": "github" - } + "description": "The Hoa\\Ustring library.", + "homepage": "https://hoa-project.net/", + "keywords": [ + "library", + "search", + "string", + "unicode" ], - "time": "2020-06-27T23:57:46+00:00" + "time": "2017-01-16T07:08:25+00:00" }, { "name": "jms/metadata", @@ -20521,28 +21735,29 @@ }, { "name": "league/flysystem", - "version": "1.0.70", + "version": "1.1.3", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "585824702f534f8d3cf7fab7225e8466cc4b7493" + "reference": "9be3b16c877d477357c015cec057548cf9b2a14a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/585824702f534f8d3cf7fab7225e8466cc4b7493", - "reference": "585824702f534f8d3cf7fab7225e8466cc4b7493", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a", + "reference": "9be3b16c877d477357c015cec057548cf9b2a14a", "shasum": "" }, "require": { "ext-fileinfo": "*", - "php": ">=5.5.9" + "league/mime-type-detection": "^1.3", + "php": "^7.2.5 || ^8.0" }, "conflict": { "league/flysystem-sftp": "<1.0.6" }, "require-dev": { - "phpspec/phpspec": "^3.4 || ^4.0 || ^5.0 || ^6.0", - "phpunit/phpunit": "^5.7.26" + "phpspec/prophecy": "^1.11.1", + "phpunit/phpunit": "^8.5.8" }, "suggest": { "ext-fileinfo": "Required for MimeType", @@ -20607,7 +21822,58 @@ "type": "other" } ], - "time": "2020-07-26T07:20:36+00:00" + "time": "2020-08-23T07:39:11+00:00" + }, + { + "name": "league/mime-type-detection", + "version": "1.5.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/mime-type-detection.git", + "reference": "ea2fbfc988bade315acd5967e6d02274086d0f28" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ea2fbfc988bade315acd5967e6d02274086d0f28", + "reference": "ea2fbfc988bade315acd5967e6d02274086d0f28", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^0.12.36", + "phpunit/phpunit": "^8.5.8" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\MimeTypeDetection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Mime-type detection for Flysystem", + "funding": [ + { + "url": "https://github.com/frankdejonge", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/flysystem", + "type": "tidelift" + } + ], + "time": "2020-09-21T18:10:53+00:00" }, { "name": "lusitanian/oauth", @@ -20717,16 +21983,16 @@ }, { "name": "magento/magento2-functional-testing-framework", - "version": "3.0.0", + "version": "3.1.1", "source": { "type": "git", "url": "https://github.com/magento/magento2-functional-testing-framework.git", - "reference": "8d98efa7434a30ab9e82ef128c430ef8e3a50699" + "reference": "c6760313811f2c04545a261c706d2a73dd727b9a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/magento/magento2-functional-testing-framework/zipball/8d98efa7434a30ab9e82ef128c430ef8e3a50699", - "reference": "8d98efa7434a30ab9e82ef128c430ef8e3a50699", + "url": "https://api.github.com/repos/magento/magento2-functional-testing-framework/zipball/c6760313811f2c04545a261c706d2a73dd727b9a", + "reference": "c6760313811f2c04545a261c706d2a73dd727b9a", "shasum": "" }, "require": { @@ -20744,6 +22010,7 @@ "ext-intl": "*", "ext-json": "*", "ext-openssl": "*", + "hoa/console": "~3.0", "monolog/monolog": "^1.17", "mustache/mustache": "~2.5", "php": "^7.3", @@ -20803,7 +22070,7 @@ "magento", "testing" ], - "time": "2020-07-09T21:26:19+00:00" + "time": "2020-09-28T18:26:59+00:00" }, { "name": "mikey179/vfsstream", @@ -20853,25 +22120,25 @@ }, { "name": "mtdowling/jmespath.php", - "version": "2.5.0", + "version": "2.6.0", "source": { "type": "git", "url": "https://github.com/jmespath/jmespath.php.git", - "reference": "52168cb9472de06979613d365c7f1ab8798be895" + "reference": "42dae2cbd13154083ca6d70099692fef8ca84bfb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/52168cb9472de06979613d365c7f1ab8798be895", - "reference": "52168cb9472de06979613d365c7f1ab8798be895", + "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/42dae2cbd13154083ca6d70099692fef8ca84bfb", + "reference": "42dae2cbd13154083ca6d70099692fef8ca84bfb", "shasum": "" }, "require": { - "php": ">=5.4.0", - "symfony/polyfill-mbstring": "^1.4" + "php": "^5.4 || ^7.0 || ^8.0", + "symfony/polyfill-mbstring": "^1.17" }, "require-dev": { - "composer/xdebug-handler": "^1.2", - "phpunit/phpunit": "^4.8.36|^7.5.15" + "composer/xdebug-handler": "^1.4", + "phpunit/phpunit": "^4.8.36 || ^7.5.15" }, "bin": [ "bin/jp.php" @@ -20879,7 +22146,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.5-dev" + "dev-master": "2.6-dev" } }, "autoload": { @@ -20906,7 +22173,7 @@ "json", "jsonpath" ], - "time": "2019-12-30T18:03:34+00:00" + "time": "2020-07-31T21:01:56+00:00" }, { "name": "mustache/mustache", @@ -21159,23 +22426,23 @@ }, { "name": "php-cs-fixer/diff", - "version": "v1.3.0", + "version": "v1.3.1", "source": { "type": "git", "url": "https://github.com/PHP-CS-Fixer/diff.git", - "reference": "78bb099e9c16361126c86ce82ec4405ebab8e756" + "reference": "dbd31aeb251639ac0b9e7e29405c1441907f5759" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHP-CS-Fixer/diff/zipball/78bb099e9c16361126c86ce82ec4405ebab8e756", - "reference": "78bb099e9c16361126c86ce82ec4405ebab8e756", + "url": "https://api.github.com/repos/PHP-CS-Fixer/diff/zipball/dbd31aeb251639ac0b9e7e29405c1441907f5759", + "reference": "dbd31aeb251639ac0b9e7e29405c1441907f5759", "shasum": "" }, "require": { - "php": "^5.6 || ^7.0" + "php": "^5.6 || ^7.0 || ^8.0" }, "require-dev": { - "phpunit/phpunit": "^5.7.23 || ^6.4.3", + "phpunit/phpunit": "^5.7.23 || ^6.4.3 || ^7.0", "symfony/process": "^3.3" }, "type": "library", @@ -21189,14 +22456,14 @@ "BSD-3-Clause" ], "authors": [ - { - "name": "Kore Nordmann", - "email": "mail@kore-nordmann.de" - }, { "name": "Sebastian Bergmann", "email": "sebastian@phpunit.de" }, + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" + }, { "name": "SpacePossum" } @@ -21206,7 +22473,7 @@ "keywords": [ "diff" ], - "time": "2018-02-15T16:58:55+00:00" + "time": "2020-10-14T08:39:05+00:00" }, { "name": "php-webdriver/webdriver", @@ -21430,16 +22697,16 @@ }, { "name": "phpdocumentor/reflection-docblock", - "version": "5.2.0", + "version": "5.2.2", "source": { "type": "git", "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "3170448f5769fe19f456173d833734e0ff1b84df" + "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/3170448f5769fe19f456173d833734e0ff1b84df", - "reference": "3170448f5769fe19f456173d833734e0ff1b84df", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556", + "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556", "shasum": "" }, "require": { @@ -21478,20 +22745,20 @@ } ], "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", - "time": "2020-07-20T20:05:34+00:00" + "time": "2020-09-03T19:13:55+00:00" }, { "name": "phpdocumentor/type-resolver", - "version": "1.3.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://github.com/phpDocumentor/TypeResolver.git", - "reference": "e878a14a65245fbe78f8080eba03b47c3b705651" + "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/e878a14a65245fbe78f8080eba03b47c3b705651", - "reference": "e878a14a65245fbe78f8080eba03b47c3b705651", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0", + "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0", "shasum": "" }, "require": { @@ -21523,20 +22790,20 @@ } ], "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", - "time": "2020-06-27T10:12:23+00:00" + "time": "2020-09-17T18:55:26+00:00" }, { "name": "phpmd/phpmd", - "version": "2.8.2", + "version": "2.9.1", "source": { "type": "git", "url": "https://github.com/phpmd/phpmd.git", - "reference": "714629ed782537f638fe23c4346637659b779a77" + "reference": "ce10831d4ddc2686c1348a98069771dd314534a8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpmd/phpmd/zipball/714629ed782537f638fe23c4346637659b779a77", - "reference": "714629ed782537f638fe23c4346637659b779a77", + "url": "https://api.github.com/repos/phpmd/phpmd/zipball/ce10831d4ddc2686c1348a98069771dd314534a8", + "reference": "ce10831d4ddc2686c1348a98069771dd314534a8", "shasum": "" }, "require": { @@ -21547,6 +22814,8 @@ }, "require-dev": { "easy-doc/easy-doc": "0.0.0 || ^1.3.2", + "ext-json": "*", + "ext-simplexml": "*", "gregwar/rst": "^1.0", "mikey179/vfsstream": "^1.6.4", "phpunit/phpunit": "^4.8.36 || ^5.7.27", @@ -21593,7 +22862,13 @@ "phpmd", "pmd" ], - "time": "2020-02-16T20:15:50+00:00" + "funding": [ + { + "url": "https://tidelift.com/funding/github/packagist/phpmd/phpmd", + "type": "tidelift" + } + ], + "time": "2020-09-23T22:06:32+00:00" }, { "name": "phpoption/phpoption", @@ -21662,28 +22937,28 @@ }, { "name": "phpspec/prophecy", - "version": "1.11.1", + "version": "1.12.1", "source": { "type": "git", "url": "https://github.com/phpspec/prophecy.git", - "reference": "b20034be5efcdab4fb60ca3a29cba2949aead160" + "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/b20034be5efcdab4fb60ca3a29cba2949aead160", - "reference": "b20034be5efcdab4fb60ca3a29cba2949aead160", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/8ce87516be71aae9b956f81906aaf0338e0d8a2d", + "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d", "shasum": "" }, "require": { "doctrine/instantiator": "^1.2", - "php": "^7.2", - "phpdocumentor/reflection-docblock": "^5.0", + "php": "^7.2 || ~8.0, <8.1", + "phpdocumentor/reflection-docblock": "^5.2", "sebastian/comparator": "^3.0 || ^4.0", "sebastian/recursion-context": "^3.0 || ^4.0" }, "require-dev": { "phpspec/phpspec": "^6.0", - "phpunit/phpunit": "^8.0" + "phpunit/phpunit": "^8.0 || ^9.0 <9.3" }, "type": "library", "extra": { @@ -21721,7 +22996,7 @@ "spy", "stub" ], - "time": "2020-07-08T12:44:21+00:00" + "time": "2020-09-29T09:10:42+00:00" }, { "name": "phpstan/phpstan", @@ -21851,23 +23126,23 @@ }, { "name": "phpunit/php-file-iterator", - "version": "3.0.4", + "version": "3.0.5", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-file-iterator.git", - "reference": "25fefc5b19835ca653877fe081644a3f8c1d915e" + "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/25fefc5b19835ca653877fe081644a3f8c1d915e", - "reference": "25fefc5b19835ca653877fe081644a3f8c1d915e", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8", + "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8", "shasum": "" }, "require": { - "php": "^7.3 || ^8.0" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^9.0" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { @@ -21903,28 +23178,28 @@ "type": "github" } ], - "time": "2020-07-11T05:18:21+00:00" + "time": "2020-09-28T05:57:25+00:00" }, { "name": "phpunit/php-invoker", - "version": "3.0.2", + "version": "3.1.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-invoker.git", - "reference": "f6eedfed1085dd1f4c599629459a0277d25f9a66" + "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f6eedfed1085dd1f4c599629459a0277d25f9a66", - "reference": "f6eedfed1085dd1f4c599629459a0277d25f9a66", + "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67", + "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67", "shasum": "" }, "require": { - "php": "^7.3 || ^8.0" + "php": ">=7.3" }, "require-dev": { "ext-pcntl": "*", - "phpunit/phpunit": "^9.0" + "phpunit/phpunit": "^9.3" }, "suggest": { "ext-pcntl": "*" @@ -21932,7 +23207,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-master": "3.1-dev" } }, "autoload": { @@ -21962,27 +23237,27 @@ "type": "github" } ], - "time": "2020-06-26T11:53:53+00:00" + "time": "2020-09-28T05:58:55+00:00" }, { "name": "phpunit/php-text-template", - "version": "2.0.2", + "version": "2.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-text-template.git", - "reference": "6ff9c8ea4d3212b88fcf74e25e516e2c51c99324" + "reference": "18c887016e60e52477e54534956d7b47bc52cd84" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/6ff9c8ea4d3212b88fcf74e25e516e2c51c99324", - "reference": "6ff9c8ea4d3212b88fcf74e25e516e2c51c99324", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/18c887016e60e52477e54534956d7b47bc52cd84", + "reference": "18c887016e60e52477e54534956d7b47bc52cd84", "shasum": "" }, "require": { - "php": "^7.3 || ^8.0" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^9.0" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { @@ -22017,7 +23292,7 @@ "type": "github" } ], - "time": "2020-06-26T11:55:37+00:00" + "time": "2020-09-28T06:03:05+00:00" }, { "name": "phpunit/php-timer", @@ -22076,16 +23351,16 @@ }, { "name": "phpunit/php-token-stream", - "version": "4.0.3", + "version": "4.0.4", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-token-stream.git", - "reference": "5672711b6b07b14d5ab694e700c62eeb82fcf374" + "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/5672711b6b07b14d5ab694e700c62eeb82fcf374", - "reference": "5672711b6b07b14d5ab694e700c62eeb82fcf374", + "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/a853a0e183b9db7eed023d7933a858fa1c8d25a3", + "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3", "shasum": "" }, "require": { @@ -22127,7 +23402,8 @@ "type": "github" } ], - "time": "2020-06-27T06:36:25+00:00" + "abandoned": true, + "time": "2020-08-04T08:28:15+00:00" }, { "name": "phpunit/phpunit", @@ -22323,23 +23599,23 @@ }, { "name": "sebastian/code-unit", - "version": "1.0.5", + "version": "1.0.7", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/code-unit.git", - "reference": "c1e2df332c905079980b119c4db103117e5e5c90" + "reference": "59236be62b1bb9919e6d7f60b0b832dc05cef9ab" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/c1e2df332c905079980b119c4db103117e5e5c90", - "reference": "c1e2df332c905079980b119c4db103117e5e5c90", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/59236be62b1bb9919e6d7f60b0b832dc05cef9ab", + "reference": "59236be62b1bb9919e6d7f60b0b832dc05cef9ab", "shasum": "" }, "require": { - "php": "^7.3 || ^8.0" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^9.0" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { @@ -22371,27 +23647,27 @@ "type": "github" } ], - "time": "2020-06-26T12:50:45+00:00" + "time": "2020-10-02T14:47:54+00:00" }, { "name": "sebastian/code-unit-reverse-lookup", - "version": "2.0.2", + "version": "2.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", - "reference": "ee51f9bb0c6d8a43337055db3120829fa14da819" + "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ee51f9bb0c6d8a43337055db3120829fa14da819", - "reference": "ee51f9bb0c6d8a43337055db3120829fa14da819", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", + "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", "shasum": "" }, "require": { - "php": "^7.3 || ^8.0" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^9.0" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { @@ -22422,29 +23698,29 @@ "type": "github" } ], - "time": "2020-06-26T12:04:00+00:00" + "time": "2020-09-28T05:30:19+00:00" }, { "name": "sebastian/comparator", - "version": "4.0.3", + "version": "4.0.5", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "dcc580eadfaa4e7f9d2cf9ae1922134ea962e14f" + "reference": "7a8ff306445707539c1a6397372a982a1ec55120" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/dcc580eadfaa4e7f9d2cf9ae1922134ea962e14f", - "reference": "dcc580eadfaa4e7f9d2cf9ae1922134ea962e14f", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/7a8ff306445707539c1a6397372a982a1ec55120", + "reference": "7a8ff306445707539c1a6397372a982a1ec55120", "shasum": "" }, "require": { - "php": "^7.3 || ^8.0", + "php": ">=7.3", "sebastian/diff": "^4.0", "sebastian/exporter": "^4.0" }, "require-dev": { - "phpunit/phpunit": "^9.0" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { @@ -22492,27 +23768,27 @@ "type": "github" } ], - "time": "2020-06-26T12:05:46+00:00" + "time": "2020-09-30T06:47:25+00:00" }, { "name": "sebastian/diff", - "version": "4.0.2", + "version": "4.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/diff.git", - "reference": "1e90b4cf905a7d06c420b1d2e9d11a4dc8a13113" + "reference": "ffc949a1a2aae270ea064453d7535b82e4c32092" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/1e90b4cf905a7d06c420b1d2e9d11a4dc8a13113", - "reference": "1e90b4cf905a7d06c420b1d2e9d11a4dc8a13113", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ffc949a1a2aae270ea064453d7535b82e4c32092", + "reference": "ffc949a1a2aae270ea064453d7535b82e4c32092", "shasum": "" }, "require": { - "php": "^7.3 || ^8.0" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^9.0", + "phpunit/phpunit": "^9.3", "symfony/process": "^4.2 || ^5" }, "type": "library", @@ -22554,27 +23830,27 @@ "type": "github" } ], - "time": "2020-06-30T04:46:02+00:00" + "time": "2020-09-28T05:32:55+00:00" }, { "name": "sebastian/environment", - "version": "5.1.2", + "version": "5.1.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/environment.git", - "reference": "0a757cab9d5b7ef49a619f1143e6c9c1bc0fe9d2" + "reference": "388b6ced16caa751030f6a69e588299fa09200ac" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/0a757cab9d5b7ef49a619f1143e6c9c1bc0fe9d2", - "reference": "0a757cab9d5b7ef49a619f1143e6c9c1bc0fe9d2", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac", + "reference": "388b6ced16caa751030f6a69e588299fa09200ac", "shasum": "" }, "require": { - "php": "^7.3 || ^8.0" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^9.0" + "phpunit/phpunit": "^9.3" }, "suggest": { "ext-posix": "*" @@ -22582,7 +23858,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "5.0-dev" + "dev-master": "5.1-dev" } }, "autoload": { @@ -22613,29 +23889,29 @@ "type": "github" } ], - "time": "2020-06-26T12:07:24+00:00" + "time": "2020-09-28T05:52:38+00:00" }, { "name": "sebastian/exporter", - "version": "4.0.2", + "version": "4.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "571d721db4aec847a0e59690b954af33ebf9f023" + "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/571d721db4aec847a0e59690b954af33ebf9f023", - "reference": "571d721db4aec847a0e59690b954af33ebf9f023", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d89cc98761b8cb5a1a235a6b703ae50d34080e65", + "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65", "shasum": "" }, "require": { - "php": "^7.3 || ^8.0", + "php": ">=7.3", "sebastian/recursion-context": "^4.0" }, "require-dev": { "ext-mbstring": "*", - "phpunit/phpunit": "^9.2" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { @@ -22686,7 +23962,7 @@ "type": "github" } ], - "time": "2020-06-26T12:08:55+00:00" + "time": "2020-09-28T05:24:23+00:00" }, { "name": "sebastian/finder-facade", @@ -22732,6 +24008,7 @@ ], "description": "FinderFacade is a convenience wrapper for Symfony's Finder component.", "homepage": "https://github.com/sebastianbergmann/finder-facade", + "abandoned": true, "time": "2020-02-08T06:07:58+00:00" }, { @@ -22790,25 +24067,25 @@ }, { "name": "sebastian/object-enumerator", - "version": "4.0.2", + "version": "4.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/object-enumerator.git", - "reference": "074fed2d0a6d08e1677dd8ce9d32aecb384917b8" + "reference": "f6f5957013d84725427d361507e13513702888a4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/074fed2d0a6d08e1677dd8ce9d32aecb384917b8", - "reference": "074fed2d0a6d08e1677dd8ce9d32aecb384917b8", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f6f5957013d84725427d361507e13513702888a4", + "reference": "f6f5957013d84725427d361507e13513702888a4", "shasum": "" }, "require": { - "php": "^7.3 || ^8.0", + "php": ">=7.3", "sebastian/object-reflector": "^2.0", "sebastian/recursion-context": "^4.0" }, "require-dev": { - "phpunit/phpunit": "^9.0" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { @@ -22839,27 +24116,27 @@ "type": "github" } ], - "time": "2020-06-26T12:11:32+00:00" + "time": "2020-09-28T05:55:06+00:00" }, { "name": "sebastian/object-reflector", - "version": "2.0.2", + "version": "2.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/object-reflector.git", - "reference": "127a46f6b057441b201253526f81d5406d6c7840" + "reference": "d9d0ab3b12acb1768bc1e0a89b23c90d2043cbe5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/127a46f6b057441b201253526f81d5406d6c7840", - "reference": "127a46f6b057441b201253526f81d5406d6c7840", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/d9d0ab3b12acb1768bc1e0a89b23c90d2043cbe5", + "reference": "d9d0ab3b12acb1768bc1e0a89b23c90d2043cbe5", "shasum": "" }, "require": { - "php": "^7.3 || ^8.0" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^9.0" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { @@ -22890,7 +24167,7 @@ "type": "github" } ], - "time": "2020-06-26T12:12:55+00:00" + "time": "2020-09-28T05:56:16+00:00" }, { "name": "sebastian/phpcpd", @@ -22945,23 +24222,23 @@ }, { "name": "sebastian/recursion-context", - "version": "4.0.2", + "version": "4.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/recursion-context.git", - "reference": "062231bf61d2b9448c4fa5a7643b5e1829c11d63" + "reference": "ed8c9cd355089134bc9cba421b5cfdd58f0eaef7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/062231bf61d2b9448c4fa5a7643b5e1829c11d63", - "reference": "062231bf61d2b9448c4fa5a7643b5e1829c11d63", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/ed8c9cd355089134bc9cba421b5cfdd58f0eaef7", + "reference": "ed8c9cd355089134bc9cba421b5cfdd58f0eaef7", "shasum": "" }, "require": { - "php": "^7.3 || ^8.0" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^9.0" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { @@ -23000,24 +24277,24 @@ "type": "github" } ], - "time": "2020-06-26T12:14:17+00:00" + "time": "2020-09-28T05:17:32+00:00" }, { "name": "sebastian/resource-operations", - "version": "3.0.2", + "version": "3.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/resource-operations.git", - "reference": "0653718a5a629b065e91f774595267f8dc32e213" + "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0653718a5a629b065e91f774595267f8dc32e213", - "reference": "0653718a5a629b065e91f774595267f8dc32e213", + "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", + "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", "shasum": "" }, "require": { - "php": "^7.3 || ^8.0" + "php": ">=7.3" }, "require-dev": { "phpunit/phpunit": "^9.0" @@ -23051,32 +24328,32 @@ "type": "github" } ], - "time": "2020-06-26T12:16:22+00:00" + "time": "2020-09-28T06:45:17+00:00" }, { "name": "sebastian/type", - "version": "2.2.1", + "version": "2.3.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/type.git", - "reference": "86991e2b33446cd96e648c18bcdb1e95afb2c05a" + "reference": "fa592377f3923946cb90bf1f6a71ba2e5f229909" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/86991e2b33446cd96e648c18bcdb1e95afb2c05a", - "reference": "86991e2b33446cd96e648c18bcdb1e95afb2c05a", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fa592377f3923946cb90bf1f6a71ba2e5f229909", + "reference": "fa592377f3923946cb90bf1f6a71ba2e5f229909", "shasum": "" }, "require": { - "php": "^7.3 || ^8.0" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^9.2" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.2-dev" + "dev-master": "2.3-dev" } }, "autoload": { @@ -23103,24 +24380,24 @@ "type": "github" } ], - "time": "2020-07-05T08:31:53+00:00" + "time": "2020-10-06T08:41:03+00:00" }, { "name": "sebastian/version", - "version": "3.0.1", + "version": "3.0.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/version.git", - "reference": "626586115d0ed31cb71483be55beb759b5af5a3c" + "reference": "c6c1022351a901512170118436c764e473f6de8c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/626586115d0ed31cb71483be55beb759b5af5a3c", - "reference": "626586115d0ed31cb71483be55beb759b5af5a3c", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c", + "reference": "c6c1022351a901512170118436c764e473f6de8c", "shasum": "" }, "require": { - "php": "^7.3 || ^8.0" + "php": ">=7.3" }, "type": "library", "extra": { @@ -23152,20 +24429,20 @@ "type": "github" } ], - "time": "2020-06-26T12:18:43+00:00" + "time": "2020-09-28T06:39:44+00:00" }, { "name": "squizlabs/php_codesniffer", - "version": "3.5.5", + "version": "3.5.6", "source": { "type": "git", "url": "https://github.com/squizlabs/PHP_CodeSniffer.git", - "reference": "73e2e7f57d958e7228fce50dc0c61f58f017f9f6" + "reference": "e97627871a7eab2f70e59166072a6b767d5834e0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/73e2e7f57d958e7228fce50dc0c61f58f017f9f6", - "reference": "73e2e7f57d958e7228fce50dc0c61f58f017f9f6", + "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/e97627871a7eab2f70e59166072a6b767d5834e0", + "reference": "e97627871a7eab2f70e59166072a6b767d5834e0", "shasum": "" }, "require": { @@ -23203,20 +24480,20 @@ "phpcs", "standards" ], - "time": "2020-04-17T01:09:41+00:00" + "time": "2020-08-10T04:50:15+00:00" }, { "name": "symfony/config", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "cf63f0613a6c6918e96db39c07a43b01e19a0773" + "reference": "6ad8be6e1280f6734150d8a04a9160dd34ceb191" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/cf63f0613a6c6918e96db39c07a43b01e19a0773", - "reference": "cf63f0613a6c6918e96db39c07a43b01e19a0773", + "url": "https://api.github.com/repos/symfony/config/zipball/6ad8be6e1280f6734150d8a04a9160dd34ceb191", + "reference": "6ad8be6e1280f6734150d8a04a9160dd34ceb191", "shasum": "" }, "require": { @@ -23283,20 +24560,20 @@ "type": "tidelift" } ], - "time": "2020-07-15T10:53:22+00:00" + "time": "2020-09-02T16:23:27+00:00" }, { "name": "symfony/dependency-injection", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "c45c3f26d2ae7c5239e5ad420b0c2717dbbc0bcb" + "reference": "2dea4a3ef2eb79138354c1d49e9372cc921af20b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/c45c3f26d2ae7c5239e5ad420b0c2717dbbc0bcb", - "reference": "c45c3f26d2ae7c5239e5ad420b0c2717dbbc0bcb", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/2dea4a3ef2eb79138354c1d49e9372cc921af20b", + "reference": "2dea4a3ef2eb79138354c1d49e9372cc921af20b", "shasum": "" }, "require": { @@ -23372,20 +24649,20 @@ "type": "tidelift" } ], - "time": "2020-07-23T08:36:24+00:00" + "time": "2020-10-01T12:14:45+00:00" }, { "name": "symfony/http-foundation", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "1f0d6627e680591c61e9176f04a0dc887b4e6702" + "reference": "353b42e7b4fd1c898aab09a059466c9cea74039b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/1f0d6627e680591c61e9176f04a0dc887b4e6702", - "reference": "1f0d6627e680591c61e9176f04a0dc887b4e6702", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/353b42e7b4fd1c898aab09a059466c9cea74039b", + "reference": "353b42e7b4fd1c898aab09a059466c9cea74039b", "shasum": "" }, "require": { @@ -23447,20 +24724,20 @@ "type": "tidelift" } ], - "time": "2020-07-23T10:04:31+00:00" + "time": "2020-09-27T14:14:57+00:00" }, { "name": "symfony/mime", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "149fb0ad35aae3c7637b496b38478797fa6a7ea6" + "reference": "4404d6545125863561721514ad9388db2661eec5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/149fb0ad35aae3c7637b496b38478797fa6a7ea6", - "reference": "149fb0ad35aae3c7637b496b38478797fa6a7ea6", + "url": "https://api.github.com/repos/symfony/mime/zipball/4404d6545125863561721514ad9388db2661eec5", + "reference": "4404d6545125863561721514ad9388db2661eec5", "shasum": "" }, "require": { @@ -23524,11 +24801,11 @@ "type": "tidelift" } ], - "time": "2020-07-23T10:04:31+00:00" + "time": "2020-09-02T16:23:27+00:00" }, { "name": "symfony/stopwatch", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/stopwatch.git", @@ -23592,16 +24869,16 @@ }, { "name": "symfony/yaml", - "version": "v5.1.3", + "version": "v5.1.7", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "ea342353a3ef4f453809acc4ebc55382231d4d23" + "reference": "e147a68cb66a8b510f4b7481fe4da5b2ab65ec6a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/ea342353a3ef4f453809acc4ebc55382231d4d23", - "reference": "ea342353a3ef4f453809acc4ebc55382231d4d23", + "url": "https://api.github.com/repos/symfony/yaml/zipball/e147a68cb66a8b510f4b7481fe4da5b2ab65ec6a", + "reference": "e147a68cb66a8b510f4b7481fe4da5b2ab65ec6a", "shasum": "" }, "require": { @@ -23665,7 +24942,7 @@ "type": "tidelift" } ], - "time": "2020-05-20T17:43:50+00:00" + "time": "2020-09-27T03:44:28+00:00" }, { "name": "theseer/fdomdocument", @@ -23915,7 +25192,7 @@ "aliases": [], "minimum-stability": "stable", "stability-flags": [], - "prefer-stable": false, + "prefer-stable": true, "prefer-lowest": false, "platform": [], "platform-dev": [], diff --git a/src/guides/v2.3/release-notes/packages-cloud.md b/src/guides/v2.3/release-notes/packages-cloud.md index 9a1e4715c8d..2fa3c9c83e2 100644 --- a/src/guides/v2.3/release-notes/packages-cloud.md +++ b/src/guides/v2.3/release-notes/packages-cloud.md @@ -10,6 +10,8 @@ redirect-from: /guides/v2.3/release-notes/thirdparty-mccloud.html + + From 9957e6359e6076da92c41c8329a729e5e9374497 Mon Sep 17 00:00:00 2001 From: Heather Guthrie Date: Thu, 15 Oct 2020 16:55:03 -0500 Subject: [PATCH 023/143] Fix issue #8021 update key value list for web locations --- src/cloud/project/magento-app-properties.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/src/cloud/project/magento-app-properties.md b/src/cloud/project/magento-app-properties.md index 0bc3e405050..938b818323c 100644 --- a/src/cloud/project/magento-app-properties.md +++ b/src/cloud/project/magento-app-properties.md @@ -75,18 +75,20 @@ See [Services]({{ site.baseurl }}/cloud/project/services.html) for a full list o The `web` property defines how your application is exposed to the web (in HTTP). It determines how the web application serves content— from the front-controller script to a non-static request to an `index.php` file on the root. We support any directory structure so the static file can be in a sub directory, and the `index.php` file can be further down. -You can specify the following attributes for the `web` property: +You can specify the following key values for the `web` property _locations_: Attribute | Description --------- | ----------- +`allow` | Serve files that do not match a rule. Default value = `true` +`blacklist` | Files that should never be served. Has no effect on static files. +`expires` | The number of seconds to cache `whitelist` content in the browser. This attribute enables the `cache-control` and `expires` headers for static content. If this value is not set, the `expires` directive and resulting headers are not included when serving static content files. +`index` | Static files to serve your application, such as the `index.html` file. This key expects a collection. You must include the static file(s) in the `whitelist` as an index file: `- \.html$` +`passthru` | The URL used in the event that a static file or PHP file cannot be found. Typically, this URL is the front controller for your applications, such as `/index.php` or `/app.php`. `root` | The path relative to the root of the application that is exposed on the web. Typical values include `/public` and `/web`. -`passthru` | The URL used in the event that a static file or PHP file cannot be found. This URL is typically the front controller for your applications, often `/index.php` or `/app.php`. -`index` | Static files, such as `index.html`, to serve your application. This key expects a collection. You must include the static file(s) in the whitelist as an index file, like `- \.html$`. -`blacklist` | A list of files that should never be executed. Has no effect on static files. -`whitelist` | A list of static files (as regular expressions) that can be served. Dynamic files (for example, PHP files) are treated as static files and have their source code served, but they are not executed. -`expires` | The number of seconds to cache whitelisted content in the browser. This attribute enables the cache-control and expires headers for static content. If this value is not set, the `expires` directive and resulting headers are not included when serving static content files. +`scripts` | Allow loading scripts in this location. Set the value to `true` to allow scripts. +`whitelist` | A list of static files that can be served. Dynamic files, such as PHP files, are treated as static files, where the source code is served and not run. -Contrary to standard `.htaccess` approaches that accept a _blacklist_ and allow access to everything not on a specific list, we accept a _whitelist_, which means that any request that does not match triggers a 404 error and passes through to the URL specified by the `passthru` attribute. +Contrary to standard `.htaccess` approaches that accept a _blacklist_ and allow access to everything not on a specific list, we accept a _whitelist_, which means that any request that does not match triggers a 404 error and passes through to the URL specified by the `passthru` attribute. Our default configuration allows the following: From cd88b35844a943ed547297587ad480536cf2a05e Mon Sep 17 00:00:00 2001 From: Dmitry Shevtsov <12731225+dshevtsov@users.noreply.github.com> Date: Thu, 15 Oct 2020 17:24:50 -0500 Subject: [PATCH 024/143] Update bin/magento reference (2.3.6) (#8067) --- .../codebase/v2_3/commerce/bin-magento.json | 12563 +--------------- .../v2_3/open-source/bin-magento.json | 11742 +-------------- 2 files changed, 2 insertions(+), 24303 deletions(-) diff --git a/src/_data/codebase/v2_3/commerce/bin-magento.json b/src/_data/codebase/v2_3/commerce/bin-magento.json index 592053a66b8..eba8e72ac02 100644 --- a/src/_data/codebase/v2_3/commerce/bin-magento.json +++ b/src/_data/codebase/v2_3/commerce/bin-magento.json @@ -1,12562 +1 @@ -{ - "commands" : [ - { - "hidden" : false, - "definition" : { - "arguments" : { - "command_name" : { - "description" : "The command name", - "default" : "help", - "is_array" : false, - "name" : "command_name", - "is_required" : false - } - }, - "options" : { - "ansi" : { - "shortcut" : "", - "name" : "--ansi", - "is_value_required" : false, - "description" : "Force ANSI output", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "quiet" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "is_value_required" : false, - "shortcut" : "-q" - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "is_value_required" : false, - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "raw" : { - "description" : "To output raw command help", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "", - "name" : "--raw", - "is_value_required" : false - }, - "version" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this application version", - "name" : "--version", - "is_value_required" : false, - "shortcut" : "-V" - }, - "no-ansi" : { - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Disable ANSI output" - }, - "no-interaction" : { - "description" : "Do not ask any interactive question", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-n", - "is_value_required" : false, - "name" : "--no-interaction" - }, - "format" : { - "is_multiple" : false, - "accept_value" : true, - "default" : "txt", - "description" : "The output format (txt, xml, json, or md)", - "is_value_required" : true, - "name" : "--format", - "shortcut" : "" - }, - "help" : { - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help", - "description" : "Display this help message", - "is_multiple" : false, - "default" : false, - "accept_value" : false - } - } - }, - "usage" : [ - "help [--format FORMAT] [--raw] [--] []" - ], - "name" : "help", - "help" : "The help command displays help for a given command:\n\n php /var/www/html/magento2/bin/magento help list\n\nYou can also output the help in other formats by using the --format option:\n\n php /var/www/html/magento2/bin/magento help --format=xml list\n\nTo display the list of available commands, please use the list command.", - "description" : "Displays help for a command" - }, - { - "definition" : { - "options" : { - "raw" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "To output raw command list", - "name" : "--raw", - "is_value_required" : false, - "shortcut" : "" - }, - "format" : { - "is_multiple" : false, - "accept_value" : true, - "default" : "txt", - "description" : "The output format (txt, xml, json, or md)", - "is_value_required" : true, - "name" : "--format", - "shortcut" : "" - } - }, - "arguments" : { - "namespace" : { - "default" : null, - "description" : "The namespace name", - "is_required" : false, - "name" : "namespace", - "is_array" : false - } - } - }, - "name" : "list", - "usage" : [ - "list [--raw] [--format FORMAT] [--] []" - ], - "hidden" : false, - "description" : "Lists commands", - "help" : "The list command lists all commands:\n\n php /var/www/html/magento2/bin/magento list\n\nYou can also display the commands for a specific namespace:\n\n php /var/www/html/magento2/bin/magento list test\n\nYou can also output the information in other formats by using the --format option:\n\n php /var/www/html/magento2/bin/magento list --format=xml\n\nIt's also possible to get raw list of commands (useful for embedding command runner):\n\n php /var/www/html/magento2/bin/magento list --raw" - }, - { - "description" : "Creates an administrator", - "help" : "Creates an administrator", - "name" : "admin:user:create", - "usage" : [ - "admin:user:create [--admin-user ADMIN-USER] [--admin-password ADMIN-PASSWORD] [--admin-email ADMIN-EMAIL] [--admin-firstname ADMIN-FIRSTNAME] [--admin-lastname ADMIN-LASTNAME] [--magento-init-params MAGENTO-INIT-PARAMS]" - ], - "definition" : { - "arguments" : [], - "options" : { - "no-interaction" : { - "description" : "Do not ask any interactive question", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false - }, - "help" : { - "description" : "Display this help message", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help" - }, - "admin-email" : { - "description" : "(Required) Admin email", - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "shortcut" : "", - "name" : "--admin-email", - "is_value_required" : true - }, - "ansi" : { - "description" : "Force ANSI output", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "", - "name" : "--ansi", - "is_value_required" : false - }, - "admin-firstname" : { - "shortcut" : "", - "is_value_required" : true, - "name" : "--admin-firstname", - "description" : "(Required) Admin first name", - "is_multiple" : false, - "accept_value" : true, - "default" : null - }, - "quiet" : { - "description" : "Do not output any message", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet" - }, - "magento-init-params" : { - "shortcut" : "", - "is_value_required" : true, - "name" : "--magento-init-params", - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "default" : null, - "accept_value" : true, - "is_multiple" : false - }, - "verbose" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose", - "is_value_required" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "version" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Display this application version", - "name" : "--version", - "is_value_required" : false, - "shortcut" : "-V" - }, - "admin-lastname" : { - "description" : "(Required) Admin last name", - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "shortcut" : "", - "name" : "--admin-lastname", - "is_value_required" : true - }, - "admin-password" : { - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "description" : "(Required) Admin password", - "is_value_required" : true, - "name" : "--admin-password", - "shortcut" : "" - }, - "no-ansi" : { - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Disable ANSI output" - }, - "admin-user" : { - "name" : "--admin-user", - "is_value_required" : true, - "shortcut" : "", - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "description" : "(Required) Admin user" - } - } - }, - "hidden" : false - }, - { - "help" : "This command unlocks an admin account by its username.\nTo unlock:\n /var/www/html/magento2/bin/magento admin:user:unlock username", - "description" : "Unlock Admin Account", - "name" : "admin:user:unlock", - "usage" : [ - "admin:user:unlock " - ], - "definition" : { - "options" : { - "ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "no-interaction" : { - "shortcut" : "-n", - "is_value_required" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "quiet" : { - "description" : "Do not output any message", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet" - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "is_value_required" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "version" : { - "description" : "Display this application version", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-V", - "name" : "--version", - "is_value_required" : false - }, - "help" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Display this help message", - "is_value_required" : false, - "name" : "--help", - "shortcut" : "-h" - }, - "no-ansi" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Disable ANSI output", - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "" - } - }, - "arguments" : { - "username" : { - "is_required" : true, - "name" : "username", - "is_array" : false, - "default" : null, - "description" : "The admin username to unlock" - } - } - }, - "hidden" : false - }, - { - "definition" : { - "options" : { - "version" : { - "description" : "Display this application version", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-V", - "is_value_required" : false, - "name" : "--version" - }, - "help" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this help message", - "name" : "--help", - "is_value_required" : false, - "shortcut" : "-h" - }, - "no-ansi" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_value_required" : false, - "shortcut" : "" - }, - "ansi" : { - "shortcut" : "", - "name" : "--ansi", - "is_value_required" : false, - "description" : "Force ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "quiet" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Do not output any message", - "is_value_required" : false, - "name" : "--quiet", - "shortcut" : "-q" - }, - "no-interaction" : { - "is_value_required" : false, - "name" : "--no-interaction", - "shortcut" : "-n", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Do not ask any interactive question" - }, - "verbose" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv" - } - }, - "arguments" : { - "config-types" : { - "description" : "Space-separated list of config types or omit to dump all [scopes, themes, system, i18n]", - "default" : [], - "is_array" : true, - "is_required" : false, - "name" : "config-types" - } - } - }, - "name" : "app:config:dump", - "usage" : [ - "app:config:dump [...]" - ], - "hidden" : false, - "description" : "Create dump of application", - "help" : "Create dump of application" - }, - { - "definition" : { - "arguments" : [], - "options" : { - "ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "no-interaction" : { - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false, - "description" : "Do not ask any interactive question", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "quiet" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Do not output any message", - "is_value_required" : false, - "name" : "--quiet", - "shortcut" : "-q" - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "is_value_required" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "version" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this application version", - "is_value_required" : false, - "name" : "--version", - "shortcut" : "-V" - }, - "help" : { - "is_value_required" : false, - "name" : "--help", - "shortcut" : "-h", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Display this help message" - }, - "no-ansi" : { - "name" : "--no-ansi", - "is_value_required" : false, - "shortcut" : "", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Disable ANSI output" - } - } - }, - "usage" : [ - "app:config:import" - ], - "name" : "app:config:import", - "hidden" : false, - "description" : "Import data from shared configuration files to appropriate data storage", - "help" : "Import data from shared configuration files to appropriate data storage" - }, - { - "description" : "Checks if config propagation requires update", - "help" : "Checks if config propagation requires update", - "name" : "app:config:status", - "usage" : [ - "app:config:status" - ], - "definition" : { - "arguments" : [], - "options" : { - "no-ansi" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Disable ANSI output", - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "" - }, - "help" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this help message", - "is_value_required" : false, - "name" : "--help", - "shortcut" : "-h" - }, - "version" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this application version", - "name" : "--version", - "is_value_required" : false, - "shortcut" : "-V" - }, - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "is_value_required" : false - }, - "quiet" : { - "description" : "Do not output any message", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet" - }, - "no-interaction" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Do not ask any interactive question", - "is_value_required" : false, - "name" : "--no-interaction", - "shortcut" : "-n" - }, - "ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "is_multiple" : false, - "default" : false, - "accept_value" : false - } - } - }, - "hidden" : false - }, - { - "hidden" : false, - "name" : "cache:clean", - "usage" : [ - "cache:clean [--bootstrap BOOTSTRAP] [--] [...]" - ], - "definition" : { - "options" : { - "no-interaction" : { - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false, - "description" : "Do not ask any interactive question", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "help" : { - "description" : "Display this help message", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help" - }, - "quiet" : { - "description" : "Do not output any message", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet" - }, - "verbose" : { - "name" : "--verbose", - "is_value_required" : false, - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "ansi" : { - "description" : "Force ANSI output", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--ansi" - }, - "bootstrap" : { - "shortcut" : "", - "is_value_required" : true, - "name" : "--bootstrap", - "description" : "add or override parameters of the bootstrap", - "is_multiple" : false, - "accept_value" : true, - "default" : null - }, - "no-ansi" : { - "shortcut" : "", - "name" : "--no-ansi", - "is_value_required" : false, - "description" : "Disable ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "version" : { - "description" : "Display this application version", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-V", - "is_value_required" : false, - "name" : "--version" - } - }, - "arguments" : { - "types" : { - "is_array" : true, - "name" : "types", - "is_required" : false, - "description" : "Space-separated list of cache types or omit to apply to all cache types.", - "default" : [] - } - } - }, - "help" : "Cleans cache type(s)", - "description" : "Cleans cache type(s)" - }, - { - "hidden" : false, - "definition" : { - "arguments" : { - "types" : { - "description" : "Space-separated list of cache types or omit to apply to all cache types.", - "default" : [], - "is_array" : true, - "is_required" : false, - "name" : "types" - } - }, - "options" : { - "version" : { - "name" : "--version", - "is_value_required" : false, - "shortcut" : "-V", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Display this application version" - }, - "no-ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "bootstrap" : { - "name" : "--bootstrap", - "is_value_required" : true, - "shortcut" : "", - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "add or override parameters of the bootstrap" - }, - "quiet" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "is_value_required" : false, - "shortcut" : "-q" - }, - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "is_value_required" : false - }, - "help" : { - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help", - "description" : "Display this help message", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "no-interaction" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction", - "is_value_required" : false, - "shortcut" : "-n" - } - } - }, - "name" : "cache:disable", - "usage" : [ - "cache:disable [--bootstrap BOOTSTRAP] [--] [...]" - ], - "help" : "Disables cache type(s)", - "description" : "Disables cache type(s)" - }, - { - "description" : "Enables cache type(s)", - "help" : "Enables cache type(s)", - "hidden" : false, - "definition" : { - "options" : { - "help" : { - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help", - "description" : "Display this help message", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "no-interaction" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Do not ask any interactive question", - "is_value_required" : false, - "name" : "--no-interaction", - "shortcut" : "-n" - }, - "no-ansi" : { - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Disable ANSI output" - }, - "version" : { - "description" : "Display this application version", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-V", - "is_value_required" : false, - "name" : "--version" - }, - "verbose" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv" - }, - "quiet" : { - "is_value_required" : false, - "name" : "--quiet", - "shortcut" : "-q", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Do not output any message" - }, - "bootstrap" : { - "shortcut" : "", - "name" : "--bootstrap", - "is_value_required" : true, - "description" : "add or override parameters of the bootstrap", - "default" : null, - "accept_value" : true, - "is_multiple" : false - }, - "ansi" : { - "description" : "Force ANSI output", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--ansi" - } - }, - "arguments" : { - "types" : { - "default" : [], - "description" : "Space-separated list of cache types or omit to apply to all cache types.", - "name" : "types", - "is_required" : false, - "is_array" : true - } - } - }, - "usage" : [ - "cache:enable [--bootstrap BOOTSTRAP] [--] [...]" - ], - "name" : "cache:enable" - }, - { - "description" : "Flushes cache storage used by cache type(s)", - "help" : "Flushes cache storage used by cache type(s)", - "definition" : { - "options" : { - "help" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Display this help message", - "name" : "--help", - "is_value_required" : false, - "shortcut" : "-h" - }, - "no-interaction" : { - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false, - "description" : "Do not ask any interactive question", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "version" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Display this application version", - "is_value_required" : false, - "name" : "--version", - "shortcut" : "-V" - }, - "no-ansi" : { - "description" : "Disable ANSI output", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "", - "name" : "--no-ansi", - "is_value_required" : false - }, - "bootstrap" : { - "shortcut" : "", - "is_value_required" : true, - "name" : "--bootstrap", - "description" : "add or override parameters of the bootstrap", - "default" : null, - "accept_value" : true, - "is_multiple" : false - }, - "ansi" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "" - }, - "verbose" : { - "name" : "--verbose", - "is_value_required" : false, - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "quiet" : { - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet", - "description" : "Do not output any message", - "is_multiple" : false, - "default" : false, - "accept_value" : false - } - }, - "arguments" : { - "types" : { - "description" : "Space-separated list of cache types or omit to apply to all cache types.", - "default" : [], - "is_array" : true, - "is_required" : false, - "name" : "types" - } - } - }, - "usage" : [ - "cache:flush [--bootstrap BOOTSTRAP] [--] [...]" - ], - "name" : "cache:flush", - "hidden" : false - }, - { - "help" : "Checks cache status", - "description" : "Checks cache status", - "hidden" : false, - "definition" : { - "arguments" : [], - "options" : { - "no-interaction" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Do not ask any interactive question", - "is_value_required" : false, - "name" : "--no-interaction", - "shortcut" : "-n" - }, - "help" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this help message", - "is_value_required" : false, - "name" : "--help", - "shortcut" : "-h" - }, - "bootstrap" : { - "is_value_required" : true, - "name" : "--bootstrap", - "shortcut" : "", - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "description" : "add or override parameters of the bootstrap" - }, - "ansi" : { - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Force ANSI output" - }, - "verbose" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose", - "is_value_required" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "quiet" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Do not output any message", - "is_value_required" : false, - "name" : "--quiet", - "shortcut" : "-q" - }, - "version" : { - "description" : "Display this application version", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-V", - "name" : "--version", - "is_value_required" : false - }, - "no-ansi" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Disable ANSI output", - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "" - } - } - }, - "name" : "cache:status", - "usage" : [ - "cache:status [--bootstrap BOOTSTRAP]" - ] - }, - { - "definition" : { - "arguments" : [], - "options" : { - "ansi" : { - "description" : "Force ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--ansi" - }, - "quiet" : { - "name" : "--quiet", - "is_value_required" : false, - "shortcut" : "-q", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Do not output any message" - }, - "no-interaction" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction", - "is_value_required" : false, - "shortcut" : "-n" - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "is_value_required" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "version" : { - "shortcut" : "-V", - "is_value_required" : false, - "name" : "--version", - "description" : "Display this application version", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "help" : { - "name" : "--help", - "is_value_required" : false, - "shortcut" : "-h", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this help message" - }, - "no-ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "is_multiple" : false, - "default" : false, - "accept_value" : false - } - } - }, - "name" : "catalog:images:resize", - "usage" : [ - "catalog:images:resize" - ], - "hidden" : false, - "description" : "Creates resized product images", - "help" : "Creates resized product images" - }, - { - "hidden" : false, - "definition" : { - "arguments" : [], - "options" : { - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "is_value_required" : false, - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "quiet" : { - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false, - "description" : "Do not output any message", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "no-interaction" : { - "shortcut" : "-n", - "is_value_required" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "no-ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "help" : { - "description" : "Display this help message", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-h", - "name" : "--help", - "is_value_required" : false - }, - "version" : { - "shortcut" : "-V", - "name" : "--version", - "is_value_required" : false, - "description" : "Display this application version", - "accept_value" : false, - "default" : false, - "is_multiple" : false - } - } - }, - "name" : "catalog:product:attributes:cleanup", - "usage" : [ - "catalog:product:attributes:cleanup" - ], - "help" : "Removes unused product attributes.", - "description" : "Removes unused product attributes." - }, - { - "help" : "Set sensitive configuration values", - "description" : "Set sensitive configuration values", - "hidden" : false, - "definition" : { - "arguments" : { - "path" : { - "description" : "Configuration path for example group/section/field_name", - "default" : null, - "is_array" : false, - "name" : "path", - "is_required" : false - }, - "value" : { - "is_required" : false, - "name" : "value", - "is_array" : false, - "default" : null, - "description" : "Configuration value" - } - }, - "options" : { - "ansi" : { - "is_value_required" : false, - "name" : "--ansi", - "shortcut" : "", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Force ANSI output" - }, - "scope-code" : { - "description" : "Scope code for configuration, empty string by default", - "is_multiple" : false, - "default" : "", - "accept_value" : true, - "shortcut" : "", - "name" : "--scope-code", - "is_value_required" : false - }, - "quiet" : { - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet", - "description" : "Do not output any message", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "is_value_required" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "version" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Display this application version", - "is_value_required" : false, - "name" : "--version", - "shortcut" : "-V" - }, - "no-ansi" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_value_required" : false, - "shortcut" : "" - }, - "scope" : { - "is_value_required" : false, - "name" : "--scope", - "shortcut" : "", - "is_multiple" : false, - "accept_value" : true, - "default" : "default", - "description" : "Scope for configuration, if not set use 'default'" - }, - "no-interaction" : { - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false, - "description" : "Do not ask any interactive question", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "interactive" : { - "shortcut" : "-i", - "is_value_required" : false, - "name" : "--interactive", - "description" : "Enable interactive mode to set all sensitive variables", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "help" : { - "shortcut" : "-h", - "name" : "--help", - "is_value_required" : false, - "description" : "Display this help message", - "default" : false, - "accept_value" : false, - "is_multiple" : false - } - } - }, - "usage" : [ - "config:sensitive:set [-i|--interactive] [--scope [SCOPE]] [--scope-code [SCOPE-CODE]] [--] [ []]" - ], - "name" : "config:sensitive:set" - }, - { - "description" : "Change system configuration", - "help" : "Change system configuration", - "hidden" : false, - "definition" : { - "options" : { - "quiet" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "is_value_required" : false, - "shortcut" : "-q" - }, - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "is_value_required" : false - }, - "ansi" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "" - }, - "scope-code" : { - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "Scope code (required only if scope is not 'default')", - "name" : "--scope-code", - "is_value_required" : true, - "shortcut" : "" - }, - "no-ansi" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Disable ANSI output", - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "" - }, - "lock-env" : { - "description" : "Lock value which prevents modification in the Admin (will be saved in app/etc/env.php)", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-e", - "is_value_required" : false, - "name" : "--lock-env" - }, - "version" : { - "description" : "Display this application version", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-V", - "is_value_required" : false, - "name" : "--version" - }, - "no-interaction" : { - "description" : "Do not ask any interactive question", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-n", - "is_value_required" : false, - "name" : "--no-interaction" - }, - "lock-config" : { - "shortcut" : "-c", - "is_value_required" : false, - "name" : "--lock-config", - "description" : "Lock and share value with other installations, prevents modification in the Admin (will be saved in app/etc/config.php)", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "scope" : { - "name" : "--scope", - "is_value_required" : true, - "shortcut" : "", - "is_multiple" : false, - "default" : "default", - "accept_value" : true, - "description" : "Configuration scope (default, website, or store)" - }, - "help" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Display this help message", - "name" : "--help", - "is_value_required" : false, - "shortcut" : "-h" - }, - "lock" : { - "shortcut" : "-l", - "is_value_required" : false, - "name" : "--lock", - "description" : "Deprecated, use the --lock-env option instead.", - "is_multiple" : false, - "accept_value" : false, - "default" : false - } - }, - "arguments" : { - "path" : { - "is_array" : false, - "name" : "path", - "is_required" : true, - "description" : "Configuration path in format section/group/field_name", - "default" : null - }, - "value" : { - "description" : "Configuration value", - "default" : null, - "is_array" : false, - "is_required" : true, - "name" : "value" - } - } - }, - "name" : "config:set", - "usage" : [ - "config:set [--scope SCOPE] [--scope-code SCOPE-CODE] [-e|--lock-env] [-c|--lock-config] [-l|--lock] [--] " - ] - }, - { - "hidden" : false, - "name" : "config:show", - "usage" : [ - "config:show [--scope [SCOPE]] [--scope-code [SCOPE-CODE]] [--] []" - ], - "definition" : { - "options" : { - "no-ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "version" : { - "name" : "--version", - "is_value_required" : false, - "shortcut" : "-V", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Display this application version" - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "is_value_required" : false, - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "quiet" : { - "description" : "Do not output any message", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet" - }, - "scope-code" : { - "is_multiple" : false, - "accept_value" : true, - "default" : "", - "description" : "Scope code (required only if scope is not `default`)", - "is_value_required" : false, - "name" : "--scope-code", - "shortcut" : "" - }, - "ansi" : { - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Force ANSI output" - }, - "help" : { - "description" : "Display this help message", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help" - }, - "no-interaction" : { - "is_value_required" : false, - "name" : "--no-interaction", - "shortcut" : "-n", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Do not ask any interactive question" - }, - "scope" : { - "is_value_required" : false, - "name" : "--scope", - "shortcut" : "", - "is_multiple" : false, - "accept_value" : true, - "default" : "default", - "description" : "Scope for configuration, if not specified, then 'default' scope will be used" - } - }, - "arguments" : { - "path" : { - "default" : null, - "description" : "Configuration path, for example section_id/group_id/field_id", - "is_required" : false, - "name" : "path", - "is_array" : false - } - } - }, - "description" : "Shows configuration value for given path. If path is not specified, all saved values will be shown", - "help" : "Shows configuration value for given path. If path is not specified, all saved values will be shown" - }, - { - "help" : "Generates and installs crontab for current user", - "description" : "Generates and installs crontab for current user", - "definition" : { - "options" : { - "no-ansi" : { - "shortcut" : "", - "name" : "--no-ansi", - "is_value_required" : false, - "description" : "Disable ANSI output", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "version" : { - "description" : "Display this application version", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-V", - "name" : "--version", - "is_value_required" : false - }, - "verbose" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv" - }, - "non-optional" : { - "description" : "Install only the non-optional (default) tasks", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-d", - "is_value_required" : false, - "name" : "--non-optional" - }, - "quiet" : { - "description" : "Do not output any message", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet" - }, - "ansi" : { - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Force ANSI output" - }, - "help" : { - "description" : "Display this help message", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help" - }, - "force" : { - "description" : "Force install tasks", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-f", - "is_value_required" : false, - "name" : "--force" - }, - "no-interaction" : { - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false, - "description" : "Do not ask any interactive question", - "is_multiple" : false, - "default" : false, - "accept_value" : false - } - }, - "arguments" : [] - }, - "name" : "cron:install", - "usage" : [ - "cron:install [-f|--force] [-d|--non-optional]" - ], - "hidden" : false - }, - { - "hidden" : false, - "definition" : { - "options" : { - "help" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Display this help message", - "name" : "--help", - "is_value_required" : false, - "shortcut" : "-h" - }, - "no-ansi" : { - "description" : "Disable ANSI output", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--no-ansi" - }, - "version" : { - "shortcut" : "-V", - "name" : "--version", - "is_value_required" : false, - "description" : "Display this application version", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "quiet" : { - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false, - "description" : "Do not output any message", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "no-interaction" : { - "shortcut" : "-n", - "is_value_required" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-v|-vv|-vvv", - "is_value_required" : false, - "name" : "--verbose" - }, - "ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "is_multiple" : false, - "accept_value" : false, - "default" : false - } - }, - "arguments" : [] - }, - "usage" : [ - "cron:remove" - ], - "name" : "cron:remove", - "help" : "Removes tasks from crontab", - "description" : "Removes tasks from crontab" - }, - { - "help" : "Runs jobs by schedule", - "description" : "Runs jobs by schedule", - "definition" : { - "arguments" : [], - "options" : { - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "is_value_required" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "quiet" : { - "description" : "Do not output any message", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false - }, - "bootstrap" : { - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "description" : "Add or override parameters of the bootstrap", - "name" : "--bootstrap", - "is_value_required" : true, - "shortcut" : "" - }, - "ansi" : { - "is_value_required" : false, - "name" : "--ansi", - "shortcut" : "", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Force ANSI output" - }, - "no-ansi" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_value_required" : false, - "shortcut" : "" - }, - "version" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Display this application version", - "is_value_required" : false, - "name" : "--version", - "shortcut" : "-V" - }, - "group" : { - "description" : "Run jobs only from specified group", - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "shortcut" : "", - "name" : "--group", - "is_value_required" : true - }, - "no-interaction" : { - "description" : "Do not ask any interactive question", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false - }, - "help" : { - "description" : "Display this help message", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help" - } - } - }, - "name" : "cron:run", - "usage" : [ - "cron:run [--group GROUP] [--bootstrap BOOTSTRAP]" - ], - "hidden" : false - }, - { - "hidden" : false, - "definition" : { - "arguments" : [], - "options" : { - "help" : { - "shortcut" : "-h", - "name" : "--help", - "is_value_required" : false, - "description" : "Display this help message", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "no-ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "version" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Display this application version", - "is_value_required" : false, - "name" : "--version", - "shortcut" : "-V" - }, - "quiet" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "is_value_required" : false, - "shortcut" : "-q" - }, - "no-interaction" : { - "shortcut" : "-n", - "is_value_required" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "verbose" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv" - }, - "ansi" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Force ANSI output", - "is_value_required" : false, - "name" : "--ansi", - "shortcut" : "" - } - } - }, - "name" : "customer:hash:upgrade", - "usage" : [ - "customer:hash:upgrade" - ], - "description" : "Upgrade customer's hash according to the latest algorithm", - "help" : "Upgrade customer's hash according to the latest algorithm" - }, - { - "hidden" : false, - "name" : "deploy:mode:set", - "usage" : [ - "deploy:mode:set [-s|--skip-compilation] [--] " - ], - "definition" : { - "options" : { - "no-ansi" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_value_required" : false, - "shortcut" : "" - }, - "version" : { - "shortcut" : "-V", - "name" : "--version", - "is_value_required" : false, - "description" : "Display this application version", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-v|-vv|-vvv", - "is_value_required" : false, - "name" : "--verbose" - }, - "quiet" : { - "description" : "Do not output any message", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false - }, - "ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "help" : { - "description" : "Display this help message", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help" - }, - "no-interaction" : { - "shortcut" : "-n", - "is_value_required" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "skip-compilation" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Skips the clearing and regeneration of static content (generated code, preprocessed CSS, and assets in pub/static/)", - "name" : "--skip-compilation", - "is_value_required" : false, - "shortcut" : "-s" - } - }, - "arguments" : { - "mode" : { - "description" : "The application mode to set. Available options are \"developer\" or \"production\"", - "default" : null, - "is_array" : false, - "name" : "mode", - "is_required" : true - } - } - }, - "help" : "Set application mode.", - "description" : "Set application mode." - }, - { - "definition" : { - "options" : { - "help" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Display this help message", - "is_value_required" : false, - "name" : "--help", - "shortcut" : "-h" - }, - "no-ansi" : { - "name" : "--no-ansi", - "is_value_required" : false, - "shortcut" : "", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Disable ANSI output" - }, - "version" : { - "name" : "--version", - "is_value_required" : false, - "shortcut" : "-V", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Display this application version" - }, - "no-interaction" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction", - "is_value_required" : false, - "shortcut" : "-n" - }, - "quiet" : { - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet", - "description" : "Do not output any message", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "verbose" : { - "name" : "--verbose", - "is_value_required" : false, - "shortcut" : "-v|-vv|-vvv", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "is_multiple" : false, - "default" : false, - "accept_value" : false - } - }, - "arguments" : [] - }, - "usage" : [ - "deploy:mode:show" - ], - "name" : "deploy:mode:show", - "hidden" : false, - "description" : "Displays current application mode.", - "help" : "Displays current application mode." - }, - { - "usage" : [ - "dev:di:info " - ], - "name" : "dev:di:info", - "definition" : { - "options" : { - "version" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Display this application version", - "is_value_required" : false, - "name" : "--version", - "shortcut" : "-V" - }, - "no-ansi" : { - "shortcut" : "", - "name" : "--no-ansi", - "is_value_required" : false, - "description" : "Disable ANSI output", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "help" : { - "name" : "--help", - "is_value_required" : false, - "shortcut" : "-h", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Display this help message" - }, - "ansi" : { - "is_value_required" : false, - "name" : "--ansi", - "shortcut" : "", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Force ANSI output" - }, - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "is_value_required" : false - }, - "no-interaction" : { - "name" : "--no-interaction", - "is_value_required" : false, - "shortcut" : "-n", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Do not ask any interactive question" - }, - "quiet" : { - "name" : "--quiet", - "is_value_required" : false, - "shortcut" : "-q", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Do not output any message" - } - }, - "arguments" : { - "class" : { - "is_required" : true, - "name" : "class", - "is_array" : false, - "default" : null, - "description" : "Class name" - } - } - }, - "hidden" : false, - "help" : "Provides information on Dependency Injection configuration for the Command.", - "description" : "Provides information on Dependency Injection configuration for the Command." - }, - { - "help" : "Disable the profiler.", - "description" : "Disable the profiler.", - "usage" : [ - "dev:profiler:disable" - ], - "name" : "dev:profiler:disable", - "definition" : { - "arguments" : [], - "options" : { - "help" : { - "description" : "Display this help message", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-h", - "name" : "--help", - "is_value_required" : false - }, - "no-ansi" : { - "description" : "Disable ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--no-ansi" - }, - "version" : { - "description" : "Display this application version", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-V", - "name" : "--version", - "is_value_required" : false - }, - "no-interaction" : { - "description" : "Do not ask any interactive question", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false - }, - "quiet" : { - "is_value_required" : false, - "name" : "--quiet", - "shortcut" : "-q", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Do not output any message" - }, - "verbose" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose", - "is_value_required" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "ansi" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "" - } - } - }, - "hidden" : false - }, - { - "description" : "Enable the profiler.", - "help" : "Enable the profiler.", - "hidden" : false, - "definition" : { - "options" : { - "version" : { - "description" : "Display this application version", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-V", - "is_value_required" : false, - "name" : "--version" - }, - "help" : { - "shortcut" : "-h", - "name" : "--help", - "is_value_required" : false, - "description" : "Display this help message", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "no-ansi" : { - "description" : "Disable ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--no-ansi" - }, - "ansi" : { - "description" : "Force ANSI output", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--ansi" - }, - "quiet" : { - "description" : "Do not output any message", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false - }, - "no-interaction" : { - "description" : "Do not ask any interactive question", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "is_value_required" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "accept_value" : false, - "is_multiple" : false - } - }, - "arguments" : { - "type" : { - "name" : "type", - "is_required" : false, - "is_array" : false, - "default" : null, - "description" : "Profiler type" - } - } - }, - "name" : "dev:profiler:enable", - "usage" : [ - "dev:profiler:enable []" - ] - }, - { - "help" : "Disable DB query logging", - "description" : "Disable DB query logging", - "hidden" : false, - "definition" : { - "options" : { - "version" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this application version", - "is_value_required" : false, - "name" : "--version", - "shortcut" : "-V" - }, - "no-ansi" : { - "description" : "Disable ANSI output", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--no-ansi" - }, - "help" : { - "name" : "--help", - "is_value_required" : false, - "shortcut" : "-h", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this help message" - }, - "ansi" : { - "description" : "Force ANSI output", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--ansi" - }, - "verbose" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv" - }, - "quiet" : { - "description" : "Do not output any message", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false - }, - "no-interaction" : { - "name" : "--no-interaction", - "is_value_required" : false, - "shortcut" : "-n", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Do not ask any interactive question" - } - }, - "arguments" : [] - }, - "usage" : [ - "dev:query-log:disable" - ], - "name" : "dev:query-log:disable" - }, - { - "help" : "Enable DB query logging", - "description" : "Enable DB query logging", - "hidden" : false, - "definition" : { - "options" : { - "version" : { - "shortcut" : "-V", - "name" : "--version", - "is_value_required" : false, - "description" : "Display this application version", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "query-time-threshold" : { - "shortcut" : "", - "name" : "--query-time-threshold", - "is_value_required" : false, - "description" : "Query time thresholds.", - "accept_value" : true, - "default" : "0.001", - "is_multiple" : false - }, - "no-ansi" : { - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Disable ANSI output" - }, - "include-all-queries" : { - "description" : "Log all queries. [true|false]", - "is_multiple" : false, - "accept_value" : true, - "default" : "true", - "shortcut" : "", - "name" : "--include-all-queries", - "is_value_required" : false - }, - "ansi" : { - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Force ANSI output" - }, - "verbose" : { - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "quiet" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "is_value_required" : false, - "shortcut" : "-q" - }, - "help" : { - "is_value_required" : false, - "name" : "--help", - "shortcut" : "-h", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Display this help message" - }, - "include-call-stack" : { - "shortcut" : "", - "name" : "--include-call-stack", - "is_value_required" : false, - "description" : "Include call stack. [true|false]", - "default" : "true", - "accept_value" : true, - "is_multiple" : false - }, - "no-interaction" : { - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false, - "description" : "Do not ask any interactive question", - "is_multiple" : false, - "accept_value" : false, - "default" : false - } - }, - "arguments" : [] - }, - "name" : "dev:query-log:enable", - "usage" : [ - "dev:query-log:enable [--include-all-queries [INCLUDE-ALL-QUERIES]] [--query-time-threshold [QUERY-TIME-THRESHOLD]] [--include-call-stack [INCLUDE-CALL-STACK]]" - ] - }, - { - "description" : "Collects and publishes source files for theme.", - "help" : "Collects and publishes source files for theme.", - "hidden" : false, - "definition" : { - "arguments" : { - "file" : { - "name" : "file", - "is_required" : false, - "is_array" : true, - "default" : [ - "css/styles-m", - "css/styles-l" - ], - "description" : "Files to pre-process (file should be specified without extension)" - } - }, - "options" : { - "type" : { - "shortcut" : "", - "name" : "--type", - "is_value_required" : true, - "description" : "Type of source files: [less]", - "accept_value" : true, - "default" : "less", - "is_multiple" : false - }, - "help" : { - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help", - "description" : "Display this help message", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "locale" : { - "accept_value" : true, - "default" : "en_US", - "is_multiple" : false, - "description" : "Locale: [en_US]", - "is_value_required" : true, - "name" : "--locale", - "shortcut" : "" - }, - "no-interaction" : { - "description" : "Do not ask any interactive question", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-n", - "is_value_required" : false, - "name" : "--no-interaction" - }, - "theme" : { - "description" : "Theme: [Vendor/theme]", - "accept_value" : true, - "default" : "Magento/luma", - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : true, - "name" : "--theme" - }, - "version" : { - "description" : "Display this application version", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-V", - "name" : "--version", - "is_value_required" : false - }, - "no-ansi" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_value_required" : false, - "shortcut" : "" - }, - "ansi" : { - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Force ANSI output" - }, - "area" : { - "description" : "Area: [frontend|adminhtml]", - "accept_value" : true, - "default" : "frontend", - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : true, - "name" : "--area" - }, - "quiet" : { - "description" : "Do not output any message", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet" - }, - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "is_value_required" : false - } - } - }, - "name" : "dev:source-theme:deploy", - "usage" : [ - "dev:source-theme:deploy [--type TYPE] [--locale LOCALE] [--area AREA] [--theme THEME] [--] [...]" - ] - }, - { - "description" : "Disable frontend template hints. A cache flush might be required.", - "help" : "Disable frontend template hints. A cache flush might be required.", - "hidden" : false, - "name" : "dev:template-hints:disable", - "usage" : [ - "dev:template-hints:disable" - ], - "definition" : { - "arguments" : [], - "options" : { - "ansi" : { - "description" : "Force ANSI output", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "", - "name" : "--ansi", - "is_value_required" : false - }, - "verbose" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv" - }, - "no-interaction" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Do not ask any interactive question", - "is_value_required" : false, - "name" : "--no-interaction", - "shortcut" : "-n" - }, - "quiet" : { - "description" : "Do not output any message", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet" - }, - "version" : { - "description" : "Display this application version", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-V", - "name" : "--version", - "is_value_required" : false - }, - "no-ansi" : { - "description" : "Disable ANSI output", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--no-ansi" - }, - "help" : { - "is_value_required" : false, - "name" : "--help", - "shortcut" : "-h", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Display this help message" - } - } - } - }, - { - "description" : "Enable frontend template hints. A cache flush might be required.", - "help" : "Enable frontend template hints. A cache flush might be required.", - "hidden" : false, - "name" : "dev:template-hints:enable", - "usage" : [ - "dev:template-hints:enable" - ], - "definition" : { - "arguments" : [], - "options" : { - "version" : { - "is_value_required" : false, - "name" : "--version", - "shortcut" : "-V", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Display this application version" - }, - "no-ansi" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Disable ANSI output", - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "" - }, - "help" : { - "is_value_required" : false, - "name" : "--help", - "shortcut" : "-h", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Display this help message" - }, - "ansi" : { - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Force ANSI output" - }, - "verbose" : { - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "no-interaction" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction", - "is_value_required" : false, - "shortcut" : "-n" - }, - "quiet" : { - "is_value_required" : false, - "name" : "--quiet", - "shortcut" : "-q", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Do not output any message" - } - } - } - }, - { - "description" : "Runs tests", - "help" : "Runs tests", - "usage" : [ - "dev:tests:run [-c|--arguments ARGUMENTS] [--] []" - ], - "name" : "dev:tests:run", - "definition" : { - "options" : { - "no-interaction" : { - "name" : "--no-interaction", - "is_value_required" : false, - "shortcut" : "-n", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Do not ask any interactive question" - }, - "arguments" : { - "accept_value" : true, - "default" : "", - "is_multiple" : false, - "description" : "Additional arguments for PHPUnit. Example: \"-c'--filter=MyTest'\" (no spaces)", - "name" : "--arguments", - "is_value_required" : true, - "shortcut" : "-c" - }, - "help" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this help message", - "name" : "--help", - "is_value_required" : false, - "shortcut" : "-h" - }, - "quiet" : { - "description" : "Do not output any message", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false - }, - "verbose" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose", - "is_value_required" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "ansi" : { - "description" : "Force ANSI output", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "", - "name" : "--ansi", - "is_value_required" : false - }, - "no-ansi" : { - "description" : "Disable ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "", - "name" : "--no-ansi", - "is_value_required" : false - }, - "version" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this application version", - "name" : "--version", - "is_value_required" : false, - "shortcut" : "-V" - } - }, - "arguments" : { - "type" : { - "default" : "default", - "description" : "Type of test to run. Available types: all, unit, integration, integration-all, static, static-all, integrity, legacy, default", - "is_required" : false, - "name" : "type", - "is_array" : false - } - } - }, - "hidden" : false - }, - { - "hidden" : false, - "name" : "dev:urn-catalog:generate", - "usage" : [ - "dev:urn-catalog:generate [--ide IDE] [--] " - ], - "definition" : { - "options" : { - "no-ansi" : { - "description" : "Disable ANSI output", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "", - "name" : "--no-ansi", - "is_value_required" : false - }, - "version" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this application version", - "is_value_required" : false, - "name" : "--version", - "shortcut" : "-V" - }, - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-v|-vv|-vvv", - "is_value_required" : false, - "name" : "--verbose" - }, - "quiet" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Do not output any message", - "is_value_required" : false, - "name" : "--quiet", - "shortcut" : "-q" - }, - "ide" : { - "is_multiple" : false, - "accept_value" : true, - "default" : "phpstorm", - "description" : "Format in which catalog will be generated. Supported: [phpstorm]", - "name" : "--ide", - "is_value_required" : true, - "shortcut" : "" - }, - "ansi" : { - "shortcut" : "", - "name" : "--ansi", - "is_value_required" : false, - "description" : "Force ANSI output", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "help" : { - "shortcut" : "-h", - "name" : "--help", - "is_value_required" : false, - "description" : "Display this help message", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "no-interaction" : { - "description" : "Do not ask any interactive question", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-n", - "is_value_required" : false, - "name" : "--no-interaction" - } - }, - "arguments" : { - "path" : { - "description" : "Path to file to output the catalog. For PhpStorm use .idea/misc.xml", - "default" : null, - "is_array" : false, - "is_required" : true, - "name" : "path" - } - } - }, - "description" : "Generates the catalog of URNs to *.xsd mappings for the IDE to highlight xml.", - "help" : "Generates the catalog of URNs to *.xsd mappings for the IDE to highlight xml." - }, - { - "name" : "dev:xml:convert", - "usage" : [ - "dev:xml:convert [-o|--overwrite] [--] " - ], - "definition" : { - "options" : { - "verbose" : { - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "quiet" : { - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false, - "description" : "Do not output any message", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "ansi" : { - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Force ANSI output" - }, - "no-ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "version" : { - "is_value_required" : false, - "name" : "--version", - "shortcut" : "-V", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Display this application version" - }, - "no-interaction" : { - "shortcut" : "-n", - "is_value_required" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "help" : { - "shortcut" : "-h", - "name" : "--help", - "is_value_required" : false, - "description" : "Display this help message", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "overwrite" : { - "is_value_required" : false, - "name" : "--overwrite", - "shortcut" : "-o", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Overwrite XML file" - } - }, - "arguments" : { - "processor" : { - "is_array" : false, - "is_required" : true, - "name" : "processor", - "description" : "Path to XSL style sheet that going to be applied to XML file", - "default" : null - }, - "xml-file" : { - "is_array" : false, - "name" : "xml-file", - "is_required" : true, - "description" : "Path to XML file that going to be transformed", - "default" : null - } - } - }, - "hidden" : false, - "description" : "Converts XML file using XSL style sheets", - "help" : "Converts XML file using XSL style sheets" - }, - { - "help" : "Auto-map data fields", - "description" : "Auto-map data fields", - "hidden" : false, - "definition" : { - "arguments" : [], - "options" : { - "version" : { - "shortcut" : "-V", - "name" : "--version", - "is_value_required" : false, - "description" : "Display this application version", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "help" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Display this help message", - "is_value_required" : false, - "name" : "--help", - "shortcut" : "-h" - }, - "no-ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "ansi" : { - "is_value_required" : false, - "name" : "--ansi", - "shortcut" : "", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Force ANSI output" - }, - "quiet" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "is_value_required" : false, - "shortcut" : "-q" - }, - "no-interaction" : { - "description" : "Do not ask any interactive question", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false - }, - "verbose" : { - "name" : "--verbose", - "is_value_required" : false, - "shortcut" : "-v|-vv|-vvv", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - } - } - }, - "name" : "dotdigital:connector:automap", - "usage" : [ - "dotdigital:connector:automap" - ] - }, - { - "hidden" : false, - "definition" : { - "options" : { - "remove-ip-restriction" : { - "description" : "Remove IP restriction", - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "shortcut" : "", - "name" : "--remove-ip-restriction", - "is_value_required" : false - }, - "verbose" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv" - }, - "quiet" : { - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet", - "description" : "Do not output any message", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "username" : { - "shortcut" : "", - "name" : "--username", - "is_value_required" : true, - "description" : "API username", - "accept_value" : true, - "default" : null, - "is_multiple" : false - }, - "ansi" : { - "description" : "Force ANSI output", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "", - "name" : "--ansi", - "is_value_required" : false - }, - "password" : { - "description" : "API password", - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "shortcut" : "", - "is_value_required" : true, - "name" : "--password" - }, - "no-ansi" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_value_required" : false, - "shortcut" : "" - }, - "automap-datafields" : { - "name" : "--automap-datafields", - "is_value_required" : false, - "shortcut" : "", - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "description" : "Automap data fields" - }, - "version" : { - "shortcut" : "-V", - "is_value_required" : false, - "name" : "--version", - "description" : "Display this application version", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "enable-syncs" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--enable-syncs", - "description" : "Enable syncs", - "is_multiple" : false, - "default" : null, - "accept_value" : true - }, - "no-interaction" : { - "shortcut" : "-n", - "is_value_required" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "help" : { - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help", - "description" : "Display this help message", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "enable-email-capture" : { - "description" : "Enable email capture", - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "shortcut" : "", - "is_value_required" : false, - "name" : "--enable-email-capture" - } - }, - "arguments" : [] - }, - "name" : "dotdigital:connector:enable", - "usage" : [ - "dotdigital:connector:enable [--username USERNAME] [--password PASSWORD] [--automap-datafields [AUTOMAP-DATAFIELDS]] [--enable-syncs [ENABLE-SYNCS]] [--remove-ip-restriction [REMOVE-IP-RESTRICTION]] [--enable-email-capture [ENABLE-EMAIL-CAPTURE]]" - ], - "description" : "Add Dotdigital API credentials and enable the connector", - "help" : "Add Dotdigital API credentials and enable the connector" - }, - { - "description" : "Migrate data into email_ tables to sync with Engagement Cloud", - "help" : "Migrate data into email_ tables to sync with Engagement Cloud", - "definition" : { - "options" : { - "no-ansi" : { - "description" : "Disable ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--no-ansi" - }, - "help" : { - "name" : "--help", - "is_value_required" : false, - "shortcut" : "-h", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this help message" - }, - "version" : { - "description" : "Display this application version", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-V", - "is_value_required" : false, - "name" : "--version" - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "is_value_required" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "quiet" : { - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false, - "description" : "Do not output any message", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "no-interaction" : { - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false, - "description" : "Do not ask any interactive question", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "ansi" : { - "is_value_required" : false, - "name" : "--ansi", - "shortcut" : "", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Force ANSI output" - } - }, - "arguments" : [] - }, - "name" : "dotdigital:migrate", - "usage" : [ - "dotdigital:migrate" - ], - "hidden" : false - }, - { - "hidden" : false, - "usage" : [ - "dotdigital:sync [--from [FROM]] [--] []" - ], - "name" : "dotdigital:sync", - "definition" : { - "options" : { - "no-ansi" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Disable ANSI output", - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "" - }, - "version" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Display this application version", - "is_value_required" : false, - "name" : "--version", - "shortcut" : "-V" - }, - "quiet" : { - "description" : "Do not output any message", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false - }, - "verbose" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv" - }, - "ansi" : { - "is_value_required" : false, - "name" : "--ansi", - "shortcut" : "", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Force ANSI output" - }, - "from" : { - "is_value_required" : false, - "name" : "--from", - "shortcut" : "", - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "description" : "Specify a date/time (parsable by \\DateTime) to run a sync from (if supported)" - }, - "help" : { - "description" : "Display this help message", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-h", - "name" : "--help", - "is_value_required" : false - }, - "no-interaction" : { - "name" : "--no-interaction", - "is_value_required" : false, - "shortcut" : "-n", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Do not ask any interactive question" - } - }, - "arguments" : { - "sync" : { - "description" : "The name of the sync to run", - "default" : null, - "is_array" : false, - "name" : "sync", - "is_required" : false - } - } - }, - "help" : "Run syncs to populate email_ tables before importing to Engagement Cloud", - "description" : "Run syncs to populate email_ tables before importing to Engagement Cloud" - }, - { - "description" : "Add domains to the downloadable domains whitelist", - "help" : "Add domains to the downloadable domains whitelist", - "hidden" : false, - "definition" : { - "options" : { - "ansi" : { - "description" : "Force ANSI output", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "", - "name" : "--ansi", - "is_value_required" : false - }, - "verbose" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv" - }, - "quiet" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "is_value_required" : false, - "shortcut" : "-q" - }, - "no-interaction" : { - "name" : "--no-interaction", - "is_value_required" : false, - "shortcut" : "-n", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Do not ask any interactive question" - }, - "version" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Display this application version", - "is_value_required" : false, - "name" : "--version", - "shortcut" : "-V" - }, - "no-ansi" : { - "description" : "Disable ANSI output", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--no-ansi" - }, - "help" : { - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help", - "description" : "Display this help message", - "default" : false, - "accept_value" : false, - "is_multiple" : false - } - }, - "arguments" : { - "domains" : { - "description" : "Domains name", - "default" : [], - "is_array" : true, - "name" : "domains", - "is_required" : false - } - } - }, - "usage" : [ - "downloadable:domains:add [...]" - ], - "name" : "downloadable:domains:add" - }, - { - "name" : "downloadable:domains:remove", - "usage" : [ - "downloadable:domains:remove [...]" - ], - "definition" : { - "options" : { - "ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "verbose" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv" - }, - "quiet" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "is_value_required" : false, - "shortcut" : "-q" - }, - "no-interaction" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction", - "is_value_required" : false, - "shortcut" : "-n" - }, - "version" : { - "shortcut" : "-V", - "is_value_required" : false, - "name" : "--version", - "description" : "Display this application version", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "no-ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "help" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Display this help message", - "is_value_required" : false, - "name" : "--help", - "shortcut" : "-h" - } - }, - "arguments" : { - "domains" : { - "description" : "Domain names", - "default" : [], - "is_array" : true, - "is_required" : false, - "name" : "domains" - } - } - }, - "hidden" : false, - "help" : "Remove domains from the downloadable domains whitelist", - "description" : "Remove domains from the downloadable domains whitelist" - }, - { - "help" : "Display downloadable domains whitelist", - "description" : "Display downloadable domains whitelist", - "hidden" : false, - "definition" : { - "options" : { - "verbose" : { - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "quiet" : { - "description" : "Do not output any message", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false - }, - "no-interaction" : { - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false, - "description" : "Do not ask any interactive question", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "ansi" : { - "description" : "Force ANSI output", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--ansi" - }, - "no-ansi" : { - "name" : "--no-ansi", - "is_value_required" : false, - "shortcut" : "", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Disable ANSI output" - }, - "help" : { - "is_value_required" : false, - "name" : "--help", - "shortcut" : "-h", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this help message" - }, - "version" : { - "description" : "Display this application version", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-V", - "is_value_required" : false, - "name" : "--version" - } - }, - "arguments" : [] - }, - "usage" : [ - "downloadable:domains:show" - ], - "name" : "downloadable:domains:show" - }, - { - "description" : "Re-encrypts encrypted credit card data with latest encryption cipher.", - "help" : "Re-encrypts encrypted credit card data with latest encryption cipher.", - "usage" : [ - "encryption:payment-data:update" - ], - "name" : "encryption:payment-data:update", - "definition" : { - "options" : { - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "is_value_required" : false - }, - "quiet" : { - "description" : "Do not output any message", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet" - }, - "no-interaction" : { - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false, - "description" : "Do not ask any interactive question", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "ansi" : { - "shortcut" : "", - "name" : "--ansi", - "is_value_required" : false, - "description" : "Force ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "no-ansi" : { - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Disable ANSI output" - }, - "help" : { - "shortcut" : "-h", - "name" : "--help", - "is_value_required" : false, - "description" : "Display this help message", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "version" : { - "is_value_required" : false, - "name" : "--version", - "shortcut" : "-V", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Display this application version" - } - }, - "arguments" : [] - }, - "hidden" : false - }, - { - "hidden" : false, - "definition" : { - "options" : { - "help" : { - "description" : "Display this help message", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-h", - "name" : "--help", - "is_value_required" : false - }, - "magento" : { - "name" : "--magento", - "is_value_required" : false, - "shortcut" : "-m", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Use the --magento parameter to parse the current Magento codebase. Omit the parameter if a directory is specified." - }, - "no-interaction" : { - "name" : "--no-interaction", - "is_value_required" : false, - "shortcut" : "-n", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Do not ask any interactive question" - }, - "output" : { - "shortcut" : "-o", - "is_value_required" : true, - "name" : "--output", - "description" : "Path (including filename) to an output file. With no file specified, defaults to stdout.", - "is_multiple" : false, - "accept_value" : true, - "default" : null - }, - "no-ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "version" : { - "name" : "--version", - "is_value_required" : false, - "shortcut" : "-V", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Display this application version" - }, - "quiet" : { - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false, - "description" : "Do not output any message", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "is_value_required" : false, - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "ansi" : { - "is_value_required" : false, - "name" : "--ansi", - "shortcut" : "", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Force ANSI output" - } - }, - "arguments" : { - "directory" : { - "default" : null, - "description" : "Directory path to parse. Not needed if --magento flag is set", - "name" : "directory", - "is_required" : false, - "is_array" : false - } - } - }, - "usage" : [ - "i18n:collect-phrases [-o|--output OUTPUT] [-m|--magento] [--] []" - ], - "name" : "i18n:collect-phrases", - "description" : "Discovers phrases in the codebase", - "help" : "Discovers phrases in the codebase" - }, - { - "help" : "Saves language package", - "description" : "Saves language package", - "hidden" : false, - "name" : "i18n:pack", - "usage" : [ - "i18n:pack [-m|--mode MODE] [-d|--allow-duplicates] [--] " - ], - "definition" : { - "arguments" : { - "locale" : { - "default" : null, - "description" : "Target locale for dictionary, for example \"de_DE\"", - "is_required" : true, - "name" : "locale", - "is_array" : false - }, - "source" : { - "name" : "source", - "is_required" : true, - "is_array" : false, - "default" : null, - "description" : "Path to source dictionary file with translations" - } - }, - "options" : { - "verbose" : { - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "quiet" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Do not output any message", - "is_value_required" : false, - "name" : "--quiet", - "shortcut" : "-q" - }, - "ansi" : { - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Force ANSI output" - }, - "no-ansi" : { - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Disable ANSI output" - }, - "version" : { - "shortcut" : "-V", - "name" : "--version", - "is_value_required" : false, - "description" : "Display this application version", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "allow-duplicates" : { - "shortcut" : "-d", - "is_value_required" : false, - "name" : "--allow-duplicates", - "description" : "Use the --allow-duplicates parameter to allow saving duplicates of translate. Otherwise omit the parameter.", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "mode" : { - "default" : "replace", - "accept_value" : true, - "is_multiple" : false, - "description" : "Save mode for dictionary - \"replace\" - replace language pack by new one - \"merge\" - merge language packages, by default \"replace\"", - "is_value_required" : true, - "name" : "--mode", - "shortcut" : "-m" - }, - "no-interaction" : { - "shortcut" : "-n", - "is_value_required" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "help" : { - "name" : "--help", - "is_value_required" : false, - "shortcut" : "-h", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Display this help message" - } - } - } - }, - { - "hidden" : false, - "definition" : { - "arguments" : { - "package" : { - "is_required" : true, - "name" : "package", - "is_array" : true, - "default" : [], - "description" : "Language package name" - } - }, - "options" : { - "quiet" : { - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet", - "description" : "Do not output any message", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "verbose" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose", - "is_value_required" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "ansi" : { - "description" : "Force ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "", - "name" : "--ansi", - "is_value_required" : false - }, - "no-ansi" : { - "name" : "--no-ansi", - "is_value_required" : false, - "shortcut" : "", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Disable ANSI output" - }, - "backup-code" : { - "shortcut" : "-b", - "name" : "--backup-code", - "is_value_required" : false, - "description" : "Take code and configuration files backup (excluding temporary files)", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "version" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Display this application version", - "is_value_required" : false, - "name" : "--version", - "shortcut" : "-V" - }, - "no-interaction" : { - "description" : "Do not ask any interactive question", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false - }, - "help" : { - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help", - "description" : "Display this help message", - "is_multiple" : false, - "default" : false, - "accept_value" : false - } - } - }, - "usage" : [ - "i18n:uninstall [-b|--backup-code] [--] ..." - ], - "name" : "i18n:uninstall", - "help" : "Uninstalls language packages", - "description" : "Uninstalls language packages" - }, - { - "hidden" : false, - "usage" : [ - "indexer:info" - ], - "name" : "indexer:info", - "definition" : { - "options" : { - "version" : { - "description" : "Display this application version", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-V", - "is_value_required" : false, - "name" : "--version" - }, - "no-ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "help" : { - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help", - "description" : "Display this help message", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "ansi" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Force ANSI output", - "is_value_required" : false, - "name" : "--ansi", - "shortcut" : "" - }, - "verbose" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv" - }, - "no-interaction" : { - "name" : "--no-interaction", - "is_value_required" : false, - "shortcut" : "-n", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Do not ask any interactive question" - }, - "quiet" : { - "description" : "Do not output any message", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet" - } - }, - "arguments" : [] - }, - "description" : "Shows allowed Indexers", - "help" : "Shows allowed Indexers" - }, - { - "hidden" : false, - "usage" : [ - "indexer:reindex [...]" - ], - "name" : "indexer:reindex", - "definition" : { - "options" : { - "no-ansi" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Disable ANSI output", - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "" - }, - "help" : { - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help", - "description" : "Display this help message", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "version" : { - "name" : "--version", - "is_value_required" : false, - "shortcut" : "-V", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Display this application version" - }, - "verbose" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv" - }, - "no-interaction" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction", - "is_value_required" : false, - "shortcut" : "-n" - }, - "quiet" : { - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet", - "description" : "Do not output any message", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "ansi" : { - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Force ANSI output" - } - }, - "arguments" : { - "index" : { - "description" : "Space-separated list of index types or omit to apply to all indexes.", - "default" : [], - "is_array" : true, - "is_required" : false, - "name" : "index" - } - } - }, - "help" : "Reindexes Data", - "description" : "Reindexes Data" - }, - { - "definition" : { - "arguments" : { - "index" : { - "is_required" : false, - "name" : "index", - "is_array" : true, - "default" : [], - "description" : "Space-separated list of index types or omit to apply to all indexes." - } - }, - "options" : { - "ansi" : { - "description" : "Force ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--ansi" - }, - "no-interaction" : { - "name" : "--no-interaction", - "is_value_required" : false, - "shortcut" : "-n", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Do not ask any interactive question" - }, - "quiet" : { - "description" : "Do not output any message", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false - }, - "verbose" : { - "name" : "--verbose", - "is_value_required" : false, - "shortcut" : "-v|-vv|-vvv", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "version" : { - "is_value_required" : false, - "name" : "--version", - "shortcut" : "-V", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Display this application version" - }, - "help" : { - "shortcut" : "-h", - "name" : "--help", - "is_value_required" : false, - "description" : "Display this help message", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "no-ansi" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Disable ANSI output", - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "" - } - } - }, - "name" : "indexer:reset", - "usage" : [ - "indexer:reset [...]" - ], - "hidden" : false, - "help" : "Resets indexer status to invalid", - "description" : "Resets indexer status to invalid" - }, - { - "hidden" : false, - "definition" : { - "options" : { - "version" : { - "name" : "--version", - "is_value_required" : false, - "shortcut" : "-V", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Display this application version" - }, - "help" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Display this help message", - "name" : "--help", - "is_value_required" : false, - "shortcut" : "-h" - }, - "no-ansi" : { - "description" : "Disable ANSI output", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "", - "name" : "--no-ansi", - "is_value_required" : false - }, - "ansi" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "" - }, - "no-interaction" : { - "description" : "Do not ask any interactive question", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false - }, - "quiet" : { - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false, - "description" : "Do not output any message", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "is_value_required" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_multiple" : false, - "default" : false, - "accept_value" : false - } - }, - "arguments" : { - "mode" : { - "description" : "Indexer dimension modes catalog_product_price none,website,customer_group,website_and_customer_group ", - "default" : null, - "is_array" : false, - "is_required" : false, - "name" : "mode" - }, - "indexer" : { - "default" : null, - "description" : "Indexer name [catalog_product_price]", - "name" : "indexer", - "is_required" : false, - "is_array" : false - } - } - }, - "usage" : [ - "indexer:set-dimensions-mode [ []]" - ], - "name" : "indexer:set-dimensions-mode", - "description" : "Set Indexer Dimensions Mode", - "help" : "Set Indexer Dimensions Mode" - }, - { - "description" : "Sets index mode type", - "help" : "Sets index mode type", - "hidden" : false, - "definition" : { - "options" : { - "version" : { - "shortcut" : "-V", - "is_value_required" : false, - "name" : "--version", - "description" : "Display this application version", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "help" : { - "is_value_required" : false, - "name" : "--help", - "shortcut" : "-h", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this help message" - }, - "no-ansi" : { - "shortcut" : "", - "name" : "--no-ansi", - "is_value_required" : false, - "description" : "Disable ANSI output", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "ansi" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Force ANSI output", - "is_value_required" : false, - "name" : "--ansi", - "shortcut" : "" - }, - "no-interaction" : { - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false, - "description" : "Do not ask any interactive question", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "quiet" : { - "description" : "Do not output any message", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet" - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "is_value_required" : false, - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_multiple" : false, - "default" : false, - "accept_value" : false - } - }, - "arguments" : { - "mode" : { - "description" : "Indexer mode type [realtime|schedule]", - "default" : null, - "is_array" : false, - "name" : "mode", - "is_required" : false - }, - "index" : { - "is_array" : true, - "is_required" : false, - "name" : "index", - "description" : "Space-separated list of index types or omit to apply to all indexes.", - "default" : [] - } - } - }, - "usage" : [ - "indexer:set-mode [ [...]]" - ], - "name" : "indexer:set-mode" - }, - { - "definition" : { - "options" : { - "no-ansi" : { - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Disable ANSI output" - }, - "help" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Display this help message", - "is_value_required" : false, - "name" : "--help", - "shortcut" : "-h" - }, - "version" : { - "name" : "--version", - "is_value_required" : false, - "shortcut" : "-V", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Display this application version" - }, - "verbose" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose", - "is_value_required" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "no-interaction" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Do not ask any interactive question", - "is_value_required" : false, - "name" : "--no-interaction", - "shortcut" : "-n" - }, - "quiet" : { - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet", - "description" : "Do not output any message", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "ansi" : { - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Force ANSI output" - } - }, - "arguments" : { - "indexer" : { - "is_required" : false, - "name" : "indexer", - "is_array" : true, - "default" : [], - "description" : "Space-separated list of index types or omit to apply to all indexes (catalog_product_price)" - } - } - }, - "name" : "indexer:show-dimensions-mode", - "usage" : [ - "indexer:show-dimensions-mode [...]" - ], - "hidden" : false, - "help" : "Shows Indexer Dimension Mode", - "description" : "Shows Indexer Dimension Mode" - }, - { - "help" : "Shows Index Mode", - "description" : "Shows Index Mode", - "definition" : { - "options" : { - "quiet" : { - "name" : "--quiet", - "is_value_required" : false, - "shortcut" : "-q", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Do not output any message" - }, - "no-interaction" : { - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false, - "description" : "Do not ask any interactive question", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "verbose" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv" - }, - "ansi" : { - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Force ANSI output" - }, - "help" : { - "shortcut" : "-h", - "name" : "--help", - "is_value_required" : false, - "description" : "Display this help message", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "no-ansi" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_value_required" : false, - "shortcut" : "" - }, - "version" : { - "name" : "--version", - "is_value_required" : false, - "shortcut" : "-V", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Display this application version" - } - }, - "arguments" : { - "index" : { - "is_array" : true, - "is_required" : false, - "name" : "index", - "description" : "Space-separated list of index types or omit to apply to all indexes.", - "default" : [] - } - } - }, - "name" : "indexer:show-mode", - "usage" : [ - "indexer:show-mode [...]" - ], - "hidden" : false - }, - { - "help" : "Shows status of Indexer", - "description" : "Shows status of Indexer", - "hidden" : false, - "name" : "indexer:status", - "usage" : [ - "indexer:status [...]" - ], - "definition" : { - "options" : { - "no-interaction" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Do not ask any interactive question", - "is_value_required" : false, - "name" : "--no-interaction", - "shortcut" : "-n" - }, - "quiet" : { - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet", - "description" : "Do not output any message", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "is_value_required" : false - }, - "ansi" : { - "description" : "Force ANSI output", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--ansi" - }, - "help" : { - "description" : "Display this help message", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help" - }, - "no-ansi" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Disable ANSI output", - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "" - }, - "version" : { - "description" : "Display this application version", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-V", - "is_value_required" : false, - "name" : "--version" - } - }, - "arguments" : { - "index" : { - "name" : "index", - "is_required" : false, - "is_array" : true, - "default" : [], - "description" : "Space-separated list of index types or omit to apply to all indexes." - } - } - } - }, - { - "usage" : [ - "info:adminuri" - ], - "name" : "info:adminuri", - "definition" : { - "arguments" : [], - "options" : { - "version" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this application version", - "is_value_required" : false, - "name" : "--version", - "shortcut" : "-V" - }, - "help" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Display this help message", - "name" : "--help", - "is_value_required" : false, - "shortcut" : "-h" - }, - "no-ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "ansi" : { - "description" : "Force ANSI output", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--ansi" - }, - "quiet" : { - "description" : "Do not output any message", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false - }, - "no-interaction" : { - "description" : "Do not ask any interactive question", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false - }, - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-v|-vv|-vvv", - "is_value_required" : false, - "name" : "--verbose" - } - } - }, - "hidden" : false, - "description" : "Displays the Magento Admin URI", - "help" : "Displays the Magento Admin URI" - }, - { - "hidden" : false, - "name" : "info:backups:list", - "usage" : [ - "info:backups:list" - ], - "definition" : { - "arguments" : [], - "options" : { - "help" : { - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help", - "description" : "Display this help message", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "no-ansi" : { - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Disable ANSI output" - }, - "version" : { - "name" : "--version", - "is_value_required" : false, - "shortcut" : "-V", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Display this application version" - }, - "no-interaction" : { - "name" : "--no-interaction", - "is_value_required" : false, - "shortcut" : "-n", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Do not ask any interactive question" - }, - "quiet" : { - "is_value_required" : false, - "name" : "--quiet", - "shortcut" : "-q", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Do not output any message" - }, - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-v|-vv|-vvv", - "is_value_required" : false, - "name" : "--verbose" - }, - "ansi" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Force ANSI output", - "is_value_required" : false, - "name" : "--ansi", - "shortcut" : "" - } - } - }, - "help" : "Prints list of available backup files", - "description" : "Prints list of available backup files" - }, - { - "description" : "Displays the list of available currencies", - "help" : "Displays the list of available currencies", - "definition" : { - "arguments" : [], - "options" : { - "help" : { - "description" : "Display this help message", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help" - }, - "no-ansi" : { - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Disable ANSI output" - }, - "version" : { - "is_value_required" : false, - "name" : "--version", - "shortcut" : "-V", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Display this application version" - }, - "quiet" : { - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet", - "description" : "Do not output any message", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "no-interaction" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Do not ask any interactive question", - "is_value_required" : false, - "name" : "--no-interaction", - "shortcut" : "-n" - }, - "verbose" : { - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "ansi" : { - "is_value_required" : false, - "name" : "--ansi", - "shortcut" : "", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Force ANSI output" - } - } - }, - "name" : "info:currency:list", - "usage" : [ - "info:currency:list" - ], - "hidden" : false - }, - { - "help" : "Shows number of dependencies on Magento framework", - "description" : "Shows number of dependencies on Magento framework", - "hidden" : false, - "definition" : { - "arguments" : [], - "options" : { - "quiet" : { - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet", - "description" : "Do not output any message", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "is_value_required" : false, - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "ansi" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "" - }, - "no-ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "version" : { - "name" : "--version", - "is_value_required" : false, - "shortcut" : "-V", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Display this application version" - }, - "no-interaction" : { - "name" : "--no-interaction", - "is_value_required" : false, - "shortcut" : "-n", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Do not ask any interactive question" - }, - "output" : { - "is_value_required" : true, - "name" : "--output", - "shortcut" : "-o", - "default" : "framework-dependencies.csv", - "accept_value" : true, - "is_multiple" : false, - "description" : "Report filename" - }, - "help" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this help message", - "is_value_required" : false, - "name" : "--help", - "shortcut" : "-h" - } - } - }, - "usage" : [ - "info:dependencies:show-framework [-o|--output OUTPUT]" - ], - "name" : "info:dependencies:show-framework" - }, - { - "help" : "Shows number of dependencies between modules", - "description" : "Shows number of dependencies between modules", - "definition" : { - "options" : { - "no-ansi" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Disable ANSI output", - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "" - }, - "version" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Display this application version", - "is_value_required" : false, - "name" : "--version", - "shortcut" : "-V" - }, - "quiet" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "is_value_required" : false, - "shortcut" : "-q" - }, - "verbose" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv" - }, - "ansi" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Force ANSI output", - "is_value_required" : false, - "name" : "--ansi", - "shortcut" : "" - }, - "help" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Display this help message", - "name" : "--help", - "is_value_required" : false, - "shortcut" : "-h" - }, - "no-interaction" : { - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false, - "description" : "Do not ask any interactive question", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "output" : { - "shortcut" : "-o", - "name" : "--output", - "is_value_required" : true, - "description" : "Report filename", - "default" : "modules-dependencies.csv", - "accept_value" : true, - "is_multiple" : false - } - }, - "arguments" : [] - }, - "usage" : [ - "info:dependencies:show-modules [-o|--output OUTPUT]" - ], - "name" : "info:dependencies:show-modules", - "hidden" : false - }, - { - "description" : "Shows number of circular dependencies between modules", - "help" : "Shows number of circular dependencies between modules", - "definition" : { - "options" : { - "ansi" : { - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Force ANSI output" - }, - "quiet" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Do not output any message", - "is_value_required" : false, - "name" : "--quiet", - "shortcut" : "-q" - }, - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "is_value_required" : false - }, - "version" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this application version", - "name" : "--version", - "is_value_required" : false, - "shortcut" : "-V" - }, - "no-ansi" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_value_required" : false, - "shortcut" : "" - }, - "no-interaction" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction", - "is_value_required" : false, - "shortcut" : "-n" - }, - "output" : { - "description" : "Report filename", - "accept_value" : true, - "default" : "modules-circular-dependencies.csv", - "is_multiple" : false, - "shortcut" : "-o", - "name" : "--output", - "is_value_required" : true - }, - "help" : { - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help", - "description" : "Display this help message", - "accept_value" : false, - "default" : false, - "is_multiple" : false - } - }, - "arguments" : [] - }, - "usage" : [ - "info:dependencies:show-modules-circular [-o|--output OUTPUT]" - ], - "name" : "info:dependencies:show-modules-circular", - "hidden" : false - }, - { - "description" : "Displays the list of available language locales", - "help" : "Displays the list of available language locales", - "hidden" : false, - "definition" : { - "options" : { - "no-ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "help" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this help message", - "name" : "--help", - "is_value_required" : false, - "shortcut" : "-h" - }, - "version" : { - "shortcut" : "-V", - "is_value_required" : false, - "name" : "--version", - "description" : "Display this application version", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "is_value_required" : false - }, - "quiet" : { - "is_value_required" : false, - "name" : "--quiet", - "shortcut" : "-q", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Do not output any message" - }, - "no-interaction" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction", - "is_value_required" : false, - "shortcut" : "-n" - }, - "ansi" : { - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Force ANSI output" - } - }, - "arguments" : [] - }, - "usage" : [ - "info:language:list" - ], - "name" : "info:language:list" - }, - { - "hidden" : false, - "definition" : { - "options" : { - "verbose" : { - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "quiet" : { - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false, - "description" : "Do not output any message", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "no-interaction" : { - "shortcut" : "-n", - "is_value_required" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "ansi" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "" - }, - "no-ansi" : { - "name" : "--no-ansi", - "is_value_required" : false, - "shortcut" : "", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Disable ANSI output" - }, - "help" : { - "name" : "--help", - "is_value_required" : false, - "shortcut" : "-h", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this help message" - }, - "version" : { - "shortcut" : "-V", - "name" : "--version", - "is_value_required" : false, - "description" : "Display this application version", - "is_multiple" : false, - "default" : false, - "accept_value" : false - } - }, - "arguments" : [] - }, - "name" : "info:timezone:list", - "usage" : [ - "info:timezone:list" - ], - "description" : "Displays the list of available timezones", - "help" : "Displays the list of available timezones" - }, - { - "description" : "Create reservations by provided compensation arguments", - "help" : "Create reservations by provided compensation arguments", - "hidden" : false, - "definition" : { - "arguments" : { - "compensations" : { - "default" : [], - "description" : "List of compensation arguments in format \":::\"", - "name" : "compensations", - "is_required" : false, - "is_array" : true - } - }, - "options" : { - "ansi" : { - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Force ANSI output" - }, - "verbose" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv" - }, - "quiet" : { - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet", - "description" : "Do not output any message", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "version" : { - "shortcut" : "-V", - "is_value_required" : false, - "name" : "--version", - "description" : "Display this application version", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "raw" : { - "description" : "Raw output", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-r", - "is_value_required" : false, - "name" : "--raw" - }, - "no-ansi" : { - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Disable ANSI output" - }, - "no-interaction" : { - "description" : "Do not ask any interactive question", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false - }, - "help" : { - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help", - "description" : "Display this help message", - "is_multiple" : false, - "accept_value" : false, - "default" : false - } - } - }, - "usage" : [ - "inventory:reservation:create-compensations [-r|--raw] [--] [...]" - ], - "name" : "inventory:reservation:create-compensations" - }, - { - "help" : "Show all orders and products with salable quantity inconsistencies", - "description" : "Show all orders and products with salable quantity inconsistencies", - "usage" : [ - "inventory:reservation:list-inconsistencies [-c|--complete-orders] [-i|--incomplete-orders] [-b|--bunch-size [BUNCH-SIZE]] [-r|--raw]" - ], - "name" : "inventory:reservation:list-inconsistencies", - "definition" : { - "options" : { - "incomplete-orders" : { - "description" : "Show only inconsistencies for incomplete orders", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-i", - "name" : "--incomplete-orders", - "is_value_required" : false - }, - "verbose" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv" - }, - "quiet" : { - "name" : "--quiet", - "is_value_required" : false, - "shortcut" : "-q", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Do not output any message" - }, - "complete-orders" : { - "is_value_required" : false, - "name" : "--complete-orders", - "shortcut" : "-c", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Show only inconsistencies for complete orders" - }, - "ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "no-ansi" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_value_required" : false, - "shortcut" : "" - }, - "bunch-size" : { - "description" : "Defines how many orders will be loaded at once", - "accept_value" : true, - "default" : 50, - "is_multiple" : false, - "shortcut" : "-b", - "is_value_required" : false, - "name" : "--bunch-size" - }, - "version" : { - "description" : "Display this application version", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-V", - "is_value_required" : false, - "name" : "--version" - }, - "raw" : { - "shortcut" : "-r", - "name" : "--raw", - "is_value_required" : false, - "description" : "Raw output", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "no-interaction" : { - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false, - "description" : "Do not ask any interactive question", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "help" : { - "description" : "Display this help message", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help" - } - }, - "arguments" : [] - }, - "hidden" : false - }, - { - "description" : "Download and import geo names for source selection algorithm", - "help" : "Download and import geo names for source selection algorithm", - "hidden" : false, - "definition" : { - "options" : { - "ansi" : { - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Force ANSI output" - }, - "quiet" : { - "name" : "--quiet", - "is_value_required" : false, - "shortcut" : "-q", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Do not output any message" - }, - "no-interaction" : { - "description" : "Do not ask any interactive question", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-n", - "is_value_required" : false, - "name" : "--no-interaction" - }, - "verbose" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose", - "is_value_required" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "version" : { - "shortcut" : "-V", - "name" : "--version", - "is_value_required" : false, - "description" : "Display this application version", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "help" : { - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help", - "description" : "Display this help message", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "no-ansi" : { - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Disable ANSI output" - } - }, - "arguments" : { - "countries" : { - "is_array" : true, - "is_required" : true, - "name" : "countries", - "description" : "List of country codes to import", - "default" : [] - } - } - }, - "name" : "inventory-geonames:import", - "usage" : [ - "inventory-geonames:import ..." - ] - }, - { - "hidden" : false, - "usage" : [ - "maintenance:allow-ips [--none] [--add] [--magento-init-params MAGENTO-INIT-PARAMS] [--] [...]" - ], - "name" : "maintenance:allow-ips", - "definition" : { - "options" : { - "no-interaction" : { - "description" : "Do not ask any interactive question", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false - }, - "none" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Clear allowed IP addresses", - "name" : "--none", - "is_value_required" : false, - "shortcut" : "" - }, - "help" : { - "name" : "--help", - "is_value_required" : false, - "shortcut" : "-h", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Display this help message" - }, - "ansi" : { - "is_value_required" : false, - "name" : "--ansi", - "shortcut" : "", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Force ANSI output" - }, - "verbose" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv" - }, - "magento-init-params" : { - "is_value_required" : true, - "name" : "--magento-init-params", - "shortcut" : "", - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"" - }, - "quiet" : { - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet", - "description" : "Do not output any message", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "version" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this application version", - "name" : "--version", - "is_value_required" : false, - "shortcut" : "-V" - }, - "add" : { - "description" : "Add the IP address to existing list", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--add" - }, - "no-ansi" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Disable ANSI output", - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "" - } - }, - "arguments" : { - "ip" : { - "is_required" : false, - "name" : "ip", - "is_array" : true, - "default" : [], - "description" : "Allowed IP addresses" - } - } - }, - "help" : "Sets maintenance mode exempt IPs", - "description" : "Sets maintenance mode exempt IPs" - }, - { - "hidden" : false, - "definition" : { - "arguments" : [], - "options" : { - "no-interaction" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Do not ask any interactive question", - "is_value_required" : false, - "name" : "--no-interaction", - "shortcut" : "-n" - }, - "help" : { - "is_value_required" : false, - "name" : "--help", - "shortcut" : "-h", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Display this help message" - }, - "ip" : { - "is_multiple" : true, - "default" : [], - "accept_value" : true, - "description" : "Allowed IP addresses (use 'none' to clear allowed IP list)", - "is_value_required" : true, - "name" : "--ip", - "shortcut" : "" - }, - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "is_value_required" : false - }, - "magento-init-params" : { - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "shortcut" : "", - "name" : "--magento-init-params", - "is_value_required" : true - }, - "quiet" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "is_value_required" : false, - "shortcut" : "-q" - }, - "ansi" : { - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Force ANSI output" - }, - "no-ansi" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_value_required" : false, - "shortcut" : "" - }, - "version" : { - "is_value_required" : false, - "name" : "--version", - "shortcut" : "-V", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Display this application version" - } - } - }, - "name" : "maintenance:disable", - "usage" : [ - "maintenance:disable [--ip IP] [--magento-init-params MAGENTO-INIT-PARAMS]" - ], - "help" : "Disables maintenance mode", - "description" : "Disables maintenance mode" - }, - { - "help" : "Enables maintenance mode", - "description" : "Enables maintenance mode", - "hidden" : false, - "name" : "maintenance:enable", - "usage" : [ - "maintenance:enable [--ip IP] [--magento-init-params MAGENTO-INIT-PARAMS]" - ], - "definition" : { - "arguments" : [], - "options" : { - "no-interaction" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Do not ask any interactive question", - "is_value_required" : false, - "name" : "--no-interaction", - "shortcut" : "-n" - }, - "help" : { - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help", - "description" : "Display this help message", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "ip" : { - "name" : "--ip", - "is_value_required" : true, - "shortcut" : "", - "default" : [], - "accept_value" : true, - "is_multiple" : true, - "description" : "Allowed IP addresses (use 'none' to clear allowed IP list)" - }, - "magento-init-params" : { - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "name" : "--magento-init-params", - "is_value_required" : true, - "shortcut" : "" - }, - "quiet" : { - "description" : "Do not output any message", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false - }, - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "is_value_required" : false - }, - "ansi" : { - "description" : "Force ANSI output", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "", - "name" : "--ansi", - "is_value_required" : false - }, - "no-ansi" : { - "name" : "--no-ansi", - "is_value_required" : false, - "shortcut" : "", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Disable ANSI output" - }, - "version" : { - "is_value_required" : false, - "name" : "--version", - "shortcut" : "-V", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Display this application version" - } - } - } - }, - { - "description" : "Displays maintenance mode status", - "help" : "Displays maintenance mode status", - "hidden" : false, - "name" : "maintenance:status", - "usage" : [ - "maintenance:status [--magento-init-params MAGENTO-INIT-PARAMS]" - ], - "definition" : { - "arguments" : [], - "options" : { - "no-ansi" : { - "shortcut" : "", - "name" : "--no-ansi", - "is_value_required" : false, - "description" : "Disable ANSI output", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "version" : { - "is_value_required" : false, - "name" : "--version", - "shortcut" : "-V", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Display this application version" - }, - "magento-init-params" : { - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "shortcut" : "", - "is_value_required" : true, - "name" : "--magento-init-params" - }, - "quiet" : { - "description" : "Do not output any message", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet" - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "is_value_required" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "ansi" : { - "description" : "Force ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "", - "name" : "--ansi", - "is_value_required" : false - }, - "help" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Display this help message", - "name" : "--help", - "is_value_required" : false, - "shortcut" : "-h" - }, - "no-interaction" : { - "description" : "Do not ask any interactive question", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-n", - "is_value_required" : false, - "name" : "--no-interaction" - } - } - } - }, - { - "description" : "Checks the modules configuration in the 'app/etc/config.php' file and reports if they are up to date or not", - "help" : "Checks the modules configuration in the 'app/etc/config.php' file and reports if they are up to date or not", - "name" : "module:config:status", - "usage" : [ - "module:config:status" - ], - "definition" : { - "arguments" : [], - "options" : { - "help" : { - "is_value_required" : false, - "name" : "--help", - "shortcut" : "-h", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this help message" - }, - "no-ansi" : { - "name" : "--no-ansi", - "is_value_required" : false, - "shortcut" : "", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Disable ANSI output" - }, - "version" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this application version", - "is_value_required" : false, - "name" : "--version", - "shortcut" : "-V" - }, - "quiet" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Do not output any message", - "is_value_required" : false, - "name" : "--quiet", - "shortcut" : "-q" - }, - "no-interaction" : { - "shortcut" : "-n", - "is_value_required" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "is_value_required" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "ansi" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "" - } - } - }, - "hidden" : false - }, - { - "hidden" : false, - "usage" : [ - "module:disable [-f|--force] [--all] [-c|--clear-static-content] [--magento-init-params MAGENTO-INIT-PARAMS] [--] [...]" - ], - "name" : "module:disable", - "definition" : { - "options" : { - "force" : { - "is_value_required" : false, - "name" : "--force", - "shortcut" : "-f", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Bypass dependencies check" - }, - "all" : { - "is_value_required" : false, - "name" : "--all", - "shortcut" : "", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Disable all modules" - }, - "help" : { - "description" : "Display this help message", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help" - }, - "no-interaction" : { - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false, - "description" : "Do not ask any interactive question", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "version" : { - "description" : "Display this application version", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-V", - "is_value_required" : false, - "name" : "--version" - }, - "no-ansi" : { - "shortcut" : "", - "name" : "--no-ansi", - "is_value_required" : false, - "description" : "Disable ANSI output", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "clear-static-content" : { - "shortcut" : "-c", - "is_value_required" : false, - "name" : "--clear-static-content", - "description" : "Clear generated static view files. Necessary, if the module(s) have static view files", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "ansi" : { - "is_value_required" : false, - "name" : "--ansi", - "shortcut" : "", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Force ANSI output" - }, - "magento-init-params" : { - "shortcut" : "", - "is_value_required" : true, - "name" : "--magento-init-params", - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "is_multiple" : false, - "accept_value" : true, - "default" : null - }, - "quiet" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Do not output any message", - "is_value_required" : false, - "name" : "--quiet", - "shortcut" : "-q" - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "is_value_required" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_multiple" : false, - "accept_value" : false, - "default" : false - } - }, - "arguments" : { - "module" : { - "is_array" : true, - "name" : "module", - "is_required" : false, - "description" : "Name of the module", - "default" : [] - } - } - }, - "help" : "Disables specified modules", - "description" : "Disables specified modules" - }, - { - "definition" : { - "options" : { - "force" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Bypass dependencies check", - "name" : "--force", - "is_value_required" : false, - "shortcut" : "-f" - }, - "all" : { - "is_value_required" : false, - "name" : "--all", - "shortcut" : "", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Enable all modules" - }, - "help" : { - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help", - "description" : "Display this help message", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "no-interaction" : { - "description" : "Do not ask any interactive question", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-n", - "is_value_required" : false, - "name" : "--no-interaction" - }, - "version" : { - "description" : "Display this application version", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-V", - "name" : "--version", - "is_value_required" : false - }, - "no-ansi" : { - "shortcut" : "", - "name" : "--no-ansi", - "is_value_required" : false, - "description" : "Disable ANSI output", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "ansi" : { - "is_value_required" : false, - "name" : "--ansi", - "shortcut" : "", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Force ANSI output" - }, - "clear-static-content" : { - "description" : "Clear generated static view files. Necessary, if the module(s) have static view files", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-c", - "name" : "--clear-static-content", - "is_value_required" : false - }, - "verbose" : { - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "magento-init-params" : { - "shortcut" : "", - "is_value_required" : true, - "name" : "--magento-init-params", - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "is_multiple" : false, - "accept_value" : true, - "default" : null - }, - "quiet" : { - "description" : "Do not output any message", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false - } - }, - "arguments" : { - "module" : { - "is_array" : true, - "is_required" : false, - "name" : "module", - "description" : "Name of the module", - "default" : [] - } - } - }, - "usage" : [ - "module:enable [-f|--force] [--all] [-c|--clear-static-content] [--magento-init-params MAGENTO-INIT-PARAMS] [--] [...]" - ], - "name" : "module:enable", - "hidden" : false, - "description" : "Enables specified modules", - "help" : "Enables specified modules" - }, - { - "hidden" : false, - "definition" : { - "arguments" : { - "module" : { - "is_array" : false, - "is_required" : false, - "name" : "module", - "description" : "Optional module name", - "default" : null - } - }, - "options" : { - "disabled" : { - "description" : "Print only disabled modules", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "", - "name" : "--disabled", - "is_value_required" : false - }, - "help" : { - "is_value_required" : false, - "name" : "--help", - "shortcut" : "-h", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Display this help message" - }, - "no-interaction" : { - "name" : "--no-interaction", - "is_value_required" : false, - "shortcut" : "-n", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Do not ask any interactive question" - }, - "no-ansi" : { - "description" : "Disable ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--no-ansi" - }, - "version" : { - "description" : "Display this application version", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-V", - "name" : "--version", - "is_value_required" : false - }, - "verbose" : { - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "magento-init-params" : { - "name" : "--magento-init-params", - "is_value_required" : true, - "shortcut" : "", - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"" - }, - "quiet" : { - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false, - "description" : "Do not output any message", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "ansi" : { - "shortcut" : "", - "name" : "--ansi", - "is_value_required" : false, - "description" : "Force ANSI output", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "enabled" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Print only enabled modules", - "is_value_required" : false, - "name" : "--enabled", - "shortcut" : "" - } - } - }, - "name" : "module:status", - "usage" : [ - "module:status [--enabled] [--disabled] [--magento-init-params MAGENTO-INIT-PARAMS] [--] []" - ], - "description" : "Displays status of modules", - "help" : "Displays status of modules" - }, - { - "help" : "Uninstalls modules installed by composer", - "description" : "Uninstalls modules installed by composer", - "definition" : { - "arguments" : { - "module" : { - "is_array" : true, - "is_required" : true, - "name" : "module", - "description" : "Name of the module", - "default" : [] - } - }, - "options" : { - "no-interaction" : { - "shortcut" : "-n", - "is_value_required" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "help" : { - "is_value_required" : false, - "name" : "--help", - "shortcut" : "-h", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Display this help message" - }, - "backup-media" : { - "description" : "Take media backup", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--backup-media" - }, - "clear-static-content" : { - "shortcut" : "-c", - "name" : "--clear-static-content", - "is_value_required" : false, - "description" : "Clear generated static view files. Necessary, if the module(s) have static view files", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "ansi" : { - "description" : "Force ANSI output", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--ansi" - }, - "magento-init-params" : { - "shortcut" : "", - "name" : "--magento-init-params", - "is_value_required" : true, - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "default" : null, - "accept_value" : true, - "is_multiple" : false - }, - "quiet" : { - "description" : "Do not output any message", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "is_value_required" : false, - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "backup-code" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Take code and configuration files backup (excluding temporary files)", - "name" : "--backup-code", - "is_value_required" : false, - "shortcut" : "" - }, - "version" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Display this application version", - "name" : "--version", - "is_value_required" : false, - "shortcut" : "-V" - }, - "non-composer" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "All modules, that will be past here will be non composer based", - "is_value_required" : false, - "name" : "--non-composer", - "shortcut" : "" - }, - "remove-data" : { - "description" : "Remove data installed by module(s)", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-r", - "name" : "--remove-data", - "is_value_required" : false - }, - "no-ansi" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_value_required" : false, - "shortcut" : "" - }, - "backup-db" : { - "shortcut" : "", - "name" : "--backup-db", - "is_value_required" : false, - "description" : "Take complete database backup", - "accept_value" : false, - "default" : false, - "is_multiple" : false - } - } - }, - "name" : "module:uninstall", - "usage" : [ - "module:uninstall [-r|--remove-data] [--backup-code] [--backup-media] [--backup-db] [--non-composer] [-c|--clear-static-content] [--magento-init-params MAGENTO-INIT-PARAMS] [--] ..." - ], - "hidden" : false - }, - { - "help" : "Disable backend reCaptcha", - "description" : "Disable backend reCaptcha", - "usage" : [ - "msp:security:recaptcha:disable" - ], - "name" : "msp:security:recaptcha:disable", - "definition" : { - "options" : { - "no-ansi" : { - "name" : "--no-ansi", - "is_value_required" : false, - "shortcut" : "", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Disable ANSI output" - }, - "help" : { - "is_value_required" : false, - "name" : "--help", - "shortcut" : "-h", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this help message" - }, - "version" : { - "name" : "--version", - "is_value_required" : false, - "shortcut" : "-V", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this application version" - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "is_value_required" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "no-interaction" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction", - "is_value_required" : false, - "shortcut" : "-n" - }, - "quiet" : { - "description" : "Do not output any message", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet" - }, - "ansi" : { - "is_value_required" : false, - "name" : "--ansi", - "shortcut" : "", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Force ANSI output" - } - }, - "arguments" : [] - }, - "hidden" : false - }, - { - "hidden" : false, - "name" : "msp:security:tfa:disable", - "usage" : [ - "msp:security:tfa:disable" - ], - "definition" : { - "options" : { - "no-interaction" : { - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false, - "description" : "Do not ask any interactive question", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "quiet" : { - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet", - "description" : "Do not output any message", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "is_value_required" : false - }, - "ansi" : { - "shortcut" : "", - "name" : "--ansi", - "is_value_required" : false, - "description" : "Force ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "help" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this help message", - "is_value_required" : false, - "name" : "--help", - "shortcut" : "-h" - }, - "no-ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "version" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Display this application version", - "is_value_required" : false, - "name" : "--version", - "shortcut" : "-V" - } - }, - "arguments" : [] - }, - "description" : "Globally disable two factor auth", - "help" : "Globally disable two factor auth" - }, - { - "usage" : [ - "msp:security:tfa:providers" - ], - "name" : "msp:security:tfa:providers", - "definition" : { - "arguments" : [], - "options" : { - "version" : { - "shortcut" : "-V", - "name" : "--version", - "is_value_required" : false, - "description" : "Display this application version", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "no-ansi" : { - "shortcut" : "", - "name" : "--no-ansi", - "is_value_required" : false, - "description" : "Disable ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "help" : { - "is_value_required" : false, - "name" : "--help", - "shortcut" : "-h", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Display this help message" - }, - "ansi" : { - "description" : "Force ANSI output", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--ansi" - }, - "verbose" : { - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "quiet" : { - "description" : "Do not output any message", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false - }, - "no-interaction" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction", - "is_value_required" : false, - "shortcut" : "-n" - } - } - }, - "hidden" : false, - "help" : "List all available providers", - "description" : "List all available providers" - }, - { - "help" : "Reset configuration for one user", - "description" : "Reset configuration for one user", - "hidden" : false, - "definition" : { - "options" : { - "verbose" : { - "name" : "--verbose", - "is_value_required" : false, - "shortcut" : "-v|-vv|-vvv", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "quiet" : { - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet", - "description" : "Do not output any message", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "no-interaction" : { - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false, - "description" : "Do not ask any interactive question", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "no-ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "help" : { - "name" : "--help", - "is_value_required" : false, - "shortcut" : "-h", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Display this help message" - }, - "version" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Display this application version", - "is_value_required" : false, - "name" : "--version", - "shortcut" : "-V" - } - }, - "arguments" : { - "provider" : { - "description" : "Provider code", - "default" : null, - "is_array" : false, - "name" : "provider", - "is_required" : true - }, - "user" : { - "default" : null, - "description" : "Username", - "name" : "user", - "is_required" : true, - "is_array" : false - } - } - }, - "usage" : [ - "msp:security:tfa:reset " - ], - "name" : "msp:security:tfa:reset" - }, - { - "hidden" : false, - "definition" : { - "options" : { - "help" : { - "description" : "Display this help message", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help" - }, - "no-ansi" : { - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Disable ANSI output" - }, - "version" : { - "description" : "Display this application version", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-V", - "is_value_required" : false, - "name" : "--version" - }, - "no-interaction" : { - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false, - "description" : "Do not ask any interactive question", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "quiet" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Do not output any message", - "is_value_required" : false, - "name" : "--quiet", - "shortcut" : "-q" - }, - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "is_value_required" : false - }, - "ansi" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "" - } - }, - "arguments" : { - "message" : { - "default" : null, - "description" : "Deploy Message?", - "name" : "message", - "is_required" : true, - "is_array" : false - }, - "change_log" : { - "description" : "Change Log?", - "default" : null, - "is_array" : false, - "name" : "change_log", - "is_required" : true - }, - "user" : { - "description" : "Deployment User", - "default" : null, - "is_array" : false, - "name" : "user", - "is_required" : false - } - } - }, - "usage" : [ - "newrelic:create:deploy-marker []" - ], - "name" : "newrelic:create:deploy-marker", - "help" : "Check the deploy queue for entries and create an appropriate deploy marker.", - "description" : "Check the deploy queue for entries and create an appropriate deploy marker." - }, - { - "description" : "List of MessageQueue consumers", - "help" : "This command shows list of MessageQueue consumers.", - "hidden" : false, - "usage" : [ - "queue:consumers:list" - ], - "name" : "queue:consumers:list", - "definition" : { - "arguments" : [], - "options" : { - "quiet" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Do not output any message", - "is_value_required" : false, - "name" : "--quiet", - "shortcut" : "-q" - }, - "no-interaction" : { - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false, - "description" : "Do not ask any interactive question", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "verbose" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv" - }, - "ansi" : { - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Force ANSI output" - }, - "help" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this help message", - "is_value_required" : false, - "name" : "--help", - "shortcut" : "-h" - }, - "no-ansi" : { - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Disable ANSI output" - }, - "version" : { - "is_value_required" : false, - "name" : "--version", - "shortcut" : "-V", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Display this application version" - } - } - } - }, - { - "usage" : [ - "queue:consumers:start [--max-messages MAX-MESSAGES] [--batch-size BATCH-SIZE] [--area-code AREA-CODE] [--single-thread] [--pid-file-path PID-FILE-PATH] [--] " - ], - "name" : "queue:consumers:start", - "definition" : { - "arguments" : { - "consumer" : { - "is_required" : true, - "name" : "consumer", - "is_array" : false, - "default" : null, - "description" : "The name of the consumer to be started." - } - }, - "options" : { - "version" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this application version", - "is_value_required" : false, - "name" : "--version", - "shortcut" : "-V" - }, - "no-ansi" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_value_required" : false, - "shortcut" : "" - }, - "single-thread" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "This option prevents running multiple copies of one consumer simultaneously.", - "name" : "--single-thread", - "is_value_required" : false, - "shortcut" : "" - }, - "batch-size" : { - "description" : "The number of messages per batch. Applicable for the batch consumer only.", - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : true, - "name" : "--batch-size" - }, - "ansi" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Force ANSI output", - "is_value_required" : false, - "name" : "--ansi", - "shortcut" : "" - }, - "area-code" : { - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "The preferred area (global, adminhtml, etc...) default is global.", - "name" : "--area-code", - "is_value_required" : true, - "shortcut" : "" - }, - "verbose" : { - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "quiet" : { - "description" : "Do not output any message", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet" - }, - "help" : { - "name" : "--help", - "is_value_required" : false, - "shortcut" : "-h", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Display this help message" - }, - "max-messages" : { - "name" : "--max-messages", - "is_value_required" : true, - "shortcut" : "", - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "The number of messages to be processed by the consumer before process termination. If not specified - terminate after processing all queued messages." - }, - "pid-file-path" : { - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "description" : "The file path for saving PID (This option is deprecated, use --single-thread instead)", - "is_value_required" : true, - "name" : "--pid-file-path", - "shortcut" : "" - }, - "no-interaction" : { - "is_value_required" : false, - "name" : "--no-interaction", - "shortcut" : "-n", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Do not ask any interactive question" - } - } - }, - "hidden" : false, - "description" : "Start MessageQueue consumer", - "help" : "This command starts MessageQueue consumer by its name.\n\nTo start consumer which will process all queued messages and terminate execution:\n\n /var/www/html/magento2/bin/magento queue:consumers:start someConsumer\n\nTo specify the number of messages which should be processed by consumer before its termination:\n\n /var/www/html/magento2/bin/magento queue:consumers:start someConsumer --max-messages=50\n\nTo specify the number of messages per batch for the batch consumer:\n\n /var/www/html/magento2/bin/magento queue:consumers:start someConsumer --batch-size=500\n\nTo specify the preferred area:\n\n /var/www/html/magento2/bin/magento queue:consumers:start someConsumer --area-code='adminhtml'\n \nTo do not run multiple copies of one consumer simultaneously:\n\n /var/www/html/magento2/bin/magento queue:consumers:start someConsumer --single-thread'\n\nTo save PID enter path (This option is deprecated, use --single-thread instead):\n\n /var/www/html/magento2/bin/magento queue:consumers:start someConsumer --pid-file-path='/var/someConsumer.pid'" - }, - { - "help" : "Deploy sample data modules for composer-based Magento installations", - "description" : "Deploy sample data modules for composer-based Magento installations", - "hidden" : false, - "name" : "sampledata:deploy", - "usage" : [ - "sampledata:deploy [--no-update]" - ], - "definition" : { - "options" : { - "version" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this application version", - "is_value_required" : false, - "name" : "--version", - "shortcut" : "-V" - }, - "no-ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "no-update" : { - "description" : "Update composer.json without executing composer update", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--no-update" - }, - "quiet" : { - "is_value_required" : false, - "name" : "--quiet", - "shortcut" : "-q", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Do not output any message" - }, - "verbose" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose", - "is_value_required" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "help" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Display this help message", - "name" : "--help", - "is_value_required" : false, - "shortcut" : "-h" - }, - "no-interaction" : { - "description" : "Do not ask any interactive question", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-n", - "is_value_required" : false, - "name" : "--no-interaction" - } - }, - "arguments" : [] - } - }, - { - "definition" : { - "options" : { - "quiet" : { - "description" : "Do not output any message", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false - }, - "verbose" : { - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "ansi" : { - "shortcut" : "", - "name" : "--ansi", - "is_value_required" : false, - "description" : "Force ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "no-update" : { - "is_value_required" : false, - "name" : "--no-update", - "shortcut" : "", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Update composer.json without executing composer update" - }, - "no-ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "version" : { - "shortcut" : "-V", - "is_value_required" : false, - "name" : "--version", - "description" : "Display this application version", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "no-interaction" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Do not ask any interactive question", - "is_value_required" : false, - "name" : "--no-interaction", - "shortcut" : "-n" - }, - "help" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Display this help message", - "is_value_required" : false, - "name" : "--help", - "shortcut" : "-h" - } - }, - "arguments" : [] - }, - "usage" : [ - "sampledata:remove [--no-update]" - ], - "name" : "sampledata:remove", - "hidden" : false, - "description" : "Remove all sample data packages from composer.json", - "help" : "Remove all sample data packages from composer.json" - }, - { - "help" : "Reset all sample data modules for re-installation", - "description" : "Reset all sample data modules for re-installation", - "usage" : [ - "sampledata:reset" - ], - "name" : "sampledata:reset", - "definition" : { - "arguments" : [], - "options" : { - "help" : { - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help", - "description" : "Display this help message", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "no-ansi" : { - "description" : "Disable ANSI output", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "", - "name" : "--no-ansi", - "is_value_required" : false - }, - "version" : { - "description" : "Display this application version", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-V", - "name" : "--version", - "is_value_required" : false - }, - "quiet" : { - "description" : "Do not output any message", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false - }, - "no-interaction" : { - "is_value_required" : false, - "name" : "--no-interaction", - "shortcut" : "-n", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Do not ask any interactive question" - }, - "verbose" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv" - }, - "ansi" : { - "description" : "Force ANSI output", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "", - "name" : "--ansi", - "is_value_required" : false - } - } - }, - "hidden" : false - }, - { - "help" : "Takes backup of Magento Application code base, media and database", - "description" : "Takes backup of Magento Application code base, media and database", - "usage" : [ - "setup:backup [--code] [--media] [--db] [--magento-init-params MAGENTO-INIT-PARAMS]" - ], - "name" : "setup:backup", - "definition" : { - "arguments" : [], - "options" : { - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "is_value_required" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "magento-init-params" : { - "shortcut" : "", - "is_value_required" : true, - "name" : "--magento-init-params", - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "is_multiple" : false, - "accept_value" : true, - "default" : null - }, - "quiet" : { - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet", - "description" : "Do not output any message", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "ansi" : { - "shortcut" : "", - "name" : "--ansi", - "is_value_required" : false, - "description" : "Force ANSI output", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "no-ansi" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_value_required" : false, - "shortcut" : "" - }, - "db" : { - "description" : "Take complete database backup", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--db" - }, - "version" : { - "name" : "--version", - "is_value_required" : false, - "shortcut" : "-V", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Display this application version" - }, - "no-interaction" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Do not ask any interactive question", - "is_value_required" : false, - "name" : "--no-interaction", - "shortcut" : "-n" - }, - "code" : { - "is_value_required" : false, - "name" : "--code", - "shortcut" : "", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Take code and configuration files backup (excluding temporary files)" - }, - "media" : { - "name" : "--media", - "is_value_required" : false, - "shortcut" : "", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Take media backup" - }, - "help" : { - "name" : "--help", - "is_value_required" : false, - "shortcut" : "-h", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this help message" - } - } - }, - "hidden" : false - }, - { - "usage" : [ - "setup:config:set [--backend-frontname BACKEND-FRONTNAME] [--amqp-host AMQP-HOST] [--amqp-port AMQP-PORT] [--amqp-user AMQP-USER] [--amqp-password AMQP-PASSWORD] [--amqp-virtualhost AMQP-VIRTUALHOST] [--amqp-ssl AMQP-SSL] [--amqp-ssl-options AMQP-SSL-OPTIONS] [--enable-debug-logging ENABLE-DEBUG-LOGGING] [--enable-syslog-logging ENABLE-SYSLOG-LOGGING] [--consumers-wait-for-messages CONSUMERS-WAIT-FOR-MESSAGES] [--key KEY] [--db-host DB-HOST] [--db-name DB-NAME] [--db-user DB-USER] [--db-engine DB-ENGINE] [--db-password DB-PASSWORD] [--db-prefix DB-PREFIX] [--db-model DB-MODEL] [--db-init-statements DB-INIT-STATEMENTS] [-s|--skip-db-validation] [--http-cache-hosts HTTP-CACHE-HOSTS] [--db-ssl-key DB-SSL-KEY] [--db-ssl-cert DB-SSL-CERT] [--db-ssl-ca DB-SSL-CA] [--db-ssl-verify] [--session-save SESSION-SAVE] [--session-save-redis-host SESSION-SAVE-REDIS-HOST] [--session-save-redis-port SESSION-SAVE-REDIS-PORT] [--session-save-redis-password SESSION-SAVE-REDIS-PASSWORD] [--session-save-redis-timeout SESSION-SAVE-REDIS-TIMEOUT] [--session-save-redis-persistent-id SESSION-SAVE-REDIS-PERSISTENT-ID] [--session-save-redis-db SESSION-SAVE-REDIS-DB] [--session-save-redis-compression-threshold SESSION-SAVE-REDIS-COMPRESSION-THRESHOLD] [--session-save-redis-compression-lib SESSION-SAVE-REDIS-COMPRESSION-LIB] [--session-save-redis-log-level SESSION-SAVE-REDIS-LOG-LEVEL] [--session-save-redis-max-concurrency SESSION-SAVE-REDIS-MAX-CONCURRENCY] [--session-save-redis-break-after-frontend SESSION-SAVE-REDIS-BREAK-AFTER-FRONTEND] [--session-save-redis-break-after-adminhtml SESSION-SAVE-REDIS-BREAK-AFTER-ADMINHTML] [--session-save-redis-first-lifetime SESSION-SAVE-REDIS-FIRST-LIFETIME] [--session-save-redis-bot-first-lifetime SESSION-SAVE-REDIS-BOT-FIRST-LIFETIME] [--session-save-redis-bot-lifetime SESSION-SAVE-REDIS-BOT-LIFETIME] [--session-save-redis-disable-locking SESSION-SAVE-REDIS-DISABLE-LOCKING] [--session-save-redis-min-lifetime SESSION-SAVE-REDIS-MIN-LIFETIME] [--session-save-redis-max-lifetime SESSION-SAVE-REDIS-MAX-LIFETIME] [--session-save-redis-sentinel-master SESSION-SAVE-REDIS-SENTINEL-MASTER] [--session-save-redis-sentinel-servers SESSION-SAVE-REDIS-SENTINEL-SERVERS] [--session-save-redis-sentinel-verify-master SESSION-SAVE-REDIS-SENTINEL-VERIFY-MASTER] [--session-save-redis-sentinel-connect-retires SESSION-SAVE-REDIS-SENTINEL-CONNECT-RETIRES] [--cache-backend CACHE-BACKEND] [--cache-backend-redis-server CACHE-BACKEND-REDIS-SERVER] [--cache-backend-redis-db CACHE-BACKEND-REDIS-DB] [--cache-backend-redis-port CACHE-BACKEND-REDIS-PORT] [--cache-backend-redis-password CACHE-BACKEND-REDIS-PASSWORD] [--cache-backend-redis-compress-data CACHE-BACKEND-REDIS-COMPRESS-DATA] [--cache-backend-redis-compression-lib CACHE-BACKEND-REDIS-COMPRESSION-LIB] [--cache-id-prefix CACHE-ID-PREFIX] [--page-cache PAGE-CACHE] [--page-cache-redis-server PAGE-CACHE-REDIS-SERVER] [--page-cache-redis-db PAGE-CACHE-REDIS-DB] [--page-cache-redis-port PAGE-CACHE-REDIS-PORT] [--page-cache-redis-password PAGE-CACHE-REDIS-PASSWORD] [--page-cache-redis-compress-data PAGE-CACHE-REDIS-COMPRESS-DATA] [--page-cache-redis-compression-lib PAGE-CACHE-REDIS-COMPRESSION-LIB] [--page-cache-id-prefix PAGE-CACHE-ID-PREFIX] [--lock-provider LOCK-PROVIDER] [--lock-db-prefix LOCK-DB-PREFIX] [--lock-zookeeper-host LOCK-ZOOKEEPER-HOST] [--lock-zookeeper-path LOCK-ZOOKEEPER-PATH] [--lock-file-path LOCK-FILE-PATH] [--magento-init-params MAGENTO-INIT-PARAMS]" - ], - "name" : "setup:config:set", - "definition" : { - "arguments" : [], - "options" : { - "ansi" : { - "description" : "Force ANSI output", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--ansi" - }, - "session-save-redis-port" : { - "is_value_required" : true, - "name" : "--session-save-redis-port", - "shortcut" : "", - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "description" : "Redis server listen port" - }, - "lock-db-prefix" : { - "shortcut" : "", - "name" : "--lock-db-prefix", - "is_value_required" : true, - "description" : "Installation specific lock prefix to avoid lock conflicts", - "accept_value" : true, - "default" : null, - "is_multiple" : false - }, - "cache-backend-redis-server" : { - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "Redis server", - "name" : "--cache-backend-redis-server", - "is_value_required" : true, - "shortcut" : "" - }, - "session-save-redis-sentinel-verify-master" : { - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "description" : "Redis Sentinel verify master. Values: false (default), true", - "name" : "--session-save-redis-sentinel-verify-master", - "is_value_required" : true, - "shortcut" : "" - }, - "page-cache-redis-compress-data" : { - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "description" : "Set to 1 to compress the full page cache (use 0 to disable)", - "name" : "--page-cache-redis-compress-data", - "is_value_required" : true, - "shortcut" : "" - }, - "amqp-port" : { - "shortcut" : "", - "name" : "--amqp-port", - "is_value_required" : true, - "description" : "Amqp server port", - "is_multiple" : false, - "accept_value" : true, - "default" : "5672" - }, - "backend-frontname" : { - "shortcut" : "", - "name" : "--backend-frontname", - "is_value_required" : true, - "description" : "Backend frontname (will be autogenerated if missing)", - "accept_value" : true, - "default" : null, - "is_multiple" : false - }, - "db-prefix" : { - "shortcut" : "", - "name" : "--db-prefix", - "is_value_required" : true, - "description" : "Database table prefix", - "accept_value" : true, - "default" : null, - "is_multiple" : false - }, - "session-save-redis-log-level" : { - "shortcut" : "", - "is_value_required" : true, - "name" : "--session-save-redis-log-level", - "description" : "Redis log level. Values: 0 (least verbose) to 7 (most verbose)", - "is_multiple" : false, - "accept_value" : true, - "default" : null - }, - "amqp-ssl" : { - "default" : "", - "accept_value" : true, - "is_multiple" : false, - "description" : "Amqp SSL", - "name" : "--amqp-ssl", - "is_value_required" : true, - "shortcut" : "" - }, - "session-save-redis-break-after-adminhtml" : { - "name" : "--session-save-redis-break-after-adminhtml", - "is_value_required" : true, - "shortcut" : "", - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "description" : "Number of seconds to wait before trying to break a lock for Admin session" - }, - "page-cache-redis-password" : { - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "description" : "Redis server password", - "is_value_required" : true, - "name" : "--page-cache-redis-password", - "shortcut" : "" - }, - "session-save-redis-sentinel-servers" : { - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "description" : "Redis Sentinel servers, comma separated", - "name" : "--session-save-redis-sentinel-servers", - "is_value_required" : true, - "shortcut" : "" - }, - "db-ssl-key" : { - "shortcut" : "", - "is_value_required" : true, - "name" : "--db-ssl-key", - "description" : "Full path of client key file in order to establish db connection through SSL", - "accept_value" : true, - "default" : "", - "is_multiple" : false - }, - "quiet" : { - "description" : "Do not output any message", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false - }, - "db-password" : { - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "description" : "Database server password", - "name" : "--db-password", - "is_value_required" : true, - "shortcut" : "" - }, - "session-save-redis-compression-lib" : { - "name" : "--session-save-redis-compression-lib", - "is_value_required" : true, - "shortcut" : "", - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "description" : "Redis compression library. Values: gzip (default), lzf, lz4, snappy" - }, - "db-ssl-ca" : { - "shortcut" : "", - "is_value_required" : true, - "name" : "--db-ssl-ca", - "description" : "Full path of server certificate file in order to establish db connection through SSL", - "default" : "", - "accept_value" : true, - "is_multiple" : false - }, - "session-save-redis-max-lifetime" : { - "shortcut" : "", - "name" : "--session-save-redis-max-lifetime", - "is_value_required" : true, - "description" : "Redis max session lifetime, in seconds", - "is_multiple" : false, - "accept_value" : true, - "default" : null - }, - "session-save-redis-compression-threshold" : { - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "description" : "Redis compression threshold", - "is_value_required" : true, - "name" : "--session-save-redis-compression-threshold", - "shortcut" : "" - }, - "help" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this help message", - "name" : "--help", - "is_value_required" : false, - "shortcut" : "-h" - }, - "session-save-redis-timeout" : { - "is_value_required" : true, - "name" : "--session-save-redis-timeout", - "shortcut" : "", - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "description" : "Connection timeout, in seconds" - }, - "session-save-redis-sentinel-connect-retires" : { - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "description" : "Redis Sentinel connect retries.", - "name" : "--session-save-redis-sentinel-connect-retires", - "is_value_required" : true, - "shortcut" : "" - }, - "page-cache-redis-port" : { - "description" : "Redis server listen port", - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "shortcut" : "", - "name" : "--page-cache-redis-port", - "is_value_required" : true - }, - "db-ssl-verify" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Verify server certification", - "is_value_required" : false, - "name" : "--db-ssl-verify", - "shortcut" : "" - }, - "skip-db-validation" : { - "name" : "--skip-db-validation", - "is_value_required" : false, - "shortcut" : "-s", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "If specified, then db connection validation will be skipped" - }, - "amqp-virtualhost" : { - "description" : "Amqp virtualhost", - "is_multiple" : false, - "accept_value" : true, - "default" : "/", - "shortcut" : "", - "is_value_required" : true, - "name" : "--amqp-virtualhost" - }, - "session-save-redis-first-lifetime" : { - "is_value_required" : true, - "name" : "--session-save-redis-first-lifetime", - "shortcut" : "", - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "Lifetime, in seconds, of session for non-bots on the first write (use 0 to disable)" - }, - "cache-id-prefix" : { - "description" : "ID prefix for cache keys", - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "shortcut" : "", - "is_value_required" : true, - "name" : "--cache-id-prefix" - }, - "db-name" : { - "is_value_required" : true, - "name" : "--db-name", - "shortcut" : "", - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "description" : "Database name" - }, - "session-save-redis-sentinel-master" : { - "shortcut" : "", - "name" : "--session-save-redis-sentinel-master", - "is_value_required" : true, - "description" : "Redis Sentinel master", - "is_multiple" : false, - "accept_value" : true, - "default" : null - }, - "session-save-redis-persistent-id" : { - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "description" : "Unique string to enable persistent connections", - "is_value_required" : true, - "name" : "--session-save-redis-persistent-id", - "shortcut" : "" - }, - "session-save-redis-break-after-frontend" : { - "is_value_required" : true, - "name" : "--session-save-redis-break-after-frontend", - "shortcut" : "", - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "Number of seconds to wait before trying to break a lock for frontend session" - }, - "version" : { - "description" : "Display this application version", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-V", - "is_value_required" : false, - "name" : "--version" - }, - "cache-backend-redis-compression-lib" : { - "shortcut" : "", - "name" : "--cache-backend-redis-compression-lib", - "is_value_required" : true, - "description" : "Compression lib to use [snappy,lzf,l4z,zstd,gzip] (leave blank to determine automatically)", - "default" : null, - "accept_value" : true, - "is_multiple" : false - }, - "enable-syslog-logging" : { - "name" : "--enable-syslog-logging", - "is_value_required" : true, - "shortcut" : "", - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "description" : "Enable syslog logging" - }, - "session-save-redis-disable-locking" : { - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "Redis disable locking. Values: false (default), true", - "is_value_required" : true, - "name" : "--session-save-redis-disable-locking", - "shortcut" : "" - }, - "session-save-redis-password" : { - "description" : "Redis server password", - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "shortcut" : "", - "is_value_required" : true, - "name" : "--session-save-redis-password" - }, - "consumers-wait-for-messages" : { - "is_value_required" : true, - "name" : "--consumers-wait-for-messages", - "shortcut" : "", - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "description" : "Should consumers wait for a message from the queue? 1 - Yes, 0 - No" - }, - "page-cache-id-prefix" : { - "is_value_required" : true, - "name" : "--page-cache-id-prefix", - "shortcut" : "", - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "description" : "ID prefix for cache keys" - }, - "page-cache-redis-db" : { - "name" : "--page-cache-redis-db", - "is_value_required" : true, - "shortcut" : "", - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "description" : "Database number for the cache" - }, - "db-host" : { - "is_value_required" : true, - "name" : "--db-host", - "shortcut" : "", - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "description" : "Database server host" - }, - "cache-backend-redis-db" : { - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "description" : "Database number for the cache", - "name" : "--cache-backend-redis-db", - "is_value_required" : true, - "shortcut" : "" - }, - "http-cache-hosts" : { - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "http Cache hosts", - "is_value_required" : true, - "name" : "--http-cache-hosts", - "shortcut" : "" - }, - "session-save-redis-min-lifetime" : { - "description" : "Redis min session lifetime, in seconds", - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : true, - "name" : "--session-save-redis-min-lifetime" - }, - "amqp-user" : { - "accept_value" : true, - "default" : "", - "is_multiple" : false, - "description" : "Amqp server username", - "name" : "--amqp-user", - "is_value_required" : true, - "shortcut" : "" - }, - "no-interaction" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction", - "is_value_required" : false, - "shortcut" : "-n" - }, - "page-cache-redis-compression-lib" : { - "shortcut" : "", - "is_value_required" : true, - "name" : "--page-cache-redis-compression-lib", - "description" : "Compression library to use [snappy,lzf,l4z,zstd,gzip] (leave blank to determine automatically)", - "accept_value" : true, - "default" : null, - "is_multiple" : false - }, - "session-save-redis-host" : { - "description" : "Fully qualified host name, IP address, or absolute path if using UNIX sockets", - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : true, - "name" : "--session-save-redis-host" - }, - "db-user" : { - "name" : "--db-user", - "is_value_required" : true, - "shortcut" : "", - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "description" : "Database server username" - }, - "amqp-ssl-options" : { - "description" : "Amqp SSL Options (JSON)", - "is_multiple" : false, - "default" : "", - "accept_value" : true, - "shortcut" : "", - "is_value_required" : true, - "name" : "--amqp-ssl-options" - }, - "amqp-password" : { - "description" : "Amqp server password", - "is_multiple" : false, - "accept_value" : true, - "default" : "", - "shortcut" : "", - "is_value_required" : true, - "name" : "--amqp-password" - }, - "session-save-redis-bot-lifetime" : { - "name" : "--session-save-redis-bot-lifetime", - "is_value_required" : true, - "shortcut" : "", - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "Lifetime of session for bots on subsequent writes (use 0 to disable)" - }, - "key" : { - "name" : "--key", - "is_value_required" : true, - "shortcut" : "", - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "description" : "Encryption key" - }, - "cache-backend" : { - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "Default cache handler", - "is_value_required" : true, - "name" : "--cache-backend", - "shortcut" : "" - }, - "page-cache-redis-server" : { - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "description" : "Redis server", - "is_value_required" : true, - "name" : "--page-cache-redis-server", - "shortcut" : "" - }, - "lock-provider" : { - "shortcut" : "", - "is_value_required" : true, - "name" : "--lock-provider", - "description" : "Lock provider name", - "accept_value" : true, - "default" : null, - "is_multiple" : false - }, - "amqp-host" : { - "is_multiple" : false, - "accept_value" : true, - "default" : "", - "description" : "Amqp server host", - "name" : "--amqp-host", - "is_value_required" : true, - "shortcut" : "" - }, - "lock-zookeeper-host" : { - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "Host and port to connect to Zookeeper cluster. For example: 127.0.0.1:2181", - "name" : "--lock-zookeeper-host", - "is_value_required" : true, - "shortcut" : "" - }, - "cache-backend-redis-port" : { - "shortcut" : "", - "is_value_required" : true, - "name" : "--cache-backend-redis-port", - "description" : "Redis server listen port", - "is_multiple" : false, - "accept_value" : true, - "default" : null - }, - "db-engine" : { - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "description" : "Database server engine", - "is_value_required" : true, - "name" : "--db-engine", - "shortcut" : "" - }, - "magento-init-params" : { - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "name" : "--magento-init-params", - "is_value_required" : true, - "shortcut" : "" - }, - "page-cache" : { - "is_value_required" : true, - "name" : "--page-cache", - "shortcut" : "", - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "description" : "Default cache handler" - }, - "session-save-redis-bot-first-lifetime" : { - "shortcut" : "", - "is_value_required" : true, - "name" : "--session-save-redis-bot-first-lifetime", - "description" : "Lifetime, in seconds, of session for bots on the first write (use 0 to disable)", - "accept_value" : true, - "default" : null, - "is_multiple" : false - }, - "db-init-statements" : { - "name" : "--db-init-statements", - "is_value_required" : true, - "shortcut" : "", - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "Database initial set of commands" - }, - "db-ssl-cert" : { - "shortcut" : "", - "is_value_required" : true, - "name" : "--db-ssl-cert", - "description" : "Full path of client certificate file in order to establish db connection through SSL", - "is_multiple" : false, - "accept_value" : true, - "default" : "" - }, - "cache-backend-redis-password" : { - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "description" : "Redis server password", - "is_value_required" : true, - "name" : "--cache-backend-redis-password", - "shortcut" : "" - }, - "session-save-redis-max-concurrency" : { - "is_value_required" : true, - "name" : "--session-save-redis-max-concurrency", - "shortcut" : "", - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "description" : "Maximum number of processes that can wait for a lock on one session" - }, - "enable-debug-logging" : { - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "Enable debug logging", - "name" : "--enable-debug-logging", - "is_value_required" : true, - "shortcut" : "" - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "is_value_required" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "db-model" : { - "shortcut" : "", - "is_value_required" : true, - "name" : "--db-model", - "description" : "Database type", - "accept_value" : true, - "default" : null, - "is_multiple" : false - }, - "lock-file-path" : { - "description" : "The path where file locks will be saved.", - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "shortcut" : "", - "name" : "--lock-file-path", - "is_value_required" : true - }, - "no-ansi" : { - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Disable ANSI output" - }, - "cache-backend-redis-compress-data" : { - "shortcut" : "", - "name" : "--cache-backend-redis-compress-data", - "is_value_required" : true, - "description" : "Set to 0 to disable compression (default is 1, enabled)", - "accept_value" : true, - "default" : null, - "is_multiple" : false - }, - "session-save" : { - "description" : "Session save handler", - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : true, - "name" : "--session-save" - }, - "lock-zookeeper-path" : { - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "The path where Zookeeper will save locks. The default path is: /magento/locks", - "is_value_required" : true, - "name" : "--lock-zookeeper-path", - "shortcut" : "" - }, - "session-save-redis-db" : { - "shortcut" : "", - "is_value_required" : true, - "name" : "--session-save-redis-db", - "description" : "Redis database number", - "default" : null, - "accept_value" : true, - "is_multiple" : false - } - } - }, - "hidden" : false, - "description" : "Creates or modifies the deployment configuration", - "help" : "Creates or modifies the deployment configuration" - }, - { - "name" : "setup:cron:run", - "usage" : [ - "setup:cron:run [--magento-init-params MAGENTO-INIT-PARAMS]" - ], - "definition" : { - "arguments" : [], - "options" : { - "no-interaction" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Do not ask any interactive question", - "is_value_required" : false, - "name" : "--no-interaction", - "shortcut" : "-n" - }, - "help" : { - "shortcut" : "-h", - "name" : "--help", - "is_value_required" : false, - "description" : "Display this help message", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "quiet" : { - "description" : "Do not output any message", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false - }, - "magento-init-params" : { - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "shortcut" : "", - "name" : "--magento-init-params", - "is_value_required" : true - }, - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv", - "is_value_required" : false, - "name" : "--verbose" - }, - "ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "no-ansi" : { - "name" : "--no-ansi", - "is_value_required" : false, - "shortcut" : "", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Disable ANSI output" - }, - "version" : { - "description" : "Display this application version", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-V", - "is_value_required" : false, - "name" : "--version" - } - } - }, - "hidden" : false, - "help" : "Runs cron job scheduled for setup application", - "description" : "Runs cron job scheduled for setup application" - }, - { - "hidden" : false, - "usage" : [ - "setup:db-data:upgrade [--magento-init-params MAGENTO-INIT-PARAMS]" - ], - "name" : "setup:db-data:upgrade", - "definition" : { - "options" : { - "no-interaction" : { - "name" : "--no-interaction", - "is_value_required" : false, - "shortcut" : "-n", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Do not ask any interactive question" - }, - "help" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Display this help message", - "is_value_required" : false, - "name" : "--help", - "shortcut" : "-h" - }, - "ansi" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "" - }, - "quiet" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "is_value_required" : false, - "shortcut" : "-q" - }, - "magento-init-params" : { - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "shortcut" : "", - "name" : "--magento-init-params", - "is_value_required" : true - }, - "verbose" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv" - }, - "version" : { - "description" : "Display this application version", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-V", - "name" : "--version", - "is_value_required" : false - }, - "no-ansi" : { - "name" : "--no-ansi", - "is_value_required" : false, - "shortcut" : "", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Disable ANSI output" - } - }, - "arguments" : [] - }, - "description" : "Installs and upgrades data in the DB", - "help" : "Installs and upgrades data in the DB" - }, - { - "help" : "Generate patch and put it in specific folder.", - "description" : "Generate patch and put it in specific folder.", - "hidden" : false, - "definition" : { - "arguments" : { - "patch" : { - "name" : "patch", - "is_required" : true, - "is_array" : false, - "default" : null, - "description" : "Patch name" - }, - "module" : { - "default" : null, - "description" : "Module name", - "name" : "module", - "is_required" : true, - "is_array" : false - } - }, - "options" : { - "help" : { - "shortcut" : "-h", - "name" : "--help", - "is_value_required" : false, - "description" : "Display this help message", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "type" : { - "name" : "--type", - "is_value_required" : false, - "shortcut" : "", - "accept_value" : true, - "default" : "data", - "is_multiple" : false, - "description" : "Find out what type of patch should be generated. Available values: `data`, `schema`." - }, - "no-interaction" : { - "shortcut" : "-n", - "is_value_required" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "no-ansi" : { - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Disable ANSI output" - }, - "revertable" : { - "shortcut" : "", - "name" : "--revertable", - "is_value_required" : false, - "description" : "Check whether patch is revertable or not.", - "accept_value" : true, - "default" : false, - "is_multiple" : false - }, - "version" : { - "shortcut" : "-V", - "name" : "--version", - "is_value_required" : false, - "description" : "Display this application version", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "quiet" : { - "description" : "Do not output any message", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false - }, - "verbose" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv" - }, - "ansi" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "" - } - } - }, - "name" : "setup:db-declaration:generate-patch", - "usage" : [ - "setup:db-declaration:generate-patch [--revertable [REVERTABLE]] [--type [TYPE]] [--] " - ] - }, - { - "help" : "Generate whitelist of tables and columns that are allowed to be edited by declaration installer", - "description" : "Generate whitelist of tables and columns that are allowed to be edited by declaration installer", - "definition" : { - "options" : { - "verbose" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv" - }, - "quiet" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Do not output any message", - "is_value_required" : false, - "name" : "--quiet", - "shortcut" : "-q" - }, - "ansi" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "" - }, - "no-ansi" : { - "description" : "Disable ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "", - "name" : "--no-ansi", - "is_value_required" : false - }, - "version" : { - "description" : "Display this application version", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-V", - "name" : "--version", - "is_value_required" : false - }, - "module-name" : { - "default" : "all", - "accept_value" : true, - "is_multiple" : false, - "description" : "Name of the module where whitelist will be generated", - "is_value_required" : false, - "name" : "--module-name", - "shortcut" : "" - }, - "no-interaction" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction", - "is_value_required" : false, - "shortcut" : "-n" - }, - "help" : { - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help", - "description" : "Display this help message", - "accept_value" : false, - "default" : false, - "is_multiple" : false - } - }, - "arguments" : [] - }, - "usage" : [ - "setup:db-declaration:generate-whitelist [--module-name [MODULE-NAME]]" - ], - "name" : "setup:db-declaration:generate-whitelist", - "hidden" : false - }, - { - "hidden" : false, - "definition" : { - "options" : { - "no-interaction" : { - "name" : "--no-interaction", - "is_value_required" : false, - "shortcut" : "-n", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Do not ask any interactive question" - }, - "resource" : { - "shortcut" : "", - "name" : "--resource", - "is_value_required" : false, - "description" : "Slave Resource name", - "default" : "default", - "accept_value" : true, - "is_multiple" : false - }, - "help" : { - "shortcut" : "-h", - "name" : "--help", - "is_value_required" : false, - "description" : "Display this help message", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "connection" : { - "name" : "--connection", - "is_value_required" : false, - "shortcut" : "", - "is_multiple" : false, - "default" : "default", - "accept_value" : true, - "description" : "Slave connection name" - }, - "dbname" : { - "is_value_required" : true, - "name" : "--dbname", - "shortcut" : "", - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "description" : "Slave Database Name" - }, - "quiet" : { - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet", - "description" : "Do not output any message", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "is_value_required" : false, - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "ansi" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Force ANSI output", - "is_value_required" : false, - "name" : "--ansi", - "shortcut" : "" - }, - "username" : { - "is_multiple" : false, - "accept_value" : true, - "default" : "root", - "description" : "Slave DB user name", - "is_value_required" : true, - "name" : "--username", - "shortcut" : "" - }, - "maxAllowedLag" : { - "shortcut" : "", - "name" : "--maxAllowedLag", - "is_value_required" : false, - "description" : "Max Allowed Lag Slave Connection (in seconds)", - "default" : "", - "accept_value" : true, - "is_multiple" : false - }, - "no-ansi" : { - "description" : "Disable ANSI output", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "", - "name" : "--no-ansi", - "is_value_required" : false - }, - "password" : { - "description" : "Slave DB user password", - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "shortcut" : "", - "name" : "--password", - "is_value_required" : false - }, - "host" : { - "is_value_required" : true, - "name" : "--host", - "shortcut" : "", - "is_multiple" : false, - "default" : "localhost", - "accept_value" : true, - "description" : "Slave DB Server host" - }, - "version" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Display this application version", - "name" : "--version", - "is_value_required" : false, - "shortcut" : "-V" - } - }, - "arguments" : [] - }, - "usage" : [ - "setup:db-schema:add-slave [--host HOST] [--dbname DBNAME] [--username USERNAME] [--password [PASSWORD]] [--connection [CONNECTION]] [--resource [RESOURCE]] [--maxAllowedLag [MAXALLOWEDLAG]]" - ], - "name" : "setup:db-schema:add-slave", - "help" : "Move checkout quote related tables to a separate DB server", - "description" : "Move checkout quote related tables to a separate DB server" - }, - { - "help" : "Move checkout quote related tables to a separate DB server", - "description" : "Move checkout quote related tables to a separate DB server", - "usage" : [ - "setup:db-schema:split-quote [--host HOST] [--dbname DBNAME] [--username USERNAME] [--password [PASSWORD]] [--connection [CONNECTION]] [--resource [RESOURCE]] [--magento-init-params MAGENTO-INIT-PARAMS]" - ], - "name" : "setup:db-schema:split-quote", - "definition" : { - "options" : { - "password" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--password", - "description" : "Checkout DB user password", - "is_multiple" : false, - "default" : null, - "accept_value" : true - }, - "no-ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "host" : { - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "Checkout DB Server host", - "name" : "--host", - "is_value_required" : true, - "shortcut" : "" - }, - "version" : { - "name" : "--version", - "is_value_required" : false, - "shortcut" : "-V", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this application version" - }, - "magento-init-params" : { - "shortcut" : "", - "name" : "--magento-init-params", - "is_value_required" : true, - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "default" : null, - "accept_value" : true, - "is_multiple" : false - }, - "quiet" : { - "is_value_required" : false, - "name" : "--quiet", - "shortcut" : "-q", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Do not output any message" - }, - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-v|-vv|-vvv", - "is_value_required" : false, - "name" : "--verbose" - }, - "ansi" : { - "description" : "Force ANSI output", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--ansi" - }, - "username" : { - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "Checkout DB user name", - "is_value_required" : true, - "name" : "--username", - "shortcut" : "" - }, - "help" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Display this help message", - "is_value_required" : false, - "name" : "--help", - "shortcut" : "-h" - }, - "connection" : { - "shortcut" : "", - "name" : "--connection", - "is_value_required" : false, - "description" : "Checkout connection name", - "is_multiple" : false, - "accept_value" : true, - "default" : "checkout" - }, - "dbname" : { - "is_value_required" : true, - "name" : "--dbname", - "shortcut" : "", - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "description" : "Checkout Database Name" - }, - "resource" : { - "is_value_required" : false, - "name" : "--resource", - "shortcut" : "", - "is_multiple" : false, - "accept_value" : true, - "default" : "checkout", - "description" : "Checkout resource name" - }, - "no-interaction" : { - "is_value_required" : false, - "name" : "--no-interaction", - "shortcut" : "-n", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Do not ask any interactive question" - } - }, - "arguments" : [] - }, - "hidden" : false - }, - { - "description" : "Move sales related tables to a separate DB server", - "help" : "Move sales related tables to a separate DB server", - "usage" : [ - "setup:db-schema:split-sales [--host HOST] [--dbname DBNAME] [--username USERNAME] [--password [PASSWORD]] [--connection [CONNECTION]] [--resource [RESOURCE]] [--magento-init-params MAGENTO-INIT-PARAMS]" - ], - "name" : "setup:db-schema:split-sales", - "definition" : { - "options" : { - "resource" : { - "description" : "Sales resource name", - "default" : "sales", - "accept_value" : true, - "is_multiple" : false, - "shortcut" : "", - "name" : "--resource", - "is_value_required" : false - }, - "no-interaction" : { - "name" : "--no-interaction", - "is_value_required" : false, - "shortcut" : "-n", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Do not ask any interactive question" - }, - "connection" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--connection", - "description" : "Sales connection name", - "accept_value" : true, - "default" : "sales", - "is_multiple" : false - }, - "help" : { - "is_value_required" : false, - "name" : "--help", - "shortcut" : "-h", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Display this help message" - }, - "dbname" : { - "description" : "Sales Database Name", - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "shortcut" : "", - "is_value_required" : true, - "name" : "--dbname" - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "is_value_required" : false, - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "quiet" : { - "is_value_required" : false, - "name" : "--quiet", - "shortcut" : "-q", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Do not output any message" - }, - "magento-init-params" : { - "is_value_required" : true, - "name" : "--magento-init-params", - "shortcut" : "", - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"" - }, - "username" : { - "is_value_required" : true, - "name" : "--username", - "shortcut" : "", - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "description" : "Sales DB user name" - }, - "ansi" : { - "shortcut" : "", - "name" : "--ansi", - "is_value_required" : false, - "description" : "Force ANSI output", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "no-ansi" : { - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Disable ANSI output" - }, - "password" : { - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "description" : "Sales DB user passowrd", - "is_value_required" : false, - "name" : "--password", - "shortcut" : "" - }, - "host" : { - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "description" : "Sales DB Server host", - "is_value_required" : true, - "name" : "--host", - "shortcut" : "" - }, - "version" : { - "shortcut" : "-V", - "is_value_required" : false, - "name" : "--version", - "description" : "Display this application version", - "accept_value" : false, - "default" : false, - "is_multiple" : false - } - }, - "arguments" : [] - }, - "hidden" : false - }, - { - "help" : "Installs and upgrades the DB schema", - "description" : "Installs and upgrades the DB schema", - "hidden" : false, - "definition" : { - "options" : { - "help" : { - "name" : "--help", - "is_value_required" : false, - "shortcut" : "-h", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Display this help message" - }, - "no-interaction" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction", - "is_value_required" : false, - "shortcut" : "-n" - }, - "version" : { - "name" : "--version", - "is_value_required" : false, - "shortcut" : "-V", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Display this application version" - }, - "no-ansi" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_value_required" : false, - "shortcut" : "" - }, - "ansi" : { - "shortcut" : "", - "name" : "--ansi", - "is_value_required" : false, - "description" : "Force ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "magento-init-params" : { - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "shortcut" : "", - "name" : "--magento-init-params", - "is_value_required" : true - }, - "quiet" : { - "description" : "Do not output any message", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false - }, - "verbose" : { - "name" : "--verbose", - "is_value_required" : false, - "shortcut" : "-v|-vv|-vvv", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "convert-old-scripts" : { - "is_multiple" : false, - "accept_value" : true, - "default" : false, - "description" : "Allows to convert old scripts (InstallSchema, UpgradeSchema) to db_schema.xml format", - "is_value_required" : false, - "name" : "--convert-old-scripts", - "shortcut" : "" - } - }, - "arguments" : [] - }, - "name" : "setup:db-schema:upgrade", - "usage" : [ - "setup:db-schema:upgrade [--convert-old-scripts [CONVERT-OLD-SCRIPTS]] [--magento-init-params MAGENTO-INIT-PARAMS]" - ] - }, - { - "hidden" : false, - "definition" : { - "options" : { - "help" : { - "description" : "Display this help message", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help" - }, - "no-interaction" : { - "description" : "Do not ask any interactive question", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false - }, - "no-ansi" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_value_required" : false, - "shortcut" : "" - }, - "version" : { - "shortcut" : "-V", - "name" : "--version", - "is_value_required" : false, - "description" : "Display this application version", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "magento-init-params" : { - "name" : "--magento-init-params", - "is_value_required" : true, - "shortcut" : "", - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"" - }, - "quiet" : { - "description" : "Do not output any message", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false - }, - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "is_value_required" : false - }, - "ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "is_multiple" : false, - "default" : false, - "accept_value" : false - } - }, - "arguments" : [] - }, - "name" : "setup:db:status", - "usage" : [ - "setup:db:status [--magento-init-params MAGENTO-INIT-PARAMS]" - ], - "description" : "Checks if DB schema or data requires upgrade", - "help" : "Checks if DB schema or data requires upgrade" - }, - { - "definition" : { - "options" : { - "version" : { - "shortcut" : "-V", - "name" : "--version", - "is_value_required" : false, - "description" : "Display this application version", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "help" : { - "name" : "--help", - "is_value_required" : false, - "shortcut" : "-h", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this help message" - }, - "no-ansi" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_value_required" : false, - "shortcut" : "" - }, - "ansi" : { - "is_value_required" : false, - "name" : "--ansi", - "shortcut" : "", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Force ANSI output" - }, - "no-interaction" : { - "shortcut" : "-n", - "is_value_required" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "quiet" : { - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false, - "description" : "Do not output any message", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv", - "is_value_required" : false, - "name" : "--verbose" - } - }, - "arguments" : [] - }, - "name" : "setup:di:compile", - "usage" : [ - "setup:di:compile" - ], - "hidden" : false, - "help" : "Generates DI configuration and all missing classes that can be auto-generated", - "description" : "Generates DI configuration and all missing classes that can be auto-generated" - }, - { - "help" : "Installs the Magento application", - "description" : "Installs the Magento application", - "hidden" : false, - "definition" : { - "arguments" : [], - "options" : { - "session-save-redis-compression-threshold" : { - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "Redis compression threshold", - "is_value_required" : true, - "name" : "--session-save-redis-compression-threshold", - "shortcut" : "" - }, - "help" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Display this help message", - "is_value_required" : false, - "name" : "--help", - "shortcut" : "-h" - }, - "session-save-redis-max-lifetime" : { - "shortcut" : "", - "name" : "--session-save-redis-max-lifetime", - "is_value_required" : true, - "description" : "Redis max session lifetime, in seconds", - "accept_value" : true, - "default" : null, - "is_multiple" : false - }, - "use-secure-admin" : { - "description" : "Run admin interface with SSL. Deprecated, use config:set with path web/secure/use_in_adminhtml", - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "shortcut" : "", - "name" : "--use-secure-admin", - "is_value_required" : true - }, - "db-ssl-ca" : { - "shortcut" : "", - "is_value_required" : true, - "name" : "--db-ssl-ca", - "description" : "Full path of server certificate file in order to establish db connection through SSL", - "is_multiple" : false, - "default" : "", - "accept_value" : true - }, - "session-save-redis-compression-lib" : { - "name" : "--session-save-redis-compression-lib", - "is_value_required" : true, - "shortcut" : "", - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "description" : "Redis compression library. Values: gzip (default), lzf, lz4, snappy" - }, - "session-save-redis-sentinel-servers" : { - "is_value_required" : true, - "name" : "--session-save-redis-sentinel-servers", - "shortcut" : "", - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "description" : "Redis Sentinel servers, comma separated" - }, - "db-ssl-key" : { - "shortcut" : "", - "is_value_required" : true, - "name" : "--db-ssl-key", - "description" : "Full path of client key file in order to establish db connection through SSL", - "is_multiple" : false, - "accept_value" : true, - "default" : "" - }, - "quiet" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "is_value_required" : false, - "shortcut" : "-q" - }, - "db-password" : { - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "description" : "Database server password", - "name" : "--db-password", - "is_value_required" : true, - "shortcut" : "" - }, - "amqp-ssl" : { - "is_value_required" : true, - "name" : "--amqp-ssl", - "shortcut" : "", - "is_multiple" : false, - "default" : "", - "accept_value" : true, - "description" : "Amqp SSL" - }, - "session-save-redis-break-after-adminhtml" : { - "shortcut" : "", - "name" : "--session-save-redis-break-after-adminhtml", - "is_value_required" : true, - "description" : "Number of seconds to wait before trying to break a lock for Admin session", - "is_multiple" : false, - "default" : null, - "accept_value" : true - }, - "base-url" : { - "is_value_required" : true, - "name" : "--base-url", - "shortcut" : "", - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "description" : "URL the store is supposed to be available at. Deprecated, use config:set with path web/unsecure/base_url" - }, - "page-cache-redis-password" : { - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "description" : "Redis server password", - "name" : "--page-cache-redis-password", - "is_value_required" : true, - "shortcut" : "" - }, - "db-prefix" : { - "description" : "Database table prefix", - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : true, - "name" : "--db-prefix" - }, - "session-save-redis-log-level" : { - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "description" : "Redis log level. Values: 0 (least verbose) to 7 (most verbose)", - "name" : "--session-save-redis-log-level", - "is_value_required" : true, - "shortcut" : "" - }, - "admin-lastname" : { - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "description" : "Admin last name", - "name" : "--admin-lastname", - "is_value_required" : false, - "shortcut" : "" - }, - "language" : { - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "Default language code. Deprecated, use config:set with path general/locale/code", - "is_value_required" : true, - "name" : "--language", - "shortcut" : "" - }, - "page-cache-redis-compress-data" : { - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "description" : "Set to 1 to compress the full page cache (use 0 to disable)", - "name" : "--page-cache-redis-compress-data", - "is_value_required" : true, - "shortcut" : "" - }, - "admin-user" : { - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "description" : "Admin user", - "name" : "--admin-user", - "is_value_required" : false, - "shortcut" : "" - }, - "backend-frontname" : { - "name" : "--backend-frontname", - "is_value_required" : true, - "shortcut" : "", - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "description" : "Backend frontname (will be autogenerated if missing)" - }, - "amqp-port" : { - "name" : "--amqp-port", - "is_value_required" : true, - "shortcut" : "", - "default" : "5672", - "accept_value" : true, - "is_multiple" : false, - "description" : "Amqp server port" - }, - "base-url-secure" : { - "description" : "Base URL for SSL connection. Deprecated, use config:set with path web/secure/base_url", - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "shortcut" : "", - "name" : "--base-url-secure", - "is_value_required" : true - }, - "ansi" : { - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Force ANSI output" - }, - "session-save-redis-port" : { - "name" : "--session-save-redis-port", - "is_value_required" : true, - "shortcut" : "", - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "Redis server listen port" - }, - "lock-db-prefix" : { - "description" : "Installation specific lock prefix to avoid lock conflicts", - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "shortcut" : "", - "name" : "--lock-db-prefix", - "is_value_required" : true - }, - "session-save-redis-sentinel-verify-master" : { - "shortcut" : "", - "name" : "--session-save-redis-sentinel-verify-master", - "is_value_required" : true, - "description" : "Redis Sentinel verify master. Values: false (default), true", - "is_multiple" : false, - "accept_value" : true, - "default" : null - }, - "cache-backend-redis-server" : { - "is_value_required" : true, - "name" : "--cache-backend-redis-server", - "shortcut" : "", - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "Redis server" - }, - "page-cache-id-prefix" : { - "name" : "--page-cache-id-prefix", - "is_value_required" : true, - "shortcut" : "", - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "description" : "ID prefix for cache keys" - }, - "admin-use-security-key" : { - "shortcut" : "", - "name" : "--admin-use-security-key", - "is_value_required" : true, - "description" : "Whether to use a \"security key\" feature in Magento Admin URLs and forms. Deprecated, use config:set with path admin/security/use_form_key", - "is_multiple" : false, - "default" : null, - "accept_value" : true - }, - "db-host" : { - "description" : "Database server host", - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : true, - "name" : "--db-host" - }, - "page-cache-redis-db" : { - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "description" : "Database number for the cache", - "name" : "--page-cache-redis-db", - "is_value_required" : true, - "shortcut" : "" - }, - "session-save-redis-disable-locking" : { - "name" : "--session-save-redis-disable-locking", - "is_value_required" : true, - "shortcut" : "", - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "description" : "Redis disable locking. Values: false (default), true" - }, - "cache-backend-redis-compression-lib" : { - "is_value_required" : true, - "name" : "--cache-backend-redis-compression-lib", - "shortcut" : "", - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "Compression lib to use [snappy,lzf,l4z,zstd,gzip] (leave blank to determine automatically)" - }, - "enable-syslog-logging" : { - "shortcut" : "", - "is_value_required" : true, - "name" : "--enable-syslog-logging", - "description" : "Enable syslog logging", - "accept_value" : true, - "default" : null, - "is_multiple" : false - }, - "consumers-wait-for-messages" : { - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "Should consumers wait for a message from the queue? 1 - Yes, 0 - No", - "name" : "--consumers-wait-for-messages", - "is_value_required" : true, - "shortcut" : "" - }, - "session-save-redis-password" : { - "name" : "--session-save-redis-password", - "is_value_required" : true, - "shortcut" : "", - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "description" : "Redis server password" - }, - "version" : { - "shortcut" : "-V", - "is_value_required" : false, - "name" : "--version", - "description" : "Display this application version", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "disable-modules" : { - "name" : "--disable-modules", - "is_value_required" : false, - "shortcut" : "", - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "description" : "List of comma-separated module names. That must be avoided during installation. Available magic param \"all\"." - }, - "admin-password" : { - "description" : "Admin password", - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "shortcut" : "", - "is_value_required" : false, - "name" : "--admin-password" - }, - "session-save-redis-persistent-id" : { - "shortcut" : "", - "is_value_required" : true, - "name" : "--session-save-redis-persistent-id", - "description" : "Unique string to enable persistent connections", - "accept_value" : true, - "default" : null, - "is_multiple" : false - }, - "session-save-redis-break-after-frontend" : { - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "Number of seconds to wait before trying to break a lock for frontend session", - "is_value_required" : true, - "name" : "--session-save-redis-break-after-frontend", - "shortcut" : "" - }, - "db-name" : { - "description" : "Database name", - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "shortcut" : "", - "name" : "--db-name", - "is_value_required" : true - }, - "session-save-redis-sentinel-master" : { - "shortcut" : "", - "is_value_required" : true, - "name" : "--session-save-redis-sentinel-master", - "description" : "Redis Sentinel master", - "accept_value" : true, - "default" : null, - "is_multiple" : false - }, - "cache-id-prefix" : { - "name" : "--cache-id-prefix", - "is_value_required" : true, - "shortcut" : "", - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "description" : "ID prefix for cache keys" - }, - "amqp-virtualhost" : { - "name" : "--amqp-virtualhost", - "is_value_required" : true, - "shortcut" : "", - "is_multiple" : false, - "accept_value" : true, - "default" : "/", - "description" : "Amqp virtualhost" - }, - "skip-db-validation" : { - "shortcut" : "-s", - "is_value_required" : false, - "name" : "--skip-db-validation", - "description" : "If specified, then db connection validation will be skipped", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "session-save-redis-first-lifetime" : { - "description" : "Lifetime, in seconds, of session for non-bots on the first write (use 0 to disable)", - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "shortcut" : "", - "is_value_required" : true, - "name" : "--session-save-redis-first-lifetime" - }, - "session-save-redis-timeout" : { - "name" : "--session-save-redis-timeout", - "is_value_required" : true, - "shortcut" : "", - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "description" : "Connection timeout, in seconds" - }, - "session-save-redis-sentinel-connect-retires" : { - "is_value_required" : true, - "name" : "--session-save-redis-sentinel-connect-retires", - "shortcut" : "", - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "description" : "Redis Sentinel connect retries." - }, - "admin-email" : { - "description" : "Admin email", - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "shortcut" : "", - "name" : "--admin-email", - "is_value_required" : false - }, - "db-ssl-verify" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Verify server certification", - "is_value_required" : false, - "name" : "--db-ssl-verify", - "shortcut" : "" - }, - "convert-old-scripts" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--convert-old-scripts", - "description" : "Allows to convert old scripts (InstallSchema, UpgradeSchema) to db_schema.xml format", - "is_multiple" : false, - "default" : false, - "accept_value" : true - }, - "page-cache-redis-port" : { - "shortcut" : "", - "is_value_required" : true, - "name" : "--page-cache-redis-port", - "description" : "Redis server listen port", - "accept_value" : true, - "default" : null, - "is_multiple" : false - }, - "amqp-host" : { - "shortcut" : "", - "is_value_required" : true, - "name" : "--amqp-host", - "description" : "Amqp server host", - "is_multiple" : false, - "default" : "", - "accept_value" : true - }, - "lock-zookeeper-host" : { - "description" : "Host and port to connect to Zookeeper cluster. For example: 127.0.0.1:2181", - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : true, - "name" : "--lock-zookeeper-host" - }, - "safe-mode" : { - "description" : "Safe installation of Magento with dumps on destructive operations, like column removal", - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "shortcut" : "", - "name" : "--safe-mode", - "is_value_required" : false - }, - "lock-provider" : { - "description" : "Lock provider name", - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "shortcut" : "", - "name" : "--lock-provider", - "is_value_required" : true - }, - "page-cache-redis-server" : { - "shortcut" : "", - "name" : "--page-cache-redis-server", - "is_value_required" : true, - "description" : "Redis server", - "is_multiple" : false, - "default" : null, - "accept_value" : true - }, - "cache-backend" : { - "is_value_required" : true, - "name" : "--cache-backend", - "shortcut" : "", - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "Default cache handler" - }, - "key" : { - "name" : "--key", - "is_value_required" : true, - "shortcut" : "", - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "description" : "Encryption key" - }, - "sales-order-increment-prefix" : { - "description" : "Sales order number prefix", - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "shortcut" : "", - "is_value_required" : true, - "name" : "--sales-order-increment-prefix" - }, - "data-restore" : { - "shortcut" : "", - "name" : "--data-restore", - "is_value_required" : false, - "description" : "Restore removed data from dumps", - "accept_value" : true, - "default" : null, - "is_multiple" : false - }, - "db-user" : { - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "description" : "Database server username", - "is_value_required" : true, - "name" : "--db-user", - "shortcut" : "" - }, - "amqp-password" : { - "default" : "", - "accept_value" : true, - "is_multiple" : false, - "description" : "Amqp server password", - "name" : "--amqp-password", - "is_value_required" : true, - "shortcut" : "" - }, - "session-save-redis-bot-lifetime" : { - "shortcut" : "", - "name" : "--session-save-redis-bot-lifetime", - "is_value_required" : true, - "description" : "Lifetime of session for bots on subsequent writes (use 0 to disable)", - "is_multiple" : false, - "default" : null, - "accept_value" : true - }, - "amqp-ssl-options" : { - "accept_value" : true, - "default" : "", - "is_multiple" : false, - "description" : "Amqp SSL Options (JSON)", - "is_value_required" : true, - "name" : "--amqp-ssl-options", - "shortcut" : "" - }, - "session-save-redis-host" : { - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "Fully qualified host name, IP address, or absolute path if using UNIX sockets", - "is_value_required" : true, - "name" : "--session-save-redis-host", - "shortcut" : "" - }, - "interactive" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Interactive Magento installation", - "name" : "--interactive", - "is_value_required" : false, - "shortcut" : "-i" - }, - "page-cache-redis-compression-lib" : { - "is_value_required" : true, - "name" : "--page-cache-redis-compression-lib", - "shortcut" : "", - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "description" : "Compression library to use [snappy,lzf,l4z,zstd,gzip] (leave blank to determine automatically)" - }, - "currency" : { - "description" : "Default currency code. Deprecated, use config:set with path currency/options/base, currency/options/default and currency/options/allow", - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : true, - "name" : "--currency" - }, - "use-sample-data" : { - "description" : "Use sample data", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--use-sample-data" - }, - "amqp-user" : { - "description" : "Amqp server username", - "is_multiple" : false, - "default" : "", - "accept_value" : true, - "shortcut" : "", - "is_value_required" : true, - "name" : "--amqp-user" - }, - "no-interaction" : { - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false, - "description" : "Do not ask any interactive question", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "session-save-redis-min-lifetime" : { - "shortcut" : "", - "name" : "--session-save-redis-min-lifetime", - "is_value_required" : true, - "description" : "Redis min session lifetime, in seconds", - "accept_value" : true, - "default" : null, - "is_multiple" : false - }, - "cache-backend-redis-db" : { - "shortcut" : "", - "is_value_required" : true, - "name" : "--cache-backend-redis-db", - "description" : "Database number for the cache", - "is_multiple" : false, - "accept_value" : true, - "default" : null - }, - "http-cache-hosts" : { - "description" : "http Cache hosts", - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "shortcut" : "", - "is_value_required" : true, - "name" : "--http-cache-hosts" - }, - "session-save-redis-db" : { - "shortcut" : "", - "name" : "--session-save-redis-db", - "is_value_required" : true, - "description" : "Redis database number", - "is_multiple" : false, - "accept_value" : true, - "default" : null - }, - "lock-zookeeper-path" : { - "shortcut" : "", - "is_value_required" : true, - "name" : "--lock-zookeeper-path", - "description" : "The path where Zookeeper will save locks. The default path is: /magento/locks", - "is_multiple" : false, - "accept_value" : true, - "default" : null - }, - "enable-modules" : { - "name" : "--enable-modules", - "is_value_required" : false, - "shortcut" : "", - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "description" : "List of comma-separated module names. That must be included during installation. Available magic param \"all\"." - }, - "db-model" : { - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "Database type", - "is_value_required" : true, - "name" : "--db-model", - "shortcut" : "" - }, - "lock-file-path" : { - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "description" : "The path where file locks will be saved.", - "name" : "--lock-file-path", - "is_value_required" : true, - "shortcut" : "" - }, - "no-ansi" : { - "description" : "Disable ANSI output", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "", - "name" : "--no-ansi", - "is_value_required" : false - }, - "cache-backend-redis-compress-data" : { - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "Set to 0 to disable compression (default is 1, enabled)", - "name" : "--cache-backend-redis-compress-data", - "is_value_required" : true, - "shortcut" : "" - }, - "session-save" : { - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "description" : "Session save handler", - "is_value_required" : true, - "name" : "--session-save", - "shortcut" : "" - }, - "enable-debug-logging" : { - "shortcut" : "", - "name" : "--enable-debug-logging", - "is_value_required" : true, - "description" : "Enable debug logging", - "is_multiple" : false, - "default" : null, - "accept_value" : true - }, - "session-save-redis-max-concurrency" : { - "name" : "--session-save-redis-max-concurrency", - "is_value_required" : true, - "shortcut" : "", - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "Maximum number of processes that can wait for a lock on one session" - }, - "cleanup-database" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Cleanup the database before installation", - "name" : "--cleanup-database", - "is_value_required" : false, - "shortcut" : "" - }, - "verbose" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv" - }, - "timezone" : { - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "description" : "Default time zone code. Deprecated, use config:set with path general/locale/timezone", - "name" : "--timezone", - "is_value_required" : true, - "shortcut" : "" - }, - "cache-backend-redis-password" : { - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "description" : "Redis server password", - "is_value_required" : true, - "name" : "--cache-backend-redis-password", - "shortcut" : "" - }, - "dry-run" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--dry-run", - "description" : "Magento Installation will be run in dry-run mode", - "accept_value" : true, - "default" : false, - "is_multiple" : false - }, - "page-cache" : { - "name" : "--page-cache", - "is_value_required" : true, - "shortcut" : "", - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "description" : "Default cache handler" - }, - "session-save-redis-bot-first-lifetime" : { - "shortcut" : "", - "is_value_required" : true, - "name" : "--session-save-redis-bot-first-lifetime", - "description" : "Lifetime, in seconds, of session for bots on the first write (use 0 to disable)", - "is_multiple" : false, - "accept_value" : true, - "default" : null - }, - "use-secure" : { - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "description" : "Use secure URLs. Enable this option only if SSL is available. Deprecated, use config:set with path web/secure/use_in_frontend", - "name" : "--use-secure", - "is_value_required" : true, - "shortcut" : "" - }, - "db-ssl-cert" : { - "shortcut" : "", - "name" : "--db-ssl-cert", - "is_value_required" : true, - "description" : "Full path of client certificate file in order to establish db connection through SSL", - "is_multiple" : false, - "accept_value" : true, - "default" : "" - }, - "use-rewrites" : { - "description" : "Use rewrites. Deprecated, use config:set with path web/seo/use_rewrites", - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "shortcut" : "", - "name" : "--use-rewrites", - "is_value_required" : true - }, - "db-init-statements" : { - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "Database initial set of commands", - "is_value_required" : true, - "name" : "--db-init-statements", - "shortcut" : "" - }, - "cache-backend-redis-port" : { - "description" : "Redis server listen port", - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "shortcut" : "", - "name" : "--cache-backend-redis-port", - "is_value_required" : true - }, - "db-engine" : { - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "description" : "Database server engine", - "name" : "--db-engine", - "is_value_required" : true, - "shortcut" : "" - }, - "admin-firstname" : { - "description" : "Admin first name", - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "shortcut" : "", - "name" : "--admin-firstname", - "is_value_required" : false - }, - "magento-init-params" : { - "shortcut" : "", - "is_value_required" : true, - "name" : "--magento-init-params", - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "default" : null, - "accept_value" : true, - "is_multiple" : false - } - } - }, - "name" : "setup:install", - "usage" : [ - "setup:install [--backend-frontname BACKEND-FRONTNAME] [--amqp-host AMQP-HOST] [--amqp-port AMQP-PORT] [--amqp-user AMQP-USER] [--amqp-password AMQP-PASSWORD] [--amqp-virtualhost AMQP-VIRTUALHOST] [--amqp-ssl AMQP-SSL] [--amqp-ssl-options AMQP-SSL-OPTIONS] [--enable-debug-logging ENABLE-DEBUG-LOGGING] [--enable-syslog-logging ENABLE-SYSLOG-LOGGING] [--consumers-wait-for-messages CONSUMERS-WAIT-FOR-MESSAGES] [--key KEY] [--db-host DB-HOST] [--db-name DB-NAME] [--db-user DB-USER] [--db-engine DB-ENGINE] [--db-password DB-PASSWORD] [--db-prefix DB-PREFIX] [--db-model DB-MODEL] [--db-init-statements DB-INIT-STATEMENTS] [-s|--skip-db-validation] [--http-cache-hosts HTTP-CACHE-HOSTS] [--db-ssl-key DB-SSL-KEY] [--db-ssl-cert DB-SSL-CERT] [--db-ssl-ca DB-SSL-CA] [--db-ssl-verify] [--session-save SESSION-SAVE] [--session-save-redis-host SESSION-SAVE-REDIS-HOST] [--session-save-redis-port SESSION-SAVE-REDIS-PORT] [--session-save-redis-password SESSION-SAVE-REDIS-PASSWORD] [--session-save-redis-timeout SESSION-SAVE-REDIS-TIMEOUT] [--session-save-redis-persistent-id SESSION-SAVE-REDIS-PERSISTENT-ID] [--session-save-redis-db SESSION-SAVE-REDIS-DB] [--session-save-redis-compression-threshold SESSION-SAVE-REDIS-COMPRESSION-THRESHOLD] [--session-save-redis-compression-lib SESSION-SAVE-REDIS-COMPRESSION-LIB] [--session-save-redis-log-level SESSION-SAVE-REDIS-LOG-LEVEL] [--session-save-redis-max-concurrency SESSION-SAVE-REDIS-MAX-CONCURRENCY] [--session-save-redis-break-after-frontend SESSION-SAVE-REDIS-BREAK-AFTER-FRONTEND] [--session-save-redis-break-after-adminhtml SESSION-SAVE-REDIS-BREAK-AFTER-ADMINHTML] [--session-save-redis-first-lifetime SESSION-SAVE-REDIS-FIRST-LIFETIME] [--session-save-redis-bot-first-lifetime SESSION-SAVE-REDIS-BOT-FIRST-LIFETIME] [--session-save-redis-bot-lifetime SESSION-SAVE-REDIS-BOT-LIFETIME] [--session-save-redis-disable-locking SESSION-SAVE-REDIS-DISABLE-LOCKING] [--session-save-redis-min-lifetime SESSION-SAVE-REDIS-MIN-LIFETIME] [--session-save-redis-max-lifetime SESSION-SAVE-REDIS-MAX-LIFETIME] [--session-save-redis-sentinel-master SESSION-SAVE-REDIS-SENTINEL-MASTER] [--session-save-redis-sentinel-servers SESSION-SAVE-REDIS-SENTINEL-SERVERS] [--session-save-redis-sentinel-verify-master SESSION-SAVE-REDIS-SENTINEL-VERIFY-MASTER] [--session-save-redis-sentinel-connect-retires SESSION-SAVE-REDIS-SENTINEL-CONNECT-RETIRES] [--cache-backend CACHE-BACKEND] [--cache-backend-redis-server CACHE-BACKEND-REDIS-SERVER] [--cache-backend-redis-db CACHE-BACKEND-REDIS-DB] [--cache-backend-redis-port CACHE-BACKEND-REDIS-PORT] [--cache-backend-redis-password CACHE-BACKEND-REDIS-PASSWORD] [--cache-backend-redis-compress-data CACHE-BACKEND-REDIS-COMPRESS-DATA] [--cache-backend-redis-compression-lib CACHE-BACKEND-REDIS-COMPRESSION-LIB] [--cache-id-prefix CACHE-ID-PREFIX] [--page-cache PAGE-CACHE] [--page-cache-redis-server PAGE-CACHE-REDIS-SERVER] [--page-cache-redis-db PAGE-CACHE-REDIS-DB] [--page-cache-redis-port PAGE-CACHE-REDIS-PORT] [--page-cache-redis-password PAGE-CACHE-REDIS-PASSWORD] [--page-cache-redis-compress-data PAGE-CACHE-REDIS-COMPRESS-DATA] [--page-cache-redis-compression-lib PAGE-CACHE-REDIS-COMPRESSION-LIB] [--page-cache-id-prefix PAGE-CACHE-ID-PREFIX] [--lock-provider LOCK-PROVIDER] [--lock-db-prefix LOCK-DB-PREFIX] [--lock-zookeeper-host LOCK-ZOOKEEPER-HOST] [--lock-zookeeper-path LOCK-ZOOKEEPER-PATH] [--lock-file-path LOCK-FILE-PATH] [--base-url BASE-URL] [--language LANGUAGE] [--timezone TIMEZONE] [--currency CURRENCY] [--use-rewrites USE-REWRITES] [--use-secure USE-SECURE] [--base-url-secure BASE-URL-SECURE] [--use-secure-admin USE-SECURE-ADMIN] [--admin-use-security-key ADMIN-USE-SECURITY-KEY] [--admin-user [ADMIN-USER]] [--admin-password [ADMIN-PASSWORD]] [--admin-email [ADMIN-EMAIL]] [--admin-firstname [ADMIN-FIRSTNAME]] [--admin-lastname [ADMIN-LASTNAME]] [--cleanup-database] [--sales-order-increment-prefix SALES-ORDER-INCREMENT-PREFIX] [--use-sample-data] [--enable-modules [ENABLE-MODULES]] [--disable-modules [DISABLE-MODULES]] [--convert-old-scripts [CONVERT-OLD-SCRIPTS]] [-i|--interactive] [--safe-mode [SAFE-MODE]] [--data-restore [DATA-RESTORE]] [--dry-run [DRY-RUN]] [--magento-init-params MAGENTO-INIT-PARAMS]" - ] - }, - { - "help" : "Generates fixtures", - "description" : "Generates fixtures", - "name" : "setup:performance:generate-fixtures", - "usage" : [ - "setup:performance:generate-fixtures [-s|--skip-reindex] [--] " - ], - "definition" : { - "options" : { - "no-interaction" : { - "shortcut" : "-n", - "is_value_required" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "help" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Display this help message", - "is_value_required" : false, - "name" : "--help", - "shortcut" : "-h" - }, - "skip-reindex" : { - "is_value_required" : false, - "name" : "--skip-reindex", - "shortcut" : "-s", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Skip reindex" - }, - "ansi" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "" - }, - "verbose" : { - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "quiet" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "is_value_required" : false, - "shortcut" : "-q" - }, - "version" : { - "shortcut" : "-V", - "is_value_required" : false, - "name" : "--version", - "description" : "Display this application version", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "no-ansi" : { - "name" : "--no-ansi", - "is_value_required" : false, - "shortcut" : "", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Disable ANSI output" - } - }, - "arguments" : { - "profile" : { - "is_array" : false, - "name" : "profile", - "is_required" : true, - "description" : "Path to profile configuration file", - "default" : null - } - } - }, - "hidden" : false - }, - { - "description" : "Rolls back Magento Application codebase, media and database", - "help" : "Rolls back Magento Application codebase, media and database", - "hidden" : false, - "name" : "setup:rollback", - "usage" : [ - "setup:rollback [-c|--code-file CODE-FILE] [-m|--media-file MEDIA-FILE] [-d|--db-file DB-FILE] [--magento-init-params MAGENTO-INIT-PARAMS]" - ], - "definition" : { - "arguments" : [], - "options" : { - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-v|-vv|-vvv", - "is_value_required" : false, - "name" : "--verbose" - }, - "magento-init-params" : { - "name" : "--magento-init-params", - "is_value_required" : true, - "shortcut" : "", - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"" - }, - "quiet" : { - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false, - "description" : "Do not output any message", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "ansi" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "" - }, - "no-ansi" : { - "name" : "--no-ansi", - "is_value_required" : false, - "shortcut" : "", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Disable ANSI output" - }, - "version" : { - "shortcut" : "-V", - "is_value_required" : false, - "name" : "--version", - "description" : "Display this application version", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "db-file" : { - "is_value_required" : true, - "name" : "--db-file", - "shortcut" : "-d", - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "description" : "Basename of the db backup file in var/backups" - }, - "no-interaction" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Do not ask any interactive question", - "is_value_required" : false, - "name" : "--no-interaction", - "shortcut" : "-n" - }, - "media-file" : { - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "description" : "Basename of the media backup file in var/backups", - "is_value_required" : true, - "name" : "--media-file", - "shortcut" : "-m" - }, - "help" : { - "name" : "--help", - "is_value_required" : false, - "shortcut" : "-h", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Display this help message" - }, - "code-file" : { - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "Basename of the code backup file in var/backups", - "name" : "--code-file", - "is_value_required" : true, - "shortcut" : "-c" - } - } - } - }, - { - "usage" : [ - "setup:static-content:deploy [-f|--force] [-s|--strategy [STRATEGY]] [-a|--area [AREA]] [--exclude-area [EXCLUDE-AREA]] [-t|--theme [THEME]] [--exclude-theme [EXCLUDE-THEME]] [-l|--language [LANGUAGE]] [--exclude-language [EXCLUDE-LANGUAGE]] [-j|--jobs [JOBS]] [--max-execution-time [MAX-EXECUTION-TIME]] [--symlink-locale] [--content-version CONTENT-VERSION] [--refresh-content-version-only] [--no-javascript] [--no-js-bundle] [--no-css] [--no-less] [--no-images] [--no-fonts] [--no-html] [--no-misc] [--no-html-minify] [--] [...]" - ], - "name" : "setup:static-content:deploy", - "definition" : { - "options" : { - "no-css" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Do not deploy CSS files.", - "name" : "--no-css", - "is_value_required" : false, - "shortcut" : "" - }, - "no-html-minify" : { - "name" : "--no-html-minify", - "is_value_required" : false, - "shortcut" : "", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Do not minify HTML files." - }, - "exclude-area" : { - "is_value_required" : false, - "name" : "--exclude-area", - "shortcut" : "", - "is_multiple" : true, - "accept_value" : true, - "default" : [ - "none" - ], - "description" : "Do not generate files for the specified areas." - }, - "no-ansi" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Disable ANSI output", - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "" - }, - "no-js-bundle" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Do not deploy JavaScript bundle files.", - "is_value_required" : false, - "name" : "--no-js-bundle", - "shortcut" : "" - }, - "theme" : { - "is_multiple" : true, - "default" : [ - "all" - ], - "accept_value" : true, - "description" : "Generate static view files for only the specified themes.", - "is_value_required" : false, - "name" : "--theme", - "shortcut" : "-t" - }, - "version" : { - "shortcut" : "-V", - "name" : "--version", - "is_value_required" : false, - "description" : "Display this application version", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "refresh-content-version-only" : { - "description" : "Refreshing the version of static content only can be used to refresh static content in browser cache and CDN cache.", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--refresh-content-version-only" - }, - "quiet" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Do not output any message", - "is_value_required" : false, - "name" : "--quiet", - "shortcut" : "-q" - }, - "no-javascript" : { - "description" : "Do not deploy JavaScript files.", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "", - "name" : "--no-javascript", - "is_value_required" : false - }, - "verbose" : { - "name" : "--verbose", - "is_value_required" : false, - "shortcut" : "-v|-vv|-vvv", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "no-images" : { - "description" : "Do not deploy images.", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--no-images" - }, - "help" : { - "description" : "Display this help message", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help" - }, - "exclude-theme" : { - "description" : "Do not generate files for the specified themes.", - "accept_value" : true, - "default" : [ - "none" - ], - "is_multiple" : true, - "shortcut" : "", - "is_value_required" : false, - "name" : "--exclude-theme" - }, - "max-execution-time" : { - "shortcut" : "", - "name" : "--max-execution-time", - "is_value_required" : false, - "description" : "The maximum expected execution time of deployment static process (in seconds).", - "accept_value" : true, - "default" : 400, - "is_multiple" : false - }, - "force" : { - "shortcut" : "-f", - "is_value_required" : false, - "name" : "--force", - "description" : "Deploy files in any mode.", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "symlink-locale" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Create symlinks for the files of those locales, which are passed for deployment, but have no customizations.", - "is_value_required" : false, - "name" : "--symlink-locale", - "shortcut" : "" - }, - "strategy" : { - "name" : "--strategy", - "is_value_required" : false, - "shortcut" : "-s", - "accept_value" : true, - "default" : "quick", - "is_multiple" : false, - "description" : "Deploy files using specified strategy." - }, - "content-version" : { - "description" : "Custom version of static content can be used if running deployment on multiple nodes to ensure that static content version is identical and caching works properly.", - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : true, - "name" : "--content-version" - }, - "language" : { - "is_multiple" : true, - "default" : [ - "all" - ], - "accept_value" : true, - "description" : "Generate files only for the specified languages.", - "is_value_required" : false, - "name" : "--language", - "shortcut" : "-l" - }, - "no-fonts" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Do not deploy font files.", - "is_value_required" : false, - "name" : "--no-fonts", - "shortcut" : "" - }, - "ansi" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Force ANSI output", - "is_value_required" : false, - "name" : "--ansi", - "shortcut" : "" - }, - "no-html" : { - "is_value_required" : false, - "name" : "--no-html", - "shortcut" : "", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Do not deploy HTML files." - }, - "exclude-language" : { - "shortcut" : "", - "name" : "--exclude-language", - "is_value_required" : false, - "description" : "Do not generate files for the specified languages.", - "accept_value" : true, - "default" : [ - "none" - ], - "is_multiple" : true - }, - "jobs" : { - "is_multiple" : false, - "default" : 0, - "accept_value" : true, - "description" : "Enable parallel processing using the specified number of jobs.", - "is_value_required" : false, - "name" : "--jobs", - "shortcut" : "-j" - }, - "area" : { - "name" : "--area", - "is_value_required" : false, - "shortcut" : "-a", - "is_multiple" : true, - "accept_value" : true, - "default" : [ - "all" - ], - "description" : "Generate files only for the specified areas." - }, - "no-less" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Do not deploy LESS files.", - "name" : "--no-less", - "is_value_required" : false, - "shortcut" : "" - }, - "no-interaction" : { - "is_value_required" : false, - "name" : "--no-interaction", - "shortcut" : "-n", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Do not ask any interactive question" - }, - "no-misc" : { - "description" : "Do not deploy files of other types (.md, .jbf, .csv, etc.).", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "", - "name" : "--no-misc", - "is_value_required" : false - } - }, - "arguments" : { - "languages" : { - "description" : "Space-separated list of ISO-639 language codes for which to output static view files.", - "default" : [], - "is_array" : true, - "is_required" : false, - "name" : "languages" - } - } - }, - "hidden" : false, - "description" : "Deploys static view files", - "help" : "Deploys static view files" - }, - { - "usage" : [ - "setup:store-config:set [--base-url BASE-URL] [--language LANGUAGE] [--timezone TIMEZONE] [--currency CURRENCY] [--use-rewrites USE-REWRITES] [--use-secure USE-SECURE] [--base-url-secure BASE-URL-SECURE] [--use-secure-admin USE-SECURE-ADMIN] [--admin-use-security-key ADMIN-USE-SECURITY-KEY] [--magento-init-params MAGENTO-INIT-PARAMS]" - ], - "name" : "setup:store-config:set", - "definition" : { - "arguments" : [], - "options" : { - "base-url" : { - "default" : null, - "accept_value" : true, - "is_multiple" : false, - "description" : "URL the store is supposed to be available at. Deprecated, use config:set with path web/unsecure/base_url", - "name" : "--base-url", - "is_value_required" : true, - "shortcut" : "" - }, - "currency" : { - "shortcut" : "", - "name" : "--currency", - "is_value_required" : true, - "description" : "Default currency code. Deprecated, use config:set with path currency/options/base, currency/options/default and currency/options/allow", - "accept_value" : true, - "default" : null, - "is_multiple" : false - }, - "no-interaction" : { - "shortcut" : "-n", - "is_value_required" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "timezone" : { - "shortcut" : "", - "name" : "--timezone", - "is_value_required" : true, - "description" : "Default time zone code. Deprecated, use config:set with path general/locale/timezone", - "is_multiple" : false, - "accept_value" : true, - "default" : null - }, - "use-rewrites" : { - "description" : "Use rewrites. Deprecated, use config:set with path web/seo/use_rewrites", - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "shortcut" : "", - "name" : "--use-rewrites", - "is_value_required" : true - }, - "use-secure" : { - "description" : "Use secure URLs. Enable this option only if SSL is available. Deprecated, use config:set with path web/secure/use_in_frontend", - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "shortcut" : "", - "name" : "--use-secure", - "is_value_required" : true - }, - "language" : { - "name" : "--language", - "is_value_required" : true, - "shortcut" : "", - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "description" : "Default language code. Deprecated, use config:set with path general/locale/code" - }, - "magento-init-params" : { - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "name" : "--magento-init-params", - "is_value_required" : true, - "shortcut" : "" - }, - "ansi" : { - "description" : "Force ANSI output", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--ansi" - }, - "base-url-secure" : { - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "description" : "Base URL for SSL connection. Deprecated, use config:set with path web/secure/base_url", - "name" : "--base-url-secure", - "is_value_required" : true, - "shortcut" : "" - }, - "help" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Display this help message", - "is_value_required" : false, - "name" : "--help", - "shortcut" : "-h" - }, - "admin-use-security-key" : { - "shortcut" : "", - "name" : "--admin-use-security-key", - "is_value_required" : true, - "description" : "Whether to use a \"security key\" feature in Magento Admin URLs and forms. Deprecated, use config:set with path admin/security/use_form_key", - "is_multiple" : false, - "default" : null, - "accept_value" : true - }, - "no-ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "use-secure-admin" : { - "description" : "Run admin interface with SSL. Deprecated, use config:set with path web/secure/use_in_adminhtml", - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "shortcut" : "", - "is_value_required" : true, - "name" : "--use-secure-admin" - }, - "version" : { - "is_value_required" : false, - "name" : "--version", - "shortcut" : "-V", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Display this application version" - }, - "quiet" : { - "description" : "Do not output any message", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false - }, - "verbose" : { - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - } - } - }, - "hidden" : false, - "description" : "Installs the store configuration. Deprecated since 2.2.0. Use config:set instead", - "help" : "Installs the store configuration. Deprecated since 2.2.0. Use config:set instead" - }, - { - "help" : "Uninstalls the Magento application", - "description" : "Uninstalls the Magento application", - "name" : "setup:uninstall", - "usage" : [ - "setup:uninstall [--magento-init-params MAGENTO-INIT-PARAMS]" - ], - "definition" : { - "arguments" : [], - "options" : { - "version" : { - "name" : "--version", - "is_value_required" : false, - "shortcut" : "-V", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Display this application version" - }, - "no-ansi" : { - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Disable ANSI output" - }, - "ansi" : { - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Force ANSI output" - }, - "quiet" : { - "description" : "Do not output any message", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet" - }, - "magento-init-params" : { - "name" : "--magento-init-params", - "is_value_required" : true, - "shortcut" : "", - "is_multiple" : false, - "accept_value" : true, - "default" : null, - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"" - }, - "verbose" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv" - }, - "help" : { - "is_value_required" : false, - "name" : "--help", - "shortcut" : "-h", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Display this help message" - }, - "no-interaction" : { - "shortcut" : "-n", - "is_value_required" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false, - "accept_value" : false, - "is_multiple" : false - } - } - }, - "hidden" : false - }, - { - "description" : "Upgrades the Magento application, DB data, and schema", - "help" : "Upgrades the Magento application, DB data, and schema", - "hidden" : false, - "name" : "setup:upgrade", - "usage" : [ - "setup:upgrade [--keep-generated] [--convert-old-scripts [CONVERT-OLD-SCRIPTS]] [--safe-mode [SAFE-MODE]] [--data-restore [DATA-RESTORE]] [--dry-run [DRY-RUN]] [--magento-init-params MAGENTO-INIT-PARAMS]" - ], - "definition" : { - "options" : { - "version" : { - "shortcut" : "-V", - "name" : "--version", - "is_value_required" : false, - "description" : "Display this application version", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "data-restore" : { - "description" : "Restore removed data from dumps", - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "shortcut" : "", - "is_value_required" : false, - "name" : "--data-restore" - }, - "no-ansi" : { - "description" : "Disable ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--no-ansi" - }, - "ansi" : { - "description" : "Force ANSI output", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "", - "name" : "--ansi", - "is_value_required" : false - }, - "keep-generated" : { - "name" : "--keep-generated", - "is_value_required" : false, - "shortcut" : "", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Prevents generated files from being deleted. We discourage using this option except when deploying to production. Consult your system integrator or administrator for more information." - }, - "quiet" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "is_value_required" : false, - "shortcut" : "-q" - }, - "magento-init-params" : { - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "name" : "--magento-init-params", - "is_value_required" : true, - "shortcut" : "" - }, - "convert-old-scripts" : { - "shortcut" : "", - "name" : "--convert-old-scripts", - "is_value_required" : false, - "description" : "Allows to convert old scripts (InstallSchema, UpgradeSchema) to db_schema.xml format", - "is_multiple" : false, - "accept_value" : true, - "default" : false - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "is_value_required" : false, - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "help" : { - "description" : "Display this help message", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help" - }, - "safe-mode" : { - "is_value_required" : false, - "name" : "--safe-mode", - "shortcut" : "", - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "description" : "Safe installation of Magento with dumps on destructive operations, like column removal" - }, - "no-interaction" : { - "description" : "Do not ask any interactive question", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false - }, - "dry-run" : { - "default" : false, - "accept_value" : true, - "is_multiple" : false, - "description" : "Magento Installation will be run in dry-run mode", - "is_value_required" : false, - "name" : "--dry-run", - "shortcut" : "" - } - }, - "arguments" : [] - } - }, - { - "description" : "Displays the list of stores", - "help" : "Displays the list of stores", - "hidden" : false, - "definition" : { - "arguments" : [], - "options" : { - "version" : { - "description" : "Display this application version", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-V", - "name" : "--version", - "is_value_required" : false - }, - "no-ansi" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_value_required" : false, - "shortcut" : "" - }, - "help" : { - "is_value_required" : false, - "name" : "--help", - "shortcut" : "-h", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Display this help message" - }, - "ansi" : { - "description" : "Force ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "", - "name" : "--ansi", - "is_value_required" : false - }, - "verbose" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose", - "is_value_required" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "quiet" : { - "description" : "Do not output any message", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet" - }, - "no-interaction" : { - "description" : "Do not ask any interactive question", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-n", - "is_value_required" : false, - "name" : "--no-interaction" - } - } - }, - "usage" : [ - "store:list" - ], - "name" : "store:list" - }, - { - "name" : "store:website:list", - "usage" : [ - "store:website:list" - ], - "definition" : { - "arguments" : [], - "options" : { - "no-interaction" : { - "description" : "Do not ask any interactive question", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-n", - "is_value_required" : false, - "name" : "--no-interaction" - }, - "quiet" : { - "name" : "--quiet", - "is_value_required" : false, - "shortcut" : "-q", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Do not output any message" - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "is_value_required" : false, - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "ansi" : { - "is_value_required" : false, - "name" : "--ansi", - "shortcut" : "", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Force ANSI output" - }, - "help" : { - "description" : "Display this help message", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help" - }, - "no-ansi" : { - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Disable ANSI output" - }, - "version" : { - "name" : "--version", - "is_value_required" : false, - "shortcut" : "-V", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Display this application version" - } - } - }, - "hidden" : false, - "description" : "Displays the list of websites", - "help" : "Displays the list of websites" - }, - { - "hidden" : false, - "usage" : [ - "support:backup:code [--name [NAME]] [-o|--output [OUTPUT]] [-l|--logs]" - ], - "name" : "support:backup:code", - "definition" : { - "arguments" : [], - "options" : { - "no-ansi" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_value_required" : false, - "shortcut" : "" - }, - "version" : { - "is_value_required" : false, - "name" : "--version", - "shortcut" : "-V", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this application version" - }, - "verbose" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv" - }, - "quiet" : { - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet", - "description" : "Do not output any message", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "logs" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Include logs", - "name" : "--logs", - "is_value_required" : false, - "shortcut" : "-l" - }, - "ansi" : { - "shortcut" : "", - "name" : "--ansi", - "is_value_required" : false, - "description" : "Force ANSI output", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "help" : { - "description" : "Display this help message", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-h", - "name" : "--help", - "is_value_required" : false - }, - "output" : { - "description" : "Output path", - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "shortcut" : "-o", - "is_value_required" : false, - "name" : "--output" - }, - "no-interaction" : { - "description" : "Do not ask any interactive question", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-n", - "is_value_required" : false, - "name" : "--no-interaction" - }, - "name" : { - "shortcut" : "", - "name" : "--name", - "is_value_required" : false, - "description" : "Dump name", - "default" : null, - "accept_value" : true, - "is_multiple" : false - } - } - }, - "description" : "Create Code backup", - "help" : "Create Code backup" - }, - { - "help" : "Create DB backup", - "description" : "Create DB backup", - "hidden" : false, - "definition" : { - "arguments" : [], - "options" : { - "no-ansi" : { - "shortcut" : "", - "is_value_required" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "version" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Display this application version", - "name" : "--version", - "is_value_required" : false, - "shortcut" : "-V" - }, - "verbose" : { - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "quiet" : { - "name" : "--quiet", - "is_value_required" : false, - "shortcut" : "-q", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Do not output any message" - }, - "logs" : { - "is_value_required" : false, - "name" : "--logs", - "shortcut" : "-l", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Include logs" - }, - "ansi" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "" - }, - "help" : { - "name" : "--help", - "is_value_required" : false, - "shortcut" : "-h", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this help message" - }, - "output" : { - "is_value_required" : false, - "name" : "--output", - "shortcut" : "-o", - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "description" : "Output path" - }, - "ignore-sanitize" : { - "name" : "--ignore-sanitize", - "is_value_required" : false, - "shortcut" : "-i", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Ignore sanitize" - }, - "no-interaction" : { - "shortcut" : "-n", - "is_value_required" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "name" : { - "description" : "Dump name", - "accept_value" : true, - "default" : null, - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--name" - } - } - }, - "name" : "support:backup:db", - "usage" : [ - "support:backup:db [--name [NAME]] [-o|--output [OUTPUT]] [-l|--logs] [-i|--ignore-sanitize]" - ] - }, - { - "definition" : { - "options" : { - "help" : { - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help", - "description" : "Display this help message", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "no-interaction" : { - "description" : "Do not ask any interactive question", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-n", - "is_value_required" : false, - "name" : "--no-interaction" - }, - "no-ansi" : { - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Disable ANSI output" - }, - "version" : { - "is_value_required" : false, - "name" : "--version", - "shortcut" : "-V", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Display this application version" - }, - "quiet" : { - "description" : "Do not output any message", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet" - }, - "verbose" : { - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose", - "is_value_required" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "ansi" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "" - }, - "hide-paths" : { - "description" : "Only check required console utilities", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--hide-paths" - } - }, - "arguments" : [] - }, - "name" : "support:utility:check", - "usage" : [ - "support:utility:check [--hide-paths]" - ], - "hidden" : false, - "description" : "Check required backup utilities", - "help" : "Check required backup utilities" - }, - { - "hidden" : false, - "usage" : [ - "support:utility:paths [-f|--force]" - ], - "name" : "support:utility:paths", - "definition" : { - "arguments" : [], - "options" : { - "force" : { - "description" : "Force", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-f", - "name" : "--force", - "is_value_required" : false - }, - "help" : { - "shortcut" : "-h", - "name" : "--help", - "is_value_required" : false, - "description" : "Display this help message", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "no-interaction" : { - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false, - "description" : "Do not ask any interactive question", - "accept_value" : false, - "default" : false, - "is_multiple" : false - }, - "version" : { - "description" : "Display this application version", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-V", - "name" : "--version", - "is_value_required" : false - }, - "no-ansi" : { - "description" : "Disable ANSI output", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "", - "name" : "--no-ansi", - "is_value_required" : false - }, - "ansi" : { - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Force ANSI output" - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "is_value_required" : false, - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "quiet" : { - "is_value_required" : false, - "name" : "--quiet", - "shortcut" : "-q", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Do not output any message" - } - } - }, - "help" : "Create utilities paths list", - "description" : "Create utilities paths list" - }, - { - "hidden" : false, - "name" : "theme:uninstall", - "usage" : [ - "theme:uninstall [--backup-code] [-c|--clear-static-content] [--] ..." - ], - "definition" : { - "arguments" : { - "theme" : { - "default" : [], - "description" : "Path of the theme. Theme path should be specified as full path which is area/vendor/name. For example, frontend/Magento/blank", - "is_required" : true, - "name" : "theme", - "is_array" : true - } - }, - "options" : { - "no-interaction" : { - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false, - "description" : "Do not ask any interactive question", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "help" : { - "shortcut" : "-h", - "name" : "--help", - "is_value_required" : false, - "description" : "Display this help message", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "quiet" : { - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false, - "description" : "Do not output any message", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "verbose" : { - "name" : "--verbose", - "is_value_required" : false, - "shortcut" : "-v|-vv|-vvv", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "clear-static-content" : { - "is_value_required" : false, - "name" : "--clear-static-content", - "shortcut" : "-c", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Clear generated static view files." - }, - "ansi" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Force ANSI output", - "is_value_required" : false, - "name" : "--ansi", - "shortcut" : "" - }, - "no-ansi" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Disable ANSI output", - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "" - }, - "backup-code" : { - "description" : "Take code backup (excluding temporary files)", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--backup-code" - }, - "version" : { - "name" : "--version", - "is_value_required" : false, - "shortcut" : "-V", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Display this application version" - } - } - }, - "description" : "Uninstalls theme", - "help" : "Uninstalls theme" - }, - { - "help" : "Generates Varnish VCL and echos it to the command line", - "description" : "Generates Varnish VCL and echos it to the command line", - "definition" : { - "options" : { - "ansi" : { - "description" : "Force ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "", - "name" : "--ansi", - "is_value_required" : false - }, - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "is_value_required" : false - }, - "quiet" : { - "shortcut" : "-q", - "is_value_required" : false, - "name" : "--quiet", - "description" : "Do not output any message", - "is_multiple" : false, - "accept_value" : false, - "default" : false - }, - "version" : { - "description" : "Display this application version", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-V", - "is_value_required" : false, - "name" : "--version" - }, - "export-version" : { - "description" : "The version of Varnish file", - "default" : "4", - "accept_value" : true, - "is_multiple" : false, - "shortcut" : "", - "name" : "--export-version", - "is_value_required" : true - }, - "no-ansi" : { - "shortcut" : "", - "name" : "--no-ansi", - "is_value_required" : false, - "description" : "Disable ANSI output", - "is_multiple" : false, - "default" : false, - "accept_value" : false - }, - "backend-port" : { - "default" : 8080, - "accept_value" : true, - "is_multiple" : false, - "description" : "Port of the web backend", - "is_value_required" : true, - "name" : "--backend-port", - "shortcut" : "" - }, - "output-file" : { - "description" : "Path to the file to write vcl", - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "shortcut" : "", - "is_value_required" : true, - "name" : "--output-file" - }, - "backend-host" : { - "description" : "Host of the web backend", - "accept_value" : true, - "default" : "localhost", - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : true, - "name" : "--backend-host" - }, - "grace-period" : { - "description" : "Grace period in seconds", - "default" : 300, - "accept_value" : true, - "is_multiple" : false, - "shortcut" : "", - "name" : "--grace-period", - "is_value_required" : true - }, - "no-interaction" : { - "shortcut" : "-n", - "name" : "--no-interaction", - "is_value_required" : false, - "description" : "Do not ask any interactive question", - "default" : false, - "accept_value" : false, - "is_multiple" : false - }, - "access-list" : { - "name" : "--access-list", - "is_value_required" : true, - "shortcut" : "", - "is_multiple" : true, - "accept_value" : true, - "default" : [ - "localhost" - ], - "description" : "IPs access list that can purge Varnish" - }, - "help" : { - "is_value_required" : false, - "name" : "--help", - "shortcut" : "-h", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Display this help message" - } - }, - "arguments" : [] - }, - "usage" : [ - "varnish:vcl:generate [--access-list ACCESS-LIST] [--backend-host BACKEND-HOST] [--backend-port BACKEND-PORT] [--export-version EXPORT-VERSION] [--grace-period GRACE-PERIOD] [--output-file OUTPUT-FILE]" - ], - "name" : "varnish:vcl:generate", - "hidden" : false - }, - { - "description" : "Reset Yotpo sync flags &/or configurations", - "help" : "Reset Yotpo sync flags &/or configurations", - "hidden" : false, - "name" : "yotpo:reset", - "usage" : [ - "yotpo:reset [-e|--entity [ENTITY]]" - ], - "definition" : { - "options" : { - "version" : { - "is_value_required" : false, - "name" : "--version", - "shortcut" : "-V", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Display this application version" - }, - "no-ansi" : { - "description" : "Disable ANSI output", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--no-ansi" - }, - "ansi" : { - "description" : "Force ANSI output", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "", - "is_value_required" : false, - "name" : "--ansi" - }, - "quiet" : { - "description" : "Do not output any message", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-q", - "name" : "--quiet", - "is_value_required" : false - }, - "verbose" : { - "name" : "--verbose", - "is_value_required" : false, - "shortcut" : "-v|-vv|-vvv", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "entity" : { - "shortcut" : "-e", - "is_value_required" : false, - "name" : "--entity", - "description" : "Entity type (orders)", - "accept_value" : true, - "default" : "orders", - "is_multiple" : false - }, - "help" : { - "description" : "Display this help message", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help" - }, - "no-interaction" : { - "is_value_required" : false, - "name" : "--no-interaction", - "shortcut" : "-n", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Do not ask any interactive question" - } - }, - "arguments" : [] - } - }, - { - "name" : "yotpo:sync", - "usage" : [ - "yotpo:sync [-e|--entity ENTITY] [-l|--limit [LIMIT]]" - ], - "definition" : { - "options" : { - "version" : { - "description" : "Display this application version", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-V", - "is_value_required" : false, - "name" : "--version" - }, - "no-ansi" : { - "is_value_required" : false, - "name" : "--no-ansi", - "shortcut" : "", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "description" : "Disable ANSI output" - }, - "ansi" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "" - }, - "quiet" : { - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "is_value_required" : false, - "shortcut" : "-q" - }, - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-v|-vv|-vvv", - "is_value_required" : false, - "name" : "--verbose" - }, - "entity" : { - "shortcut" : "-e", - "is_value_required" : true, - "name" : "--entity", - "description" : "Entity type (allowed options: orders)", - "default" : "orders", - "accept_value" : true, - "is_multiple" : false - }, - "help" : { - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "description" : "Display this help message", - "name" : "--help", - "is_value_required" : false, - "shortcut" : "-h" - }, - "limit" : { - "is_multiple" : false, - "default" : null, - "accept_value" : true, - "description" : "Max entity items to sync. WARNING: Setting a high sync limit (or no limit) may result in a high server load (0=no limit).", - "name" : "--limit", - "is_value_required" : false, - "shortcut" : "-l" - }, - "no-interaction" : { - "description" : "Do not ask any interactive question", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "shortcut" : "-n", - "is_value_required" : false, - "name" : "--no-interaction" - } - }, - "arguments" : [] - }, - "hidden" : false, - "description" : "Sync Yotpo manually (reviews module)", - "help" : "Sync Yotpo manually (reviews module)" - }, - { - "hidden" : false, - "definition" : { - "options" : { - "no-ansi" : { - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_value_required" : false, - "shortcut" : "" - }, - "help" : { - "description" : "Display this help message", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "shortcut" : "-h", - "is_value_required" : false, - "name" : "--help" - }, - "version" : { - "description" : "Display this application version", - "is_multiple" : false, - "accept_value" : false, - "default" : false, - "shortcut" : "-V", - "is_value_required" : false, - "name" : "--version" - }, - "verbose" : { - "is_value_required" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "no-interaction" : { - "description" : "Do not ask any interactive question", - "accept_value" : false, - "default" : false, - "is_multiple" : false, - "shortcut" : "-n", - "is_value_required" : false, - "name" : "--no-interaction" - }, - "quiet" : { - "is_value_required" : false, - "name" : "--quiet", - "shortcut" : "-q", - "is_multiple" : false, - "default" : false, - "accept_value" : false, - "description" : "Do not output any message" - }, - "ansi" : { - "name" : "--ansi", - "is_value_required" : false, - "shortcut" : "", - "default" : false, - "accept_value" : false, - "is_multiple" : false, - "description" : "Force ANSI output" - } - }, - "arguments" : [] - }, - "usage" : [ - "yotpo:update-metadata" - ], - "name" : "yotpo:update-metadata", - "description" : "Manually send platform metadata to Yotpo", - "help" : "Manually send platform metadata to Yotpo" - } - ], - "namespaces" : [ - { - "commands" : [ - "help", - "list" - ], - "id" : "_global" - }, - { - "id" : "admin", - "commands" : [ - "admin:user:create", - "admin:user:unlock" - ] - }, - { - "id" : "app", - "commands" : [ - "app:config:dump", - "app:config:import", - "app:config:status" - ] - }, - { - "commands" : [ - "cache:clean", - "cache:disable", - "cache:enable", - "cache:flush", - "cache:status" - ], - "id" : "cache" - }, - { - "id" : "catalog", - "commands" : [ - "catalog:images:resize", - "catalog:product:attributes:cleanup" - ] - }, - { - "id" : "config", - "commands" : [ - "config:sensitive:set", - "config:set", - "config:show" - ] - }, - { - "id" : "cron", - "commands" : [ - "cron:install", - "cron:remove", - "cron:run" - ] - }, - { - "id" : "customer", - "commands" : [ - "customer:hash:upgrade" - ] - }, - { - "commands" : [ - "deploy:mode:set", - "deploy:mode:show" - ], - "id" : "deploy" - }, - { - "id" : "dev", - "commands" : [ - "dev:di:info", - "dev:profiler:disable", - "dev:profiler:enable", - "dev:query-log:disable", - "dev:query-log:enable", - "dev:source-theme:deploy", - "dev:template-hints:disable", - "dev:template-hints:enable", - "dev:tests:run", - "dev:urn-catalog:generate", - "dev:xml:convert" - ] - }, - { - "id" : "dotdigital", - "commands" : [ - "dotdigital:connector:automap", - "dotdigital:connector:enable", - "dotdigital:migrate", - "dotdigital:sync" - ] - }, - { - "id" : "downloadable", - "commands" : [ - "downloadable:domains:add", - "downloadable:domains:remove", - "downloadable:domains:show" - ] - }, - { - "id" : "encryption", - "commands" : [ - "encryption:payment-data:update" - ] - }, - { - "commands" : [ - "i18n:collect-phrases", - "i18n:pack", - "i18n:uninstall" - ], - "id" : "i18n" - }, - { - "id" : "indexer", - "commands" : [ - "indexer:info", - "indexer:reindex", - "indexer:reset", - "indexer:set-dimensions-mode", - "indexer:set-mode", - "indexer:show-dimensions-mode", - "indexer:show-mode", - "indexer:status" - ] - }, - { - "id" : "info", - "commands" : [ - "info:adminuri", - "info:backups:list", - "info:currency:list", - "info:dependencies:show-framework", - "info:dependencies:show-modules", - "info:dependencies:show-modules-circular", - "info:language:list", - "info:timezone:list" - ] - }, - { - "commands" : [ - "inventory:reservation:create-compensations", - "inventory:reservation:list-inconsistencies" - ], - "id" : "inventory" - }, - { - "commands" : [ - "inventory-geonames:import" - ], - "id" : "inventory-geonames" - }, - { - "id" : "maintenance", - "commands" : [ - "maintenance:allow-ips", - "maintenance:disable", - "maintenance:enable", - "maintenance:status" - ] - }, - { - "id" : "module", - "commands" : [ - "module:config:status", - "module:disable", - "module:enable", - "module:status", - "module:uninstall" - ] - }, - { - "id" : "msp", - "commands" : [ - "msp:security:recaptcha:disable", - "msp:security:tfa:disable", - "msp:security:tfa:providers", - "msp:security:tfa:reset" - ] - }, - { - "id" : "newrelic", - "commands" : [ - "newrelic:create:deploy-marker" - ] - }, - { - "id" : "queue", - "commands" : [ - "queue:consumers:list", - "queue:consumers:start" - ] - }, - { - "id" : "sampledata", - "commands" : [ - "sampledata:deploy", - "sampledata:remove", - "sampledata:reset" - ] - }, - { - "commands" : [ - "setup:backup", - "setup:config:set", - "setup:cron:run", - "setup:db-data:upgrade", - "setup:db-declaration:generate-patch", - "setup:db-declaration:generate-whitelist", - "setup:db-schema:add-slave", - "setup:db-schema:split-quote", - "setup:db-schema:split-sales", - "setup:db-schema:upgrade", - "setup:db:status", - "setup:di:compile", - "setup:install", - "setup:performance:generate-fixtures", - "setup:rollback", - "setup:static-content:deploy", - "setup:store-config:set", - "setup:uninstall", - "setup:upgrade" - ], - "id" : "setup" - }, - { - "id" : "store", - "commands" : [ - "store:list", - "store:website:list" - ] - }, - { - "commands" : [ - "support:backup:code", - "support:backup:db", - "support:utility:check", - "support:utility:paths" - ], - "id" : "support" - }, - { - "id" : "theme", - "commands" : [ - "theme:uninstall" - ] - }, - { - "id" : "varnish", - "commands" : [ - "varnish:vcl:generate" - ] - }, - { - "commands" : [ - "yotpo:reset", - "yotpo:sync", - "yotpo:update-metadata" - ], - "id" : "yotpo" - } - ], - "application" : { - "name" : "Magento CLI", - "version" : "2.3.5" - } -} +{"application":{"name":"Magento CLI","version":"2.3.6"},"commands":[{"name":"help","usage":["help [--format FORMAT] [--raw] [--] []"],"description":"Displays help for a command","help":"The help<\/info> command displays help for a given command:\n\n php \/var\/www\/html\/magento2\/bin\/magento help list<\/info>\n\nYou can also output the help in other formats by using the --format<\/comment> option:\n\n php \/var\/www\/html\/magento2\/bin\/magento help --format=xml list<\/info>\n\nTo display the list of available commands, please use the list<\/info> command.","definition":{"arguments":{"command_name":{"name":"command_name","is_required":false,"is_array":false,"description":"The command name","default":"help"}},"options":{"format":{"name":"--format","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The output format (txt, xml, json, or md)","default":"txt"},"raw":{"name":"--raw","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"To output raw command help","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"list","usage":["list [--raw] [--format FORMAT] [--] []"],"description":"Lists commands","help":"The list<\/info> command lists all commands:\n\n php \/var\/www\/html\/magento2\/bin\/magento list<\/info>\n\nYou can also display the commands for a specific namespace:\n\n php \/var\/www\/html\/magento2\/bin\/magento list test<\/info>\n\nYou can also output the information in other formats by using the --format<\/comment> option:\n\n php \/var\/www\/html\/magento2\/bin\/magento list --format=xml<\/info>\n\nIt's also possible to get raw list of commands (useful for embedding command runner):\n\n php \/var\/www\/html\/magento2\/bin\/magento list --raw<\/info>","definition":{"arguments":{"namespace":{"name":"namespace","is_required":false,"is_array":false,"description":"The namespace name","default":null}},"options":{"raw":{"name":"--raw","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"To output raw command list","default":false},"format":{"name":"--format","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The output format (txt, xml, json, or md)","default":"txt"}}},"hidden":false},{"name":"admin:user:create","usage":["admin:user:create [--admin-user ADMIN-USER] [--admin-password ADMIN-PASSWORD] [--admin-email ADMIN-EMAIL] [--admin-firstname ADMIN-FIRSTNAME] [--admin-lastname ADMIN-LASTNAME] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Creates an administrator","help":"Creates an administrator","definition":{"arguments":[],"options":{"admin-user":{"name":"--admin-user","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"(Required) Admin user","default":null},"admin-password":{"name":"--admin-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"(Required) Admin password","default":null},"admin-email":{"name":"--admin-email","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"(Required) Admin email","default":null},"admin-firstname":{"name":"--admin-firstname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"(Required) Admin first name","default":null},"admin-lastname":{"name":"--admin-lastname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"(Required) Admin last name","default":null},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"admin:user:unlock","usage":["admin:user:unlock "],"description":"Unlock Admin Account","help":"This command unlocks an admin account by its username.\nTo unlock:\n \/var\/www\/html\/magento2\/bin\/magento admin:user:unlock username<\/comment>","definition":{"arguments":{"username":{"name":"username","is_required":true,"is_array":false,"description":"The admin username to unlock","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"app:config:dump","usage":["app:config:dump [...]"],"description":"Create dump of application","help":"Create dump of application","definition":{"arguments":{"config-types":{"name":"config-types","is_required":false,"is_array":true,"description":"Space-separated list of config types or omit to dump all [scopes, themes, system, i18n]","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"app:config:import","usage":["app:config:import"],"description":"Import data from shared configuration files to appropriate data storage","help":"Import data from shared configuration files to appropriate data storage","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"app:config:status","usage":["app:config:status"],"description":"Checks if config propagation requires update","help":"Checks if config propagation requires update","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cache:clean","usage":["cache:clean [--bootstrap BOOTSTRAP] [--] [...]"],"description":"Cleans cache type(s)","help":"Cleans cache type(s)","definition":{"arguments":{"types":{"name":"types","is_required":false,"is_array":true,"description":"Space-separated list of cache types or omit to apply to all cache types.","default":[]}},"options":{"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cache:disable","usage":["cache:disable [--bootstrap BOOTSTRAP] [--] [...]"],"description":"Disables cache type(s)","help":"Disables cache type(s)","definition":{"arguments":{"types":{"name":"types","is_required":false,"is_array":true,"description":"Space-separated list of cache types or omit to apply to all cache types.","default":[]}},"options":{"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cache:enable","usage":["cache:enable [--bootstrap BOOTSTRAP] [--] [...]"],"description":"Enables cache type(s)","help":"Enables cache type(s)","definition":{"arguments":{"types":{"name":"types","is_required":false,"is_array":true,"description":"Space-separated list of cache types or omit to apply to all cache types.","default":[]}},"options":{"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cache:flush","usage":["cache:flush [--bootstrap BOOTSTRAP] [--] [...]"],"description":"Flushes cache storage used by cache type(s)","help":"Flushes cache storage used by cache type(s)","definition":{"arguments":{"types":{"name":"types","is_required":false,"is_array":true,"description":"Space-separated list of cache types or omit to apply to all cache types.","default":[]}},"options":{"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cache:status","usage":["cache:status [--bootstrap BOOTSTRAP]"],"description":"Checks cache status","help":"Checks cache status","definition":{"arguments":[],"options":{"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"catalog:images:resize","usage":["catalog:images:resize"],"description":"Creates resized product images","help":"Creates resized product images","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"catalog:product:attributes:cleanup","usage":["catalog:product:attributes:cleanup"],"description":"Removes unused product attributes.","help":"Removes unused product attributes.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"config:sensitive:set","usage":["config:sensitive:set [-i|--interactive] [--scope [SCOPE]] [--scope-code [SCOPE-CODE]] [--] [ []]"],"description":"Set sensitive configuration values","help":"Set sensitive configuration values","definition":{"arguments":{"path":{"name":"path","is_required":false,"is_array":false,"description":"Configuration path for example group\/section\/field_name","default":null},"value":{"name":"value","is_required":false,"is_array":false,"description":"Configuration value","default":null}},"options":{"interactive":{"name":"--interactive","shortcut":"-i","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Enable interactive mode to set all sensitive variables","default":false},"scope":{"name":"--scope","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Scope for configuration, if not set use 'default'","default":"default"},"scope-code":{"name":"--scope-code","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Scope code for configuration, empty string by default","default":""},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"config:set","usage":["config:set [--scope SCOPE] [--scope-code SCOPE-CODE] [-e|--lock-env] [-c|--lock-config] [-l|--lock] [--] "],"description":"Change system configuration","help":"Change system configuration","definition":{"arguments":{"path":{"name":"path","is_required":true,"is_array":false,"description":"Configuration path in format section\/group\/field_name","default":null},"value":{"name":"value","is_required":true,"is_array":false,"description":"Configuration value","default":null}},"options":{"scope":{"name":"--scope","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Configuration scope (default, website, or store)","default":"default"},"scope-code":{"name":"--scope-code","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Scope code (required only if scope is not 'default')","default":null},"lock-env":{"name":"--lock-env","shortcut":"-e","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Lock value which prevents modification in the Admin (will be saved in app\/etc\/env.php)","default":false},"lock-config":{"name":"--lock-config","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Lock and share value with other installations, prevents modification in the Admin (will be saved in app\/etc\/config.php)","default":false},"lock":{"name":"--lock","shortcut":"-l","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Deprecated, use the --lock-env option instead.","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"config:show","usage":["config:show [--scope [SCOPE]] [--scope-code [SCOPE-CODE]] [--] []"],"description":"Shows configuration value for given path. If path is not specified, all saved values will be shown","help":"Shows configuration value for given path. If path is not specified, all saved values will be shown","definition":{"arguments":{"path":{"name":"path","is_required":false,"is_array":false,"description":"Configuration path, for example section_id\/group_id\/field_id","default":null}},"options":{"scope":{"name":"--scope","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Scope for configuration, if not specified, then 'default' scope will be used","default":"default"},"scope-code":{"name":"--scope-code","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Scope code (required only if scope is not `default`)","default":""},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cron:install","usage":["cron:install [-f|--force] [-d|--non-optional]"],"description":"Generates and installs crontab for current user","help":"Generates and installs crontab for current user","definition":{"arguments":[],"options":{"force":{"name":"--force","shortcut":"-f","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force install tasks","default":false},"non-optional":{"name":"--non-optional","shortcut":"-d","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Install only the non-optional (default) tasks","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cron:remove","usage":["cron:remove"],"description":"Removes tasks from crontab","help":"Removes tasks from crontab","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cron:run","usage":["cron:run [--group GROUP] [--bootstrap BOOTSTRAP]"],"description":"Runs jobs by schedule","help":"Runs jobs by schedule","definition":{"arguments":[],"options":{"group":{"name":"--group","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Run jobs only from specified group","default":null},"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"customer:hash:upgrade","usage":["customer:hash:upgrade"],"description":"Upgrade customer's hash according to the latest algorithm","help":"Upgrade customer's hash according to the latest algorithm","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"deploy:mode:set","usage":["deploy:mode:set [-s|--skip-compilation] [--] "],"description":"Set application mode.","help":"Set application mode.","definition":{"arguments":{"mode":{"name":"mode","is_required":true,"is_array":false,"description":"The application mode to set. Available options are \"developer\" or \"production\"","default":null}},"options":{"skip-compilation":{"name":"--skip-compilation","shortcut":"-s","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Skips the clearing and regeneration of static content (generated code, preprocessed CSS, and assets in pub\/static\/)","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"deploy:mode:show","usage":["deploy:mode:show"],"description":"Displays current application mode.","help":"Displays current application mode.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:di:info","usage":["dev:di:info "],"description":"Provides information on Dependency Injection configuration for the Command.","help":"Provides information on Dependency Injection configuration for the Command.","definition":{"arguments":{"class":{"name":"class","is_required":true,"is_array":false,"description":"Class name","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:profiler:disable","usage":["dev:profiler:disable"],"description":"Disable the profiler.","help":"Disable the profiler.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:profiler:enable","usage":["dev:profiler:enable []"],"description":"Enable the profiler.","help":"Enable the profiler.","definition":{"arguments":{"type":{"name":"type","is_required":false,"is_array":false,"description":"Profiler type","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:query-log:disable","usage":["dev:query-log:disable"],"description":"Disable DB query logging","help":"Disable DB query logging","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:query-log:enable","usage":["dev:query-log:enable [--include-all-queries [INCLUDE-ALL-QUERIES]] [--query-time-threshold [QUERY-TIME-THRESHOLD]] [--include-call-stack [INCLUDE-CALL-STACK]]"],"description":"Enable DB query logging","help":"Enable DB query logging","definition":{"arguments":[],"options":{"include-all-queries":{"name":"--include-all-queries","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Log all queries. [true|false]","default":"true"},"query-time-threshold":{"name":"--query-time-threshold","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Query time thresholds.","default":"0.001"},"include-call-stack":{"name":"--include-call-stack","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Include call stack. [true|false]","default":"true"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:source-theme:deploy","usage":["dev:source-theme:deploy [--type TYPE] [--locale LOCALE] [--area AREA] [--theme THEME] [--] [...]"],"description":"Collects and publishes source files for theme.","help":"Collects and publishes source files for theme.","definition":{"arguments":{"file":{"name":"file","is_required":false,"is_array":true,"description":"Files to pre-process (file should be specified without extension)","default":["css\/styles-m","css\/styles-l"]}},"options":{"type":{"name":"--type","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Type of source files: [less]","default":"less"},"locale":{"name":"--locale","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Locale: [en_US]","default":"en_US"},"area":{"name":"--area","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Area: [frontend|adminhtml]","default":"frontend"},"theme":{"name":"--theme","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Theme: [Vendor\/theme]","default":"Magento\/luma"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:template-hints:disable","usage":["dev:template-hints:disable"],"description":"Disable frontend template hints. A cache flush might be required.","help":"Disable frontend template hints. A cache flush might be required.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:template-hints:enable","usage":["dev:template-hints:enable"],"description":"Enable frontend template hints. A cache flush might be required.","help":"Enable frontend template hints. A cache flush might be required.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:tests:run","usage":["dev:tests:run [-c|--arguments ARGUMENTS] [--] []"],"description":"Runs tests","help":"Runs tests","definition":{"arguments":{"type":{"name":"type","is_required":false,"is_array":false,"description":"Type of test to run. Available types: all, unit, integration, integration-all, static, static-all, integrity, legacy, default","default":"default"}},"options":{"arguments":{"name":"--arguments","shortcut":"-c","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Additional arguments for PHPUnit. Example: \"-c'--filter=MyTest'\" (no spaces)","default":""},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:urn-catalog:generate","usage":["dev:urn-catalog:generate [--ide IDE] [--] "],"description":"Generates the catalog of URNs to *.xsd mappings for the IDE to highlight xml.","help":"Generates the catalog of URNs to *.xsd mappings for the IDE to highlight xml.","definition":{"arguments":{"path":{"name":"path","is_required":true,"is_array":false,"description":"Path to file to output the catalog. For PhpStorm use .idea\/misc.xml","default":null}},"options":{"ide":{"name":"--ide","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Format in which catalog will be generated. Supported: [phpstorm]","default":"phpstorm"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:xml:convert","usage":["dev:xml:convert [-o|--overwrite] [--] "],"description":"Converts XML file using XSL style sheets","help":"Converts XML file using XSL style sheets","definition":{"arguments":{"xml-file":{"name":"xml-file","is_required":true,"is_array":false,"description":"Path to XML file that going to be transformed","default":null},"processor":{"name":"processor","is_required":true,"is_array":false,"description":"Path to XSL style sheet that going to be applied to XML file","default":null}},"options":{"overwrite":{"name":"--overwrite","shortcut":"-o","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Overwrite XML file","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dotdigital:connector:automap","usage":["dotdigital:connector:automap"],"description":"Auto-map data fields","help":"Auto-map data fields","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dotdigital:connector:enable","usage":["dotdigital:connector:enable [--username USERNAME] [--password PASSWORD] [--automap-datafields [AUTOMAP-DATAFIELDS]] [--enable-syncs [ENABLE-SYNCS]] [--remove-ip-restriction [REMOVE-IP-RESTRICTION]] [--enable-email-capture [ENABLE-EMAIL-CAPTURE]]"],"description":"Add Dotdigital API credentials and enable the connector","help":"Add Dotdigital API credentials and enable the connector","definition":{"arguments":[],"options":{"username":{"name":"--username","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"API username","default":null},"password":{"name":"--password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"API password","default":null},"automap-datafields":{"name":"--automap-datafields","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Automap data fields","default":null},"enable-syncs":{"name":"--enable-syncs","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Enable syncs","default":null},"remove-ip-restriction":{"name":"--remove-ip-restriction","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Remove IP restriction","default":null},"enable-email-capture":{"name":"--enable-email-capture","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Enable email capture","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dotdigital:migrate","usage":["dotdigital:migrate"],"description":"Migrate data into email_ tables to sync with Engagement Cloud","help":"Migrate data into email_ tables to sync with Engagement Cloud","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dotdigital:sync","usage":["dotdigital:sync [--from [FROM]] [--] []"],"description":"Run syncs to populate email_ tables before importing to Engagement Cloud","help":"Run syncs to populate email_ tables before importing to Engagement Cloud","definition":{"arguments":{"sync":{"name":"sync","is_required":false,"is_array":false,"description":"The name of the sync to run","default":null}},"options":{"from":{"name":"--from","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Specify a date\/time (parsable by \\DateTime) to run a sync from (if supported)","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"downloadable:domains:add","usage":["downloadable:domains:add [...]"],"description":"Add domains to the downloadable domains whitelist","help":"Add domains to the downloadable domains whitelist","definition":{"arguments":{"domains":{"name":"domains","is_required":false,"is_array":true,"description":"Domains name","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"downloadable:domains:remove","usage":["downloadable:domains:remove [...]"],"description":"Remove domains from the downloadable domains whitelist","help":"Remove domains from the downloadable domains whitelist","definition":{"arguments":{"domains":{"name":"domains","is_required":false,"is_array":true,"description":"Domain names","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"downloadable:domains:show","usage":["downloadable:domains:show"],"description":"Display downloadable domains whitelist","help":"Display downloadable domains whitelist","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"encryption:payment-data:update","usage":["encryption:payment-data:update"],"description":"Re-encrypts encrypted credit card data with latest encryption cipher.","help":"Re-encrypts encrypted credit card data with latest encryption cipher.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"i18n:collect-phrases","usage":["i18n:collect-phrases [-o|--output OUTPUT] [-m|--magento] [--] []"],"description":"Discovers phrases in the codebase","help":"Discovers phrases in the codebase","definition":{"arguments":{"directory":{"name":"directory","is_required":false,"is_array":false,"description":"Directory path to parse. Not needed if --magento flag is set","default":null}},"options":{"output":{"name":"--output","shortcut":"-o","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Path (including filename) to an output file. With no file specified, defaults to stdout.","default":null},"magento":{"name":"--magento","shortcut":"-m","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Use the --magento parameter to parse the current Magento codebase. Omit the parameter if a directory is specified.","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"i18n:pack","usage":["i18n:pack [-m|--mode MODE] [-d|--allow-duplicates] [--] "],"description":"Saves language package","help":"Saves language package","definition":{"arguments":{"source":{"name":"source","is_required":true,"is_array":false,"description":"Path to source dictionary file with translations","default":null},"locale":{"name":"locale","is_required":true,"is_array":false,"description":"Target locale for dictionary, for example \"de_DE\"","default":null}},"options":{"mode":{"name":"--mode","shortcut":"-m","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Save mode for dictionary - \"replace\" - replace language pack by new one - \"merge\" - merge language packages, by default \"replace\"","default":"replace"},"allow-duplicates":{"name":"--allow-duplicates","shortcut":"-d","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Use the --allow-duplicates parameter to allow saving duplicates of translate. Otherwise omit the parameter.","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"i18n:uninstall","usage":["i18n:uninstall [-b|--backup-code] [--] ..."],"description":"Uninstalls language packages","help":"Uninstalls language packages","definition":{"arguments":{"package":{"name":"package","is_required":true,"is_array":true,"description":"Language package name","default":[]}},"options":{"backup-code":{"name":"--backup-code","shortcut":"-b","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take code and configuration files backup (excluding temporary files)","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:info","usage":["indexer:info"],"description":"Shows allowed Indexers","help":"Shows allowed Indexers","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:reindex","usage":["indexer:reindex [...]"],"description":"Reindexes Data","help":"Reindexes Data","definition":{"arguments":{"index":{"name":"index","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes.","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:reset","usage":["indexer:reset [...]"],"description":"Resets indexer status to invalid","help":"Resets indexer status to invalid","definition":{"arguments":{"index":{"name":"index","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes.","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:set-dimensions-mode","usage":["indexer:set-dimensions-mode [ []]"],"description":"Set Indexer Dimensions Mode","help":"Set Indexer Dimensions Mode","definition":{"arguments":{"indexer":{"name":"indexer","is_required":false,"is_array":false,"description":"Indexer name [catalog_product_price]","default":null},"mode":{"name":"mode","is_required":false,"is_array":false,"description":"Indexer dimension modes catalog_product_price none,website,customer_group,website_and_customer_group ","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:set-mode","usage":["indexer:set-mode [ [...]]"],"description":"Sets index mode type","help":"Sets index mode type","definition":{"arguments":{"mode":{"name":"mode","is_required":false,"is_array":false,"description":"Indexer mode type [realtime|schedule]","default":null},"index":{"name":"index","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes.","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:show-dimensions-mode","usage":["indexer:show-dimensions-mode [...]"],"description":"Shows Indexer Dimension Mode","help":"Shows Indexer Dimension Mode","definition":{"arguments":{"indexer":{"name":"indexer","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes (catalog_product_price)","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:show-mode","usage":["indexer:show-mode [...]"],"description":"Shows Index Mode","help":"Shows Index Mode","definition":{"arguments":{"index":{"name":"index","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes.","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:status","usage":["indexer:status [...]"],"description":"Shows status of Indexer","help":"Shows status of Indexer","definition":{"arguments":{"index":{"name":"index","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes.","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:adminuri","usage":["info:adminuri"],"description":"Displays the Magento Admin URI","help":"Displays the Magento Admin URI","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:backups:list","usage":["info:backups:list"],"description":"Prints list of available backup files","help":"Prints list of available backup files","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:currency:list","usage":["info:currency:list"],"description":"Displays the list of available currencies","help":"Displays the list of available currencies","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:dependencies:show-framework","usage":["info:dependencies:show-framework [-o|--output OUTPUT]"],"description":"Shows number of dependencies on Magento framework","help":"Shows number of dependencies on Magento framework","definition":{"arguments":[],"options":{"output":{"name":"--output","shortcut":"-o","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Report filename","default":"framework-dependencies.csv"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:dependencies:show-modules","usage":["info:dependencies:show-modules [-o|--output OUTPUT]"],"description":"Shows number of dependencies between modules","help":"Shows number of dependencies between modules","definition":{"arguments":[],"options":{"output":{"name":"--output","shortcut":"-o","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Report filename","default":"modules-dependencies.csv"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:dependencies:show-modules-circular","usage":["info:dependencies:show-modules-circular [-o|--output OUTPUT]"],"description":"Shows number of circular dependencies between modules","help":"Shows number of circular dependencies between modules","definition":{"arguments":[],"options":{"output":{"name":"--output","shortcut":"-o","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Report filename","default":"modules-circular-dependencies.csv"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:language:list","usage":["info:language:list"],"description":"Displays the list of available language locales","help":"Displays the list of available language locales","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:timezone:list","usage":["info:timezone:list"],"description":"Displays the list of available timezones","help":"Displays the list of available timezones","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"inventory:reservation:create-compensations","usage":["inventory:reservation:create-compensations [-r|--raw] [--] [...]"],"description":"Create reservations by provided compensation arguments","help":"Create reservations by provided compensation arguments","definition":{"arguments":{"compensations":{"name":"compensations","is_required":false,"is_array":true,"description":"List of compensation arguments in format \":::\"","default":[]}},"options":{"raw":{"name":"--raw","shortcut":"-r","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Raw output","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"inventory:reservation:list-inconsistencies","usage":["inventory:reservation:list-inconsistencies [-c|--complete-orders] [-i|--incomplete-orders] [-b|--bunch-size [BUNCH-SIZE]] [-r|--raw]"],"description":"Show all orders and products with salable quantity inconsistencies","help":"Show all orders and products with salable quantity inconsistencies","definition":{"arguments":[],"options":{"complete-orders":{"name":"--complete-orders","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Show only inconsistencies for complete orders","default":false},"incomplete-orders":{"name":"--incomplete-orders","shortcut":"-i","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Show only inconsistencies for incomplete orders","default":false},"bunch-size":{"name":"--bunch-size","shortcut":"-b","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Defines how many orders will be loaded at once","default":50},"raw":{"name":"--raw","shortcut":"-r","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Raw output","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"inventory-geonames:import","usage":["inventory-geonames:import ..."],"description":"Download and import geo names for source selection algorithm","help":"Download and import geo names for source selection algorithm","definition":{"arguments":{"countries":{"name":"countries","is_required":true,"is_array":true,"description":"List of country codes to import","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"maintenance:allow-ips","usage":["maintenance:allow-ips [--none] [--add] [--magento-init-params MAGENTO-INIT-PARAMS] [--] [...]"],"description":"Sets maintenance mode exempt IPs","help":"Sets maintenance mode exempt IPs","definition":{"arguments":{"ip":{"name":"ip","is_required":false,"is_array":true,"description":"Allowed IP addresses","default":[]}},"options":{"none":{"name":"--none","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Clear allowed IP addresses","default":false},"add":{"name":"--add","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Add the IP address to existing list","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"maintenance:disable","usage":["maintenance:disable [--ip IP] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Disables maintenance mode","help":"Disables maintenance mode","definition":{"arguments":[],"options":{"ip":{"name":"--ip","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":true,"description":"Allowed IP addresses (use 'none' to clear allowed IP list)","default":[]},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"maintenance:enable","usage":["maintenance:enable [--ip IP] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Enables maintenance mode","help":"Enables maintenance mode","definition":{"arguments":[],"options":{"ip":{"name":"--ip","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":true,"description":"Allowed IP addresses (use 'none' to clear allowed IP list)","default":[]},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"maintenance:status","usage":["maintenance:status [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Displays maintenance mode status","help":"Displays maintenance mode status","definition":{"arguments":[],"options":{"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"module:config:status","usage":["module:config:status"],"description":"Checks the modules configuration in the 'app\/etc\/config.php' file and reports if they are up to date or not","help":"Checks the modules configuration in the 'app\/etc\/config.php' file and reports if they are up to date or not","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"module:disable","usage":["module:disable [-f|--force] [--all] [-c|--clear-static-content] [--magento-init-params MAGENTO-INIT-PARAMS] [--] [...]"],"description":"Disables specified modules","help":"Disables specified modules","definition":{"arguments":{"module":{"name":"module","is_required":false,"is_array":true,"description":"Name of the module","default":[]}},"options":{"force":{"name":"--force","shortcut":"-f","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Bypass dependencies check","default":false},"all":{"name":"--all","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable all modules","default":false},"clear-static-content":{"name":"--clear-static-content","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Clear generated static view files. Necessary, if the module(s) have static view files","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"module:enable","usage":["module:enable [-f|--force] [--all] [-c|--clear-static-content] [--magento-init-params MAGENTO-INIT-PARAMS] [--] [...]"],"description":"Enables specified modules","help":"Enables specified modules","definition":{"arguments":{"module":{"name":"module","is_required":false,"is_array":true,"description":"Name of the module","default":[]}},"options":{"force":{"name":"--force","shortcut":"-f","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Bypass dependencies check","default":false},"all":{"name":"--all","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Enable all modules","default":false},"clear-static-content":{"name":"--clear-static-content","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Clear generated static view files. Necessary, if the module(s) have static view files","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"module:status","usage":["module:status [--enabled] [--disabled] [--magento-init-params MAGENTO-INIT-PARAMS] [--] []"],"description":"Displays status of modules","help":"Displays status of modules","definition":{"arguments":{"module":{"name":"module","is_required":false,"is_array":false,"description":"Optional module name","default":null}},"options":{"enabled":{"name":"--enabled","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Print only enabled modules","default":false},"disabled":{"name":"--disabled","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Print only disabled modules","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"module:uninstall","usage":["module:uninstall [-r|--remove-data] [--backup-code] [--backup-media] [--backup-db] [--non-composer] [-c|--clear-static-content] [--magento-init-params MAGENTO-INIT-PARAMS] [--] ..."],"description":"Uninstalls modules installed by composer","help":"Uninstalls modules installed by composer","definition":{"arguments":{"module":{"name":"module","is_required":true,"is_array":true,"description":"Name of the module","default":[]}},"options":{"remove-data":{"name":"--remove-data","shortcut":"-r","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Remove data installed by module(s)","default":false},"backup-code":{"name":"--backup-code","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take code and configuration files backup (excluding temporary files)","default":false},"backup-media":{"name":"--backup-media","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take media backup","default":false},"backup-db":{"name":"--backup-db","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take complete database backup","default":false},"non-composer":{"name":"--non-composer","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"All modules, that will be past here will be non composer based","default":false},"clear-static-content":{"name":"--clear-static-content","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Clear generated static view files. Necessary, if the module(s) have static view files","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"msp:security:recaptcha:disable","usage":["msp:security:recaptcha:disable"],"description":"Disable backend reCaptcha","help":"Disable backend reCaptcha","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"msp:security:tfa:disable","usage":["msp:security:tfa:disable"],"description":"Globally disable two factor auth","help":"Globally disable two factor auth","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"msp:security:tfa:providers","usage":["msp:security:tfa:providers"],"description":"List all available providers","help":"List all available providers","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"msp:security:tfa:reset","usage":["msp:security:tfa:reset "],"description":"Reset configuration for one user","help":"Reset configuration for one user","definition":{"arguments":{"user":{"name":"user","is_required":true,"is_array":false,"description":"Username","default":null},"provider":{"name":"provider","is_required":true,"is_array":false,"description":"Provider code","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"newrelic:create:deploy-marker","usage":["newrelic:create:deploy-marker []"],"description":"Check the deploy queue for entries and create an appropriate deploy marker.","help":"Check the deploy queue for entries and create an appropriate deploy marker.","definition":{"arguments":{"message":{"name":"message","is_required":true,"is_array":false,"description":"Deploy Message?","default":null},"change_log":{"name":"change_log","is_required":true,"is_array":false,"description":"Change Log?","default":null},"user":{"name":"user","is_required":false,"is_array":false,"description":"Deployment User","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"queue:consumers:list","usage":["queue:consumers:list"],"description":"List of MessageQueue consumers","help":"This command shows list of MessageQueue consumers.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"queue:consumers:start","usage":["queue:consumers:start [--max-messages MAX-MESSAGES] [--batch-size BATCH-SIZE] [--area-code AREA-CODE] [--single-thread] [--pid-file-path PID-FILE-PATH] [--] "],"description":"Start MessageQueue consumer","help":"This command starts MessageQueue consumer by its name.\n\nTo start consumer which will process all queued messages and terminate execution:\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer<\/comment>\n\nTo specify the number of messages which should be processed by consumer before its termination:\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer --max-messages=50<\/comment>\n\nTo specify the number of messages per batch for the batch consumer:\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer --batch-size=500<\/comment>\n\nTo specify the preferred area:\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer --area-code='adminhtml'<\/comment>\n \nTo do not run multiple copies of one consumer simultaneously:\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer --single-thread'<\/comment>\n\nTo save PID enter path (This option is deprecated, use --single-thread instead):\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer --pid-file-path='\/var\/someConsumer.pid'<\/comment>","definition":{"arguments":{"consumer":{"name":"consumer","is_required":true,"is_array":false,"description":"The name of the consumer to be started.","default":null}},"options":{"max-messages":{"name":"--max-messages","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The number of messages to be processed by the consumer before process termination. If not specified - terminate after processing all queued messages.","default":null},"batch-size":{"name":"--batch-size","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The number of messages per batch. Applicable for the batch consumer only.","default":null},"area-code":{"name":"--area-code","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The preferred area (global, adminhtml, etc...) default is global.","default":null},"single-thread":{"name":"--single-thread","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"This option prevents running multiple copies of one consumer simultaneously.","default":false},"pid-file-path":{"name":"--pid-file-path","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The file path for saving PID (This option is deprecated, use --single-thread instead)","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"sampledata:deploy","usage":["sampledata:deploy [--no-update]"],"description":"Deploy sample data modules for composer-based Magento installations","help":"Deploy sample data modules for composer-based Magento installations","definition":{"arguments":[],"options":{"no-update":{"name":"--no-update","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Update composer.json without executing composer update","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"sampledata:remove","usage":["sampledata:remove [--no-update]"],"description":"Remove all sample data packages from composer.json","help":"Remove all sample data packages from composer.json","definition":{"arguments":[],"options":{"no-update":{"name":"--no-update","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Update composer.json without executing composer update","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"sampledata:reset","usage":["sampledata:reset"],"description":"Reset all sample data modules for re-installation","help":"Reset all sample data modules for re-installation","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:backup","usage":["setup:backup [--code] [--media] [--db] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Takes backup of Magento Application code base, media and database","help":"Takes backup of Magento Application code base, media and database","definition":{"arguments":[],"options":{"code":{"name":"--code","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take code and configuration files backup (excluding temporary files)","default":false},"media":{"name":"--media","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take media backup","default":false},"db":{"name":"--db","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take complete database backup","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:config:set","usage":["setup:config:set [--backend-frontname BACKEND-FRONTNAME] [--amqp-host AMQP-HOST] [--amqp-port AMQP-PORT] [--amqp-user AMQP-USER] [--amqp-password AMQP-PASSWORD] [--amqp-virtualhost AMQP-VIRTUALHOST] [--amqp-ssl AMQP-SSL] [--amqp-ssl-options AMQP-SSL-OPTIONS] [--enable-debug-logging ENABLE-DEBUG-LOGGING] [--enable-syslog-logging ENABLE-SYSLOG-LOGGING] [--consumers-wait-for-messages CONSUMERS-WAIT-FOR-MESSAGES] [--key KEY] [--db-host DB-HOST] [--db-name DB-NAME] [--db-user DB-USER] [--db-engine DB-ENGINE] [--db-password DB-PASSWORD] [--db-prefix DB-PREFIX] [--db-model DB-MODEL] [--db-init-statements DB-INIT-STATEMENTS] [-s|--skip-db-validation] [--http-cache-hosts HTTP-CACHE-HOSTS] [--db-ssl-key DB-SSL-KEY] [--db-ssl-cert DB-SSL-CERT] [--db-ssl-ca DB-SSL-CA] [--db-ssl-verify] [--session-save SESSION-SAVE] [--session-save-redis-host SESSION-SAVE-REDIS-HOST] [--session-save-redis-port SESSION-SAVE-REDIS-PORT] [--session-save-redis-password SESSION-SAVE-REDIS-PASSWORD] [--session-save-redis-timeout SESSION-SAVE-REDIS-TIMEOUT] [--session-save-redis-persistent-id SESSION-SAVE-REDIS-PERSISTENT-ID] [--session-save-redis-db SESSION-SAVE-REDIS-DB] [--session-save-redis-compression-threshold SESSION-SAVE-REDIS-COMPRESSION-THRESHOLD] [--session-save-redis-compression-lib SESSION-SAVE-REDIS-COMPRESSION-LIB] [--session-save-redis-log-level SESSION-SAVE-REDIS-LOG-LEVEL] [--session-save-redis-max-concurrency SESSION-SAVE-REDIS-MAX-CONCURRENCY] [--session-save-redis-break-after-frontend SESSION-SAVE-REDIS-BREAK-AFTER-FRONTEND] [--session-save-redis-break-after-adminhtml SESSION-SAVE-REDIS-BREAK-AFTER-ADMINHTML] [--session-save-redis-first-lifetime SESSION-SAVE-REDIS-FIRST-LIFETIME] [--session-save-redis-bot-first-lifetime SESSION-SAVE-REDIS-BOT-FIRST-LIFETIME] [--session-save-redis-bot-lifetime SESSION-SAVE-REDIS-BOT-LIFETIME] [--session-save-redis-disable-locking SESSION-SAVE-REDIS-DISABLE-LOCKING] [--session-save-redis-min-lifetime SESSION-SAVE-REDIS-MIN-LIFETIME] [--session-save-redis-max-lifetime SESSION-SAVE-REDIS-MAX-LIFETIME] [--session-save-redis-sentinel-master SESSION-SAVE-REDIS-SENTINEL-MASTER] [--session-save-redis-sentinel-servers SESSION-SAVE-REDIS-SENTINEL-SERVERS] [--session-save-redis-sentinel-verify-master SESSION-SAVE-REDIS-SENTINEL-VERIFY-MASTER] [--session-save-redis-sentinel-connect-retires SESSION-SAVE-REDIS-SENTINEL-CONNECT-RETIRES] [--cache-backend CACHE-BACKEND] [--cache-backend-redis-server CACHE-BACKEND-REDIS-SERVER] [--cache-backend-redis-db CACHE-BACKEND-REDIS-DB] [--cache-backend-redis-port CACHE-BACKEND-REDIS-PORT] [--cache-backend-redis-password CACHE-BACKEND-REDIS-PASSWORD] [--cache-backend-redis-compress-data CACHE-BACKEND-REDIS-COMPRESS-DATA] [--cache-backend-redis-compression-lib CACHE-BACKEND-REDIS-COMPRESSION-LIB] [--cache-id-prefix CACHE-ID-PREFIX] [--page-cache PAGE-CACHE] [--page-cache-redis-server PAGE-CACHE-REDIS-SERVER] [--page-cache-redis-db PAGE-CACHE-REDIS-DB] [--page-cache-redis-port PAGE-CACHE-REDIS-PORT] [--page-cache-redis-password PAGE-CACHE-REDIS-PASSWORD] [--page-cache-redis-compress-data PAGE-CACHE-REDIS-COMPRESS-DATA] [--page-cache-redis-compression-lib PAGE-CACHE-REDIS-COMPRESSION-LIB] [--page-cache-id-prefix PAGE-CACHE-ID-PREFIX] [--lock-provider LOCK-PROVIDER] [--lock-db-prefix LOCK-DB-PREFIX] [--lock-zookeeper-host LOCK-ZOOKEEPER-HOST] [--lock-zookeeper-path LOCK-ZOOKEEPER-PATH] [--lock-file-path LOCK-FILE-PATH] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Creates or modifies the deployment configuration","help":"Creates or modifies the deployment configuration","definition":{"arguments":[],"options":{"backend-frontname":{"name":"--backend-frontname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Backend frontname (will be autogenerated if missing)","default":null},"amqp-host":{"name":"--amqp-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server host","default":""},"amqp-port":{"name":"--amqp-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server port","default":"5672"},"amqp-user":{"name":"--amqp-user","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server username","default":""},"amqp-password":{"name":"--amqp-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server password","default":""},"amqp-virtualhost":{"name":"--amqp-virtualhost","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp virtualhost","default":"\/"},"amqp-ssl":{"name":"--amqp-ssl","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp SSL","default":""},"amqp-ssl-options":{"name":"--amqp-ssl-options","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp SSL Options (JSON)","default":""},"enable-debug-logging":{"name":"--enable-debug-logging","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Enable debug logging","default":null},"enable-syslog-logging":{"name":"--enable-syslog-logging","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Enable syslog logging","default":null},"consumers-wait-for-messages":{"name":"--consumers-wait-for-messages","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Should consumers wait for a message from the queue? 1 - Yes, 0 - No","default":null},"key":{"name":"--key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Encryption key","default":null},"db-host":{"name":"--db-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server host","default":null},"db-name":{"name":"--db-name","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database name","default":null},"db-user":{"name":"--db-user","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server username","default":null},"db-engine":{"name":"--db-engine","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server engine","default":null},"db-password":{"name":"--db-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server password","default":null},"db-prefix":{"name":"--db-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database table prefix","default":null},"db-model":{"name":"--db-model","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database type","default":null},"db-init-statements":{"name":"--db-init-statements","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database initial set of commands","default":null},"skip-db-validation":{"name":"--skip-db-validation","shortcut":"-s","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"If specified, then db connection validation will be skipped","default":false},"http-cache-hosts":{"name":"--http-cache-hosts","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"http Cache hosts","default":null},"db-ssl-key":{"name":"--db-ssl-key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of client key file in order to establish db connection through SSL","default":""},"db-ssl-cert":{"name":"--db-ssl-cert","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of client certificate file in order to establish db connection through SSL","default":""},"db-ssl-ca":{"name":"--db-ssl-ca","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of server certificate file in order to establish db connection through SSL","default":""},"db-ssl-verify":{"name":"--db-ssl-verify","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Verify server certification","default":false},"session-save":{"name":"--session-save","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Session save handler","default":null},"session-save-redis-host":{"name":"--session-save-redis-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Fully qualified host name, IP address, or absolute path if using UNIX sockets","default":null},"session-save-redis-port":{"name":"--session-save-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"session-save-redis-password":{"name":"--session-save-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"session-save-redis-timeout":{"name":"--session-save-redis-timeout","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Connection timeout, in seconds","default":null},"session-save-redis-persistent-id":{"name":"--session-save-redis-persistent-id","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Unique string to enable persistent connections","default":null},"session-save-redis-db":{"name":"--session-save-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis database number","default":null},"session-save-redis-compression-threshold":{"name":"--session-save-redis-compression-threshold","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis compression threshold","default":null},"session-save-redis-compression-lib":{"name":"--session-save-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis compression library. Values:\u00a0gzip (default), lzf, lz4, snappy","default":null},"session-save-redis-log-level":{"name":"--session-save-redis-log-level","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis log level. Values: 0 (least verbose) to 7 (most verbose)","default":null},"session-save-redis-max-concurrency":{"name":"--session-save-redis-max-concurrency","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Maximum number of processes that can wait for a lock on one session","default":null},"session-save-redis-break-after-frontend":{"name":"--session-save-redis-break-after-frontend","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Number of seconds to wait before trying to break a lock for frontend session","default":null},"session-save-redis-break-after-adminhtml":{"name":"--session-save-redis-break-after-adminhtml","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Number of seconds to wait before trying to break a lock for Admin session","default":null},"session-save-redis-first-lifetime":{"name":"--session-save-redis-first-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime, in seconds, of session for non-bots on the first write (use 0 to disable)","default":null},"session-save-redis-bot-first-lifetime":{"name":"--session-save-redis-bot-first-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime, in seconds, of session for bots on the first write (use 0 to disable)","default":null},"session-save-redis-bot-lifetime":{"name":"--session-save-redis-bot-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime of session for bots on subsequent writes (use 0 to disable)","default":null},"session-save-redis-disable-locking":{"name":"--session-save-redis-disable-locking","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis disable locking. Values:\u00a0false (default), true","default":null},"session-save-redis-min-lifetime":{"name":"--session-save-redis-min-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis min session lifetime, in seconds","default":null},"session-save-redis-max-lifetime":{"name":"--session-save-redis-max-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis max session lifetime, in seconds","default":null},"session-save-redis-sentinel-master":{"name":"--session-save-redis-sentinel-master","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel master","default":null},"session-save-redis-sentinel-servers":{"name":"--session-save-redis-sentinel-servers","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel servers, comma separated","default":null},"session-save-redis-sentinel-verify-master":{"name":"--session-save-redis-sentinel-verify-master","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel verify master. Values: false (default), true","default":null},"session-save-redis-sentinel-connect-retires":{"name":"--session-save-redis-sentinel-connect-retires","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel connect retries.","default":null},"cache-backend":{"name":"--cache-backend","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default cache handler","default":null},"cache-backend-redis-server":{"name":"--cache-backend-redis-server","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server","default":null},"cache-backend-redis-db":{"name":"--cache-backend-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database number for the cache","default":null},"cache-backend-redis-port":{"name":"--cache-backend-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"cache-backend-redis-password":{"name":"--cache-backend-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"cache-backend-redis-compress-data":{"name":"--cache-backend-redis-compress-data","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Set to 0 to disable compression (default is 1, enabled)","default":null},"cache-backend-redis-compression-lib":{"name":"--cache-backend-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Compression lib to use [snappy,lzf,l4z,zstd,gzip] (leave blank to determine automatically)","default":null},"cache-id-prefix":{"name":"--cache-id-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"ID prefix for cache keys","default":null},"page-cache":{"name":"--page-cache","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default cache handler","default":null},"page-cache-redis-server":{"name":"--page-cache-redis-server","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server","default":null},"page-cache-redis-db":{"name":"--page-cache-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database number for the cache","default":null},"page-cache-redis-port":{"name":"--page-cache-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"page-cache-redis-password":{"name":"--page-cache-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"page-cache-redis-compress-data":{"name":"--page-cache-redis-compress-data","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Set to 1 to compress the full page cache (use 0 to disable)","default":null},"page-cache-redis-compression-lib":{"name":"--page-cache-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Compression library to use [snappy,lzf,l4z,zstd,gzip] (leave blank to determine automatically)","default":null},"page-cache-id-prefix":{"name":"--page-cache-id-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"ID prefix for cache keys","default":null},"lock-provider":{"name":"--lock-provider","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lock provider name","default":null},"lock-db-prefix":{"name":"--lock-db-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Installation specific lock prefix to avoid lock conflicts","default":null},"lock-zookeeper-host":{"name":"--lock-zookeeper-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Host and port to connect to Zookeeper cluster. For example: 127.0.0.1:2181","default":null},"lock-zookeeper-path":{"name":"--lock-zookeeper-path","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The path where Zookeeper will save locks. The default path is: \/magento\/locks","default":null},"lock-file-path":{"name":"--lock-file-path","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The path where file locks will be saved.","default":null},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:cron:run","usage":["setup:cron:run [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Runs cron job scheduled for setup application","help":"Runs cron job scheduled for setup application","definition":{"arguments":[],"options":{"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-data:upgrade","usage":["setup:db-data:upgrade [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Installs and upgrades data in the DB","help":"Installs and upgrades data in the DB","definition":{"arguments":[],"options":{"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-declaration:generate-patch","usage":["setup:db-declaration:generate-patch [--revertable [REVERTABLE]] [--type [TYPE]] [--] "],"description":"Generate patch and put it in specific folder.","help":"Generate patch and put it in specific folder.","definition":{"arguments":{"module":{"name":"module","is_required":true,"is_array":false,"description":"Module name","default":null},"patch":{"name":"patch","is_required":true,"is_array":false,"description":"Patch name","default":null}},"options":{"revertable":{"name":"--revertable","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Check whether patch is revertable or not.","default":false},"type":{"name":"--type","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Find out what type of patch should be generated. Available values: `data`, `schema`.","default":"data"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-declaration:generate-whitelist","usage":["setup:db-declaration:generate-whitelist [--module-name [MODULE-NAME]]"],"description":"Generate whitelist of tables and columns that are allowed to be edited by declaration installer","help":"Generate whitelist of tables and columns that are allowed to be edited by declaration installer","definition":{"arguments":[],"options":{"module-name":{"name":"--module-name","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Name of the module where whitelist will be generated","default":"all"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-schema:add-slave","usage":["setup:db-schema:add-slave [--host HOST] [--dbname DBNAME] [--username USERNAME] [--password [PASSWORD]] [--connection [CONNECTION]] [--resource [RESOURCE]] [--maxAllowedLag [MAXALLOWEDLAG]]"],"description":"Move checkout quote related tables to a separate DB server","help":"Move checkout quote related tables to a separate DB server","definition":{"arguments":[],"options":{"host":{"name":"--host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Slave DB Server host","default":"localhost"},"dbname":{"name":"--dbname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Slave Database Name","default":null},"username":{"name":"--username","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Slave DB user name","default":"root"},"password":{"name":"--password","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Slave DB user password","default":null},"connection":{"name":"--connection","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Slave connection name","default":"default"},"resource":{"name":"--resource","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Slave Resource name","default":"default"},"maxAllowedLag":{"name":"--maxAllowedLag","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Max Allowed Lag Slave Connection (in seconds)","default":""},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-schema:split-quote","usage":["setup:db-schema:split-quote [--host HOST] [--dbname DBNAME] [--username USERNAME] [--password [PASSWORD]] [--connection [CONNECTION]] [--resource [RESOURCE]] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Move checkout quote related tables to a separate DB server","help":"Move checkout quote related tables to a separate DB server","definition":{"arguments":[],"options":{"host":{"name":"--host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Checkout DB Server host","default":null},"dbname":{"name":"--dbname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Checkout Database Name","default":null},"username":{"name":"--username","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Checkout DB user name","default":null},"password":{"name":"--password","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Checkout DB user password","default":null},"connection":{"name":"--connection","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Checkout connection name","default":"checkout"},"resource":{"name":"--resource","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Checkout resource name","default":"checkout"},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-schema:split-sales","usage":["setup:db-schema:split-sales [--host HOST] [--dbname DBNAME] [--username USERNAME] [--password [PASSWORD]] [--connection [CONNECTION]] [--resource [RESOURCE]] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Move sales related tables to a separate DB server","help":"Move sales related tables to a separate DB server","definition":{"arguments":[],"options":{"host":{"name":"--host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Sales DB Server host","default":null},"dbname":{"name":"--dbname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Sales Database Name","default":null},"username":{"name":"--username","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Sales DB user name","default":null},"password":{"name":"--password","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Sales DB user passowrd","default":null},"connection":{"name":"--connection","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Sales connection name","default":"sales"},"resource":{"name":"--resource","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Sales resource name","default":"sales"},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-schema:upgrade","usage":["setup:db-schema:upgrade [--convert-old-scripts [CONVERT-OLD-SCRIPTS]] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Installs and upgrades the DB schema","help":"Installs and upgrades the DB schema","definition":{"arguments":[],"options":{"convert-old-scripts":{"name":"--convert-old-scripts","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Allows to convert old scripts (InstallSchema, UpgradeSchema) to db_schema.xml format","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db:status","usage":["setup:db:status [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Checks if DB schema or data requires upgrade","help":"Checks if DB schema or data requires upgrade","definition":{"arguments":[],"options":{"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:di:compile","usage":["setup:di:compile"],"description":"Generates DI configuration and all missing classes that can be auto-generated","help":"Generates DI configuration and all missing classes that can be auto-generated","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:install","usage":["setup:install [--backend-frontname BACKEND-FRONTNAME] [--amqp-host AMQP-HOST] [--amqp-port AMQP-PORT] [--amqp-user AMQP-USER] [--amqp-password AMQP-PASSWORD] [--amqp-virtualhost AMQP-VIRTUALHOST] [--amqp-ssl AMQP-SSL] [--amqp-ssl-options AMQP-SSL-OPTIONS] [--enable-debug-logging ENABLE-DEBUG-LOGGING] [--enable-syslog-logging ENABLE-SYSLOG-LOGGING] [--consumers-wait-for-messages CONSUMERS-WAIT-FOR-MESSAGES] [--key KEY] [--db-host DB-HOST] [--db-name DB-NAME] [--db-user DB-USER] [--db-engine DB-ENGINE] [--db-password DB-PASSWORD] [--db-prefix DB-PREFIX] [--db-model DB-MODEL] [--db-init-statements DB-INIT-STATEMENTS] [-s|--skip-db-validation] [--http-cache-hosts HTTP-CACHE-HOSTS] [--db-ssl-key DB-SSL-KEY] [--db-ssl-cert DB-SSL-CERT] [--db-ssl-ca DB-SSL-CA] [--db-ssl-verify] [--session-save SESSION-SAVE] [--session-save-redis-host SESSION-SAVE-REDIS-HOST] [--session-save-redis-port SESSION-SAVE-REDIS-PORT] [--session-save-redis-password SESSION-SAVE-REDIS-PASSWORD] [--session-save-redis-timeout SESSION-SAVE-REDIS-TIMEOUT] [--session-save-redis-persistent-id SESSION-SAVE-REDIS-PERSISTENT-ID] [--session-save-redis-db SESSION-SAVE-REDIS-DB] [--session-save-redis-compression-threshold SESSION-SAVE-REDIS-COMPRESSION-THRESHOLD] [--session-save-redis-compression-lib SESSION-SAVE-REDIS-COMPRESSION-LIB] [--session-save-redis-log-level SESSION-SAVE-REDIS-LOG-LEVEL] [--session-save-redis-max-concurrency SESSION-SAVE-REDIS-MAX-CONCURRENCY] [--session-save-redis-break-after-frontend SESSION-SAVE-REDIS-BREAK-AFTER-FRONTEND] [--session-save-redis-break-after-adminhtml SESSION-SAVE-REDIS-BREAK-AFTER-ADMINHTML] [--session-save-redis-first-lifetime SESSION-SAVE-REDIS-FIRST-LIFETIME] [--session-save-redis-bot-first-lifetime SESSION-SAVE-REDIS-BOT-FIRST-LIFETIME] [--session-save-redis-bot-lifetime SESSION-SAVE-REDIS-BOT-LIFETIME] [--session-save-redis-disable-locking SESSION-SAVE-REDIS-DISABLE-LOCKING] [--session-save-redis-min-lifetime SESSION-SAVE-REDIS-MIN-LIFETIME] [--session-save-redis-max-lifetime SESSION-SAVE-REDIS-MAX-LIFETIME] [--session-save-redis-sentinel-master SESSION-SAVE-REDIS-SENTINEL-MASTER] [--session-save-redis-sentinel-servers SESSION-SAVE-REDIS-SENTINEL-SERVERS] [--session-save-redis-sentinel-verify-master SESSION-SAVE-REDIS-SENTINEL-VERIFY-MASTER] [--session-save-redis-sentinel-connect-retires SESSION-SAVE-REDIS-SENTINEL-CONNECT-RETIRES] [--cache-backend CACHE-BACKEND] [--cache-backend-redis-server CACHE-BACKEND-REDIS-SERVER] [--cache-backend-redis-db CACHE-BACKEND-REDIS-DB] [--cache-backend-redis-port CACHE-BACKEND-REDIS-PORT] [--cache-backend-redis-password CACHE-BACKEND-REDIS-PASSWORD] [--cache-backend-redis-compress-data CACHE-BACKEND-REDIS-COMPRESS-DATA] [--cache-backend-redis-compression-lib CACHE-BACKEND-REDIS-COMPRESSION-LIB] [--cache-id-prefix CACHE-ID-PREFIX] [--page-cache PAGE-CACHE] [--page-cache-redis-server PAGE-CACHE-REDIS-SERVER] [--page-cache-redis-db PAGE-CACHE-REDIS-DB] [--page-cache-redis-port PAGE-CACHE-REDIS-PORT] [--page-cache-redis-password PAGE-CACHE-REDIS-PASSWORD] [--page-cache-redis-compress-data PAGE-CACHE-REDIS-COMPRESS-DATA] [--page-cache-redis-compression-lib PAGE-CACHE-REDIS-COMPRESSION-LIB] [--page-cache-id-prefix PAGE-CACHE-ID-PREFIX] [--lock-provider LOCK-PROVIDER] [--lock-db-prefix LOCK-DB-PREFIX] [--lock-zookeeper-host LOCK-ZOOKEEPER-HOST] [--lock-zookeeper-path LOCK-ZOOKEEPER-PATH] [--lock-file-path LOCK-FILE-PATH] [--base-url BASE-URL] [--language LANGUAGE] [--timezone TIMEZONE] [--currency CURRENCY] [--use-rewrites USE-REWRITES] [--use-secure USE-SECURE] [--base-url-secure BASE-URL-SECURE] [--use-secure-admin USE-SECURE-ADMIN] [--admin-use-security-key ADMIN-USE-SECURITY-KEY] [--admin-user [ADMIN-USER]] [--admin-password [ADMIN-PASSWORD]] [--admin-email [ADMIN-EMAIL]] [--admin-firstname [ADMIN-FIRSTNAME]] [--admin-lastname [ADMIN-LASTNAME]] [--cleanup-database] [--sales-order-increment-prefix SALES-ORDER-INCREMENT-PREFIX] [--use-sample-data] [--enable-modules [ENABLE-MODULES]] [--disable-modules [DISABLE-MODULES]] [--convert-old-scripts [CONVERT-OLD-SCRIPTS]] [-i|--interactive] [--safe-mode [SAFE-MODE]] [--data-restore [DATA-RESTORE]] [--dry-run [DRY-RUN]] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Installs the Magento application","help":"Installs the Magento application","definition":{"arguments":[],"options":{"backend-frontname":{"name":"--backend-frontname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Backend frontname (will be autogenerated if missing)","default":null},"amqp-host":{"name":"--amqp-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server host","default":""},"amqp-port":{"name":"--amqp-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server port","default":"5672"},"amqp-user":{"name":"--amqp-user","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server username","default":""},"amqp-password":{"name":"--amqp-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server password","default":""},"amqp-virtualhost":{"name":"--amqp-virtualhost","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp virtualhost","default":"\/"},"amqp-ssl":{"name":"--amqp-ssl","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp SSL","default":""},"amqp-ssl-options":{"name":"--amqp-ssl-options","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp SSL Options (JSON)","default":""},"enable-debug-logging":{"name":"--enable-debug-logging","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Enable debug logging","default":null},"enable-syslog-logging":{"name":"--enable-syslog-logging","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Enable syslog logging","default":null},"consumers-wait-for-messages":{"name":"--consumers-wait-for-messages","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Should consumers wait for a message from the queue? 1 - Yes, 0 - No","default":null},"key":{"name":"--key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Encryption key","default":null},"db-host":{"name":"--db-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server host","default":null},"db-name":{"name":"--db-name","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database name","default":null},"db-user":{"name":"--db-user","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server username","default":null},"db-engine":{"name":"--db-engine","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server engine","default":null},"db-password":{"name":"--db-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server password","default":null},"db-prefix":{"name":"--db-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database table prefix","default":null},"db-model":{"name":"--db-model","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database type","default":null},"db-init-statements":{"name":"--db-init-statements","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database initial set of commands","default":null},"skip-db-validation":{"name":"--skip-db-validation","shortcut":"-s","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"If specified, then db connection validation will be skipped","default":false},"http-cache-hosts":{"name":"--http-cache-hosts","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"http Cache hosts","default":null},"db-ssl-key":{"name":"--db-ssl-key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of client key file in order to establish db connection through SSL","default":""},"db-ssl-cert":{"name":"--db-ssl-cert","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of client certificate file in order to establish db connection through SSL","default":""},"db-ssl-ca":{"name":"--db-ssl-ca","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of server certificate file in order to establish db connection through SSL","default":""},"db-ssl-verify":{"name":"--db-ssl-verify","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Verify server certification","default":false},"session-save":{"name":"--session-save","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Session save handler","default":null},"session-save-redis-host":{"name":"--session-save-redis-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Fully qualified host name, IP address, or absolute path if using UNIX sockets","default":null},"session-save-redis-port":{"name":"--session-save-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"session-save-redis-password":{"name":"--session-save-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"session-save-redis-timeout":{"name":"--session-save-redis-timeout","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Connection timeout, in seconds","default":null},"session-save-redis-persistent-id":{"name":"--session-save-redis-persistent-id","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Unique string to enable persistent connections","default":null},"session-save-redis-db":{"name":"--session-save-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis database number","default":null},"session-save-redis-compression-threshold":{"name":"--session-save-redis-compression-threshold","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis compression threshold","default":null},"session-save-redis-compression-lib":{"name":"--session-save-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis compression library. Values:\u00a0gzip (default), lzf, lz4, snappy","default":null},"session-save-redis-log-level":{"name":"--session-save-redis-log-level","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis log level. Values: 0 (least verbose) to 7 (most verbose)","default":null},"session-save-redis-max-concurrency":{"name":"--session-save-redis-max-concurrency","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Maximum number of processes that can wait for a lock on one session","default":null},"session-save-redis-break-after-frontend":{"name":"--session-save-redis-break-after-frontend","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Number of seconds to wait before trying to break a lock for frontend session","default":null},"session-save-redis-break-after-adminhtml":{"name":"--session-save-redis-break-after-adminhtml","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Number of seconds to wait before trying to break a lock for Admin session","default":null},"session-save-redis-first-lifetime":{"name":"--session-save-redis-first-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime, in seconds, of session for non-bots on the first write (use 0 to disable)","default":null},"session-save-redis-bot-first-lifetime":{"name":"--session-save-redis-bot-first-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime, in seconds, of session for bots on the first write (use 0 to disable)","default":null},"session-save-redis-bot-lifetime":{"name":"--session-save-redis-bot-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime of session for bots on subsequent writes (use 0 to disable)","default":null},"session-save-redis-disable-locking":{"name":"--session-save-redis-disable-locking","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis disable locking. Values:\u00a0false (default), true","default":null},"session-save-redis-min-lifetime":{"name":"--session-save-redis-min-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis min session lifetime, in seconds","default":null},"session-save-redis-max-lifetime":{"name":"--session-save-redis-max-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis max session lifetime, in seconds","default":null},"session-save-redis-sentinel-master":{"name":"--session-save-redis-sentinel-master","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel master","default":null},"session-save-redis-sentinel-servers":{"name":"--session-save-redis-sentinel-servers","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel servers, comma separated","default":null},"session-save-redis-sentinel-verify-master":{"name":"--session-save-redis-sentinel-verify-master","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel verify master. Values: false (default), true","default":null},"session-save-redis-sentinel-connect-retires":{"name":"--session-save-redis-sentinel-connect-retires","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel connect retries.","default":null},"cache-backend":{"name":"--cache-backend","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default cache handler","default":null},"cache-backend-redis-server":{"name":"--cache-backend-redis-server","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server","default":null},"cache-backend-redis-db":{"name":"--cache-backend-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database number for the cache","default":null},"cache-backend-redis-port":{"name":"--cache-backend-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"cache-backend-redis-password":{"name":"--cache-backend-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"cache-backend-redis-compress-data":{"name":"--cache-backend-redis-compress-data","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Set to 0 to disable compression (default is 1, enabled)","default":null},"cache-backend-redis-compression-lib":{"name":"--cache-backend-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Compression lib to use [snappy,lzf,l4z,zstd,gzip] (leave blank to determine automatically)","default":null},"cache-id-prefix":{"name":"--cache-id-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"ID prefix for cache keys","default":null},"page-cache":{"name":"--page-cache","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default cache handler","default":null},"page-cache-redis-server":{"name":"--page-cache-redis-server","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server","default":null},"page-cache-redis-db":{"name":"--page-cache-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database number for the cache","default":null},"page-cache-redis-port":{"name":"--page-cache-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"page-cache-redis-password":{"name":"--page-cache-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"page-cache-redis-compress-data":{"name":"--page-cache-redis-compress-data","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Set to 1 to compress the full page cache (use 0 to disable)","default":null},"page-cache-redis-compression-lib":{"name":"--page-cache-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Compression library to use [snappy,lzf,l4z,zstd,gzip] (leave blank to determine automatically)","default":null},"page-cache-id-prefix":{"name":"--page-cache-id-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"ID prefix for cache keys","default":null},"lock-provider":{"name":"--lock-provider","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lock provider name","default":null},"lock-db-prefix":{"name":"--lock-db-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Installation specific lock prefix to avoid lock conflicts","default":null},"lock-zookeeper-host":{"name":"--lock-zookeeper-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Host and port to connect to Zookeeper cluster. For example: 127.0.0.1:2181","default":null},"lock-zookeeper-path":{"name":"--lock-zookeeper-path","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The path where Zookeeper will save locks. The default path is: \/magento\/locks","default":null},"lock-file-path":{"name":"--lock-file-path","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The path where file locks will be saved.","default":null},"base-url":{"name":"--base-url","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"URL the store is supposed to be available at. Deprecated, use config:set with path web\/unsecure\/base_url","default":null},"language":{"name":"--language","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default language code. Deprecated, use config:set with path general\/locale\/code","default":null},"timezone":{"name":"--timezone","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default time zone code. Deprecated, use config:set with path general\/locale\/timezone","default":null},"currency":{"name":"--currency","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default currency code. Deprecated, use config:set with path currency\/options\/base, currency\/options\/default and currency\/options\/allow","default":null},"use-rewrites":{"name":"--use-rewrites","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Use rewrites. Deprecated, use config:set with path web\/seo\/use_rewrites","default":null},"use-secure":{"name":"--use-secure","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Use secure URLs. Enable this option only if SSL is available. Deprecated, use config:set with path web\/secure\/use_in_frontend","default":null},"base-url-secure":{"name":"--base-url-secure","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Base URL for SSL connection. Deprecated, use config:set with path web\/secure\/base_url","default":null},"use-secure-admin":{"name":"--use-secure-admin","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Run admin interface with SSL. Deprecated, use config:set with path web\/secure\/use_in_adminhtml","default":null},"admin-use-security-key":{"name":"--admin-use-security-key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Whether to use a \"security key\" feature in Magento Admin URLs and forms. Deprecated, use config:set with path admin\/security\/use_form_key","default":null},"admin-user":{"name":"--admin-user","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Admin user","default":null},"admin-password":{"name":"--admin-password","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Admin password","default":null},"admin-email":{"name":"--admin-email","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Admin email","default":null},"admin-firstname":{"name":"--admin-firstname","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Admin first name","default":null},"admin-lastname":{"name":"--admin-lastname","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Admin last name","default":null},"cleanup-database":{"name":"--cleanup-database","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Cleanup the database before installation","default":false},"sales-order-increment-prefix":{"name":"--sales-order-increment-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Sales order number prefix","default":null},"use-sample-data":{"name":"--use-sample-data","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Use sample data","default":false},"enable-modules":{"name":"--enable-modules","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"List of comma-separated module names. That must be included during installation. Available magic param \"all\".","default":null},"disable-modules":{"name":"--disable-modules","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"List of comma-separated module names. That must be avoided during installation. Available magic param \"all\".","default":null},"convert-old-scripts":{"name":"--convert-old-scripts","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Allows to convert old scripts (InstallSchema, UpgradeSchema) to db_schema.xml format","default":false},"interactive":{"name":"--interactive","shortcut":"-i","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Interactive Magento installation","default":false},"safe-mode":{"name":"--safe-mode","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Safe installation of Magento with dumps on destructive operations, like column removal","default":null},"data-restore":{"name":"--data-restore","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Restore removed data from dumps","default":null},"dry-run":{"name":"--dry-run","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Magento Installation will be run in dry-run mode","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:performance:generate-fixtures","usage":["setup:performance:generate-fixtures [-s|--skip-reindex] [--] "],"description":"Generates fixtures","help":"Generates fixtures","definition":{"arguments":{"profile":{"name":"profile","is_required":true,"is_array":false,"description":"Path to profile configuration file","default":null}},"options":{"skip-reindex":{"name":"--skip-reindex","shortcut":"-s","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Skip reindex","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:rollback","usage":["setup:rollback [-c|--code-file CODE-FILE] [-m|--media-file MEDIA-FILE] [-d|--db-file DB-FILE] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Rolls back Magento Application codebase, media and database","help":"Rolls back Magento Application codebase, media and database","definition":{"arguments":[],"options":{"code-file":{"name":"--code-file","shortcut":"-c","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Basename of the code backup file in var\/backups","default":null},"media-file":{"name":"--media-file","shortcut":"-m","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Basename of the media backup file in var\/backups","default":null},"db-file":{"name":"--db-file","shortcut":"-d","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Basename of the db backup file in var\/backups","default":null},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:static-content:deploy","usage":["setup:static-content:deploy [-f|--force] [-s|--strategy [STRATEGY]] [-a|--area [AREA]] [--exclude-area [EXCLUDE-AREA]] [-t|--theme [THEME]] [--exclude-theme [EXCLUDE-THEME]] [-l|--language [LANGUAGE]] [--exclude-language [EXCLUDE-LANGUAGE]] [-j|--jobs [JOBS]] [--max-execution-time [MAX-EXECUTION-TIME]] [--symlink-locale] [--content-version CONTENT-VERSION] [--refresh-content-version-only] [--no-javascript] [--no-js-bundle] [--no-css] [--no-less] [--no-images] [--no-fonts] [--no-html] [--no-misc] [--no-html-minify] [--] [...]"],"description":"Deploys static view files","help":"Deploys static view files","definition":{"arguments":{"languages":{"name":"languages","is_required":false,"is_array":true,"description":"Space-separated list of ISO-639 language codes for which to output static view files.","default":[]}},"options":{"force":{"name":"--force","shortcut":"-f","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Deploy files in any mode.","default":false},"strategy":{"name":"--strategy","shortcut":"-s","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Deploy files using specified strategy.","default":"quick"},"area":{"name":"--area","shortcut":"-a","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Generate files only for the specified areas.","default":["all"]},"exclude-area":{"name":"--exclude-area","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Do not generate files for the specified areas.","default":["none"]},"theme":{"name":"--theme","shortcut":"-t","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Generate static view files for only the specified themes.","default":["all"]},"exclude-theme":{"name":"--exclude-theme","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Do not generate files for the specified themes.","default":["none"]},"language":{"name":"--language","shortcut":"-l","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Generate files only for the specified languages.","default":["all"]},"exclude-language":{"name":"--exclude-language","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Do not generate files for the specified languages.","default":["none"]},"jobs":{"name":"--jobs","shortcut":"-j","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Enable parallel processing using the specified number of jobs.","default":0},"max-execution-time":{"name":"--max-execution-time","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"The maximum expected execution time of deployment static process (in seconds).","default":900},"symlink-locale":{"name":"--symlink-locale","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Create symlinks for the files of those locales, which are passed for deployment, but have no customizations.","default":false},"content-version":{"name":"--content-version","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Custom version of static content can be used if running deployment on multiple nodes to ensure that static content version is identical and caching works properly.","default":null},"refresh-content-version-only":{"name":"--refresh-content-version-only","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Refreshing the version of static content only can be used to refresh static content in browser cache and CDN cache.","default":false},"no-javascript":{"name":"--no-javascript","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy JavaScript files.","default":false},"no-js-bundle":{"name":"--no-js-bundle","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy JavaScript bundle files.","default":false},"no-css":{"name":"--no-css","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy CSS files.","default":false},"no-less":{"name":"--no-less","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy LESS files.","default":false},"no-images":{"name":"--no-images","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy images.","default":false},"no-fonts":{"name":"--no-fonts","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy font files.","default":false},"no-html":{"name":"--no-html","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy HTML files.","default":false},"no-misc":{"name":"--no-misc","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy files of other types (.md, .jbf, .csv, etc.).","default":false},"no-html-minify":{"name":"--no-html-minify","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not minify HTML files.","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:store-config:set","usage":["setup:store-config:set [--base-url BASE-URL] [--language LANGUAGE] [--timezone TIMEZONE] [--currency CURRENCY] [--use-rewrites USE-REWRITES] [--use-secure USE-SECURE] [--base-url-secure BASE-URL-SECURE] [--use-secure-admin USE-SECURE-ADMIN] [--admin-use-security-key ADMIN-USE-SECURITY-KEY] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Installs the store configuration. Deprecated since 2.2.0. Use config:set instead","help":"Installs the store configuration. Deprecated since 2.2.0. Use config:set instead","definition":{"arguments":[],"options":{"base-url":{"name":"--base-url","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"URL the store is supposed to be available at. Deprecated, use config:set with path web\/unsecure\/base_url","default":null},"language":{"name":"--language","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default language code. Deprecated, use config:set with path general\/locale\/code","default":null},"timezone":{"name":"--timezone","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default time zone code. Deprecated, use config:set with path general\/locale\/timezone","default":null},"currency":{"name":"--currency","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default currency code. Deprecated, use config:set with path currency\/options\/base, currency\/options\/default and currency\/options\/allow","default":null},"use-rewrites":{"name":"--use-rewrites","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Use rewrites. Deprecated, use config:set with path web\/seo\/use_rewrites","default":null},"use-secure":{"name":"--use-secure","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Use secure URLs. Enable this option only if SSL is available. Deprecated, use config:set with path web\/secure\/use_in_frontend","default":null},"base-url-secure":{"name":"--base-url-secure","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Base URL for SSL connection. Deprecated, use config:set with path web\/secure\/base_url","default":null},"use-secure-admin":{"name":"--use-secure-admin","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Run admin interface with SSL. Deprecated, use config:set with path web\/secure\/use_in_adminhtml","default":null},"admin-use-security-key":{"name":"--admin-use-security-key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Whether to use a \"security key\" feature in Magento Admin URLs and forms. Deprecated, use config:set with path admin\/security\/use_form_key","default":null},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:uninstall","usage":["setup:uninstall [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Uninstalls the Magento application","help":"Uninstalls the Magento application","definition":{"arguments":[],"options":{"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:upgrade","usage":["setup:upgrade [--keep-generated] [--convert-old-scripts [CONVERT-OLD-SCRIPTS]] [--safe-mode [SAFE-MODE]] [--data-restore [DATA-RESTORE]] [--dry-run [DRY-RUN]] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Upgrades the Magento application, DB data, and schema","help":"Upgrades the Magento application, DB data, and schema","definition":{"arguments":[],"options":{"keep-generated":{"name":"--keep-generated","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Prevents generated files from being deleted. We discourage using this option except when deploying to production. Consult your system integrator or administrator for more information.","default":false},"convert-old-scripts":{"name":"--convert-old-scripts","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Allows to convert old scripts (InstallSchema, UpgradeSchema) to db_schema.xml format","default":false},"safe-mode":{"name":"--safe-mode","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Safe installation of Magento with dumps on destructive operations, like column removal","default":null},"data-restore":{"name":"--data-restore","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Restore removed data from dumps","default":null},"dry-run":{"name":"--dry-run","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Magento Installation will be run in dry-run mode","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"store:list","usage":["store:list"],"description":"Displays the list of stores","help":"Displays the list of stores","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"store:website:list","usage":["store:website:list"],"description":"Displays the list of websites","help":"Displays the list of websites","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"support:backup:code","usage":["support:backup:code [--name [NAME]] [-o|--output [OUTPUT]] [-l|--logs]"],"description":"Create Code backup","help":"Create Code backup","definition":{"arguments":[],"options":{"name":{"name":"--name","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Dump name","default":null},"output":{"name":"--output","shortcut":"-o","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Output path","default":null},"logs":{"name":"--logs","shortcut":"-l","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Include logs","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"support:backup:db","usage":["support:backup:db [--name [NAME]] [-o|--output [OUTPUT]] [-l|--logs] [-i|--ignore-sanitize]"],"description":"Create DB backup","help":"Create DB backup","definition":{"arguments":[],"options":{"name":{"name":"--name","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Dump name","default":null},"output":{"name":"--output","shortcut":"-o","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Output path","default":null},"logs":{"name":"--logs","shortcut":"-l","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Include logs","default":false},"ignore-sanitize":{"name":"--ignore-sanitize","shortcut":"-i","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Ignore sanitize","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"support:utility:check","usage":["support:utility:check [--hide-paths]"],"description":"Check required backup utilities","help":"Check required backup utilities","definition":{"arguments":[],"options":{"hide-paths":{"name":"--hide-paths","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Only check required console utilities","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"support:utility:paths","usage":["support:utility:paths [-f|--force]"],"description":"Create utilities paths list","help":"Create utilities paths list","definition":{"arguments":[],"options":{"force":{"name":"--force","shortcut":"-f","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"theme:uninstall","usage":["theme:uninstall [--backup-code] [-c|--clear-static-content] [--] ..."],"description":"Uninstalls theme","help":"Uninstalls theme","definition":{"arguments":{"theme":{"name":"theme","is_required":true,"is_array":true,"description":"Path of the theme. Theme path should be specified as full path which is area\/vendor\/name. For example, frontend\/Magento\/blank","default":[]}},"options":{"backup-code":{"name":"--backup-code","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take code backup (excluding temporary files)","default":false},"clear-static-content":{"name":"--clear-static-content","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Clear generated static view files.","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"varnish:vcl:generate","usage":["varnish:vcl:generate [--access-list ACCESS-LIST] [--backend-host BACKEND-HOST] [--backend-port BACKEND-PORT] [--export-version EXPORT-VERSION] [--grace-period GRACE-PERIOD] [--output-file OUTPUT-FILE]"],"description":"Generates Varnish VCL and echos it to the command line","help":"Generates Varnish VCL and echos it to the command line","definition":{"arguments":[],"options":{"access-list":{"name":"--access-list","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":true,"description":"IPs access list that can purge Varnish","default":["localhost"]},"backend-host":{"name":"--backend-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Host of the web backend","default":"localhost"},"backend-port":{"name":"--backend-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Port of the web backend","default":8080},"export-version":{"name":"--export-version","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The version of Varnish file","default":"4"},"grace-period":{"name":"--grace-period","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Grace period in seconds","default":300},"output-file":{"name":"--output-file","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Path to the file to write vcl","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"yotpo:reset","usage":["yotpo:reset [-e|--entity [ENTITY]]"],"description":"Reset Yotpo sync flags &\/or configurations","help":"Reset Yotpo sync flags &\/or configurations","definition":{"arguments":[],"options":{"entity":{"name":"--entity","shortcut":"-e","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Entity type (orders)","default":"orders"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"yotpo:sync","usage":["yotpo:sync [-e|--entity ENTITY] [-l|--limit [LIMIT]]"],"description":"Sync Yotpo manually (reviews module)","help":"Sync Yotpo manually (reviews module)","definition":{"arguments":[],"options":{"entity":{"name":"--entity","shortcut":"-e","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Entity type (allowed options: orders)","default":"orders"},"limit":{"name":"--limit","shortcut":"-l","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Max entity items to sync. WARNING: Setting a high sync limit (or no limit) may result in a high server load (0=no limit).","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"yotpo:update-metadata","usage":["yotpo:update-metadata"],"description":"Manually send platform metadata to Yotpo","help":"Manually send platform metadata to Yotpo","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false}],"namespaces":[{"id":"_global","commands":["help","list"]},{"id":"admin","commands":["admin:user:create","admin:user:unlock"]},{"id":"app","commands":["app:config:dump","app:config:import","app:config:status"]},{"id":"cache","commands":["cache:clean","cache:disable","cache:enable","cache:flush","cache:status"]},{"id":"catalog","commands":["catalog:images:resize","catalog:product:attributes:cleanup"]},{"id":"config","commands":["config:sensitive:set","config:set","config:show"]},{"id":"cron","commands":["cron:install","cron:remove","cron:run"]},{"id":"customer","commands":["customer:hash:upgrade"]},{"id":"deploy","commands":["deploy:mode:set","deploy:mode:show"]},{"id":"dev","commands":["dev:di:info","dev:profiler:disable","dev:profiler:enable","dev:query-log:disable","dev:query-log:enable","dev:source-theme:deploy","dev:template-hints:disable","dev:template-hints:enable","dev:tests:run","dev:urn-catalog:generate","dev:xml:convert"]},{"id":"dotdigital","commands":["dotdigital:connector:automap","dotdigital:connector:enable","dotdigital:migrate","dotdigital:sync"]},{"id":"downloadable","commands":["downloadable:domains:add","downloadable:domains:remove","downloadable:domains:show"]},{"id":"encryption","commands":["encryption:payment-data:update"]},{"id":"i18n","commands":["i18n:collect-phrases","i18n:pack","i18n:uninstall"]},{"id":"indexer","commands":["indexer:info","indexer:reindex","indexer:reset","indexer:set-dimensions-mode","indexer:set-mode","indexer:show-dimensions-mode","indexer:show-mode","indexer:status"]},{"id":"info","commands":["info:adminuri","info:backups:list","info:currency:list","info:dependencies:show-framework","info:dependencies:show-modules","info:dependencies:show-modules-circular","info:language:list","info:timezone:list"]},{"id":"inventory","commands":["inventory:reservation:create-compensations","inventory:reservation:list-inconsistencies"]},{"id":"inventory-geonames","commands":["inventory-geonames:import"]},{"id":"maintenance","commands":["maintenance:allow-ips","maintenance:disable","maintenance:enable","maintenance:status"]},{"id":"module","commands":["module:config:status","module:disable","module:enable","module:status","module:uninstall"]},{"id":"msp","commands":["msp:security:recaptcha:disable","msp:security:tfa:disable","msp:security:tfa:providers","msp:security:tfa:reset"]},{"id":"newrelic","commands":["newrelic:create:deploy-marker"]},{"id":"queue","commands":["queue:consumers:list","queue:consumers:start"]},{"id":"sampledata","commands":["sampledata:deploy","sampledata:remove","sampledata:reset"]},{"id":"setup","commands":["setup:backup","setup:config:set","setup:cron:run","setup:db-data:upgrade","setup:db-declaration:generate-patch","setup:db-declaration:generate-whitelist","setup:db-schema:add-slave","setup:db-schema:split-quote","setup:db-schema:split-sales","setup:db-schema:upgrade","setup:db:status","setup:di:compile","setup:install","setup:performance:generate-fixtures","setup:rollback","setup:static-content:deploy","setup:store-config:set","setup:uninstall","setup:upgrade"]},{"id":"store","commands":["store:list","store:website:list"]},{"id":"support","commands":["support:backup:code","support:backup:db","support:utility:check","support:utility:paths"]},{"id":"theme","commands":["theme:uninstall"]},{"id":"varnish","commands":["varnish:vcl:generate"]},{"id":"yotpo","commands":["yotpo:reset","yotpo:sync","yotpo:update-metadata"]}]} \ No newline at end of file diff --git a/src/_data/codebase/v2_3/open-source/bin-magento.json b/src/_data/codebase/v2_3/open-source/bin-magento.json index 2ce78cb842d..5f59a8563f5 100644 --- a/src/_data/codebase/v2_3/open-source/bin-magento.json +++ b/src/_data/codebase/v2_3/open-source/bin-magento.json @@ -1,11741 +1 @@ -{ - "namespaces" : [ - { - "commands" : [ - "help", - "list" - ], - "id" : "_global" - }, - { - "commands" : [ - "admin:user:create", - "admin:user:unlock" - ], - "id" : "admin" - }, - { - "id" : "app", - "commands" : [ - "app:config:dump", - "app:config:import", - "app:config:status" - ] - }, - { - "commands" : [ - "cache:clean", - "cache:disable", - "cache:enable", - "cache:flush", - "cache:status" - ], - "id" : "cache" - }, - { - "id" : "catalog", - "commands" : [ - "catalog:images:resize", - "catalog:product:attributes:cleanup" - ] - }, - { - "id" : "config", - "commands" : [ - "config:sensitive:set", - "config:set", - "config:show" - ] - }, - { - "commands" : [ - "cron:install", - "cron:remove", - "cron:run" - ], - "id" : "cron" - }, - { - "commands" : [ - "customer:hash:upgrade" - ], - "id" : "customer" - }, - { - "id" : "deploy", - "commands" : [ - "deploy:mode:set", - "deploy:mode:show" - ] - }, - { - "commands" : [ - "dev:di:info", - "dev:profiler:disable", - "dev:profiler:enable", - "dev:query-log:disable", - "dev:query-log:enable", - "dev:source-theme:deploy", - "dev:template-hints:disable", - "dev:template-hints:enable", - "dev:tests:run", - "dev:urn-catalog:generate", - "dev:xml:convert" - ], - "id" : "dev" - }, - { - "id" : "dotdigital", - "commands" : [ - "dotdigital:connector:automap", - "dotdigital:connector:enable", - "dotdigital:migrate", - "dotdigital:sync" - ] - }, - { - "commands" : [ - "downloadable:domains:add", - "downloadable:domains:remove", - "downloadable:domains:show" - ], - "id" : "downloadable" - }, - { - "commands" : [ - "encryption:payment-data:update" - ], - "id" : "encryption" - }, - { - "commands" : [ - "i18n:collect-phrases", - "i18n:pack", - "i18n:uninstall" - ], - "id" : "i18n" - }, - { - "commands" : [ - "indexer:info", - "indexer:reindex", - "indexer:reset", - "indexer:set-dimensions-mode", - "indexer:set-mode", - "indexer:show-dimensions-mode", - "indexer:show-mode", - "indexer:status" - ], - "id" : "indexer" - }, - { - "id" : "info", - "commands" : [ - "info:adminuri", - "info:backups:list", - "info:currency:list", - "info:dependencies:show-framework", - "info:dependencies:show-modules", - "info:dependencies:show-modules-circular", - "info:language:list", - "info:timezone:list" - ] - }, - { - "id" : "inventory", - "commands" : [ - "inventory:reservation:create-compensations", - "inventory:reservation:list-inconsistencies" - ] - }, - { - "id" : "inventory-geonames", - "commands" : [ - "inventory-geonames:import" - ] - }, - { - "commands" : [ - "maintenance:allow-ips", - "maintenance:disable", - "maintenance:enable", - "maintenance:status" - ], - "id" : "maintenance" - }, - { - "commands" : [ - "module:config:status", - "module:disable", - "module:enable", - "module:status", - "module:uninstall" - ], - "id" : "module" - }, - { - "commands" : [ - "msp:security:recaptcha:disable", - "msp:security:tfa:disable", - "msp:security:tfa:providers", - "msp:security:tfa:reset" - ], - "id" : "msp" - }, - { - "commands" : [ - "newrelic:create:deploy-marker" - ], - "id" : "newrelic" - }, - { - "commands" : [ - "queue:consumers:list", - "queue:consumers:start" - ], - "id" : "queue" - }, - { - "commands" : [ - "sampledata:deploy", - "sampledata:remove", - "sampledata:reset" - ], - "id" : "sampledata" - }, - { - "commands" : [ - "setup:backup", - "setup:config:set", - "setup:cron:run", - "setup:db-data:upgrade", - "setup:db-declaration:generate-patch", - "setup:db-declaration:generate-whitelist", - "setup:db-schema:upgrade", - "setup:db:status", - "setup:di:compile", - "setup:install", - "setup:performance:generate-fixtures", - "setup:rollback", - "setup:static-content:deploy", - "setup:store-config:set", - "setup:uninstall", - "setup:upgrade" - ], - "id" : "setup" - }, - { - "commands" : [ - "store:list", - "store:website:list" - ], - "id" : "store" - }, - { - "commands" : [ - "theme:uninstall" - ], - "id" : "theme" - }, - { - "id" : "varnish", - "commands" : [ - "varnish:vcl:generate" - ] - }, - { - "commands" : [ - "yotpo:reset", - "yotpo:sync", - "yotpo:update-metadata" - ], - "id" : "yotpo" - } - ], - "application" : { - "name" : "Magento CLI", - "version" : "2.3.5" - }, - "commands" : [ - { - "help" : "The help command displays help for a given command:\n\n php /var/www/html/magento2/bin/magento help list\n\nYou can also output the help in other formats by using the --format option:\n\n php /var/www/html/magento2/bin/magento help --format=xml list\n\nTo display the list of available commands, please use the list command.", - "usage" : [ - "help [--format FORMAT] [--raw] [--] []" - ], - "definition" : { - "options" : { - "ansi" : { - "accept_value" : false, - "shortcut" : "", - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "is_multiple" : false, - "is_value_required" : false - }, - "help" : { - "default" : false, - "description" : "Display this help message", - "name" : "--help", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-h" - }, - "quiet" : { - "accept_value" : false, - "shortcut" : "-q", - "default" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "is_value_required" : false, - "is_multiple" : false - }, - "no-interaction" : { - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false, - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-n" - }, - "format" : { - "accept_value" : true, - "shortcut" : "", - "default" : "txt", - "description" : "The output format (txt, xml, json, or md)", - "name" : "--format", - "is_value_required" : true, - "is_multiple" : false - }, - "verbose" : { - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false - }, - "no-ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-ansi", - "default" : false, - "description" : "Disable ANSI output" - }, - "raw" : { - "default" : false, - "description" : "To output raw command help", - "name" : "--raw", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "" - }, - "version" : { - "default" : false, - "description" : "Display this application version", - "name" : "--version", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-V" - } - }, - "arguments" : { - "command_name" : { - "is_required" : false, - "is_array" : false, - "name" : "command_name", - "description" : "The command name", - "default" : "help" - } - } - }, - "description" : "Displays help for a command", - "name" : "help", - "hidden" : false - }, - { - "name" : "list", - "hidden" : false, - "usage" : [ - "list [--raw] [--format FORMAT] [--] []" - ], - "definition" : { - "arguments" : { - "namespace" : { - "is_array" : false, - "is_required" : false, - "default" : null, - "description" : "The namespace name", - "name" : "namespace" - } - }, - "options" : { - "raw" : { - "name" : "--raw", - "description" : "To output raw command list", - "default" : false, - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "" - }, - "format" : { - "name" : "--format", - "default" : "txt", - "description" : "The output format (txt, xml, json, or md)", - "is_multiple" : false, - "is_value_required" : true, - "accept_value" : true, - "shortcut" : "" - } - } - }, - "description" : "Lists commands", - "help" : "The list command lists all commands:\n\n php /var/www/html/magento2/bin/magento list\n\nYou can also display the commands for a specific namespace:\n\n php /var/www/html/magento2/bin/magento list test\n\nYou can also output the information in other formats by using the --format option:\n\n php /var/www/html/magento2/bin/magento list --format=xml\n\nIt's also possible to get raw list of commands (useful for embedding command runner):\n\n php /var/www/html/magento2/bin/magento list --raw" - }, - { - "definition" : { - "options" : { - "ansi" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "default" : false, - "shortcut" : "", - "accept_value" : false - }, - "quiet" : { - "shortcut" : "-q", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--quiet", - "description" : "Do not output any message", - "default" : false - }, - "help" : { - "accept_value" : false, - "shortcut" : "-h", - "default" : false, - "description" : "Display this help message", - "name" : "--help", - "is_multiple" : false, - "is_value_required" : false - }, - "magento-init-params" : { - "shortcut" : "", - "accept_value" : true, - "is_value_required" : true, - "is_multiple" : false, - "default" : null, - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "name" : "--magento-init-params" - }, - "admin-email" : { - "accept_value" : true, - "shortcut" : "", - "name" : "--admin-email", - "description" : "(Required) Admin email", - "default" : null, - "is_value_required" : true, - "is_multiple" : false - }, - "admin-firstname" : { - "accept_value" : true, - "shortcut" : "", - "name" : "--admin-firstname", - "default" : null, - "description" : "(Required) Admin first name", - "is_multiple" : false, - "is_value_required" : true - }, - "no-interaction" : { - "shortcut" : "-n", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false - }, - "no-ansi" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-ansi", - "default" : false, - "description" : "Disable ANSI output", - "shortcut" : "", - "accept_value" : false - }, - "verbose" : { - "is_value_required" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false - }, - "admin-lastname" : { - "name" : "--admin-lastname", - "description" : "(Required) Admin last name", - "default" : null, - "is_value_required" : true, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "" - }, - "admin-user" : { - "is_value_required" : true, - "is_multiple" : false, - "description" : "(Required) Admin user", - "default" : null, - "name" : "--admin-user", - "shortcut" : "", - "accept_value" : true - }, - "admin-password" : { - "is_multiple" : false, - "is_value_required" : true, - "description" : "(Required) Admin password", - "default" : null, - "name" : "--admin-password", - "shortcut" : "", - "accept_value" : true - }, - "version" : { - "accept_value" : false, - "shortcut" : "-V", - "name" : "--version", - "default" : false, - "description" : "Display this application version", - "is_multiple" : false, - "is_value_required" : false - } - }, - "arguments" : [] - }, - "description" : "Creates an administrator", - "usage" : [ - "admin:user:create [--admin-user ADMIN-USER] [--admin-password ADMIN-PASSWORD] [--admin-email ADMIN-EMAIL] [--admin-firstname ADMIN-FIRSTNAME] [--admin-lastname ADMIN-LASTNAME] [--magento-init-params MAGENTO-INIT-PARAMS]" - ], - "name" : "admin:user:create", - "hidden" : false, - "help" : "Creates an administrator" - }, - { - "hidden" : false, - "name" : "admin:user:unlock", - "definition" : { - "arguments" : { - "username" : { - "name" : "username", - "default" : null, - "description" : "The admin username to unlock", - "is_required" : true, - "is_array" : false - } - }, - "options" : { - "no-interaction" : { - "accept_value" : false, - "shortcut" : "-n", - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false, - "is_value_required" : false, - "is_multiple" : false - }, - "version" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--version", - "default" : false, - "description" : "Display this application version", - "shortcut" : "-V", - "accept_value" : false - }, - "ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "default" : false - }, - "help" : { - "default" : false, - "description" : "Display this help message", - "name" : "--help", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-h" - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--verbose", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "quiet" : { - "accept_value" : false, - "shortcut" : "-q", - "description" : "Do not output any message", - "default" : false, - "name" : "--quiet", - "is_multiple" : false, - "is_value_required" : false - }, - "no-ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi" - } - } - }, - "description" : "Unlock Admin Account", - "usage" : [ - "admin:user:unlock " - ], - "help" : "This command unlocks an admin account by its username.\nTo unlock:\n /var/www/html/magento2/bin/magento admin:user:unlock username" - }, - { - "name" : "app:config:dump", - "hidden" : false, - "definition" : { - "arguments" : { - "config-types" : { - "description" : "Space-separated list of config types or omit to dump all [scopes, system, themes, i18n]", - "default" : [], - "name" : "config-types", - "is_array" : true, - "is_required" : false - } - }, - "options" : { - "ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "default" : false - }, - "quiet" : { - "accept_value" : false, - "shortcut" : "-q", - "default" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "is_value_required" : false, - "is_multiple" : false - }, - "verbose" : { - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "name" : "--verbose", - "is_multiple" : false, - "is_value_required" : false - }, - "help" : { - "shortcut" : "-h", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--help", - "description" : "Display this help message", - "default" : false - }, - "no-ansi" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-ansi", - "default" : false, - "description" : "Disable ANSI output", - "shortcut" : "", - "accept_value" : false - }, - "no-interaction" : { - "default" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-n" - }, - "version" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--version", - "default" : false, - "description" : "Display this application version", - "shortcut" : "-V", - "accept_value" : false - } - } - }, - "usage" : [ - "app:config:dump [...]" - ], - "description" : "Create dump of application", - "help" : "Create dump of application" - }, - { - "description" : "Import data from shared configuration files to appropriate data storage", - "definition" : { - "options" : { - "no-interaction" : { - "name" : "--no-interaction", - "default" : false, - "description" : "Do not ask any interactive question", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-n" - }, - "version" : { - "accept_value" : false, - "shortcut" : "-V", - "name" : "--version", - "default" : false, - "description" : "Display this application version", - "is_value_required" : false, - "is_multiple" : false - }, - "help" : { - "accept_value" : false, - "shortcut" : "-h", - "name" : "--help", - "description" : "Display this help message", - "default" : false, - "is_value_required" : false, - "is_multiple" : false - }, - "ansi" : { - "accept_value" : false, - "shortcut" : "", - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "is_multiple" : false, - "is_value_required" : false - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--verbose", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "quiet" : { - "shortcut" : "-q", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Do not output any message", - "name" : "--quiet" - }, - "no-ansi" : { - "accept_value" : false, - "shortcut" : "", - "default" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_value_required" : false, - "is_multiple" : false - } - }, - "arguments" : [] - }, - "usage" : [ - "app:config:import" - ], - "name" : "app:config:import", - "hidden" : false, - "help" : "Import data from shared configuration files to appropriate data storage" - }, - { - "definition" : { - "options" : { - "no-interaction" : { - "shortcut" : "-n", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false - }, - "version" : { - "name" : "--version", - "default" : false, - "description" : "Display this application version", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-V" - }, - "ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--ansi", - "description" : "Force ANSI output", - "default" : false, - "is_value_required" : false, - "is_multiple" : false - }, - "quiet" : { - "accept_value" : false, - "shortcut" : "-q", - "default" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "is_multiple" : false, - "is_value_required" : false - }, - "verbose" : { - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "is_multiple" : false, - "is_value_required" : false - }, - "help" : { - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Display this help message", - "name" : "--help", - "shortcut" : "-h", - "accept_value" : false - }, - "no-ansi" : { - "is_multiple" : false, - "is_value_required" : false, - "description" : "Disable ANSI output", - "default" : false, - "name" : "--no-ansi", - "shortcut" : "", - "accept_value" : false - } - }, - "arguments" : [] - }, - "description" : "Checks if config propagation requires update", - "usage" : [ - "app:config:status" - ], - "name" : "app:config:status", - "hidden" : false, - "help" : "Checks if config propagation requires update" - }, - { - "definition" : { - "options" : { - "version" : { - "accept_value" : false, - "shortcut" : "-V", - "default" : false, - "description" : "Display this application version", - "name" : "--version", - "is_value_required" : false, - "is_multiple" : false - }, - "verbose" : { - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false - }, - "no-ansi" : { - "description" : "Disable ANSI output", - "default" : false, - "name" : "--no-ansi", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "" - }, - "no-interaction" : { - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false, - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-n" - }, - "quiet" : { - "name" : "--quiet", - "description" : "Do not output any message", - "default" : false, - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-q" - }, - "ansi" : { - "accept_value" : false, - "shortcut" : "", - "description" : "Force ANSI output", - "default" : false, - "name" : "--ansi", - "is_multiple" : false, - "is_value_required" : false - }, - "help" : { - "is_value_required" : false, - "is_multiple" : false, - "description" : "Display this help message", - "default" : false, - "name" : "--help", - "shortcut" : "-h", - "accept_value" : false - }, - "bootstrap" : { - "shortcut" : "", - "accept_value" : true, - "is_multiple" : false, - "is_value_required" : true, - "description" : "add or override parameters of the bootstrap", - "default" : null, - "name" : "--bootstrap" - } - }, - "arguments" : { - "types" : { - "default" : [], - "description" : "Space-separated list of cache types or omit to apply to all cache types.", - "name" : "types", - "is_array" : true, - "is_required" : false - } - } - }, - "usage" : [ - "cache:clean [--bootstrap BOOTSTRAP] [--] [...]" - ], - "description" : "Cleans cache type(s)", - "name" : "cache:clean", - "hidden" : false, - "help" : "Cleans cache type(s)" - }, - { - "help" : "Disables cache type(s)", - "hidden" : false, - "name" : "cache:disable", - "definition" : { - "options" : { - "ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--ansi", - "default" : false, - "description" : "Force ANSI output" - }, - "help" : { - "accept_value" : false, - "shortcut" : "-h", - "name" : "--help", - "description" : "Display this help message", - "default" : false, - "is_multiple" : false, - "is_value_required" : false - }, - "quiet" : { - "accept_value" : false, - "shortcut" : "-q", - "default" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "is_multiple" : false, - "is_value_required" : false - }, - "bootstrap" : { - "shortcut" : "", - "accept_value" : true, - "is_value_required" : true, - "is_multiple" : false, - "name" : "--bootstrap", - "default" : null, - "description" : "add or override parameters of the bootstrap" - }, - "no-interaction" : { - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction", - "shortcut" : "-n", - "accept_value" : false - }, - "no-ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false - }, - "verbose" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--verbose", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false - }, - "version" : { - "description" : "Display this application version", - "default" : false, - "name" : "--version", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-V" - } - }, - "arguments" : { - "types" : { - "is_required" : false, - "is_array" : true, - "name" : "types", - "description" : "Space-separated list of cache types or omit to apply to all cache types.", - "default" : [] - } - } - }, - "description" : "Disables cache type(s)", - "usage" : [ - "cache:disable [--bootstrap BOOTSTRAP] [--] [...]" - ] - }, - { - "hidden" : false, - "name" : "cache:enable", - "description" : "Enables cache type(s)", - "definition" : { - "options" : { - "version" : { - "shortcut" : "-V", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--version", - "default" : false, - "description" : "Display this application version" - }, - "no-ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi" - }, - "verbose" : { - "is_multiple" : false, - "is_value_required" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false - }, - "no-interaction" : { - "default" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-n" - }, - "bootstrap" : { - "shortcut" : "", - "accept_value" : true, - "is_value_required" : true, - "is_multiple" : false, - "default" : null, - "description" : "add or override parameters of the bootstrap", - "name" : "--bootstrap" - }, - "ansi" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "default" : false, - "shortcut" : "", - "accept_value" : false - }, - "help" : { - "shortcut" : "-h", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Display this help message", - "name" : "--help" - }, - "quiet" : { - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "shortcut" : "-q", - "accept_value" : false - } - }, - "arguments" : { - "types" : { - "is_array" : true, - "is_required" : false, - "default" : [], - "description" : "Space-separated list of cache types or omit to apply to all cache types.", - "name" : "types" - } - } - }, - "usage" : [ - "cache:enable [--bootstrap BOOTSTRAP] [--] [...]" - ], - "help" : "Enables cache type(s)" - }, - { - "help" : "Flushes cache storage used by cache type(s)", - "usage" : [ - "cache:flush [--bootstrap BOOTSTRAP] [--] [...]" - ], - "definition" : { - "options" : { - "version" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--version", - "default" : false, - "description" : "Display this application version", - "shortcut" : "-V", - "accept_value" : false - }, - "verbose" : { - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "no-ansi" : { - "default" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "" - }, - "no-interaction" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-interaction", - "default" : false, - "description" : "Do not ask any interactive question", - "shortcut" : "-n", - "accept_value" : false - }, - "bootstrap" : { - "shortcut" : "", - "accept_value" : true, - "is_multiple" : false, - "is_value_required" : true, - "description" : "add or override parameters of the bootstrap", - "default" : null, - "name" : "--bootstrap" - }, - "help" : { - "description" : "Display this help message", - "default" : false, - "name" : "--help", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-h" - }, - "ansi" : { - "name" : "--ansi", - "description" : "Force ANSI output", - "default" : false, - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "" - }, - "quiet" : { - "shortcut" : "-q", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--quiet", - "default" : false, - "description" : "Do not output any message" - } - }, - "arguments" : { - "types" : { - "is_array" : true, - "is_required" : false, - "name" : "types", - "default" : [], - "description" : "Space-separated list of cache types or omit to apply to all cache types." - } - } - }, - "description" : "Flushes cache storage used by cache type(s)", - "hidden" : false, - "name" : "cache:flush" - }, - { - "description" : "Checks cache status", - "definition" : { - "arguments" : [], - "options" : { - "version" : { - "default" : false, - "description" : "Display this application version", - "name" : "--version", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-V" - }, - "verbose" : { - "name" : "--verbose", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "no-ansi" : { - "is_value_required" : false, - "is_multiple" : false, - "description" : "Disable ANSI output", - "default" : false, - "name" : "--no-ansi", - "shortcut" : "", - "accept_value" : false - }, - "no-interaction" : { - "shortcut" : "-n", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction" - }, - "bootstrap" : { - "is_value_required" : true, - "is_multiple" : false, - "description" : "add or override parameters of the bootstrap", - "default" : null, - "name" : "--bootstrap", - "shortcut" : "", - "accept_value" : true - }, - "ansi" : { - "is_value_required" : false, - "is_multiple" : false, - "description" : "Force ANSI output", - "default" : false, - "name" : "--ansi", - "shortcut" : "", - "accept_value" : false - }, - "quiet" : { - "accept_value" : false, - "shortcut" : "-q", - "name" : "--quiet", - "default" : false, - "description" : "Do not output any message", - "is_value_required" : false, - "is_multiple" : false - }, - "help" : { - "shortcut" : "-h", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Display this help message", - "name" : "--help" - } - } - }, - "usage" : [ - "cache:status [--bootstrap BOOTSTRAP]" - ], - "hidden" : false, - "name" : "cache:status", - "help" : "Checks cache status" - }, - { - "help" : "Creates resized product images", - "description" : "Creates resized product images", - "definition" : { - "arguments" : [], - "options" : { - "no-interaction" : { - "description" : "Do not ask any interactive question", - "default" : false, - "name" : "--no-interaction", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-n" - }, - "version" : { - "description" : "Display this application version", - "default" : false, - "name" : "--version", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-V" - }, - "ansi" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "default" : false, - "shortcut" : "", - "accept_value" : false - }, - "verbose" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--verbose", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false - }, - "quiet" : { - "accept_value" : false, - "shortcut" : "-q", - "default" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "is_value_required" : false, - "is_multiple" : false - }, - "help" : { - "accept_value" : false, - "shortcut" : "-h", - "name" : "--help", - "default" : false, - "description" : "Display this help message", - "is_multiple" : false, - "is_value_required" : false - }, - "no-ansi" : { - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "shortcut" : "", - "accept_value" : false - } - } - }, - "usage" : [ - "catalog:images:resize" - ], - "hidden" : false, - "name" : "catalog:images:resize" - }, - { - "help" : "Removes unused product attributes.", - "definition" : { - "arguments" : [], - "options" : { - "no-interaction" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false, - "shortcut" : "-n", - "accept_value" : false - }, - "version" : { - "shortcut" : "-V", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--version", - "description" : "Display this application version", - "default" : false - }, - "ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "default" : false - }, - "quiet" : { - "accept_value" : false, - "shortcut" : "-q", - "name" : "--quiet", - "default" : false, - "description" : "Do not output any message", - "is_multiple" : false, - "is_value_required" : false - }, - "verbose" : { - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_value_required" : false, - "is_multiple" : false - }, - "help" : { - "accept_value" : false, - "shortcut" : "-h", - "name" : "--help", - "default" : false, - "description" : "Display this help message", - "is_value_required" : false, - "is_multiple" : false - }, - "no-ansi" : { - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "shortcut" : "", - "accept_value" : false - } - } - }, - "description" : "Removes unused product attributes.", - "usage" : [ - "catalog:product:attributes:cleanup" - ], - "hidden" : false, - "name" : "catalog:product:attributes:cleanup" - }, - { - "definition" : { - "arguments" : { - "path" : { - "description" : "Configuration path for example group/section/field_name", - "default" : null, - "name" : "path", - "is_required" : false, - "is_array" : false - }, - "value" : { - "is_required" : false, - "is_array" : false, - "name" : "value", - "default" : null, - "description" : "Configuration value" - } - }, - "options" : { - "no-ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi" - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--verbose", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "scope-code" : { - "shortcut" : "", - "accept_value" : true, - "is_value_required" : false, - "is_multiple" : false, - "description" : "Scope code for configuration, empty string by default", - "default" : "", - "name" : "--scope-code" - }, - "interactive" : { - "accept_value" : false, - "shortcut" : "-i", - "default" : false, - "description" : "Enable interactive mode to set all sensitive variables", - "name" : "--interactive", - "is_multiple" : false, - "is_value_required" : false - }, - "version" : { - "accept_value" : false, - "shortcut" : "-V", - "name" : "--version", - "description" : "Display this application version", - "default" : false, - "is_value_required" : false, - "is_multiple" : false - }, - "ansi" : { - "description" : "Force ANSI output", - "default" : false, - "name" : "--ansi", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "" - }, - "help" : { - "accept_value" : false, - "shortcut" : "-h", - "default" : false, - "description" : "Display this help message", - "name" : "--help", - "is_value_required" : false, - "is_multiple" : false - }, - "quiet" : { - "shortcut" : "-q", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Do not output any message", - "name" : "--quiet" - }, - "no-interaction" : { - "shortcut" : "-n", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction" - }, - "scope" : { - "description" : "Scope for configuration, if not set use 'default'", - "default" : "default", - "name" : "--scope", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : true, - "shortcut" : "" - } - } - }, - "description" : "Set sensitive configuration values", - "usage" : [ - "config:sensitive:set [-i|--interactive] [--scope [SCOPE]] [--scope-code [SCOPE-CODE]] [--] [ []]" - ], - "hidden" : false, - "name" : "config:sensitive:set", - "help" : "Set sensitive configuration values" - }, - { - "help" : "Change system configuration", - "name" : "config:set", - "hidden" : false, - "usage" : [ - "config:set [--scope SCOPE] [--scope-code SCOPE-CODE] [-e|--lock-env] [-c|--lock-config] [-l|--lock] [--] " - ], - "definition" : { - "options" : { - "lock" : { - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Deprecated, use the --lock-env option instead.", - "name" : "--lock", - "shortcut" : "-l", - "accept_value" : false - }, - "no-ansi" : { - "accept_value" : false, - "shortcut" : "", - "description" : "Disable ANSI output", - "default" : false, - "name" : "--no-ansi", - "is_multiple" : false, - "is_value_required" : false - }, - "verbose" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false - }, - "scope-code" : { - "accept_value" : true, - "shortcut" : "", - "name" : "--scope-code", - "default" : null, - "description" : "Scope code (required only if scope is not 'default')", - "is_multiple" : false, - "is_value_required" : true - }, - "version" : { - "is_multiple" : false, - "is_value_required" : false, - "description" : "Display this application version", - "default" : false, - "name" : "--version", - "shortcut" : "-V", - "accept_value" : false - }, - "lock-config" : { - "accept_value" : false, - "shortcut" : "-c", - "default" : false, - "description" : "Lock and share value with other installations, prevents modification in the Admin (will be saved in app/etc/config.php)", - "name" : "--lock-config", - "is_multiple" : false, - "is_value_required" : false - }, - "lock-env" : { - "accept_value" : false, - "shortcut" : "-e", - "name" : "--lock-env", - "description" : "Lock value which prevents modification in the Admin (will be saved in app/etc/env.php)", - "default" : false, - "is_value_required" : false, - "is_multiple" : false - }, - "help" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--help", - "default" : false, - "description" : "Display this help message", - "shortcut" : "-h", - "accept_value" : false - }, - "ansi" : { - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "shortcut" : "", - "accept_value" : false - }, - "quiet" : { - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "shortcut" : "-q", - "accept_value" : false - }, - "scope" : { - "is_multiple" : false, - "is_value_required" : true, - "default" : "default", - "description" : "Configuration scope (default, website, or store)", - "name" : "--scope", - "shortcut" : "", - "accept_value" : true - }, - "no-interaction" : { - "accept_value" : false, - "shortcut" : "-n", - "default" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction", - "is_multiple" : false, - "is_value_required" : false - } - }, - "arguments" : { - "path" : { - "is_required" : true, - "is_array" : false, - "description" : "Configuration path in format section/group/field_name", - "default" : null, - "name" : "path" - }, - "value" : { - "is_array" : false, - "is_required" : true, - "name" : "value", - "description" : "Configuration value", - "default" : null - } - } - }, - "description" : "Change system configuration" - }, - { - "hidden" : false, - "name" : "config:show", - "description" : "Shows configuration value for given path. If path is not specified, all saved values will be shown", - "definition" : { - "arguments" : { - "path" : { - "description" : "Configuration path, for example section_id/group_id/field_id", - "default" : null, - "name" : "path", - "is_required" : false, - "is_array" : false - } - }, - "options" : { - "quiet" : { - "description" : "Do not output any message", - "default" : false, - "name" : "--quiet", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-q" - }, - "ansi" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "default" : false, - "shortcut" : "", - "accept_value" : false - }, - "help" : { - "shortcut" : "-h", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "description" : "Display this help message", - "default" : false, - "name" : "--help" - }, - "scope" : { - "shortcut" : "", - "accept_value" : true, - "is_multiple" : false, - "is_value_required" : false, - "description" : "Scope for configuration, if not specified, then 'default' scope will be used", - "default" : "default", - "name" : "--scope" - }, - "no-interaction" : { - "accept_value" : false, - "shortcut" : "-n", - "description" : "Do not ask any interactive question", - "default" : false, - "name" : "--no-interaction", - "is_value_required" : false, - "is_multiple" : false - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose" - }, - "no-ansi" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--no-ansi", - "default" : false, - "description" : "Disable ANSI output", - "shortcut" : "", - "accept_value" : false - }, - "scope-code" : { - "is_value_required" : false, - "is_multiple" : false, - "description" : "Scope code (required only if scope is not `default`)", - "default" : "", - "name" : "--scope-code", - "shortcut" : "", - "accept_value" : true - }, - "version" : { - "description" : "Display this application version", - "default" : false, - "name" : "--version", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-V" - } - } - }, - "usage" : [ - "config:show [--scope [SCOPE]] [--scope-code [SCOPE-CODE]] [--] []" - ], - "help" : "Shows configuration value for given path. If path is not specified, all saved values will be shown" - }, - { - "description" : "Generates and installs crontab for current user", - "definition" : { - "arguments" : [], - "options" : { - "no-interaction" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false, - "shortcut" : "-n", - "accept_value" : false - }, - "non-optional" : { - "accept_value" : false, - "shortcut" : "-d", - "name" : "--non-optional", - "description" : "Install only the non-optional (default) tasks", - "default" : false, - "is_multiple" : false, - "is_value_required" : false - }, - "ansi" : { - "accept_value" : false, - "shortcut" : "", - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "is_value_required" : false, - "is_multiple" : false - }, - "quiet" : { - "accept_value" : false, - "shortcut" : "-q", - "description" : "Do not output any message", - "default" : false, - "name" : "--quiet", - "is_multiple" : false, - "is_value_required" : false - }, - "help" : { - "accept_value" : false, - "shortcut" : "-h", - "default" : false, - "description" : "Display this help message", - "name" : "--help", - "is_multiple" : false, - "is_value_required" : false - }, - "force" : { - "accept_value" : false, - "shortcut" : "-f", - "default" : false, - "description" : "Force install tasks", - "name" : "--force", - "is_value_required" : false, - "is_multiple" : false - }, - "version" : { - "shortcut" : "-V", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Display this application version", - "name" : "--version" - }, - "no-ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--verbose", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - } - } - }, - "usage" : [ - "cron:install [-f|--force] [-d|--non-optional]" - ], - "hidden" : false, - "name" : "cron:install", - "help" : "Generates and installs crontab for current user" - }, - { - "help" : "Removes tasks from crontab", - "name" : "cron:remove", - "hidden" : false, - "usage" : [ - "cron:remove" - ], - "definition" : { - "options" : { - "ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi" - }, - "verbose" : { - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false - }, - "quiet" : { - "is_value_required" : false, - "is_multiple" : false, - "description" : "Do not output any message", - "default" : false, - "name" : "--quiet", - "shortcut" : "-q", - "accept_value" : false - }, - "help" : { - "name" : "--help", - "description" : "Display this help message", - "default" : false, - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-h" - }, - "no-ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi" - }, - "no-interaction" : { - "shortcut" : "-n", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false - }, - "version" : { - "accept_value" : false, - "shortcut" : "-V", - "description" : "Display this application version", - "default" : false, - "name" : "--version", - "is_value_required" : false, - "is_multiple" : false - } - }, - "arguments" : [] - }, - "description" : "Removes tasks from crontab" - }, - { - "help" : "Runs jobs by schedule", - "usage" : [ - "cron:run [--group GROUP] [--bootstrap BOOTSTRAP]" - ], - "definition" : { - "options" : { - "group" : { - "is_multiple" : false, - "is_value_required" : true, - "name" : "--group", - "description" : "Run jobs only from specified group", - "default" : null, - "shortcut" : "", - "accept_value" : true - }, - "bootstrap" : { - "description" : "Add or override parameters of the bootstrap", - "default" : null, - "name" : "--bootstrap", - "is_value_required" : true, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "" - }, - "help" : { - "accept_value" : false, - "shortcut" : "-h", - "name" : "--help", - "description" : "Display this help message", - "default" : false, - "is_value_required" : false, - "is_multiple" : false - }, - "ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "default" : false - }, - "quiet" : { - "shortcut" : "-q", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "description" : "Do not output any message", - "default" : false, - "name" : "--quiet" - }, - "no-interaction" : { - "is_multiple" : false, - "is_value_required" : false, - "description" : "Do not ask any interactive question", - "default" : false, - "name" : "--no-interaction", - "shortcut" : "-n", - "accept_value" : false - }, - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "name" : "--verbose", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "no-ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false - }, - "version" : { - "accept_value" : false, - "shortcut" : "-V", - "default" : false, - "description" : "Display this application version", - "name" : "--version", - "is_multiple" : false, - "is_value_required" : false - } - }, - "arguments" : [] - }, - "description" : "Runs jobs by schedule", - "hidden" : false, - "name" : "cron:run" - }, - { - "help" : "Upgrade customer's hash according to the latest algorithm", - "hidden" : false, - "name" : "customer:hash:upgrade", - "usage" : [ - "customer:hash:upgrade" - ], - "definition" : { - "arguments" : [], - "options" : { - "ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "description" : "Force ANSI output", - "default" : false, - "name" : "--ansi" - }, - "help" : { - "name" : "--help", - "description" : "Display this help message", - "default" : false, - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-h" - }, - "verbose" : { - "is_value_required" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false - }, - "quiet" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--quiet", - "default" : false, - "description" : "Do not output any message", - "shortcut" : "-q", - "accept_value" : false - }, - "no-ansi" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "shortcut" : "", - "accept_value" : false - }, - "no-interaction" : { - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction", - "shortcut" : "-n", - "accept_value" : false - }, - "version" : { - "default" : false, - "description" : "Display this application version", - "name" : "--version", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-V" - } - } - }, - "description" : "Upgrade customer's hash according to the latest algorithm" - }, - { - "hidden" : false, - "name" : "deploy:mode:set", - "usage" : [ - "deploy:mode:set [-s|--skip-compilation] [--] " - ], - "definition" : { - "arguments" : { - "mode" : { - "name" : "mode", - "description" : "The application mode to set. Available options are \"developer\" or \"production\"", - "default" : null, - "is_required" : true, - "is_array" : false - } - }, - "options" : { - "version" : { - "description" : "Display this application version", - "default" : false, - "name" : "--version", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-V" - }, - "verbose" : { - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose", - "is_multiple" : false, - "is_value_required" : false - }, - "no-ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "is_value_required" : false, - "is_multiple" : false - }, - "skip-compilation" : { - "shortcut" : "-s", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--skip-compilation", - "default" : false, - "description" : "Skips the clearing and regeneration of static content (generated code, preprocessed CSS, and assets in pub/static/)" - }, - "no-interaction" : { - "name" : "--no-interaction", - "default" : false, - "description" : "Do not ask any interactive question", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-n" - }, - "help" : { - "accept_value" : false, - "shortcut" : "-h", - "name" : "--help", - "default" : false, - "description" : "Display this help message", - "is_multiple" : false, - "is_value_required" : false - }, - "ansi" : { - "accept_value" : false, - "shortcut" : "", - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "is_multiple" : false, - "is_value_required" : false - }, - "quiet" : { - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "shortcut" : "-q", - "accept_value" : false - } - } - }, - "description" : "Set application mode.", - "help" : "Set application mode." - }, - { - "usage" : [ - "deploy:mode:show" - ], - "definition" : { - "arguments" : [], - "options" : { - "version" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--version", - "default" : false, - "description" : "Display this application version", - "shortcut" : "-V", - "accept_value" : false - }, - "no-interaction" : { - "accept_value" : false, - "shortcut" : "-n", - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false, - "is_multiple" : false, - "is_value_required" : false - }, - "no-ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--no-ansi", - "default" : false, - "description" : "Disable ANSI output", - "is_multiple" : false, - "is_value_required" : false - }, - "ansi" : { - "description" : "Force ANSI output", - "default" : false, - "name" : "--ansi", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "" - }, - "verbose" : { - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false - }, - "quiet" : { - "accept_value" : false, - "shortcut" : "-q", - "name" : "--quiet", - "description" : "Do not output any message", - "default" : false, - "is_multiple" : false, - "is_value_required" : false - }, - "help" : { - "is_value_required" : false, - "is_multiple" : false, - "description" : "Display this help message", - "default" : false, - "name" : "--help", - "shortcut" : "-h", - "accept_value" : false - } - } - }, - "description" : "Displays current application mode.", - "hidden" : false, - "name" : "deploy:mode:show", - "help" : "Displays current application mode." - }, - { - "usage" : [ - "dev:di:info " - ], - "definition" : { - "arguments" : { - "class" : { - "name" : "class", - "default" : null, - "description" : "Class name", - "is_required" : true, - "is_array" : false - } - }, - "options" : { - "no-ansi" : { - "accept_value" : false, - "shortcut" : "", - "description" : "Disable ANSI output", - "default" : false, - "name" : "--no-ansi", - "is_value_required" : false, - "is_multiple" : false - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--verbose", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "description" : "Force ANSI output", - "default" : false, - "name" : "--ansi" - }, - "quiet" : { - "name" : "--quiet", - "default" : false, - "description" : "Do not output any message", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-q" - }, - "help" : { - "shortcut" : "-h", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--help", - "default" : false, - "description" : "Display this help message" - }, - "version" : { - "is_multiple" : false, - "is_value_required" : false, - "description" : "Display this application version", - "default" : false, - "name" : "--version", - "shortcut" : "-V", - "accept_value" : false - }, - "no-interaction" : { - "shortcut" : "-n", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "description" : "Do not ask any interactive question", - "default" : false, - "name" : "--no-interaction" - } - } - }, - "description" : "Provides information on Dependency Injection configuration for the Command.", - "name" : "dev:di:info", - "hidden" : false, - "help" : "Provides information on Dependency Injection configuration for the Command." - }, - { - "help" : "Disable the profiler.", - "usage" : [ - "dev:profiler:disable" - ], - "definition" : { - "arguments" : [], - "options" : { - "version" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--version", - "description" : "Display this application version", - "default" : false, - "shortcut" : "-V", - "accept_value" : false - }, - "no-interaction" : { - "default" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-n" - }, - "no-ansi" : { - "default" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "" - }, - "verbose" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--verbose", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false - }, - "ansi" : { - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "shortcut" : "", - "accept_value" : false - }, - "quiet" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--quiet", - "default" : false, - "description" : "Do not output any message", - "shortcut" : "-q", - "accept_value" : false - }, - "help" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--help", - "description" : "Display this help message", - "default" : false, - "shortcut" : "-h", - "accept_value" : false - } - } - }, - "description" : "Disable the profiler.", - "hidden" : false, - "name" : "dev:profiler:disable" - }, - { - "help" : "Enable the profiler.", - "name" : "dev:profiler:enable", - "hidden" : false, - "definition" : { - "arguments" : { - "type" : { - "description" : "Profiler type", - "default" : null, - "name" : "type", - "is_required" : false, - "is_array" : false - } - }, - "options" : { - "verbose" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--verbose", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false - }, - "ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--ansi", - "default" : false, - "description" : "Force ANSI output" - }, - "quiet" : { - "name" : "--quiet", - "description" : "Do not output any message", - "default" : false, - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-q" - }, - "help" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--help", - "description" : "Display this help message", - "default" : false, - "shortcut" : "-h", - "accept_value" : false - }, - "no-ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--no-ansi", - "default" : false, - "description" : "Disable ANSI output", - "is_value_required" : false, - "is_multiple" : false - }, - "no-interaction" : { - "name" : "--no-interaction", - "default" : false, - "description" : "Do not ask any interactive question", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-n" - }, - "version" : { - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Display this application version", - "name" : "--version", - "shortcut" : "-V", - "accept_value" : false - } - } - }, - "usage" : [ - "dev:profiler:enable []" - ], - "description" : "Enable the profiler." - }, - { - "usage" : [ - "dev:query-log:disable" - ], - "definition" : { - "arguments" : [], - "options" : { - "version" : { - "shortcut" : "-V", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--version", - "default" : false, - "description" : "Display this application version" - }, - "no-interaction" : { - "shortcut" : "-n", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "description" : "Do not ask any interactive question", - "default" : false, - "name" : "--no-interaction" - }, - "no-ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false - }, - "verbose" : { - "name" : "--verbose", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "ansi" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--ansi", - "default" : false, - "description" : "Force ANSI output", - "shortcut" : "", - "accept_value" : false - }, - "quiet" : { - "shortcut" : "-q", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--quiet", - "description" : "Do not output any message", - "default" : false - }, - "help" : { - "shortcut" : "-h", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "description" : "Display this help message", - "default" : false, - "name" : "--help" - } - } - }, - "description" : "Disable DB query logging", - "name" : "dev:query-log:disable", - "hidden" : false, - "help" : "Disable DB query logging" - }, - { - "usage" : [ - "dev:query-log:enable [--include-all-queries [INCLUDE-ALL-QUERIES]] [--query-time-threshold [QUERY-TIME-THRESHOLD]] [--include-call-stack [INCLUDE-CALL-STACK]]" - ], - "definition" : { - "arguments" : [], - "options" : { - "no-interaction" : { - "accept_value" : false, - "shortcut" : "-n", - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false, - "is_value_required" : false, - "is_multiple" : false - }, - "include-call-stack" : { - "shortcut" : "", - "accept_value" : true, - "is_multiple" : false, - "is_value_required" : false, - "default" : "true", - "description" : "Include call stack. [true|false]", - "name" : "--include-call-stack" - }, - "ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "default" : false - }, - "help" : { - "name" : "--help", - "description" : "Display this help message", - "default" : false, - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-h" - }, - "quiet" : { - "is_multiple" : false, - "is_value_required" : false, - "description" : "Do not output any message", - "default" : false, - "name" : "--quiet", - "shortcut" : "-q", - "accept_value" : false - }, - "include-all-queries" : { - "accept_value" : true, - "shortcut" : "", - "name" : "--include-all-queries", - "description" : "Log all queries. [true|false]", - "default" : "true", - "is_value_required" : false, - "is_multiple" : false - }, - "query-time-threshold" : { - "accept_value" : true, - "shortcut" : "", - "default" : "0.001", - "description" : "Query time thresholds.", - "name" : "--query-time-threshold", - "is_value_required" : false, - "is_multiple" : false - }, - "version" : { - "shortcut" : "-V", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Display this application version", - "name" : "--version" - }, - "verbose" : { - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose", - "is_multiple" : false, - "is_value_required" : false - }, - "no-ansi" : { - "default" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "" - } - } - }, - "description" : "Enable DB query logging", - "hidden" : false, - "name" : "dev:query-log:enable", - "help" : "Enable DB query logging" - }, - { - "usage" : [ - "dev:source-theme:deploy [--type TYPE] [--locale LOCALE] [--area AREA] [--theme THEME] [--] [...]" - ], - "definition" : { - "arguments" : { - "file" : { - "is_required" : false, - "is_array" : true, - "name" : "file", - "default" : [ - "css/styles-m", - "css/styles-l" - ], - "description" : "Files to pre-process (file should be specified without extension)" - } - }, - "options" : { - "type" : { - "is_multiple" : false, - "is_value_required" : true, - "default" : "less", - "description" : "Type of source files: [less]", - "name" : "--type", - "shortcut" : "", - "accept_value" : true - }, - "verbose" : { - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "is_multiple" : false, - "is_value_required" : false - }, - "no-ansi" : { - "accept_value" : false, - "shortcut" : "", - "default" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_multiple" : false, - "is_value_required" : false - }, - "version" : { - "default" : false, - "description" : "Display this application version", - "name" : "--version", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-V" - }, - "theme" : { - "default" : "Magento/luma", - "description" : "Theme: [Vendor/theme]", - "name" : "--theme", - "is_value_required" : true, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "" - }, - "area" : { - "shortcut" : "", - "accept_value" : true, - "is_multiple" : false, - "is_value_required" : true, - "name" : "--area", - "description" : "Area: [frontend|adminhtml]", - "default" : "frontend" - }, - "ansi" : { - "accept_value" : false, - "shortcut" : "", - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "is_multiple" : false, - "is_value_required" : false - }, - "help" : { - "shortcut" : "-h", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--help", - "default" : false, - "description" : "Display this help message" - }, - "quiet" : { - "accept_value" : false, - "shortcut" : "-q", - "description" : "Do not output any message", - "default" : false, - "name" : "--quiet", - "is_multiple" : false, - "is_value_required" : false - }, - "no-interaction" : { - "description" : "Do not ask any interactive question", - "default" : false, - "name" : "--no-interaction", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-n" - }, - "locale" : { - "shortcut" : "", - "accept_value" : true, - "is_multiple" : false, - "is_value_required" : true, - "default" : "en_US", - "description" : "Locale: [en_US]", - "name" : "--locale" - } - } - }, - "description" : "Collects and publishes source files for theme.", - "name" : "dev:source-theme:deploy", - "hidden" : false, - "help" : "Collects and publishes source files for theme." - }, - { - "name" : "dev:template-hints:disable", - "hidden" : false, - "definition" : { - "arguments" : [], - "options" : { - "no-ansi" : { - "name" : "--no-ansi", - "default" : false, - "description" : "Disable ANSI output", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "" - }, - "ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "description" : "Force ANSI output", - "default" : false, - "name" : "--ansi" - }, - "quiet" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--quiet", - "description" : "Do not output any message", - "default" : false, - "shortcut" : "-q", - "accept_value" : false - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false - }, - "help" : { - "accept_value" : false, - "shortcut" : "-h", - "description" : "Display this help message", - "default" : false, - "name" : "--help", - "is_multiple" : false, - "is_value_required" : false - }, - "version" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--version", - "default" : false, - "description" : "Display this application version", - "shortcut" : "-V", - "accept_value" : false - }, - "no-interaction" : { - "shortcut" : "-n", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false - } - } - }, - "description" : "Disable frontend template hints. A cache flush might be required.", - "usage" : [ - "dev:template-hints:disable" - ], - "help" : "Disable frontend template hints. A cache flush might be required." - }, - { - "definition" : { - "options" : { - "no-ansi" : { - "is_multiple" : false, - "is_value_required" : false, - "description" : "Disable ANSI output", - "default" : false, - "name" : "--no-ansi", - "shortcut" : "", - "accept_value" : false - }, - "verbose" : { - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "ansi" : { - "accept_value" : false, - "shortcut" : "", - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "is_value_required" : false, - "is_multiple" : false - }, - "help" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--help", - "default" : false, - "description" : "Display this help message", - "shortcut" : "-h", - "accept_value" : false - }, - "quiet" : { - "description" : "Do not output any message", - "default" : false, - "name" : "--quiet", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-q" - }, - "version" : { - "is_multiple" : false, - "is_value_required" : false, - "description" : "Display this application version", - "default" : false, - "name" : "--version", - "shortcut" : "-V", - "accept_value" : false - }, - "no-interaction" : { - "accept_value" : false, - "shortcut" : "-n", - "default" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction", - "is_multiple" : false, - "is_value_required" : false - } - }, - "arguments" : [] - }, - "usage" : [ - "dev:template-hints:enable" - ], - "description" : "Enable frontend template hints. A cache flush might be required.", - "name" : "dev:template-hints:enable", - "hidden" : false, - "help" : "Enable frontend template hints. A cache flush might be required." - }, - { - "help" : "Runs tests", - "definition" : { - "options" : { - "verbose" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false - }, - "arguments" : { - "description" : "Additional arguments for PHPUnit. Example: \"-c'--filter=MyTest'\" (no spaces)", - "default" : "", - "name" : "--arguments", - "is_value_required" : true, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "-c" - }, - "no-ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--no-ansi", - "default" : false, - "description" : "Disable ANSI output", - "is_multiple" : false, - "is_value_required" : false - }, - "version" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--version", - "description" : "Display this application version", - "default" : false, - "shortcut" : "-V", - "accept_value" : false - }, - "ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi" - }, - "quiet" : { - "accept_value" : false, - "shortcut" : "-q", - "description" : "Do not output any message", - "default" : false, - "name" : "--quiet", - "is_value_required" : false, - "is_multiple" : false - }, - "help" : { - "shortcut" : "-h", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--help", - "description" : "Display this help message", - "default" : false - }, - "no-interaction" : { - "shortcut" : "-n", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "description" : "Do not ask any interactive question", - "default" : false, - "name" : "--no-interaction" - } - }, - "arguments" : { - "type" : { - "name" : "type", - "description" : "Type of test to run. Available types: all, unit, integration, integration-all, static, static-all, integrity, legacy, default", - "default" : "default", - "is_required" : false, - "is_array" : false - } - } - }, - "usage" : [ - "dev:tests:run [-c|--arguments ARGUMENTS] [--] []" - ], - "description" : "Runs tests", - "hidden" : false, - "name" : "dev:tests:run" - }, - { - "name" : "dev:urn-catalog:generate", - "hidden" : false, - "usage" : [ - "dev:urn-catalog:generate [--ide IDE] [--] " - ], - "definition" : { - "options" : { - "ansi" : { - "name" : "--ansi", - "description" : "Force ANSI output", - "default" : false, - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "" - }, - "quiet" : { - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "shortcut" : "-q", - "accept_value" : false - }, - "help" : { - "accept_value" : false, - "shortcut" : "-h", - "name" : "--help", - "description" : "Display this help message", - "default" : false, - "is_multiple" : false, - "is_value_required" : false - }, - "no-interaction" : { - "name" : "--no-interaction", - "default" : false, - "description" : "Do not ask any interactive question", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-n" - }, - "ide" : { - "is_value_required" : true, - "is_multiple" : false, - "name" : "--ide", - "default" : "phpstorm", - "description" : "Format in which catalog will be generated. Supported: [phpstorm]", - "shortcut" : "", - "accept_value" : true - }, - "verbose" : { - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "no-ansi" : { - "is_value_required" : false, - "is_multiple" : false, - "description" : "Disable ANSI output", - "default" : false, - "name" : "--no-ansi", - "shortcut" : "", - "accept_value" : false - }, - "version" : { - "shortcut" : "-V", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--version", - "default" : false, - "description" : "Display this application version" - } - }, - "arguments" : { - "path" : { - "is_required" : true, - "is_array" : false, - "name" : "path", - "description" : "Path to file to output the catalog. For PhpStorm use .idea/misc.xml", - "default" : null - } - } - }, - "description" : "Generates the catalog of URNs to *.xsd mappings for the IDE to highlight xml.", - "help" : "Generates the catalog of URNs to *.xsd mappings for the IDE to highlight xml." - }, - { - "help" : "Converts XML file using XSL style sheets", - "usage" : [ - "dev:xml:convert [-o|--overwrite] [--] " - ], - "definition" : { - "arguments" : { - "processor" : { - "is_required" : true, - "is_array" : false, - "description" : "Path to XSL style sheet that going to be applied to XML file", - "default" : null, - "name" : "processor" - }, - "xml-file" : { - "is_required" : true, - "is_array" : false, - "name" : "xml-file", - "default" : null, - "description" : "Path to XML file that going to be transformed" - } - }, - "options" : { - "overwrite" : { - "accept_value" : false, - "shortcut" : "-o", - "name" : "--overwrite", - "default" : false, - "description" : "Overwrite XML file", - "is_multiple" : false, - "is_value_required" : false - }, - "version" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--version", - "default" : false, - "description" : "Display this application version", - "shortcut" : "-V", - "accept_value" : false - }, - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "name" : "--verbose", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "no-ansi" : { - "name" : "--no-ansi", - "default" : false, - "description" : "Disable ANSI output", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "" - }, - "no-interaction" : { - "name" : "--no-interaction", - "default" : false, - "description" : "Do not ask any interactive question", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-n" - }, - "ansi" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--ansi", - "default" : false, - "description" : "Force ANSI output", - "shortcut" : "", - "accept_value" : false - }, - "quiet" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--quiet", - "default" : false, - "description" : "Do not output any message", - "shortcut" : "-q", - "accept_value" : false - }, - "help" : { - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Display this help message", - "name" : "--help", - "shortcut" : "-h", - "accept_value" : false - } - } - }, - "description" : "Converts XML file using XSL style sheets", - "name" : "dev:xml:convert", - "hidden" : false - }, - { - "name" : "dotdigital:connector:automap", - "hidden" : false, - "description" : "Auto-map data fields", - "definition" : { - "arguments" : [], - "options" : { - "version" : { - "accept_value" : false, - "shortcut" : "-V", - "default" : false, - "description" : "Display this application version", - "name" : "--version", - "is_value_required" : false, - "is_multiple" : false - }, - "no-interaction" : { - "accept_value" : false, - "shortcut" : "-n", - "description" : "Do not ask any interactive question", - "default" : false, - "name" : "--no-interaction", - "is_value_required" : false, - "is_multiple" : false - }, - "no-ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false - }, - "ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--ansi", - "default" : false, - "description" : "Force ANSI output" - }, - "quiet" : { - "accept_value" : false, - "shortcut" : "-q", - "default" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "is_multiple" : false, - "is_value_required" : false - }, - "verbose" : { - "name" : "--verbose", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "help" : { - "shortcut" : "-h", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--help", - "default" : false, - "description" : "Display this help message" - } - } - }, - "usage" : [ - "dotdigital:connector:automap" - ], - "help" : "Auto-map data fields" - }, - { - "usage" : [ - "dotdigital:connector:enable [--username USERNAME] [--password PASSWORD] [--automap-datafields [AUTOMAP-DATAFIELDS]] [--enable-syncs [ENABLE-SYNCS]] [--remove-ip-restriction [REMOVE-IP-RESTRICTION]] [--enable-email-capture [ENABLE-EMAIL-CAPTURE]]" - ], - "definition" : { - "arguments" : [], - "options" : { - "version" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--version", - "description" : "Display this application version", - "default" : false, - "shortcut" : "-V", - "accept_value" : false - }, - "no-ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi" - }, - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "name" : "--verbose", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "automap-datafields" : { - "shortcut" : "", - "accept_value" : true, - "is_value_required" : false, - "is_multiple" : false, - "default" : null, - "description" : "Automap data fields", - "name" : "--automap-datafields" - }, - "enable-email-capture" : { - "accept_value" : true, - "shortcut" : "", - "name" : "--enable-email-capture", - "description" : "Enable email capture", - "default" : null, - "is_multiple" : false, - "is_value_required" : false - }, - "no-interaction" : { - "shortcut" : "-n", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "description" : "Do not ask any interactive question", - "default" : false, - "name" : "--no-interaction" - }, - "enable-syncs" : { - "default" : null, - "description" : "Enable syncs", - "name" : "--enable-syncs", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "" - }, - "ansi" : { - "description" : "Force ANSI output", - "default" : false, - "name" : "--ansi", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "" - }, - "password" : { - "default" : null, - "description" : "API password", - "name" : "--password", - "is_multiple" : false, - "is_value_required" : true, - "accept_value" : true, - "shortcut" : "" - }, - "quiet" : { - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "shortcut" : "-q", - "accept_value" : false - }, - "help" : { - "description" : "Display this help message", - "default" : false, - "name" : "--help", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-h" - }, - "username" : { - "description" : "API username", - "default" : null, - "name" : "--username", - "is_value_required" : true, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "" - }, - "remove-ip-restriction" : { - "is_multiple" : false, - "is_value_required" : false, - "description" : "Remove IP restriction", - "default" : null, - "name" : "--remove-ip-restriction", - "shortcut" : "", - "accept_value" : true - } - } - }, - "description" : "Add Dotdigital API credentials and enable the connector", - "hidden" : false, - "name" : "dotdigital:connector:enable", - "help" : "Add Dotdigital API credentials and enable the connector" - }, - { - "hidden" : false, - "name" : "dotdigital:migrate", - "usage" : [ - "dotdigital:migrate" - ], - "definition" : { - "arguments" : [], - "options" : { - "no-interaction" : { - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false, - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-n" - }, - "version" : { - "accept_value" : false, - "shortcut" : "-V", - "name" : "--version", - "default" : false, - "description" : "Display this application version", - "is_value_required" : false, - "is_multiple" : false - }, - "ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--ansi", - "default" : false, - "description" : "Force ANSI output", - "is_multiple" : false, - "is_value_required" : false - }, - "help" : { - "accept_value" : false, - "shortcut" : "-h", - "name" : "--help", - "description" : "Display this help message", - "default" : false, - "is_value_required" : false, - "is_multiple" : false - }, - "verbose" : { - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose", - "is_value_required" : false, - "is_multiple" : false - }, - "quiet" : { - "accept_value" : false, - "shortcut" : "-q", - "name" : "--quiet", - "default" : false, - "description" : "Do not output any message", - "is_multiple" : false, - "is_value_required" : false - }, - "no-ansi" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--no-ansi", - "default" : false, - "description" : "Disable ANSI output", - "shortcut" : "", - "accept_value" : false - } - } - }, - "description" : "Migrate data into email_ tables to sync with Engagement Cloud", - "help" : "Migrate data into email_ tables to sync with Engagement Cloud" - }, - { - "definition" : { - "arguments" : { - "sync" : { - "is_array" : false, - "is_required" : false, - "default" : null, - "description" : "The name of the sync to run", - "name" : "sync" - } - }, - "options" : { - "no-interaction" : { - "default" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-n" - }, - "ansi" : { - "is_multiple" : false, - "is_value_required" : false, - "description" : "Force ANSI output", - "default" : false, - "name" : "--ansi", - "shortcut" : "", - "accept_value" : false - }, - "help" : { - "shortcut" : "-h", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--help", - "description" : "Display this help message", - "default" : false - }, - "quiet" : { - "is_multiple" : false, - "is_value_required" : false, - "description" : "Do not output any message", - "default" : false, - "name" : "--quiet", - "shortcut" : "-q", - "accept_value" : false - }, - "version" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--version", - "description" : "Display this application version", - "default" : false, - "shortcut" : "-V", - "accept_value" : false - }, - "no-ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-ansi", - "default" : false, - "description" : "Disable ANSI output" - }, - "verbose" : { - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "name" : "--verbose", - "is_value_required" : false, - "is_multiple" : false - }, - "from" : { - "name" : "--from", - "description" : "Specify a date/time (parsable by \\DateTime) to run a sync from (if supported)", - "default" : null, - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : true, - "shortcut" : "" - } - } - }, - "description" : "Run syncs to populate email_ tables before importing to Engagement Cloud", - "usage" : [ - "dotdigital:sync [--from [FROM]] [--] []" - ], - "hidden" : false, - "name" : "dotdigital:sync", - "help" : "Run syncs to populate email_ tables before importing to Engagement Cloud" - }, - { - "help" : "Add domains to the downloadable domains whitelist", - "definition" : { - "arguments" : { - "domains" : { - "default" : [], - "description" : "Domains name", - "name" : "domains", - "is_array" : true, - "is_required" : false - } - }, - "options" : { - "no-interaction" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false, - "shortcut" : "-n", - "accept_value" : false - }, - "version" : { - "accept_value" : false, - "shortcut" : "-V", - "default" : false, - "description" : "Display this application version", - "name" : "--version", - "is_value_required" : false, - "is_multiple" : false - }, - "ansi" : { - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "shortcut" : "", - "accept_value" : false - }, - "verbose" : { - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "help" : { - "accept_value" : false, - "shortcut" : "-h", - "name" : "--help", - "description" : "Display this help message", - "default" : false, - "is_value_required" : false, - "is_multiple" : false - }, - "quiet" : { - "is_multiple" : false, - "is_value_required" : false, - "description" : "Do not output any message", - "default" : false, - "name" : "--quiet", - "shortcut" : "-q", - "accept_value" : false - }, - "no-ansi" : { - "default" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "" - } - } - }, - "usage" : [ - "downloadable:domains:add [...]" - ], - "description" : "Add domains to the downloadable domains whitelist", - "name" : "downloadable:domains:add", - "hidden" : false - }, - { - "help" : "Remove domains from the downloadable domains whitelist", - "hidden" : false, - "name" : "downloadable:domains:remove", - "definition" : { - "options" : { - "version" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--version", - "description" : "Display this application version", - "default" : false, - "shortcut" : "-V", - "accept_value" : false - }, - "no-interaction" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false, - "shortcut" : "-n", - "accept_value" : false - }, - "no-ansi" : { - "is_multiple" : false, - "is_value_required" : false, - "description" : "Disable ANSI output", - "default" : false, - "name" : "--no-ansi", - "shortcut" : "", - "accept_value" : false - }, - "ansi" : { - "name" : "--ansi", - "default" : false, - "description" : "Force ANSI output", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "" - }, - "quiet" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--quiet", - "description" : "Do not output any message", - "default" : false, - "shortcut" : "-q", - "accept_value" : false - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "name" : "--verbose" - }, - "help" : { - "accept_value" : false, - "shortcut" : "-h", - "name" : "--help", - "default" : false, - "description" : "Display this help message", - "is_multiple" : false, - "is_value_required" : false - } - }, - "arguments" : { - "domains" : { - "is_array" : true, - "is_required" : false, - "description" : "Domain names", - "default" : [], - "name" : "domains" - } - } - }, - "usage" : [ - "downloadable:domains:remove [...]" - ], - "description" : "Remove domains from the downloadable domains whitelist" - }, - { - "help" : "Display downloadable domains whitelist", - "name" : "downloadable:domains:show", - "hidden" : false, - "usage" : [ - "downloadable:domains:show" - ], - "definition" : { - "options" : { - "help" : { - "description" : "Display this help message", - "default" : false, - "name" : "--help", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-h" - }, - "ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--ansi", - "description" : "Force ANSI output", - "default" : false, - "is_multiple" : false, - "is_value_required" : false - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "name" : "--verbose" - }, - "quiet" : { - "accept_value" : false, - "shortcut" : "-q", - "name" : "--quiet", - "default" : false, - "description" : "Do not output any message", - "is_value_required" : false, - "is_multiple" : false - }, - "no-ansi" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "shortcut" : "", - "accept_value" : false - }, - "no-interaction" : { - "name" : "--no-interaction", - "default" : false, - "description" : "Do not ask any interactive question", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-n" - }, - "version" : { - "accept_value" : false, - "shortcut" : "-V", - "name" : "--version", - "description" : "Display this application version", - "default" : false, - "is_multiple" : false, - "is_value_required" : false - } - }, - "arguments" : [] - }, - "description" : "Display downloadable domains whitelist" - }, - { - "definition" : { - "options" : { - "ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "description" : "Force ANSI output", - "default" : false, - "name" : "--ansi" - }, - "help" : { - "accept_value" : false, - "shortcut" : "-h", - "name" : "--help", - "description" : "Display this help message", - "default" : false, - "is_multiple" : false, - "is_value_required" : false - }, - "verbose" : { - "is_multiple" : false, - "is_value_required" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false - }, - "quiet" : { - "shortcut" : "-q", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--quiet", - "description" : "Do not output any message", - "default" : false - }, - "no-ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-ansi", - "default" : false, - "description" : "Disable ANSI output" - }, - "no-interaction" : { - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction", - "shortcut" : "-n", - "accept_value" : false - }, - "version" : { - "accept_value" : false, - "shortcut" : "-V", - "description" : "Display this application version", - "default" : false, - "name" : "--version", - "is_multiple" : false, - "is_value_required" : false - } - }, - "arguments" : [] - }, - "description" : "Re-encrypts encrypted credit card data with latest encryption cipher.", - "usage" : [ - "encryption:payment-data:update" - ], - "name" : "encryption:payment-data:update", - "hidden" : false, - "help" : "Re-encrypts encrypted credit card data with latest encryption cipher." - }, - { - "help" : "Discovers phrases in the codebase", - "usage" : [ - "i18n:collect-phrases [-o|--output OUTPUT] [-m|--magento] [--] []" - ], - "definition" : { - "arguments" : { - "directory" : { - "is_required" : false, - "is_array" : false, - "name" : "directory", - "default" : null, - "description" : "Directory path to parse. Not needed if --magento flag is set" - } - }, - "options" : { - "help" : { - "shortcut" : "-h", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--help", - "description" : "Display this help message", - "default" : false - }, - "ansi" : { - "accept_value" : false, - "shortcut" : "", - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "is_multiple" : false, - "is_value_required" : false - }, - "quiet" : { - "accept_value" : false, - "shortcut" : "-q", - "name" : "--quiet", - "default" : false, - "description" : "Do not output any message", - "is_value_required" : false, - "is_multiple" : false - }, - "no-interaction" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false, - "shortcut" : "-n", - "accept_value" : false - }, - "magento" : { - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Use the --magento parameter to parse the current Magento codebase. Omit the parameter if a directory is specified.", - "name" : "--magento", - "shortcut" : "-m", - "accept_value" : false - }, - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "name" : "--verbose", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "no-ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false - }, - "output" : { - "is_value_required" : true, - "is_multiple" : false, - "name" : "--output", - "description" : "Path (including filename) to an output file. With no file specified, defaults to stdout.", - "default" : null, - "shortcut" : "-o", - "accept_value" : true - }, - "version" : { - "shortcut" : "-V", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Display this application version", - "name" : "--version" - } - } - }, - "description" : "Discovers phrases in the codebase", - "name" : "i18n:collect-phrases", - "hidden" : false - }, - { - "name" : "i18n:pack", - "hidden" : false, - "usage" : [ - "i18n:pack [-m|--mode MODE] [-d|--allow-duplicates] [--] " - ], - "definition" : { - "arguments" : { - "locale" : { - "is_array" : false, - "is_required" : true, - "description" : "Target locale for dictionary, for example \"de_DE\"", - "default" : null, - "name" : "locale" - }, - "source" : { - "is_array" : false, - "is_required" : true, - "default" : null, - "description" : "Path to source dictionary file with translations", - "name" : "source" - } - }, - "options" : { - "mode" : { - "is_multiple" : false, - "is_value_required" : true, - "name" : "--mode", - "description" : "Save mode for dictionary - \"replace\" - replace language pack by new one - \"merge\" - merge language packages, by default \"replace\"", - "default" : "replace", - "shortcut" : "-m", - "accept_value" : true - }, - "no-interaction" : { - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false, - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-n" - }, - "ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--ansi", - "default" : false, - "description" : "Force ANSI output", - "is_multiple" : false, - "is_value_required" : false - }, - "help" : { - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Display this help message", - "name" : "--help", - "shortcut" : "-h", - "accept_value" : false - }, - "quiet" : { - "description" : "Do not output any message", - "default" : false, - "name" : "--quiet", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-q" - }, - "allow-duplicates" : { - "shortcut" : "-d", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Use the --allow-duplicates parameter to allow saving duplicates of translate. Otherwise omit the parameter.", - "name" : "--allow-duplicates" - }, - "version" : { - "name" : "--version", - "description" : "Display this application version", - "default" : false, - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-V" - }, - "verbose" : { - "name" : "--verbose", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "no-ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "is_multiple" : false, - "is_value_required" : false - } - } - }, - "description" : "Saves language package", - "help" : "Saves language package" - }, - { - "help" : "Uninstalls language packages", - "hidden" : false, - "name" : "i18n:uninstall", - "description" : "Uninstalls language packages", - "definition" : { - "options" : { - "ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--ansi", - "default" : false, - "description" : "Force ANSI output", - "is_value_required" : false, - "is_multiple" : false - }, - "help" : { - "name" : "--help", - "default" : false, - "description" : "Display this help message", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-h" - }, - "quiet" : { - "shortcut" : "-q", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "description" : "Do not output any message", - "default" : false, - "name" : "--quiet" - }, - "no-interaction" : { - "shortcut" : "-n", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction" - }, - "no-ansi" : { - "name" : "--no-ansi", - "default" : false, - "description" : "Disable ANSI output", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "" - }, - "verbose" : { - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_multiple" : false, - "is_value_required" : false - }, - "backup-code" : { - "accept_value" : false, - "shortcut" : "-b", - "name" : "--backup-code", - "default" : false, - "description" : "Take code and configuration files backup (excluding temporary files)", - "is_value_required" : false, - "is_multiple" : false - }, - "version" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--version", - "default" : false, - "description" : "Display this application version", - "shortcut" : "-V", - "accept_value" : false - } - }, - "arguments" : { - "package" : { - "is_required" : true, - "is_array" : true, - "default" : [], - "description" : "Language package name", - "name" : "package" - } - } - }, - "usage" : [ - "i18n:uninstall [-b|--backup-code] [--] ..." - ] - }, - { - "hidden" : false, - "name" : "indexer:info", - "usage" : [ - "indexer:info" - ], - "definition" : { - "options" : { - "no-ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--no-ansi", - "default" : false, - "description" : "Disable ANSI output", - "is_value_required" : false, - "is_multiple" : false - }, - "verbose" : { - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "name" : "--verbose", - "is_multiple" : false, - "is_value_required" : false - }, - "ansi" : { - "accept_value" : false, - "shortcut" : "", - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "is_multiple" : false, - "is_value_required" : false - }, - "help" : { - "accept_value" : false, - "shortcut" : "-h", - "name" : "--help", - "default" : false, - "description" : "Display this help message", - "is_multiple" : false, - "is_value_required" : false - }, - "quiet" : { - "default" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-q" - }, - "version" : { - "accept_value" : false, - "shortcut" : "-V", - "description" : "Display this application version", - "default" : false, - "name" : "--version", - "is_value_required" : false, - "is_multiple" : false - }, - "no-interaction" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-interaction", - "default" : false, - "description" : "Do not ask any interactive question", - "shortcut" : "-n", - "accept_value" : false - } - }, - "arguments" : [] - }, - "description" : "Shows allowed Indexers", - "help" : "Shows allowed Indexers" - }, - { - "help" : "Reindexes Data", - "name" : "indexer:reindex", - "hidden" : false, - "definition" : { - "arguments" : { - "index" : { - "name" : "index", - "description" : "Space-separated list of index types or omit to apply to all indexes.", - "default" : [], - "is_array" : true, - "is_required" : false - } - }, - "options" : { - "version" : { - "name" : "--version", - "description" : "Display this application version", - "default" : false, - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-V" - }, - "no-interaction" : { - "shortcut" : "-n", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-interaction", - "default" : false, - "description" : "Do not ask any interactive question" - }, - "no-ansi" : { - "is_value_required" : false, - "is_multiple" : false, - "description" : "Disable ANSI output", - "default" : false, - "name" : "--no-ansi", - "shortcut" : "", - "accept_value" : false - }, - "verbose" : { - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_value_required" : false, - "is_multiple" : false - }, - "ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--ansi", - "description" : "Force ANSI output", - "default" : false, - "is_value_required" : false, - "is_multiple" : false - }, - "quiet" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--quiet", - "default" : false, - "description" : "Do not output any message", - "shortcut" : "-q", - "accept_value" : false - }, - "help" : { - "default" : false, - "description" : "Display this help message", - "name" : "--help", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-h" - } - } - }, - "usage" : [ - "indexer:reindex [...]" - ], - "description" : "Reindexes Data" - }, - { - "help" : "Resets indexer status to invalid", - "usage" : [ - "indexer:reset [...]" - ], - "definition" : { - "arguments" : { - "index" : { - "is_required" : false, - "is_array" : true, - "name" : "index", - "description" : "Space-separated list of index types or omit to apply to all indexes.", - "default" : [] - } - }, - "options" : { - "no-interaction" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-interaction", - "default" : false, - "description" : "Do not ask any interactive question", - "shortcut" : "-n", - "accept_value" : false - }, - "version" : { - "shortcut" : "-V", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--version", - "default" : false, - "description" : "Display this application version" - }, - "verbose" : { - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "is_multiple" : false, - "is_value_required" : false - }, - "ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "default" : false - }, - "quiet" : { - "accept_value" : false, - "shortcut" : "-q", - "default" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "is_multiple" : false, - "is_value_required" : false - }, - "help" : { - "shortcut" : "-h", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--help", - "default" : false, - "description" : "Display this help message" - }, - "no-ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-ansi", - "default" : false, - "description" : "Disable ANSI output" - } - } - }, - "description" : "Resets indexer status to invalid", - "name" : "indexer:reset", - "hidden" : false - }, - { - "usage" : [ - "indexer:set-dimensions-mode [ []]" - ], - "definition" : { - "options" : { - "verbose" : { - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "ansi" : { - "accept_value" : false, - "shortcut" : "", - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "is_multiple" : false, - "is_value_required" : false - }, - "help" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--help", - "default" : false, - "description" : "Display this help message", - "shortcut" : "-h", - "accept_value" : false - }, - "quiet" : { - "shortcut" : "-q", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Do not output any message", - "name" : "--quiet" - }, - "no-ansi" : { - "accept_value" : false, - "shortcut" : "", - "default" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_value_required" : false, - "is_multiple" : false - }, - "no-interaction" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-interaction", - "default" : false, - "description" : "Do not ask any interactive question", - "shortcut" : "-n", - "accept_value" : false - }, - "version" : { - "name" : "--version", - "description" : "Display this application version", - "default" : false, - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-V" - } - }, - "arguments" : { - "indexer" : { - "is_required" : false, - "is_array" : false, - "default" : null, - "description" : "Indexer name [catalog_product_price]", - "name" : "indexer" - }, - "mode" : { - "is_required" : false, - "is_array" : false, - "name" : "mode", - "description" : "Indexer dimension modes catalog_product_price none,website,customer_group,website_and_customer_group ", - "default" : null - } - } - }, - "description" : "Set Indexer Dimensions Mode", - "hidden" : false, - "name" : "indexer:set-dimensions-mode", - "help" : "Set Indexer Dimensions Mode" - }, - { - "usage" : [ - "indexer:set-mode [ [...]]" - ], - "definition" : { - "options" : { - "no-interaction" : { - "shortcut" : "-n", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--no-interaction", - "default" : false, - "description" : "Do not ask any interactive question" - }, - "version" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--version", - "description" : "Display this application version", - "default" : false, - "shortcut" : "-V", - "accept_value" : false - }, - "verbose" : { - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false - }, - "ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--ansi", - "description" : "Force ANSI output", - "default" : false, - "is_value_required" : false, - "is_multiple" : false - }, - "help" : { - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Display this help message", - "name" : "--help", - "shortcut" : "-h", - "accept_value" : false - }, - "quiet" : { - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "shortcut" : "-q", - "accept_value" : false - }, - "no-ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false - } - }, - "arguments" : { - "mode" : { - "description" : "Indexer mode type [realtime|schedule]", - "default" : null, - "name" : "mode", - "is_required" : false, - "is_array" : false - }, - "index" : { - "default" : [], - "description" : "Space-separated list of index types or omit to apply to all indexes.", - "name" : "index", - "is_array" : true, - "is_required" : false - } - } - }, - "description" : "Sets index mode type", - "name" : "indexer:set-mode", - "hidden" : false, - "help" : "Sets index mode type" - }, - { - "help" : "Shows Indexer Dimension Mode", - "usage" : [ - "indexer:show-dimensions-mode [...]" - ], - "definition" : { - "options" : { - "no-ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "description" : "Disable ANSI output", - "default" : false, - "name" : "--no-ansi" - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--verbose", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "default" : false - }, - "quiet" : { - "default" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-q" - }, - "help" : { - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Display this help message", - "name" : "--help", - "shortcut" : "-h", - "accept_value" : false - }, - "version" : { - "shortcut" : "-V", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--version", - "default" : false, - "description" : "Display this application version" - }, - "no-interaction" : { - "accept_value" : false, - "shortcut" : "-n", - "description" : "Do not ask any interactive question", - "default" : false, - "name" : "--no-interaction", - "is_multiple" : false, - "is_value_required" : false - } - }, - "arguments" : { - "indexer" : { - "name" : "indexer", - "default" : [], - "description" : "Space-separated list of index types or omit to apply to all indexes (catalog_product_price)", - "is_array" : true, - "is_required" : false - } - } - }, - "description" : "Shows Indexer Dimension Mode", - "name" : "indexer:show-dimensions-mode", - "hidden" : false - }, - { - "hidden" : false, - "name" : "indexer:show-mode", - "description" : "Shows Index Mode", - "definition" : { - "options" : { - "no-interaction" : { - "name" : "--no-interaction", - "default" : false, - "description" : "Do not ask any interactive question", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-n" - }, - "version" : { - "shortcut" : "-V", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "description" : "Display this application version", - "default" : false, - "name" : "--version" - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "name" : "--verbose" - }, - "ansi" : { - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "shortcut" : "", - "accept_value" : false - }, - "help" : { - "name" : "--help", - "default" : false, - "description" : "Display this help message", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-h" - }, - "quiet" : { - "accept_value" : false, - "shortcut" : "-q", - "name" : "--quiet", - "default" : false, - "description" : "Do not output any message", - "is_multiple" : false, - "is_value_required" : false - }, - "no-ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-ansi", - "default" : false, - "description" : "Disable ANSI output" - } - }, - "arguments" : { - "index" : { - "is_required" : false, - "is_array" : true, - "name" : "index", - "description" : "Space-separated list of index types or omit to apply to all indexes.", - "default" : [] - } - } - }, - "usage" : [ - "indexer:show-mode [...]" - ], - "help" : "Shows Index Mode" - }, - { - "help" : "Shows status of Indexer", - "definition" : { - "arguments" : { - "index" : { - "is_required" : false, - "is_array" : true, - "description" : "Space-separated list of index types or omit to apply to all indexes.", - "default" : [], - "name" : "index" - } - }, - "options" : { - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose" - }, - "ansi" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "default" : false, - "shortcut" : "", - "accept_value" : false - }, - "quiet" : { - "accept_value" : false, - "shortcut" : "-q", - "name" : "--quiet", - "default" : false, - "description" : "Do not output any message", - "is_multiple" : false, - "is_value_required" : false - }, - "help" : { - "accept_value" : false, - "shortcut" : "-h", - "default" : false, - "description" : "Display this help message", - "name" : "--help", - "is_multiple" : false, - "is_value_required" : false - }, - "no-ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "is_value_required" : false, - "is_multiple" : false - }, - "no-interaction" : { - "shortcut" : "-n", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction" - }, - "version" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--version", - "description" : "Display this application version", - "default" : false, - "shortcut" : "-V", - "accept_value" : false - } - } - }, - "usage" : [ - "indexer:status [...]" - ], - "description" : "Shows status of Indexer", - "name" : "indexer:status", - "hidden" : false - }, - { - "help" : "Displays the Magento Admin URI", - "definition" : { - "options" : { - "no-interaction" : { - "accept_value" : false, - "shortcut" : "-n", - "description" : "Do not ask any interactive question", - "default" : false, - "name" : "--no-interaction", - "is_multiple" : false, - "is_value_required" : false - }, - "version" : { - "shortcut" : "-V", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Display this application version", - "name" : "--version" - }, - "quiet" : { - "default" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-q" - }, - "ansi" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--ansi", - "default" : false, - "description" : "Force ANSI output", - "shortcut" : "", - "accept_value" : false - }, - "verbose" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--verbose", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false - }, - "help" : { - "default" : false, - "description" : "Display this help message", - "name" : "--help", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-h" - }, - "no-ansi" : { - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "" - } - }, - "arguments" : [] - }, - "usage" : [ - "info:adminuri" - ], - "description" : "Displays the Magento Admin URI", - "name" : "info:adminuri", - "hidden" : false - }, - { - "help" : "Prints list of available backup files", - "definition" : { - "arguments" : [], - "options" : { - "version" : { - "shortcut" : "-V", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "description" : "Display this application version", - "default" : false, - "name" : "--version" - }, - "no-interaction" : { - "is_value_required" : false, - "is_multiple" : false, - "description" : "Do not ask any interactive question", - "default" : false, - "name" : "--no-interaction", - "shortcut" : "-n", - "accept_value" : false - }, - "no-ansi" : { - "accept_value" : false, - "shortcut" : "", - "default" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_multiple" : false, - "is_value_required" : false - }, - "quiet" : { - "accept_value" : false, - "shortcut" : "-q", - "name" : "--quiet", - "default" : false, - "description" : "Do not output any message", - "is_value_required" : false, - "is_multiple" : false - }, - "ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "description" : "Force ANSI output", - "default" : false, - "name" : "--ansi" - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose" - }, - "help" : { - "accept_value" : false, - "shortcut" : "-h", - "default" : false, - "description" : "Display this help message", - "name" : "--help", - "is_value_required" : false, - "is_multiple" : false - } - } - }, - "usage" : [ - "info:backups:list" - ], - "description" : "Prints list of available backup files", - "name" : "info:backups:list", - "hidden" : false - }, - { - "help" : "Displays the list of available currencies", - "name" : "info:currency:list", - "hidden" : false, - "description" : "Displays the list of available currencies", - "definition" : { - "options" : { - "no-ansi" : { - "description" : "Disable ANSI output", - "default" : false, - "name" : "--no-ansi", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "" - }, - "ansi" : { - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "" - }, - "verbose" : { - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose", - "is_multiple" : false, - "is_value_required" : false - }, - "quiet" : { - "name" : "--quiet", - "description" : "Do not output any message", - "default" : false, - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-q" - }, - "help" : { - "accept_value" : false, - "shortcut" : "-h", - "default" : false, - "description" : "Display this help message", - "name" : "--help", - "is_value_required" : false, - "is_multiple" : false - }, - "version" : { - "is_multiple" : false, - "is_value_required" : false, - "description" : "Display this application version", - "default" : false, - "name" : "--version", - "shortcut" : "-V", - "accept_value" : false - }, - "no-interaction" : { - "accept_value" : false, - "shortcut" : "-n", - "description" : "Do not ask any interactive question", - "default" : false, - "name" : "--no-interaction", - "is_value_required" : false, - "is_multiple" : false - } - }, - "arguments" : [] - }, - "usage" : [ - "info:currency:list" - ] - }, - { - "help" : "Shows number of dependencies on Magento framework", - "definition" : { - "options" : { - "ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--ansi", - "default" : false, - "description" : "Force ANSI output", - "is_multiple" : false, - "is_value_required" : false - }, - "quiet" : { - "accept_value" : false, - "shortcut" : "-q", - "name" : "--quiet", - "default" : false, - "description" : "Do not output any message", - "is_value_required" : false, - "is_multiple" : false - }, - "help" : { - "shortcut" : "-h", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--help", - "description" : "Display this help message", - "default" : false - }, - "no-interaction" : { - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false, - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-n" - }, - "verbose" : { - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "no-ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "is_multiple" : false, - "is_value_required" : false - }, - "output" : { - "name" : "--output", - "default" : "framework-dependencies.csv", - "description" : "Report filename", - "is_multiple" : false, - "is_value_required" : true, - "accept_value" : true, - "shortcut" : "-o" - }, - "version" : { - "shortcut" : "-V", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "description" : "Display this application version", - "default" : false, - "name" : "--version" - } - }, - "arguments" : [] - }, - "usage" : [ - "info:dependencies:show-framework [-o|--output OUTPUT]" - ], - "description" : "Shows number of dependencies on Magento framework", - "name" : "info:dependencies:show-framework", - "hidden" : false - }, - { - "help" : "Shows number of dependencies between modules", - "definition" : { - "options" : { - "no-ansi" : { - "is_value_required" : false, - "is_multiple" : false, - "description" : "Disable ANSI output", - "default" : false, - "name" : "--no-ansi", - "shortcut" : "", - "accept_value" : false - }, - "verbose" : { - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose", - "is_value_required" : false, - "is_multiple" : false - }, - "version" : { - "description" : "Display this application version", - "default" : false, - "name" : "--version", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-V" - }, - "output" : { - "is_value_required" : true, - "is_multiple" : false, - "default" : "modules-dependencies.csv", - "description" : "Report filename", - "name" : "--output", - "shortcut" : "-o", - "accept_value" : true - }, - "ansi" : { - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "" - }, - "quiet" : { - "shortcut" : "-q", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--quiet", - "default" : false, - "description" : "Do not output any message" - }, - "help" : { - "name" : "--help", - "default" : false, - "description" : "Display this help message", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-h" - }, - "no-interaction" : { - "accept_value" : false, - "shortcut" : "-n", - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false, - "is_multiple" : false, - "is_value_required" : false - } - }, - "arguments" : [] - }, - "usage" : [ - "info:dependencies:show-modules [-o|--output OUTPUT]" - ], - "description" : "Shows number of dependencies between modules", - "name" : "info:dependencies:show-modules", - "hidden" : false - }, - { - "usage" : [ - "info:dependencies:show-modules-circular [-o|--output OUTPUT]" - ], - "definition" : { - "arguments" : [], - "options" : { - "no-interaction" : { - "accept_value" : false, - "shortcut" : "-n", - "default" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction", - "is_multiple" : false, - "is_value_required" : false - }, - "ansi" : { - "accept_value" : false, - "shortcut" : "", - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "is_value_required" : false, - "is_multiple" : false - }, - "quiet" : { - "name" : "--quiet", - "description" : "Do not output any message", - "default" : false, - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-q" - }, - "help" : { - "shortcut" : "-h", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--help", - "default" : false, - "description" : "Display this help message" - }, - "output" : { - "accept_value" : true, - "shortcut" : "-o", - "name" : "--output", - "default" : "modules-circular-dependencies.csv", - "description" : "Report filename", - "is_multiple" : false, - "is_value_required" : true - }, - "version" : { - "name" : "--version", - "description" : "Display this application version", - "default" : false, - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-V" - }, - "verbose" : { - "name" : "--verbose", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "no-ansi" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "shortcut" : "", - "accept_value" : false - } - } - }, - "description" : "Shows number of circular dependencies between modules", - "name" : "info:dependencies:show-modules-circular", - "hidden" : false, - "help" : "Shows number of circular dependencies between modules" - }, - { - "help" : "Displays the list of available language locales", - "name" : "info:language:list", - "hidden" : false, - "description" : "Displays the list of available language locales", - "definition" : { - "arguments" : [], - "options" : { - "no-ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "is_multiple" : false, - "is_value_required" : false - }, - "quiet" : { - "is_multiple" : false, - "is_value_required" : false, - "description" : "Do not output any message", - "default" : false, - "name" : "--quiet", - "shortcut" : "-q", - "accept_value" : false - }, - "ansi" : { - "name" : "--ansi", - "description" : "Force ANSI output", - "default" : false, - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "" - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose" - }, - "help" : { - "shortcut" : "-h", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Display this help message", - "name" : "--help" - }, - "version" : { - "shortcut" : "-V", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--version", - "default" : false, - "description" : "Display this application version" - }, - "no-interaction" : { - "shortcut" : "-n", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction" - } - } - }, - "usage" : [ - "info:language:list" - ] - }, - { - "hidden" : false, - "name" : "info:timezone:list", - "definition" : { - "options" : { - "no-interaction" : { - "accept_value" : false, - "shortcut" : "-n", - "description" : "Do not ask any interactive question", - "default" : false, - "name" : "--no-interaction", - "is_value_required" : false, - "is_multiple" : false - }, - "version" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--version", - "description" : "Display this application version", - "default" : false, - "shortcut" : "-V", - "accept_value" : false - }, - "help" : { - "name" : "--help", - "default" : false, - "description" : "Display this help message", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-h" - }, - "ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "default" : false - }, - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "name" : "--verbose", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "quiet" : { - "is_value_required" : false, - "is_multiple" : false, - "description" : "Do not output any message", - "default" : false, - "name" : "--quiet", - "shortcut" : "-q", - "accept_value" : false - }, - "no-ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--no-ansi", - "default" : false, - "description" : "Disable ANSI output", - "is_value_required" : false, - "is_multiple" : false - } - }, - "arguments" : [] - }, - "description" : "Displays the list of available timezones", - "usage" : [ - "info:timezone:list" - ], - "help" : "Displays the list of available timezones" - }, - { - "usage" : [ - "inventory:reservation:create-compensations [-r|--raw] [--] [...]" - ], - "definition" : { - "options" : { - "no-interaction" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-interaction", - "default" : false, - "description" : "Do not ask any interactive question", - "shortcut" : "-n", - "accept_value" : false - }, - "ansi" : { - "accept_value" : false, - "shortcut" : "", - "description" : "Force ANSI output", - "default" : false, - "name" : "--ansi", - "is_value_required" : false, - "is_multiple" : false - }, - "help" : { - "name" : "--help", - "default" : false, - "description" : "Display this help message", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-h" - }, - "quiet" : { - "accept_value" : false, - "shortcut" : "-q", - "description" : "Do not output any message", - "default" : false, - "name" : "--quiet", - "is_value_required" : false, - "is_multiple" : false - }, - "version" : { - "accept_value" : false, - "shortcut" : "-V", - "default" : false, - "description" : "Display this application version", - "name" : "--version", - "is_multiple" : false, - "is_value_required" : false - }, - "raw" : { - "name" : "--raw", - "description" : "Raw output", - "default" : false, - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-r" - }, - "verbose" : { - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "no-ansi" : { - "accept_value" : false, - "shortcut" : "", - "default" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_value_required" : false, - "is_multiple" : false - } - }, - "arguments" : { - "compensations" : { - "name" : "compensations", - "default" : [], - "description" : "List of compensation arguments in format \":::\"", - "is_required" : false, - "is_array" : true - } - } - }, - "description" : "Create reservations by provided compensation arguments", - "name" : "inventory:reservation:create-compensations", - "hidden" : false, - "help" : "Create reservations by provided compensation arguments" - }, - { - "hidden" : false, - "name" : "inventory:reservation:list-inconsistencies", - "description" : "Show all orders and products with salable quantity inconsistencies", - "definition" : { - "arguments" : [], - "options" : { - "no-interaction" : { - "shortcut" : "-n", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "description" : "Do not ask any interactive question", - "default" : false, - "name" : "--no-interaction" - }, - "quiet" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--quiet", - "description" : "Do not output any message", - "default" : false, - "shortcut" : "-q", - "accept_value" : false - }, - "ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--ansi", - "default" : false, - "description" : "Force ANSI output" - }, - "help" : { - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Display this help message", - "name" : "--help", - "shortcut" : "-h", - "accept_value" : false - }, - "bunch-size" : { - "is_value_required" : false, - "is_multiple" : false, - "default" : 50, - "description" : "Defines how many orders will be loaded at once", - "name" : "--bunch-size", - "shortcut" : "-b", - "accept_value" : true - }, - "incomplete-orders" : { - "accept_value" : false, - "shortcut" : "-i", - "description" : "Show only inconsistencies for incomplete orders", - "default" : false, - "name" : "--incomplete-orders", - "is_multiple" : false, - "is_value_required" : false - }, - "complete-orders" : { - "accept_value" : false, - "shortcut" : "-c", - "default" : false, - "description" : "Show only inconsistencies for complete orders", - "name" : "--complete-orders", - "is_value_required" : false, - "is_multiple" : false - }, - "raw" : { - "name" : "--raw", - "description" : "Raw output", - "default" : false, - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-r" - }, - "version" : { - "accept_value" : false, - "shortcut" : "-V", - "description" : "Display this application version", - "default" : false, - "name" : "--version", - "is_value_required" : false, - "is_multiple" : false - }, - "verbose" : { - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "no-ansi" : { - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "" - } - } - }, - "usage" : [ - "inventory:reservation:list-inconsistencies [-c|--complete-orders] [-i|--incomplete-orders] [-b|--bunch-size [BUNCH-SIZE]] [-r|--raw]" - ], - "help" : "Show all orders and products with salable quantity inconsistencies" - }, - { - "hidden" : false, - "name" : "inventory-geonames:import", - "usage" : [ - "inventory-geonames:import ..." - ], - "definition" : { - "arguments" : { - "countries" : { - "is_array" : true, - "is_required" : true, - "description" : "List of country codes to import", - "default" : [], - "name" : "countries" - } - }, - "options" : { - "help" : { - "description" : "Display this help message", - "default" : false, - "name" : "--help", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-h" - }, - "ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--ansi", - "default" : false, - "description" : "Force ANSI output" - }, - "verbose" : { - "name" : "--verbose", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "quiet" : { - "name" : "--quiet", - "description" : "Do not output any message", - "default" : false, - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-q" - }, - "no-ansi" : { - "accept_value" : false, - "shortcut" : "", - "description" : "Disable ANSI output", - "default" : false, - "name" : "--no-ansi", - "is_value_required" : false, - "is_multiple" : false - }, - "no-interaction" : { - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false, - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-n" - }, - "version" : { - "name" : "--version", - "default" : false, - "description" : "Display this application version", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-V" - } - } - }, - "description" : "Download and import geo names for source selection algorithm", - "help" : "Download and import geo names for source selection algorithm" - }, - { - "name" : "maintenance:allow-ips", - "hidden" : false, - "definition" : { - "arguments" : { - "ip" : { - "default" : [], - "description" : "Allowed IP addresses", - "name" : "ip", - "is_required" : false, - "is_array" : true - } - }, - "options" : { - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "name" : "--verbose" - }, - "no-ansi" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "shortcut" : "", - "accept_value" : false - }, - "none" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--none", - "default" : false, - "description" : "Clear allowed IP addresses", - "is_value_required" : false, - "is_multiple" : false - }, - "version" : { - "shortcut" : "-V", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--version", - "description" : "Display this application version", - "default" : false - }, - "ansi" : { - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "" - }, - "quiet" : { - "shortcut" : "-q", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--quiet", - "description" : "Do not output any message", - "default" : false - }, - "help" : { - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Display this help message", - "name" : "--help", - "shortcut" : "-h", - "accept_value" : false - }, - "add" : { - "is_value_required" : false, - "is_multiple" : false, - "description" : "Add the IP address to existing list", - "default" : false, - "name" : "--add", - "shortcut" : "", - "accept_value" : false - }, - "magento-init-params" : { - "accept_value" : true, - "shortcut" : "", - "name" : "--magento-init-params", - "default" : null, - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "is_value_required" : true, - "is_multiple" : false - }, - "no-interaction" : { - "description" : "Do not ask any interactive question", - "default" : false, - "name" : "--no-interaction", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-n" - } - } - }, - "description" : "Sets maintenance mode exempt IPs", - "usage" : [ - "maintenance:allow-ips [--none] [--add] [--magento-init-params MAGENTO-INIT-PARAMS] [--] [...]" - ], - "help" : "Sets maintenance mode exempt IPs" - }, - { - "help" : "Disables maintenance mode", - "definition" : { - "arguments" : [], - "options" : { - "magento-init-params" : { - "shortcut" : "", - "accept_value" : true, - "is_multiple" : false, - "is_value_required" : true, - "name" : "--magento-init-params", - "default" : null, - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"" - }, - "help" : { - "default" : false, - "description" : "Display this help message", - "name" : "--help", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-h" - }, - "ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "default" : false - }, - "quiet" : { - "shortcut" : "-q", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--quiet", - "description" : "Do not output any message", - "default" : false - }, - "no-interaction" : { - "is_multiple" : false, - "is_value_required" : false, - "description" : "Do not ask any interactive question", - "default" : false, - "name" : "--no-interaction", - "shortcut" : "-n", - "accept_value" : false - }, - "ip" : { - "name" : "--ip", - "description" : "Allowed IP addresses (use 'none' to clear allowed IP list)", - "default" : [], - "is_value_required" : true, - "is_multiple" : true, - "accept_value" : true, - "shortcut" : "" - }, - "verbose" : { - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "name" : "--verbose", - "is_multiple" : false, - "is_value_required" : false - }, - "no-ansi" : { - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "" - }, - "version" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--version", - "description" : "Display this application version", - "default" : false, - "shortcut" : "-V", - "accept_value" : false - } - } - }, - "usage" : [ - "maintenance:disable [--ip IP] [--magento-init-params MAGENTO-INIT-PARAMS]" - ], - "description" : "Disables maintenance mode", - "name" : "maintenance:disable", - "hidden" : false - }, - { - "name" : "maintenance:enable", - "hidden" : false, - "usage" : [ - "maintenance:enable [--ip IP] [--magento-init-params MAGENTO-INIT-PARAMS]" - ], - "definition" : { - "options" : { - "no-interaction" : { - "shortcut" : "-n", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false - }, - "ip" : { - "accept_value" : true, - "shortcut" : "", - "default" : [], - "description" : "Allowed IP addresses (use 'none' to clear allowed IP list)", - "name" : "--ip", - "is_value_required" : true, - "is_multiple" : true - }, - "magento-init-params" : { - "is_value_required" : true, - "is_multiple" : false, - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "default" : null, - "name" : "--magento-init-params", - "shortcut" : "", - "accept_value" : true - }, - "ansi" : { - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "shortcut" : "", - "accept_value" : false - }, - "help" : { - "shortcut" : "-h", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "description" : "Display this help message", - "default" : false, - "name" : "--help" - }, - "quiet" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--quiet", - "description" : "Do not output any message", - "default" : false, - "shortcut" : "-q", - "accept_value" : false - }, - "version" : { - "accept_value" : false, - "shortcut" : "-V", - "name" : "--version", - "description" : "Display this application version", - "default" : false, - "is_value_required" : false, - "is_multiple" : false - }, - "verbose" : { - "is_value_required" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false - }, - "no-ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--no-ansi", - "default" : false, - "description" : "Disable ANSI output", - "is_value_required" : false, - "is_multiple" : false - } - }, - "arguments" : [] - }, - "description" : "Enables maintenance mode", - "help" : "Enables maintenance mode" - }, - { - "definition" : { - "options" : { - "magento-init-params" : { - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "default" : null, - "name" : "--magento-init-params", - "is_value_required" : true, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "" - }, - "ansi" : { - "is_value_required" : false, - "is_multiple" : false, - "description" : "Force ANSI output", - "default" : false, - "name" : "--ansi", - "shortcut" : "", - "accept_value" : false - }, - "help" : { - "default" : false, - "description" : "Display this help message", - "name" : "--help", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-h" - }, - "quiet" : { - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "shortcut" : "-q", - "accept_value" : false - }, - "no-interaction" : { - "accept_value" : false, - "shortcut" : "-n", - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false, - "is_multiple" : false, - "is_value_required" : false - }, - "no-ansi" : { - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "" - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--verbose", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "version" : { - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Display this application version", - "name" : "--version", - "shortcut" : "-V", - "accept_value" : false - } - }, - "arguments" : [] - }, - "description" : "Displays maintenance mode status", - "usage" : [ - "maintenance:status [--magento-init-params MAGENTO-INIT-PARAMS]" - ], - "name" : "maintenance:status", - "hidden" : false, - "help" : "Displays maintenance mode status" - }, - { - "help" : "Checks the modules configuration in the 'app/etc/config.php' file and reports if they are up to date or not", - "usage" : [ - "module:config:status" - ], - "definition" : { - "arguments" : [], - "options" : { - "version" : { - "description" : "Display this application version", - "default" : false, - "name" : "--version", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-V" - }, - "no-interaction" : { - "shortcut" : "-n", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction" - }, - "no-ansi" : { - "default" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "" - }, - "verbose" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false - }, - "ansi" : { - "name" : "--ansi", - "default" : false, - "description" : "Force ANSI output", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "" - }, - "help" : { - "shortcut" : "-h", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "description" : "Display this help message", - "default" : false, - "name" : "--help" - }, - "quiet" : { - "accept_value" : false, - "shortcut" : "-q", - "name" : "--quiet", - "description" : "Do not output any message", - "default" : false, - "is_value_required" : false, - "is_multiple" : false - } - } - }, - "description" : "Checks the modules configuration in the 'app/etc/config.php' file and reports if they are up to date or not", - "hidden" : false, - "name" : "module:config:status" - }, - { - "hidden" : false, - "name" : "module:disable", - "description" : "Disables specified modules", - "definition" : { - "options" : { - "ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi" - }, - "help" : { - "shortcut" : "-h", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "description" : "Display this help message", - "default" : false, - "name" : "--help" - }, - "quiet" : { - "shortcut" : "-q", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "description" : "Do not output any message", - "default" : false, - "name" : "--quiet" - }, - "magento-init-params" : { - "is_value_required" : true, - "is_multiple" : false, - "default" : null, - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "name" : "--magento-init-params", - "shortcut" : "", - "accept_value" : true - }, - "no-interaction" : { - "accept_value" : false, - "shortcut" : "-n", - "name" : "--no-interaction", - "default" : false, - "description" : "Do not ask any interactive question", - "is_multiple" : false, - "is_value_required" : false - }, - "no-ansi" : { - "description" : "Disable ANSI output", - "default" : false, - "name" : "--no-ansi", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "" - }, - "verbose" : { - "name" : "--verbose", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "clear-static-content" : { - "shortcut" : "-c", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--clear-static-content", - "description" : "Clear generated static view files. Necessary, if the module(s) have static view files", - "default" : false - }, - "force" : { - "shortcut" : "-f", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--force", - "description" : "Bypass dependencies check", - "default" : false - }, - "version" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--version", - "description" : "Display this application version", - "default" : false, - "shortcut" : "-V", - "accept_value" : false - }, - "all" : { - "is_value_required" : false, - "is_multiple" : false, - "description" : "Disable all modules", - "default" : false, - "name" : "--all", - "shortcut" : "", - "accept_value" : false - } - }, - "arguments" : { - "module" : { - "name" : "module", - "description" : "Name of the module", - "default" : [], - "is_required" : false, - "is_array" : true - } - } - }, - "usage" : [ - "module:disable [-f|--force] [--all] [-c|--clear-static-content] [--magento-init-params MAGENTO-INIT-PARAMS] [--] [...]" - ], - "help" : "Disables specified modules" - }, - { - "usage" : [ - "module:enable [-f|--force] [--all] [-c|--clear-static-content] [--magento-init-params MAGENTO-INIT-PARAMS] [--] [...]" - ], - "definition" : { - "options" : { - "no-interaction" : { - "accept_value" : false, - "shortcut" : "-n", - "name" : "--no-interaction", - "default" : false, - "description" : "Do not ask any interactive question", - "is_multiple" : false, - "is_value_required" : false - }, - "help" : { - "name" : "--help", - "description" : "Display this help message", - "default" : false, - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-h" - }, - "ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--ansi", - "default" : false, - "description" : "Force ANSI output" - }, - "quiet" : { - "shortcut" : "-q", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--quiet", - "description" : "Do not output any message", - "default" : false - }, - "magento-init-params" : { - "accept_value" : true, - "shortcut" : "", - "default" : null, - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "name" : "--magento-init-params", - "is_value_required" : true, - "is_multiple" : false - }, - "version" : { - "shortcut" : "-V", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--version", - "description" : "Display this application version", - "default" : false - }, - "all" : { - "accept_value" : false, - "shortcut" : "", - "description" : "Enable all modules", - "default" : false, - "name" : "--all", - "is_value_required" : false, - "is_multiple" : false - }, - "force" : { - "name" : "--force", - "default" : false, - "description" : "Bypass dependencies check", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-f" - }, - "verbose" : { - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose", - "is_multiple" : false, - "is_value_required" : false - }, - "no-ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "description" : "Disable ANSI output", - "default" : false, - "name" : "--no-ansi" - }, - "clear-static-content" : { - "description" : "Clear generated static view files. Necessary, if the module(s) have static view files", - "default" : false, - "name" : "--clear-static-content", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-c" - } - }, - "arguments" : { - "module" : { - "name" : "module", - "description" : "Name of the module", - "default" : [], - "is_required" : false, - "is_array" : true - } - } - }, - "description" : "Enables specified modules", - "hidden" : false, - "name" : "module:enable", - "help" : "Enables specified modules" - }, - { - "help" : "Displays status of modules", - "hidden" : false, - "name" : "module:status", - "usage" : [ - "module:status [--enabled] [--disabled] [--magento-init-params MAGENTO-INIT-PARAMS] [--] []" - ], - "definition" : { - "arguments" : { - "module" : { - "is_array" : false, - "is_required" : false, - "name" : "module", - "description" : "Optional module name", - "default" : null - } - }, - "options" : { - "enabled" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--enabled", - "default" : false, - "description" : "Print only enabled modules", - "is_multiple" : false, - "is_value_required" : false - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false - }, - "no-ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi" - }, - "version" : { - "accept_value" : false, - "shortcut" : "-V", - "name" : "--version", - "default" : false, - "description" : "Display this application version", - "is_value_required" : false, - "is_multiple" : false - }, - "disabled" : { - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Print only disabled modules", - "name" : "--disabled", - "shortcut" : "", - "accept_value" : false - }, - "magento-init-params" : { - "is_value_required" : true, - "is_multiple" : false, - "default" : null, - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "name" : "--magento-init-params", - "shortcut" : "", - "accept_value" : true - }, - "help" : { - "accept_value" : false, - "shortcut" : "-h", - "name" : "--help", - "default" : false, - "description" : "Display this help message", - "is_value_required" : false, - "is_multiple" : false - }, - "ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "default" : false - }, - "quiet" : { - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "shortcut" : "-q", - "accept_value" : false - }, - "no-interaction" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-interaction", - "default" : false, - "description" : "Do not ask any interactive question", - "shortcut" : "-n", - "accept_value" : false - } - } - }, - "description" : "Displays status of modules" - }, - { - "hidden" : false, - "name" : "module:uninstall", - "usage" : [ - "module:uninstall [-r|--remove-data] [--backup-code] [--backup-media] [--backup-db] [--non-composer] [-c|--clear-static-content] [--magento-init-params MAGENTO-INIT-PARAMS] [--] ..." - ], - "definition" : { - "options" : { - "no-interaction" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false, - "shortcut" : "-n", - "accept_value" : false - }, - "backup-media" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--backup-media", - "description" : "Take media backup", - "default" : false, - "shortcut" : "", - "accept_value" : false - }, - "backup-db" : { - "is_multiple" : false, - "is_value_required" : false, - "description" : "Take complete database backup", - "default" : false, - "name" : "--backup-db", - "shortcut" : "", - "accept_value" : false - }, - "magento-init-params" : { - "is_value_required" : true, - "is_multiple" : false, - "name" : "--magento-init-params", - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "default" : null, - "shortcut" : "", - "accept_value" : true - }, - "ansi" : { - "name" : "--ansi", - "default" : false, - "description" : "Force ANSI output", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "" - }, - "help" : { - "shortcut" : "-h", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--help", - "default" : false, - "description" : "Display this help message" - }, - "quiet" : { - "description" : "Do not output any message", - "default" : false, - "name" : "--quiet", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-q" - }, - "remove-data" : { - "shortcut" : "-r", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Remove data installed by module(s)", - "name" : "--remove-data" - }, - "version" : { - "shortcut" : "-V", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Display this application version", - "name" : "--version" - }, - "backup-code" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--backup-code", - "default" : false, - "description" : "Take code and configuration files backup (excluding temporary files)", - "shortcut" : "", - "accept_value" : false - }, - "non-composer" : { - "accept_value" : false, - "shortcut" : "", - "description" : "All modules, that will be past here will be non composer based", - "default" : false, - "name" : "--non-composer", - "is_multiple" : false, - "is_value_required" : false - }, - "clear-static-content" : { - "shortcut" : "-c", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--clear-static-content", - "description" : "Clear generated static view files. Necessary, if the module(s) have static view files", - "default" : false - }, - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "name" : "--verbose", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "no-ansi" : { - "accept_value" : false, - "shortcut" : "", - "description" : "Disable ANSI output", - "default" : false, - "name" : "--no-ansi", - "is_value_required" : false, - "is_multiple" : false - } - }, - "arguments" : { - "module" : { - "name" : "module", - "description" : "Name of the module", - "default" : [], - "is_required" : true, - "is_array" : true - } - } - }, - "description" : "Uninstalls modules installed by composer", - "help" : "Uninstalls modules installed by composer" - }, - { - "name" : "msp:security:recaptcha:disable", - "hidden" : false, - "definition" : { - "options" : { - "no-ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "is_multiple" : false, - "is_value_required" : false - }, - "ansi" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--ansi", - "default" : false, - "description" : "Force ANSI output", - "shortcut" : "", - "accept_value" : false - }, - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "name" : "--verbose", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "help" : { - "shortcut" : "-h", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Display this help message", - "name" : "--help" - }, - "quiet" : { - "shortcut" : "-q", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--quiet", - "default" : false, - "description" : "Do not output any message" - }, - "version" : { - "is_value_required" : false, - "is_multiple" : false, - "description" : "Display this application version", - "default" : false, - "name" : "--version", - "shortcut" : "-V", - "accept_value" : false - }, - "no-interaction" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--no-interaction", - "default" : false, - "description" : "Do not ask any interactive question", - "shortcut" : "-n", - "accept_value" : false - } - }, - "arguments" : [] - }, - "usage" : [ - "msp:security:recaptcha:disable" - ], - "description" : "Disable backend reCaptcha", - "help" : "Disable backend reCaptcha" - }, - { - "help" : "Globally disable two factor auth", - "hidden" : false, - "name" : "msp:security:tfa:disable", - "usage" : [ - "msp:security:tfa:disable" - ], - "definition" : { - "arguments" : [], - "options" : { - "version" : { - "description" : "Display this application version", - "default" : false, - "name" : "--version", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-V" - }, - "no-interaction" : { - "accept_value" : false, - "shortcut" : "-n", - "description" : "Do not ask any interactive question", - "default" : false, - "name" : "--no-interaction", - "is_multiple" : false, - "is_value_required" : false - }, - "no-ansi" : { - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "" - }, - "verbose" : { - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "ansi" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--ansi", - "default" : false, - "description" : "Force ANSI output", - "shortcut" : "", - "accept_value" : false - }, - "quiet" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--quiet", - "description" : "Do not output any message", - "default" : false, - "shortcut" : "-q", - "accept_value" : false - }, - "help" : { - "is_value_required" : false, - "is_multiple" : false, - "description" : "Display this help message", - "default" : false, - "name" : "--help", - "shortcut" : "-h", - "accept_value" : false - } - } - }, - "description" : "Globally disable two factor auth" - }, - { - "help" : "List all available providers", - "description" : "List all available providers", - "definition" : { - "arguments" : [], - "options" : { - "no-ansi" : { - "accept_value" : false, - "shortcut" : "", - "description" : "Disable ANSI output", - "default" : false, - "name" : "--no-ansi", - "is_multiple" : false, - "is_value_required" : false - }, - "ansi" : { - "is_value_required" : false, - "is_multiple" : false, - "description" : "Force ANSI output", - "default" : false, - "name" : "--ansi", - "shortcut" : "", - "accept_value" : false - }, - "help" : { - "default" : false, - "description" : "Display this help message", - "name" : "--help", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-h" - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--verbose", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "quiet" : { - "accept_value" : false, - "shortcut" : "-q", - "name" : "--quiet", - "description" : "Do not output any message", - "default" : false, - "is_multiple" : false, - "is_value_required" : false - }, - "version" : { - "accept_value" : false, - "shortcut" : "-V", - "default" : false, - "description" : "Display this application version", - "name" : "--version", - "is_value_required" : false, - "is_multiple" : false - }, - "no-interaction" : { - "shortcut" : "-n", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction" - } - } - }, - "usage" : [ - "msp:security:tfa:providers" - ], - "name" : "msp:security:tfa:providers", - "hidden" : false - }, - { - "help" : "Reset configuration for one user", - "hidden" : false, - "name" : "msp:security:tfa:reset", - "definition" : { - "arguments" : { - "provider" : { - "description" : "Provider code", - "default" : null, - "name" : "provider", - "is_required" : true, - "is_array" : false - }, - "user" : { - "name" : "user", - "description" : "Username", - "default" : null, - "is_array" : false, - "is_required" : true - } - }, - "options" : { - "version" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--version", - "default" : false, - "description" : "Display this application version", - "shortcut" : "-V", - "accept_value" : false - }, - "no-interaction" : { - "shortcut" : "-n", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false - }, - "no-ansi" : { - "default" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "" - }, - "help" : { - "shortcut" : "-h", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "description" : "Display this help message", - "default" : false, - "name" : "--help" - }, - "ansi" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "default" : false, - "shortcut" : "", - "accept_value" : false - }, - "verbose" : { - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "name" : "--verbose", - "is_multiple" : false, - "is_value_required" : false - }, - "quiet" : { - "accept_value" : false, - "shortcut" : "-q", - "name" : "--quiet", - "default" : false, - "description" : "Do not output any message", - "is_value_required" : false, - "is_multiple" : false - } - } - }, - "usage" : [ - "msp:security:tfa:reset " - ], - "description" : "Reset configuration for one user" - }, - { - "help" : "Check the deploy queue for entries and create an appropriate deploy marker.", - "definition" : { - "options" : { - "no-ansi" : { - "name" : "--no-ansi", - "default" : false, - "description" : "Disable ANSI output", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "" - }, - "ansi" : { - "accept_value" : false, - "shortcut" : "", - "description" : "Force ANSI output", - "default" : false, - "name" : "--ansi", - "is_multiple" : false, - "is_value_required" : false - }, - "help" : { - "shortcut" : "-h", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Display this help message", - "name" : "--help" - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose" - }, - "quiet" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--quiet", - "default" : false, - "description" : "Do not output any message", - "shortcut" : "-q", - "accept_value" : false - }, - "version" : { - "name" : "--version", - "default" : false, - "description" : "Display this application version", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-V" - }, - "no-interaction" : { - "is_value_required" : false, - "is_multiple" : false, - "description" : "Do not ask any interactive question", - "default" : false, - "name" : "--no-interaction", - "shortcut" : "-n", - "accept_value" : false - } - }, - "arguments" : { - "change_log" : { - "is_array" : false, - "is_required" : true, - "name" : "change_log", - "description" : "Change Log?", - "default" : null - }, - "message" : { - "description" : "Deploy Message?", - "default" : null, - "name" : "message", - "is_array" : false, - "is_required" : true - }, - "user" : { - "description" : "Deployment User", - "default" : null, - "name" : "user", - "is_required" : false, - "is_array" : false - } - } - }, - "description" : "Check the deploy queue for entries and create an appropriate deploy marker.", - "usage" : [ - "newrelic:create:deploy-marker []" - ], - "hidden" : false, - "name" : "newrelic:create:deploy-marker" - }, - { - "help" : "This command shows list of MessageQueue consumers.", - "usage" : [ - "queue:consumers:list" - ], - "definition" : { - "options" : { - "ansi" : { - "accept_value" : false, - "shortcut" : "", - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "is_value_required" : false, - "is_multiple" : false - }, - "help" : { - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Display this help message", - "name" : "--help", - "shortcut" : "-h", - "accept_value" : false - }, - "verbose" : { - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "quiet" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--quiet", - "description" : "Do not output any message", - "default" : false, - "shortcut" : "-q", - "accept_value" : false - }, - "no-ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--no-ansi", - "default" : false, - "description" : "Disable ANSI output", - "is_value_required" : false, - "is_multiple" : false - }, - "no-interaction" : { - "shortcut" : "-n", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false - }, - "version" : { - "accept_value" : false, - "shortcut" : "-V", - "name" : "--version", - "description" : "Display this application version", - "default" : false, - "is_multiple" : false, - "is_value_required" : false - } - }, - "arguments" : [] - }, - "description" : "List of MessageQueue consumers", - "name" : "queue:consumers:list", - "hidden" : false - }, - { - "usage" : [ - "queue:consumers:start [--max-messages MAX-MESSAGES] [--batch-size BATCH-SIZE] [--area-code AREA-CODE] [--single-thread] [--pid-file-path PID-FILE-PATH] [--] " - ], - "definition" : { - "options" : { - "verbose" : { - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false - }, - "area-code" : { - "shortcut" : "", - "accept_value" : true, - "is_value_required" : true, - "is_multiple" : false, - "default" : null, - "description" : "The preferred area (global, adminhtml, etc...) default is global.", - "name" : "--area-code" - }, - "no-ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "description" : "Disable ANSI output", - "default" : false, - "name" : "--no-ansi" - }, - "max-messages" : { - "is_multiple" : false, - "is_value_required" : true, - "description" : "The number of messages to be processed by the consumer before process termination. If not specified - terminate after processing all queued messages.", - "default" : null, - "name" : "--max-messages", - "shortcut" : "", - "accept_value" : true - }, - "version" : { - "name" : "--version", - "default" : false, - "description" : "Display this application version", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-V" - }, - "quiet" : { - "is_multiple" : false, - "is_value_required" : false, - "description" : "Do not output any message", - "default" : false, - "name" : "--quiet", - "shortcut" : "-q", - "accept_value" : false - }, - "ansi" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "default" : false, - "shortcut" : "", - "accept_value" : false - }, - "help" : { - "default" : false, - "description" : "Display this help message", - "name" : "--help", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-h" - }, - "single-thread" : { - "description" : "This option prevents running multiple copies of one consumer simultaneously.", - "default" : false, - "name" : "--single-thread", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "" - }, - "batch-size" : { - "shortcut" : "", - "accept_value" : true, - "is_value_required" : true, - "is_multiple" : false, - "default" : null, - "description" : "The number of messages per batch. Applicable for the batch consumer only.", - "name" : "--batch-size" - }, - "no-interaction" : { - "shortcut" : "-n", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-interaction", - "default" : false, - "description" : "Do not ask any interactive question" - }, - "pid-file-path" : { - "is_value_required" : true, - "is_multiple" : false, - "description" : "The file path for saving PID (This option is deprecated, use --single-thread instead)", - "default" : null, - "name" : "--pid-file-path", - "shortcut" : "", - "accept_value" : true - } - }, - "arguments" : { - "consumer" : { - "description" : "The name of the consumer to be started.", - "default" : null, - "name" : "consumer", - "is_required" : true, - "is_array" : false - } - } - }, - "description" : "Start MessageQueue consumer", - "hidden" : false, - "name" : "queue:consumers:start", - "help" : "This command starts MessageQueue consumer by its name.\n\nTo start consumer which will process all queued messages and terminate execution:\n\n /var/www/html/magento2/bin/magento queue:consumers:start someConsumer\n\nTo specify the number of messages which should be processed by consumer before its termination:\n\n /var/www/html/magento2/bin/magento queue:consumers:start someConsumer --max-messages=50\n\nTo specify the number of messages per batch for the batch consumer:\n\n /var/www/html/magento2/bin/magento queue:consumers:start someConsumer --batch-size=500\n\nTo specify the preferred area:\n\n /var/www/html/magento2/bin/magento queue:consumers:start someConsumer --area-code='adminhtml'\n \nTo do not run multiple copies of one consumer simultaneously:\n\n /var/www/html/magento2/bin/magento queue:consumers:start someConsumer --single-thread'\n\nTo save PID enter path (This option is deprecated, use --single-thread instead):\n\n /var/www/html/magento2/bin/magento queue:consumers:start someConsumer --pid-file-path='/var/someConsumer.pid'" - }, - { - "hidden" : false, - "name" : "sampledata:deploy", - "definition" : { - "options" : { - "no-interaction" : { - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction", - "shortcut" : "-n", - "accept_value" : false - }, - "quiet" : { - "accept_value" : false, - "shortcut" : "-q", - "name" : "--quiet", - "description" : "Do not output any message", - "default" : false, - "is_multiple" : false, - "is_value_required" : false - }, - "ansi" : { - "name" : "--ansi", - "description" : "Force ANSI output", - "default" : false, - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "" - }, - "help" : { - "accept_value" : false, - "shortcut" : "-h", - "default" : false, - "description" : "Display this help message", - "name" : "--help", - "is_value_required" : false, - "is_multiple" : false - }, - "no-update" : { - "name" : "--no-update", - "description" : "Update composer.json without executing composer update", - "default" : false, - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "" - }, - "version" : { - "accept_value" : false, - "shortcut" : "-V", - "name" : "--version", - "default" : false, - "description" : "Display this application version", - "is_value_required" : false, - "is_multiple" : false - }, - "no-ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--no-ansi", - "default" : false, - "description" : "Disable ANSI output", - "is_multiple" : false, - "is_value_required" : false - }, - "verbose" : { - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "name" : "--verbose", - "is_multiple" : false, - "is_value_required" : false - } - }, - "arguments" : [] - }, - "usage" : [ - "sampledata:deploy [--no-update]" - ], - "description" : "Deploy sample data modules for composer-based Magento installations", - "help" : "Deploy sample data modules for composer-based Magento installations" - }, - { - "help" : "Remove all sample data packages from composer.json", - "hidden" : false, - "name" : "sampledata:remove", - "usage" : [ - "sampledata:remove [--no-update]" - ], - "definition" : { - "arguments" : [], - "options" : { - "no-interaction" : { - "default" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-n" - }, - "ansi" : { - "is_value_required" : false, - "is_multiple" : false, - "description" : "Force ANSI output", - "default" : false, - "name" : "--ansi", - "shortcut" : "", - "accept_value" : false - }, - "help" : { - "accept_value" : false, - "shortcut" : "-h", - "name" : "--help", - "default" : false, - "description" : "Display this help message", - "is_multiple" : false, - "is_value_required" : false - }, - "quiet" : { - "name" : "--quiet", - "default" : false, - "description" : "Do not output any message", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-q" - }, - "version" : { - "shortcut" : "-V", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Display this application version", - "name" : "--version" - }, - "no-update" : { - "shortcut" : "", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "description" : "Update composer.json without executing composer update", - "default" : false, - "name" : "--no-update" - }, - "no-ansi" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "shortcut" : "", - "accept_value" : false - }, - "verbose" : { - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false - } - } - }, - "description" : "Remove all sample data packages from composer.json" - }, - { - "hidden" : false, - "name" : "sampledata:reset", - "usage" : [ - "sampledata:reset" - ], - "definition" : { - "options" : { - "version" : { - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Display this application version", - "name" : "--version", - "shortcut" : "-V", - "accept_value" : false - }, - "no-interaction" : { - "accept_value" : false, - "shortcut" : "-n", - "name" : "--no-interaction", - "default" : false, - "description" : "Do not ask any interactive question", - "is_value_required" : false, - "is_multiple" : false - }, - "no-ansi" : { - "accept_value" : false, - "shortcut" : "", - "default" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_value_required" : false, - "is_multiple" : false - }, - "ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--ansi", - "default" : false, - "description" : "Force ANSI output", - "is_value_required" : false, - "is_multiple" : false - }, - "quiet" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--quiet", - "default" : false, - "description" : "Do not output any message", - "shortcut" : "-q", - "accept_value" : false - }, - "verbose" : { - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "help" : { - "accept_value" : false, - "shortcut" : "-h", - "description" : "Display this help message", - "default" : false, - "name" : "--help", - "is_value_required" : false, - "is_multiple" : false - } - }, - "arguments" : [] - }, - "description" : "Reset all sample data modules for re-installation", - "help" : "Reset all sample data modules for re-installation" - }, - { - "help" : "Takes backup of Magento Application code base, media and database", - "hidden" : false, - "name" : "setup:backup", - "definition" : { - "arguments" : [], - "options" : { - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "name" : "--verbose", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "no-ansi" : { - "is_multiple" : false, - "is_value_required" : false, - "description" : "Disable ANSI output", - "default" : false, - "name" : "--no-ansi", - "shortcut" : "", - "accept_value" : false - }, - "code" : { - "is_value_required" : false, - "is_multiple" : false, - "description" : "Take code and configuration files backup (excluding temporary files)", - "default" : false, - "name" : "--code", - "shortcut" : "", - "accept_value" : false - }, - "db" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--db", - "description" : "Take complete database backup", - "default" : false, - "is_value_required" : false, - "is_multiple" : false - }, - "media" : { - "shortcut" : "", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Take media backup", - "name" : "--media" - }, - "version" : { - "name" : "--version", - "description" : "Display this application version", - "default" : false, - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-V" - }, - "ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "description" : "Force ANSI output", - "default" : false, - "name" : "--ansi" - }, - "quiet" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--quiet", - "default" : false, - "description" : "Do not output any message", - "shortcut" : "-q", - "accept_value" : false - }, - "help" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--help", - "default" : false, - "description" : "Display this help message", - "shortcut" : "-h", - "accept_value" : false - }, - "magento-init-params" : { - "accept_value" : true, - "shortcut" : "", - "name" : "--magento-init-params", - "default" : null, - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "is_multiple" : false, - "is_value_required" : true - }, - "no-interaction" : { - "accept_value" : false, - "shortcut" : "-n", - "default" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction", - "is_value_required" : false, - "is_multiple" : false - } - } - }, - "usage" : [ - "setup:backup [--code] [--media] [--db] [--magento-init-params MAGENTO-INIT-PARAMS]" - ], - "description" : "Takes backup of Magento Application code base, media and database" - }, - { - "help" : "Creates or modifies the deployment configuration", - "name" : "setup:config:set", - "hidden" : false, - "usage" : [ - "setup:config:set [--amqp-host AMQP-HOST] [--amqp-port AMQP-PORT] [--amqp-user AMQP-USER] [--amqp-password AMQP-PASSWORD] [--amqp-virtualhost AMQP-VIRTUALHOST] [--amqp-ssl AMQP-SSL] [--amqp-ssl-options AMQP-SSL-OPTIONS] [--enable-debug-logging ENABLE-DEBUG-LOGGING] [--enable-syslog-logging ENABLE-SYSLOG-LOGGING] [--backend-frontname BACKEND-FRONTNAME] [--consumers-wait-for-messages CONSUMERS-WAIT-FOR-MESSAGES] [--key KEY] [--db-host DB-HOST] [--db-name DB-NAME] [--db-user DB-USER] [--db-engine DB-ENGINE] [--db-password DB-PASSWORD] [--db-prefix DB-PREFIX] [--db-model DB-MODEL] [--db-init-statements DB-INIT-STATEMENTS] [-s|--skip-db-validation] [--http-cache-hosts HTTP-CACHE-HOSTS] [--db-ssl-key DB-SSL-KEY] [--db-ssl-cert DB-SSL-CERT] [--db-ssl-ca DB-SSL-CA] [--db-ssl-verify] [--session-save SESSION-SAVE] [--session-save-redis-host SESSION-SAVE-REDIS-HOST] [--session-save-redis-port SESSION-SAVE-REDIS-PORT] [--session-save-redis-password SESSION-SAVE-REDIS-PASSWORD] [--session-save-redis-timeout SESSION-SAVE-REDIS-TIMEOUT] [--session-save-redis-persistent-id SESSION-SAVE-REDIS-PERSISTENT-ID] [--session-save-redis-db SESSION-SAVE-REDIS-DB] [--session-save-redis-compression-threshold SESSION-SAVE-REDIS-COMPRESSION-THRESHOLD] [--session-save-redis-compression-lib SESSION-SAVE-REDIS-COMPRESSION-LIB] [--session-save-redis-log-level SESSION-SAVE-REDIS-LOG-LEVEL] [--session-save-redis-max-concurrency SESSION-SAVE-REDIS-MAX-CONCURRENCY] [--session-save-redis-break-after-frontend SESSION-SAVE-REDIS-BREAK-AFTER-FRONTEND] [--session-save-redis-break-after-adminhtml SESSION-SAVE-REDIS-BREAK-AFTER-ADMINHTML] [--session-save-redis-first-lifetime SESSION-SAVE-REDIS-FIRST-LIFETIME] [--session-save-redis-bot-first-lifetime SESSION-SAVE-REDIS-BOT-FIRST-LIFETIME] [--session-save-redis-bot-lifetime SESSION-SAVE-REDIS-BOT-LIFETIME] [--session-save-redis-disable-locking SESSION-SAVE-REDIS-DISABLE-LOCKING] [--session-save-redis-min-lifetime SESSION-SAVE-REDIS-MIN-LIFETIME] [--session-save-redis-max-lifetime SESSION-SAVE-REDIS-MAX-LIFETIME] [--session-save-redis-sentinel-master SESSION-SAVE-REDIS-SENTINEL-MASTER] [--session-save-redis-sentinel-servers SESSION-SAVE-REDIS-SENTINEL-SERVERS] [--session-save-redis-sentinel-verify-master SESSION-SAVE-REDIS-SENTINEL-VERIFY-MASTER] [--session-save-redis-sentinel-connect-retires SESSION-SAVE-REDIS-SENTINEL-CONNECT-RETIRES] [--cache-backend CACHE-BACKEND] [--cache-backend-redis-server CACHE-BACKEND-REDIS-SERVER] [--cache-backend-redis-db CACHE-BACKEND-REDIS-DB] [--cache-backend-redis-port CACHE-BACKEND-REDIS-PORT] [--cache-backend-redis-password CACHE-BACKEND-REDIS-PASSWORD] [--cache-backend-redis-compress-data CACHE-BACKEND-REDIS-COMPRESS-DATA] [--cache-backend-redis-compression-lib CACHE-BACKEND-REDIS-COMPRESSION-LIB] [--cache-id-prefix CACHE-ID-PREFIX] [--page-cache PAGE-CACHE] [--page-cache-redis-server PAGE-CACHE-REDIS-SERVER] [--page-cache-redis-db PAGE-CACHE-REDIS-DB] [--page-cache-redis-port PAGE-CACHE-REDIS-PORT] [--page-cache-redis-password PAGE-CACHE-REDIS-PASSWORD] [--page-cache-redis-compress-data PAGE-CACHE-REDIS-COMPRESS-DATA] [--page-cache-redis-compression-lib PAGE-CACHE-REDIS-COMPRESSION-LIB] [--page-cache-id-prefix PAGE-CACHE-ID-PREFIX] [--lock-provider LOCK-PROVIDER] [--lock-db-prefix LOCK-DB-PREFIX] [--lock-zookeeper-host LOCK-ZOOKEEPER-HOST] [--lock-zookeeper-path LOCK-ZOOKEEPER-PATH] [--lock-file-path LOCK-FILE-PATH] [--magento-init-params MAGENTO-INIT-PARAMS]" - ], - "definition" : { - "options" : { - "page-cache-redis-db" : { - "is_multiple" : false, - "is_value_required" : true, - "default" : null, - "description" : "Database number for the cache", - "name" : "--page-cache-redis-db", - "shortcut" : "", - "accept_value" : true - }, - "cache-backend-redis-password" : { - "default" : null, - "description" : "Redis server password", - "name" : "--cache-backend-redis-password", - "is_multiple" : false, - "is_value_required" : true, - "accept_value" : true, - "shortcut" : "" - }, - "db-host" : { - "is_value_required" : true, - "is_multiple" : false, - "default" : null, - "description" : "Database server host", - "name" : "--db-host", - "shortcut" : "", - "accept_value" : true - }, - "page-cache-redis-password" : { - "accept_value" : true, - "shortcut" : "", - "name" : "--page-cache-redis-password", - "default" : null, - "description" : "Redis server password", - "is_value_required" : true, - "is_multiple" : false - }, - "session-save-redis-bot-first-lifetime" : { - "is_multiple" : false, - "is_value_required" : true, - "name" : "--session-save-redis-bot-first-lifetime", - "description" : "Lifetime, in seconds, of session for bots on the first write (use 0 to disable)", - "default" : null, - "shortcut" : "", - "accept_value" : true - }, - "session-save" : { - "is_value_required" : true, - "is_multiple" : false, - "default" : null, - "description" : "Session save handler", - "name" : "--session-save", - "shortcut" : "", - "accept_value" : true - }, - "page-cache" : { - "name" : "--page-cache", - "description" : "Default cache handler", - "default" : null, - "is_multiple" : false, - "is_value_required" : true, - "accept_value" : true, - "shortcut" : "" - }, - "amqp-ssl" : { - "shortcut" : "", - "accept_value" : true, - "is_value_required" : true, - "is_multiple" : false, - "name" : "--amqp-ssl", - "description" : "Amqp SSL", - "default" : "" - }, - "enable-syslog-logging" : { - "shortcut" : "", - "accept_value" : true, - "is_multiple" : false, - "is_value_required" : true, - "name" : "--enable-syslog-logging", - "default" : null, - "description" : "Enable syslog logging" - }, - "db-model" : { - "accept_value" : true, - "shortcut" : "", - "description" : "Database type", - "default" : null, - "name" : "--db-model", - "is_value_required" : true, - "is_multiple" : false - }, - "session-save-redis-min-lifetime" : { - "is_value_required" : true, - "is_multiple" : false, - "name" : "--session-save-redis-min-lifetime", - "default" : null, - "description" : "Redis min session lifetime, in seconds", - "shortcut" : "", - "accept_value" : true - }, - "verbose" : { - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "is_value_required" : false, - "is_multiple" : false - }, - "session-save-redis-bot-lifetime" : { - "shortcut" : "", - "accept_value" : true, - "is_value_required" : true, - "is_multiple" : false, - "default" : null, - "description" : "Lifetime of session for bots on subsequent writes (use 0 to disable)", - "name" : "--session-save-redis-bot-lifetime" - }, - "db-prefix" : { - "description" : "Database table prefix", - "default" : null, - "name" : "--db-prefix", - "is_value_required" : true, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "" - }, - "session-save-redis-break-after-frontend" : { - "accept_value" : true, - "shortcut" : "", - "default" : null, - "description" : "Number of seconds to wait before trying to break a lock for frontend session", - "name" : "--session-save-redis-break-after-frontend", - "is_multiple" : false, - "is_value_required" : true - }, - "version" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--version", - "default" : false, - "description" : "Display this application version", - "shortcut" : "-V", - "accept_value" : false - }, - "cache-backend-redis-server" : { - "accept_value" : true, - "shortcut" : "", - "description" : "Redis server", - "default" : null, - "name" : "--cache-backend-redis-server", - "is_value_required" : true, - "is_multiple" : false - }, - "db-ssl-ca" : { - "description" : "Full path of server certificate file in order to establish db connection through SSL", - "default" : "", - "name" : "--db-ssl-ca", - "is_value_required" : true, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "" - }, - "session-save-redis-timeout" : { - "is_value_required" : true, - "is_multiple" : false, - "name" : "--session-save-redis-timeout", - "description" : "Connection timeout, in seconds", - "default" : null, - "shortcut" : "", - "accept_value" : true - }, - "session-save-redis-max-lifetime" : { - "shortcut" : "", - "accept_value" : true, - "is_value_required" : true, - "is_multiple" : false, - "name" : "--session-save-redis-max-lifetime", - "description" : "Redis max session lifetime, in seconds", - "default" : null - }, - "cache-backend-redis-compression-lib" : { - "name" : "--cache-backend-redis-compression-lib", - "description" : "Compression lib to use [snappy,lzf,l4z,zstd,gzip] (leave blank to determine automatically)", - "default" : null, - "is_value_required" : true, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "" - }, - "session-save-redis-port" : { - "name" : "--session-save-redis-port", - "default" : null, - "description" : "Redis server listen port", - "is_multiple" : false, - "is_value_required" : true, - "accept_value" : true, - "shortcut" : "" - }, - "amqp-ssl-options" : { - "accept_value" : true, - "shortcut" : "", - "name" : "--amqp-ssl-options", - "default" : "", - "description" : "Amqp SSL Options (JSON)", - "is_multiple" : false, - "is_value_required" : true - }, - "session-save-redis-sentinel-connect-retires" : { - "shortcut" : "", - "accept_value" : true, - "is_value_required" : true, - "is_multiple" : false, - "description" : "Redis Sentinel connect retries.", - "default" : null, - "name" : "--session-save-redis-sentinel-connect-retires" - }, - "page-cache-redis-server" : { - "shortcut" : "", - "accept_value" : true, - "is_multiple" : false, - "is_value_required" : true, - "name" : "--page-cache-redis-server", - "description" : "Redis server", - "default" : null - }, - "amqp-user" : { - "name" : "--amqp-user", - "default" : "", - "description" : "Amqp server username", - "is_multiple" : false, - "is_value_required" : true, - "accept_value" : true, - "shortcut" : "" - }, - "session-save-redis-disable-locking" : { - "shortcut" : "", - "accept_value" : true, - "is_value_required" : true, - "is_multiple" : false, - "name" : "--session-save-redis-disable-locking", - "description" : "Redis disable locking. Values: false (default), true", - "default" : null - }, - "quiet" : { - "shortcut" : "-q", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "description" : "Do not output any message", - "default" : false, - "name" : "--quiet" - }, - "magento-init-params" : { - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "default" : null, - "name" : "--magento-init-params", - "is_multiple" : false, - "is_value_required" : true, - "accept_value" : true, - "shortcut" : "" - }, - "cache-backend" : { - "name" : "--cache-backend", - "description" : "Default cache handler", - "default" : null, - "is_value_required" : true, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "" - }, - "enable-debug-logging" : { - "is_multiple" : false, - "is_value_required" : true, - "default" : null, - "description" : "Enable debug logging", - "name" : "--enable-debug-logging", - "shortcut" : "", - "accept_value" : true - }, - "lock-zookeeper-host" : { - "shortcut" : "", - "accept_value" : true, - "is_value_required" : true, - "is_multiple" : false, - "default" : null, - "description" : "Host and port to connect to Zookeeper cluster. For example: 127.0.0.1:2181", - "name" : "--lock-zookeeper-host" - }, - "amqp-host" : { - "is_value_required" : true, - "is_multiple" : false, - "default" : "", - "description" : "Amqp server host", - "name" : "--amqp-host", - "shortcut" : "", - "accept_value" : true - }, - "session-save-redis-compression-lib" : { - "is_value_required" : true, - "is_multiple" : false, - "default" : null, - "description" : "Redis compression library. Values: gzip (default), lzf, lz4, snappy", - "name" : "--session-save-redis-compression-lib", - "shortcut" : "", - "accept_value" : true - }, - "session-save-redis-sentinel-verify-master" : { - "accept_value" : true, - "shortcut" : "", - "name" : "--session-save-redis-sentinel-verify-master", - "description" : "Redis Sentinel verify master. Values: false (default), true", - "default" : null, - "is_value_required" : true, - "is_multiple" : false - }, - "session-save-redis-sentinel-servers" : { - "is_value_required" : true, - "is_multiple" : false, - "name" : "--session-save-redis-sentinel-servers", - "default" : null, - "description" : "Redis Sentinel servers, comma separated", - "shortcut" : "", - "accept_value" : true - }, - "key" : { - "accept_value" : true, - "shortcut" : "", - "name" : "--key", - "default" : null, - "description" : "Encryption key", - "is_multiple" : false, - "is_value_required" : true - }, - "session-save-redis-password" : { - "name" : "--session-save-redis-password", - "description" : "Redis server password", - "default" : null, - "is_multiple" : false, - "is_value_required" : true, - "accept_value" : true, - "shortcut" : "" - }, - "db-ssl-key" : { - "name" : "--db-ssl-key", - "default" : "", - "description" : "Full path of client key file in order to establish db connection through SSL", - "is_value_required" : true, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "" - }, - "lock-zookeeper-path" : { - "description" : "The path where Zookeeper will save locks. The default path is: /magento/locks", - "default" : null, - "name" : "--lock-zookeeper-path", - "is_value_required" : true, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "" - }, - "session-save-redis-log-level" : { - "shortcut" : "", - "accept_value" : true, - "is_multiple" : false, - "is_value_required" : true, - "name" : "--session-save-redis-log-level", - "default" : null, - "description" : "Redis log level. Values: 0 (least verbose) to 7 (most verbose)" - }, - "db-engine" : { - "accept_value" : true, - "shortcut" : "", - "name" : "--db-engine", - "default" : null, - "description" : "Database server engine", - "is_multiple" : false, - "is_value_required" : true - }, - "cache-backend-redis-db" : { - "accept_value" : true, - "shortcut" : "", - "description" : "Database number for the cache", - "default" : null, - "name" : "--cache-backend-redis-db", - "is_value_required" : true, - "is_multiple" : false - }, - "page-cache-redis-compress-data" : { - "accept_value" : true, - "shortcut" : "", - "name" : "--page-cache-redis-compress-data", - "default" : null, - "description" : "Set to 1 to compress the full page cache (use 0 to disable)", - "is_value_required" : true, - "is_multiple" : false - }, - "http-cache-hosts" : { - "is_multiple" : false, - "is_value_required" : true, - "name" : "--http-cache-hosts", - "default" : null, - "description" : "http Cache hosts", - "shortcut" : "", - "accept_value" : true - }, - "ansi" : { - "description" : "Force ANSI output", - "default" : false, - "name" : "--ansi", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "" - }, - "amqp-password" : { - "name" : "--amqp-password", - "description" : "Amqp server password", - "default" : "", - "is_value_required" : true, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "" - }, - "session-save-redis-host" : { - "accept_value" : true, - "shortcut" : "", - "name" : "--session-save-redis-host", - "default" : null, - "description" : "Fully qualified host name, IP address, or absolute path if using UNIX sockets", - "is_multiple" : false, - "is_value_required" : true - }, - "skip-db-validation" : { - "accept_value" : false, - "shortcut" : "-s", - "name" : "--skip-db-validation", - "default" : false, - "description" : "If specified, then db connection validation will be skipped", - "is_value_required" : false, - "is_multiple" : false - }, - "session-save-redis-sentinel-master" : { - "accept_value" : true, - "shortcut" : "", - "description" : "Redis Sentinel master", - "default" : null, - "name" : "--session-save-redis-sentinel-master", - "is_value_required" : true, - "is_multiple" : false - }, - "lock-file-path" : { - "name" : "--lock-file-path", - "description" : "The path where file locks will be saved.", - "default" : null, - "is_value_required" : true, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "" - }, - "db-ssl-cert" : { - "accept_value" : true, - "shortcut" : "", - "default" : "", - "description" : "Full path of client certificate file in order to establish db connection through SSL", - "name" : "--db-ssl-cert", - "is_value_required" : true, - "is_multiple" : false - }, - "cache-backend-redis-port" : { - "description" : "Redis server listen port", - "default" : null, - "name" : "--cache-backend-redis-port", - "is_multiple" : false, - "is_value_required" : true, - "accept_value" : true, - "shortcut" : "" - }, - "db-user" : { - "shortcut" : "", - "accept_value" : true, - "is_value_required" : true, - "is_multiple" : false, - "default" : null, - "description" : "Database server username", - "name" : "--db-user" - }, - "help" : { - "name" : "--help", - "description" : "Display this help message", - "default" : false, - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-h" - }, - "amqp-port" : { - "is_multiple" : false, - "is_value_required" : true, - "name" : "--amqp-port", - "description" : "Amqp server port", - "default" : "5672", - "shortcut" : "", - "accept_value" : true - }, - "session-save-redis-first-lifetime" : { - "is_value_required" : true, - "is_multiple" : false, - "description" : "Lifetime, in seconds, of session for non-bots on the first write (use 0 to disable)", - "default" : null, - "name" : "--session-save-redis-first-lifetime", - "shortcut" : "", - "accept_value" : true - }, - "no-ansi" : { - "name" : "--no-ansi", - "default" : false, - "description" : "Disable ANSI output", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "" - }, - "session-save-redis-break-after-adminhtml" : { - "is_multiple" : false, - "is_value_required" : true, - "name" : "--session-save-redis-break-after-adminhtml", - "description" : "Number of seconds to wait before trying to break a lock for Admin session", - "default" : null, - "shortcut" : "", - "accept_value" : true - }, - "lock-db-prefix" : { - "is_value_required" : true, - "is_multiple" : false, - "description" : "Installation specific lock prefix to avoid lock conflicts", - "default" : null, - "name" : "--lock-db-prefix", - "shortcut" : "", - "accept_value" : true - }, - "db-name" : { - "shortcut" : "", - "accept_value" : true, - "is_value_required" : true, - "is_multiple" : false, - "default" : null, - "description" : "Database name", - "name" : "--db-name" - }, - "db-init-statements" : { - "name" : "--db-init-statements", - "description" : "Database initial set of commands", - "default" : null, - "is_multiple" : false, - "is_value_required" : true, - "accept_value" : true, - "shortcut" : "" - }, - "backend-frontname" : { - "name" : "--backend-frontname", - "description" : "Backend frontname (will be autogenerated if missing)", - "default" : null, - "is_value_required" : true, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "" - }, - "db-password" : { - "accept_value" : true, - "shortcut" : "", - "name" : "--db-password", - "description" : "Database server password", - "default" : null, - "is_value_required" : true, - "is_multiple" : false - }, - "cache-backend-redis-compress-data" : { - "accept_value" : true, - "shortcut" : "", - "default" : null, - "description" : "Set to 0 to disable compression (default is 1, enabled)", - "name" : "--cache-backend-redis-compress-data", - "is_multiple" : false, - "is_value_required" : true - }, - "session-save-redis-db" : { - "description" : "Redis database number", - "default" : null, - "name" : "--session-save-redis-db", - "is_multiple" : false, - "is_value_required" : true, - "accept_value" : true, - "shortcut" : "" - }, - "lock-provider" : { - "accept_value" : true, - "shortcut" : "", - "description" : "Lock provider name", - "default" : null, - "name" : "--lock-provider", - "is_value_required" : true, - "is_multiple" : false - }, - "page-cache-redis-compression-lib" : { - "accept_value" : true, - "shortcut" : "", - "name" : "--page-cache-redis-compression-lib", - "description" : "Compression library to use [snappy,lzf,l4z,zstd,gzip] (leave blank to determine automatically)", - "default" : null, - "is_multiple" : false, - "is_value_required" : true - }, - "session-save-redis-persistent-id" : { - "shortcut" : "", - "accept_value" : true, - "is_value_required" : true, - "is_multiple" : false, - "name" : "--session-save-redis-persistent-id", - "description" : "Unique string to enable persistent connections", - "default" : null - }, - "consumers-wait-for-messages" : { - "description" : "Should consumers wait for a message from the queue? 1 - Yes, 0 - No", - "default" : null, - "name" : "--consumers-wait-for-messages", - "is_multiple" : false, - "is_value_required" : true, - "accept_value" : true, - "shortcut" : "" - }, - "cache-id-prefix" : { - "shortcut" : "", - "accept_value" : true, - "is_multiple" : false, - "is_value_required" : true, - "default" : null, - "description" : "ID prefix for cache keys", - "name" : "--cache-id-prefix" - }, - "amqp-virtualhost" : { - "default" : "/", - "description" : "Amqp virtualhost", - "name" : "--amqp-virtualhost", - "is_value_required" : true, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "" - }, - "session-save-redis-compression-threshold" : { - "name" : "--session-save-redis-compression-threshold", - "default" : null, - "description" : "Redis compression threshold", - "is_multiple" : false, - "is_value_required" : true, - "accept_value" : true, - "shortcut" : "" - }, - "page-cache-id-prefix" : { - "accept_value" : true, - "shortcut" : "", - "name" : "--page-cache-id-prefix", - "default" : null, - "description" : "ID prefix for cache keys", - "is_value_required" : true, - "is_multiple" : false - }, - "db-ssl-verify" : { - "shortcut" : "", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--db-ssl-verify", - "description" : "Verify server certification", - "default" : false - }, - "page-cache-redis-port" : { - "is_multiple" : false, - "is_value_required" : true, - "name" : "--page-cache-redis-port", - "default" : null, - "description" : "Redis server listen port", - "shortcut" : "", - "accept_value" : true - }, - "session-save-redis-max-concurrency" : { - "shortcut" : "", - "accept_value" : true, - "is_multiple" : false, - "is_value_required" : true, - "name" : "--session-save-redis-max-concurrency", - "description" : "Maximum number of processes that can wait for a lock on one session", - "default" : null - }, - "no-interaction" : { - "accept_value" : false, - "shortcut" : "-n", - "name" : "--no-interaction", - "default" : false, - "description" : "Do not ask any interactive question", - "is_value_required" : false, - "is_multiple" : false - } - }, - "arguments" : [] - }, - "description" : "Creates or modifies the deployment configuration" - }, - { - "help" : "Runs cron job scheduled for setup application", - "hidden" : false, - "name" : "setup:cron:run", - "definition" : { - "options" : { - "verbose" : { - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false - }, - "no-ansi" : { - "description" : "Disable ANSI output", - "default" : false, - "name" : "--no-ansi", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "" - }, - "version" : { - "default" : false, - "description" : "Display this application version", - "name" : "--version", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-V" - }, - "magento-init-params" : { - "name" : "--magento-init-params", - "default" : null, - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "is_multiple" : false, - "is_value_required" : true, - "accept_value" : true, - "shortcut" : "" - }, - "quiet" : { - "description" : "Do not output any message", - "default" : false, - "name" : "--quiet", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-q" - }, - "ansi" : { - "name" : "--ansi", - "default" : false, - "description" : "Force ANSI output", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "" - }, - "help" : { - "shortcut" : "-h", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--help", - "default" : false, - "description" : "Display this help message" - }, - "no-interaction" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-interaction", - "default" : false, - "description" : "Do not ask any interactive question", - "shortcut" : "-n", - "accept_value" : false - } - }, - "arguments" : [] - }, - "description" : "Runs cron job scheduled for setup application", - "usage" : [ - "setup:cron:run [--magento-init-params MAGENTO-INIT-PARAMS]" - ] - }, - { - "help" : "Installs and upgrades data in the DB", - "name" : "setup:db-data:upgrade", - "hidden" : false, - "usage" : [ - "setup:db-data:upgrade [--magento-init-params MAGENTO-INIT-PARAMS]" - ], - "definition" : { - "options" : { - "no-interaction" : { - "accept_value" : false, - "shortcut" : "-n", - "name" : "--no-interaction", - "default" : false, - "description" : "Do not ask any interactive question", - "is_value_required" : false, - "is_multiple" : false - }, - "magento-init-params" : { - "shortcut" : "", - "accept_value" : true, - "is_multiple" : false, - "is_value_required" : true, - "name" : "--magento-init-params", - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "default" : null - }, - "help" : { - "description" : "Display this help message", - "default" : false, - "name" : "--help", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-h" - }, - "ansi" : { - "description" : "Force ANSI output", - "default" : false, - "name" : "--ansi", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "" - }, - "quiet" : { - "accept_value" : false, - "shortcut" : "-q", - "description" : "Do not output any message", - "default" : false, - "name" : "--quiet", - "is_value_required" : false, - "is_multiple" : false - }, - "version" : { - "name" : "--version", - "description" : "Display this application version", - "default" : false, - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-V" - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false - }, - "no-ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "description" : "Disable ANSI output", - "default" : false, - "name" : "--no-ansi" - } - }, - "arguments" : [] - }, - "description" : "Installs and upgrades data in the DB" - }, - { - "description" : "Generate patch and put it in specific folder.", - "definition" : { - "options" : { - "revertable" : { - "name" : "--revertable", - "default" : false, - "description" : "Check whether patch is revertable or not.", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : true, - "shortcut" : "" - }, - "ansi" : { - "is_value_required" : false, - "is_multiple" : false, - "description" : "Force ANSI output", - "default" : false, - "name" : "--ansi", - "shortcut" : "", - "accept_value" : false - }, - "help" : { - "accept_value" : false, - "shortcut" : "-h", - "name" : "--help", - "default" : false, - "description" : "Display this help message", - "is_multiple" : false, - "is_value_required" : false - }, - "quiet" : { - "shortcut" : "-q", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Do not output any message", - "name" : "--quiet" - }, - "no-interaction" : { - "description" : "Do not ask any interactive question", - "default" : false, - "name" : "--no-interaction", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-n" - }, - "type" : { - "accept_value" : true, - "shortcut" : "", - "description" : "Find out what type of patch should be generated. Available values: `data`, `schema`.", - "default" : "data", - "name" : "--type", - "is_multiple" : false, - "is_value_required" : false - }, - "no-ansi" : { - "description" : "Disable ANSI output", - "default" : false, - "name" : "--no-ansi", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "" - }, - "verbose" : { - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "is_multiple" : false, - "is_value_required" : false - }, - "version" : { - "default" : false, - "description" : "Display this application version", - "name" : "--version", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-V" - } - }, - "arguments" : { - "patch" : { - "is_required" : true, - "is_array" : false, - "default" : null, - "description" : "Patch name", - "name" : "patch" - }, - "module" : { - "name" : "module", - "default" : null, - "description" : "Module name", - "is_array" : false, - "is_required" : true - } - } - }, - "usage" : [ - "setup:db-declaration:generate-patch [--revertable [REVERTABLE]] [--type [TYPE]] [--] " - ], - "name" : "setup:db-declaration:generate-patch", - "hidden" : false, - "help" : "Generate patch and put it in specific folder." - }, - { - "definition" : { - "options" : { - "version" : { - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Display this application version", - "name" : "--version", - "shortcut" : "-V", - "accept_value" : false - }, - "module-name" : { - "name" : "--module-name", - "description" : "Name of the module where whitelist will be generated", - "default" : "all", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "" - }, - "no-ansi" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "shortcut" : "", - "accept_value" : false - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--verbose", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "no-interaction" : { - "shortcut" : "-n", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false - }, - "ansi" : { - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "shortcut" : "", - "accept_value" : false - }, - "quiet" : { - "shortcut" : "-q", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "description" : "Do not output any message", - "default" : false, - "name" : "--quiet" - }, - "help" : { - "accept_value" : false, - "shortcut" : "-h", - "name" : "--help", - "default" : false, - "description" : "Display this help message", - "is_multiple" : false, - "is_value_required" : false - } - }, - "arguments" : [] - }, - "usage" : [ - "setup:db-declaration:generate-whitelist [--module-name [MODULE-NAME]]" - ], - "description" : "Generate whitelist of tables and columns that are allowed to be edited by declaration installer", - "name" : "setup:db-declaration:generate-whitelist", - "hidden" : false, - "help" : "Generate whitelist of tables and columns that are allowed to be edited by declaration installer" - }, - { - "help" : "Installs and upgrades the DB schema", - "hidden" : false, - "name" : "setup:db-schema:upgrade", - "definition" : { - "options" : { - "verbose" : { - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "is_value_required" : false, - "is_multiple" : false - }, - "no-ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--no-ansi", - "default" : false, - "description" : "Disable ANSI output", - "is_value_required" : false, - "is_multiple" : false - }, - "convert-old-scripts" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--convert-old-scripts", - "description" : "Allows to convert old scripts (InstallSchema, UpgradeSchema) to db_schema.xml format", - "default" : false, - "shortcut" : "", - "accept_value" : true - }, - "version" : { - "shortcut" : "-V", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--version", - "default" : false, - "description" : "Display this application version" - }, - "help" : { - "shortcut" : "-h", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Display this help message", - "name" : "--help" - }, - "ansi" : { - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "" - }, - "quiet" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--quiet", - "description" : "Do not output any message", - "default" : false, - "shortcut" : "-q", - "accept_value" : false - }, - "magento-init-params" : { - "accept_value" : true, - "shortcut" : "", - "default" : null, - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "name" : "--magento-init-params", - "is_value_required" : true, - "is_multiple" : false - }, - "no-interaction" : { - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction", - "shortcut" : "-n", - "accept_value" : false - } - }, - "arguments" : [] - }, - "usage" : [ - "setup:db-schema:upgrade [--convert-old-scripts [CONVERT-OLD-SCRIPTS]] [--magento-init-params MAGENTO-INIT-PARAMS]" - ], - "description" : "Installs and upgrades the DB schema" - }, - { - "hidden" : false, - "name" : "setup:db:status", - "definition" : { - "arguments" : [], - "options" : { - "magento-init-params" : { - "shortcut" : "", - "accept_value" : true, - "is_multiple" : false, - "is_value_required" : true, - "name" : "--magento-init-params", - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "default" : null - }, - "ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "default" : false - }, - "quiet" : { - "shortcut" : "-q", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--quiet", - "description" : "Do not output any message", - "default" : false - }, - "help" : { - "name" : "--help", - "description" : "Display this help message", - "default" : false, - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-h" - }, - "no-interaction" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false, - "shortcut" : "-n", - "accept_value" : false - }, - "verbose" : { - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "name" : "--verbose", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "no-ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "is_value_required" : false, - "is_multiple" : false - }, - "version" : { - "is_multiple" : false, - "is_value_required" : false, - "description" : "Display this application version", - "default" : false, - "name" : "--version", - "shortcut" : "-V", - "accept_value" : false - } - } - }, - "usage" : [ - "setup:db:status [--magento-init-params MAGENTO-INIT-PARAMS]" - ], - "description" : "Checks if DB schema or data requires upgrade", - "help" : "Checks if DB schema or data requires upgrade" - }, - { - "help" : "Generates DI configuration and all missing classes that can be auto-generated", - "name" : "setup:di:compile", - "hidden" : false, - "definition" : { - "arguments" : [], - "options" : { - "ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--ansi", - "description" : "Force ANSI output", - "default" : false, - "is_multiple" : false, - "is_value_required" : false - }, - "quiet" : { - "accept_value" : false, - "shortcut" : "-q", - "description" : "Do not output any message", - "default" : false, - "name" : "--quiet", - "is_multiple" : false, - "is_value_required" : false - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false - }, - "help" : { - "name" : "--help", - "description" : "Display this help message", - "default" : false, - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-h" - }, - "no-ansi" : { - "default" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "" - }, - "no-interaction" : { - "shortcut" : "-n", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction" - }, - "version" : { - "is_multiple" : false, - "is_value_required" : false, - "description" : "Display this application version", - "default" : false, - "name" : "--version", - "shortcut" : "-V", - "accept_value" : false - } - } - }, - "usage" : [ - "setup:di:compile" - ], - "description" : "Generates DI configuration and all missing classes that can be auto-generated" - }, - { - "definition" : { - "options" : { - "page-cache-redis-compression-lib" : { - "shortcut" : "", - "accept_value" : true, - "is_value_required" : true, - "is_multiple" : false, - "default" : null, - "description" : "Compression library to use [snappy,lzf,l4z,zstd,gzip] (leave blank to determine automatically)", - "name" : "--page-cache-redis-compression-lib" - }, - "lock-provider" : { - "accept_value" : true, - "shortcut" : "", - "name" : "--lock-provider", - "default" : null, - "description" : "Lock provider name", - "is_value_required" : true, - "is_multiple" : false - }, - "session-save-redis-db" : { - "is_multiple" : false, - "is_value_required" : true, - "description" : "Redis database number", - "default" : null, - "name" : "--session-save-redis-db", - "shortcut" : "", - "accept_value" : true - }, - "backend-frontname" : { - "accept_value" : true, - "shortcut" : "", - "name" : "--backend-frontname", - "description" : "Backend frontname (will be autogenerated if missing)", - "default" : null, - "is_multiple" : false, - "is_value_required" : true - }, - "db-password" : { - "shortcut" : "", - "accept_value" : true, - "is_value_required" : true, - "is_multiple" : false, - "description" : "Database server password", - "default" : null, - "name" : "--db-password" - }, - "cache-backend-redis-compress-data" : { - "shortcut" : "", - "accept_value" : true, - "is_value_required" : true, - "is_multiple" : false, - "description" : "Set to 0 to disable compression (default is 1, enabled)", - "default" : null, - "name" : "--cache-backend-redis-compress-data" - }, - "no-ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false - }, - "db-init-statements" : { - "shortcut" : "", - "accept_value" : true, - "is_multiple" : false, - "is_value_required" : true, - "default" : null, - "description" : "Database initial set of commands", - "name" : "--db-init-statements" - }, - "lock-db-prefix" : { - "is_multiple" : false, - "is_value_required" : true, - "description" : "Installation specific lock prefix to avoid lock conflicts", - "default" : null, - "name" : "--lock-db-prefix", - "shortcut" : "", - "accept_value" : true - }, - "session-save-redis-break-after-adminhtml" : { - "is_value_required" : true, - "is_multiple" : false, - "name" : "--session-save-redis-break-after-adminhtml", - "description" : "Number of seconds to wait before trying to break a lock for Admin session", - "default" : null, - "shortcut" : "", - "accept_value" : true - }, - "db-name" : { - "name" : "--db-name", - "description" : "Database name", - "default" : null, - "is_value_required" : true, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "" - }, - "no-interaction" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-interaction", - "default" : false, - "description" : "Do not ask any interactive question", - "shortcut" : "-n", - "accept_value" : false - }, - "db-ssl-verify" : { - "description" : "Verify server certification", - "default" : false, - "name" : "--db-ssl-verify", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "" - }, - "session-save-redis-compression-threshold" : { - "is_multiple" : false, - "is_value_required" : true, - "name" : "--session-save-redis-compression-threshold", - "description" : "Redis compression threshold", - "default" : null, - "shortcut" : "", - "accept_value" : true - }, - "page-cache-id-prefix" : { - "default" : null, - "description" : "ID prefix for cache keys", - "name" : "--page-cache-id-prefix", - "is_value_required" : true, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "" - }, - "session-save-redis-max-concurrency" : { - "default" : null, - "description" : "Maximum number of processes that can wait for a lock on one session", - "name" : "--session-save-redis-max-concurrency", - "is_value_required" : true, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "" - }, - "cleanup-database" : { - "description" : "Cleanup the database before installation", - "default" : false, - "name" : "--cleanup-database", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "" - }, - "page-cache-redis-port" : { - "is_multiple" : false, - "is_value_required" : true, - "name" : "--page-cache-redis-port", - "default" : null, - "description" : "Redis server listen port", - "shortcut" : "", - "accept_value" : true - }, - "amqp-virtualhost" : { - "accept_value" : true, - "shortcut" : "", - "default" : "/", - "description" : "Amqp virtualhost", - "name" : "--amqp-virtualhost", - "is_value_required" : true, - "is_multiple" : false - }, - "session-save-redis-persistent-id" : { - "is_multiple" : false, - "is_value_required" : true, - "name" : "--session-save-redis-persistent-id", - "description" : "Unique string to enable persistent connections", - "default" : null, - "shortcut" : "", - "accept_value" : true - }, - "cache-id-prefix" : { - "is_value_required" : true, - "is_multiple" : false, - "description" : "ID prefix for cache keys", - "default" : null, - "name" : "--cache-id-prefix", - "shortcut" : "", - "accept_value" : true - }, - "consumers-wait-for-messages" : { - "is_value_required" : true, - "is_multiple" : false, - "default" : null, - "description" : "Should consumers wait for a message from the queue? 1 - Yes, 0 - No", - "name" : "--consumers-wait-for-messages", - "shortcut" : "", - "accept_value" : true - }, - "language" : { - "accept_value" : true, - "shortcut" : "", - "name" : "--language", - "description" : "Default language code. Deprecated, use config:set with path general/locale/code", - "default" : null, - "is_multiple" : false, - "is_value_required" : true - }, - "session-save-redis-host" : { - "is_value_required" : true, - "is_multiple" : false, - "description" : "Fully qualified host name, IP address, or absolute path if using UNIX sockets", - "default" : null, - "name" : "--session-save-redis-host", - "shortcut" : "", - "accept_value" : true - }, - "ansi" : { - "accept_value" : false, - "shortcut" : "", - "description" : "Force ANSI output", - "default" : false, - "name" : "--ansi", - "is_multiple" : false, - "is_value_required" : false - }, - "base-url-secure" : { - "shortcut" : "", - "accept_value" : true, - "is_value_required" : true, - "is_multiple" : false, - "name" : "--base-url-secure", - "default" : null, - "description" : "Base URL for SSL connection. Deprecated, use config:set with path web/secure/base_url" - }, - "amqp-password" : { - "is_value_required" : true, - "is_multiple" : false, - "default" : "", - "description" : "Amqp server password", - "name" : "--amqp-password", - "shortcut" : "", - "accept_value" : true - }, - "http-cache-hosts" : { - "is_multiple" : false, - "is_value_required" : true, - "name" : "--http-cache-hosts", - "description" : "http Cache hosts", - "default" : null, - "shortcut" : "", - "accept_value" : true - }, - "sales-order-increment-prefix" : { - "shortcut" : "", - "accept_value" : true, - "is_multiple" : false, - "is_value_required" : true, - "name" : "--sales-order-increment-prefix", - "description" : "Sales order number prefix", - "default" : null - }, - "session-save-redis-log-level" : { - "accept_value" : true, - "shortcut" : "", - "default" : null, - "description" : "Redis log level. Values: 0 (least verbose) to 7 (most verbose)", - "name" : "--session-save-redis-log-level", - "is_multiple" : false, - "is_value_required" : true - }, - "lock-zookeeper-path" : { - "name" : "--lock-zookeeper-path", - "default" : null, - "description" : "The path where Zookeeper will save locks. The default path is: /magento/locks", - "is_value_required" : true, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "" - }, - "db-engine" : { - "accept_value" : true, - "shortcut" : "", - "description" : "Database server engine", - "default" : null, - "name" : "--db-engine", - "is_multiple" : false, - "is_value_required" : true - }, - "db-ssl-key" : { - "default" : "", - "description" : "Full path of client key file in order to establish db connection through SSL", - "name" : "--db-ssl-key", - "is_value_required" : true, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "" - }, - "use-secure" : { - "default" : null, - "description" : "Use secure URLs. Enable this option only if SSL is available. Deprecated, use config:set with path web/secure/use_in_frontend", - "name" : "--use-secure", - "is_multiple" : false, - "is_value_required" : true, - "accept_value" : true, - "shortcut" : "" - }, - "page-cache-redis-compress-data" : { - "accept_value" : true, - "shortcut" : "", - "description" : "Set to 1 to compress the full page cache (use 0 to disable)", - "default" : null, - "name" : "--page-cache-redis-compress-data", - "is_multiple" : false, - "is_value_required" : true - }, - "cache-backend-redis-db" : { - "shortcut" : "", - "accept_value" : true, - "is_multiple" : false, - "is_value_required" : true, - "description" : "Database number for the cache", - "default" : null, - "name" : "--cache-backend-redis-db" - }, - "amqp-port" : { - "is_value_required" : true, - "is_multiple" : false, - "name" : "--amqp-port", - "default" : "5672", - "description" : "Amqp server port", - "shortcut" : "", - "accept_value" : true - }, - "admin-email" : { - "description" : "Admin email", - "default" : null, - "name" : "--admin-email", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "" - }, - "session-save-redis-first-lifetime" : { - "accept_value" : true, - "shortcut" : "", - "name" : "--session-save-redis-first-lifetime", - "description" : "Lifetime, in seconds, of session for non-bots on the first write (use 0 to disable)", - "default" : null, - "is_multiple" : false, - "is_value_required" : true - }, - "admin-firstname" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--admin-firstname", - "default" : null, - "description" : "Admin first name", - "shortcut" : "", - "accept_value" : true - }, - "data-restore" : { - "shortcut" : "", - "accept_value" : true, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--data-restore", - "description" : "Restore removed data from dumps", - "default" : null - }, - "help" : { - "shortcut" : "-h", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Display this help message", - "name" : "--help" - }, - "db-ssl-cert" : { - "accept_value" : true, - "shortcut" : "", - "default" : "", - "description" : "Full path of client certificate file in order to establish db connection through SSL", - "name" : "--db-ssl-cert", - "is_multiple" : false, - "is_value_required" : true - }, - "cache-backend-redis-port" : { - "is_multiple" : false, - "is_value_required" : true, - "name" : "--cache-backend-redis-port", - "description" : "Redis server listen port", - "default" : null, - "shortcut" : "", - "accept_value" : true - }, - "currency" : { - "accept_value" : true, - "shortcut" : "", - "default" : null, - "description" : "Default currency code. Deprecated, use config:set with path currency/options/base, currency/options/default and currency/options/allow", - "name" : "--currency", - "is_value_required" : true, - "is_multiple" : false - }, - "db-user" : { - "shortcut" : "", - "accept_value" : true, - "is_value_required" : true, - "is_multiple" : false, - "name" : "--db-user", - "default" : null, - "description" : "Database server username" - }, - "skip-db-validation" : { - "accept_value" : false, - "shortcut" : "-s", - "description" : "If specified, then db connection validation will be skipped", - "default" : false, - "name" : "--skip-db-validation", - "is_value_required" : false, - "is_multiple" : false - }, - "lock-file-path" : { - "shortcut" : "", - "accept_value" : true, - "is_multiple" : false, - "is_value_required" : true, - "description" : "The path where file locks will be saved.", - "default" : null, - "name" : "--lock-file-path" - }, - "session-save-redis-sentinel-master" : { - "accept_value" : true, - "shortcut" : "", - "name" : "--session-save-redis-sentinel-master", - "description" : "Redis Sentinel master", - "default" : null, - "is_multiple" : false, - "is_value_required" : true - }, - "cache-backend" : { - "is_value_required" : true, - "is_multiple" : false, - "name" : "--cache-backend", - "default" : null, - "description" : "Default cache handler", - "shortcut" : "", - "accept_value" : true - }, - "quiet" : { - "shortcut" : "-q", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "description" : "Do not output any message", - "default" : false, - "name" : "--quiet" - }, - "safe-mode" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--safe-mode", - "default" : null, - "description" : "Safe installation of Magento with dumps on destructive operations, like column removal", - "shortcut" : "", - "accept_value" : true - }, - "magento-init-params" : { - "accept_value" : true, - "shortcut" : "", - "name" : "--magento-init-params", - "default" : null, - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "is_value_required" : true, - "is_multiple" : false - }, - "admin-password" : { - "name" : "--admin-password", - "default" : null, - "description" : "Admin password", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : true, - "shortcut" : "" - }, - "use-sample-data" : { - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Use sample data", - "name" : "--use-sample-data", - "shortcut" : "", - "accept_value" : false - }, - "amqp-user" : { - "is_multiple" : false, - "is_value_required" : true, - "default" : "", - "description" : "Amqp server username", - "name" : "--amqp-user", - "shortcut" : "", - "accept_value" : true - }, - "session-save-redis-disable-locking" : { - "name" : "--session-save-redis-disable-locking", - "description" : "Redis disable locking. Values: false (default), true", - "default" : null, - "is_value_required" : true, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "" - }, - "page-cache-redis-server" : { - "name" : "--page-cache-redis-server", - "default" : null, - "description" : "Redis server", - "is_value_required" : true, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "" - }, - "amqp-ssl-options" : { - "default" : "", - "description" : "Amqp SSL Options (JSON)", - "name" : "--amqp-ssl-options", - "is_multiple" : false, - "is_value_required" : true, - "accept_value" : true, - "shortcut" : "" - }, - "cache-backend-redis-compression-lib" : { - "name" : "--cache-backend-redis-compression-lib", - "default" : null, - "description" : "Compression lib to use [snappy,lzf,l4z,zstd,gzip] (leave blank to determine automatically)", - "is_value_required" : true, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "" - }, - "session-save-redis-port" : { - "shortcut" : "", - "accept_value" : true, - "is_multiple" : false, - "is_value_required" : true, - "description" : "Redis server listen port", - "default" : null, - "name" : "--session-save-redis-port" - }, - "session-save-redis-sentinel-connect-retires" : { - "description" : "Redis Sentinel connect retries.", - "default" : null, - "name" : "--session-save-redis-sentinel-connect-retires", - "is_multiple" : false, - "is_value_required" : true, - "accept_value" : true, - "shortcut" : "" - }, - "key" : { - "default" : null, - "description" : "Encryption key", - "name" : "--key", - "is_multiple" : false, - "is_value_required" : true, - "accept_value" : true, - "shortcut" : "" - }, - "session-save-redis-password" : { - "name" : "--session-save-redis-password", - "default" : null, - "description" : "Redis server password", - "is_multiple" : false, - "is_value_required" : true, - "accept_value" : true, - "shortcut" : "" - }, - "session-save-redis-sentinel-verify-master" : { - "accept_value" : true, - "shortcut" : "", - "default" : null, - "description" : "Redis Sentinel verify master. Values: false (default), true", - "name" : "--session-save-redis-sentinel-verify-master", - "is_value_required" : true, - "is_multiple" : false - }, - "session-save-redis-compression-lib" : { - "accept_value" : true, - "shortcut" : "", - "description" : "Redis compression library. Values: gzip (default), lzf, lz4, snappy", - "default" : null, - "name" : "--session-save-redis-compression-lib", - "is_multiple" : false, - "is_value_required" : true - }, - "session-save-redis-sentinel-servers" : { - "shortcut" : "", - "accept_value" : true, - "is_multiple" : false, - "is_value_required" : true, - "name" : "--session-save-redis-sentinel-servers", - "description" : "Redis Sentinel servers, comma separated", - "default" : null - }, - "lock-zookeeper-host" : { - "shortcut" : "", - "accept_value" : true, - "is_multiple" : false, - "is_value_required" : true, - "description" : "Host and port to connect to Zookeeper cluster. For example: 127.0.0.1:2181", - "default" : null, - "name" : "--lock-zookeeper-host" - }, - "use-secure-admin" : { - "is_multiple" : false, - "is_value_required" : true, - "name" : "--use-secure-admin", - "description" : "Run admin interface with SSL. Deprecated, use config:set with path web/secure/use_in_adminhtml", - "default" : null, - "shortcut" : "", - "accept_value" : true - }, - "enable-debug-logging" : { - "shortcut" : "", - "accept_value" : true, - "is_multiple" : false, - "is_value_required" : true, - "name" : "--enable-debug-logging", - "description" : "Enable debug logging", - "default" : null - }, - "amqp-host" : { - "accept_value" : true, - "shortcut" : "", - "description" : "Amqp server host", - "default" : "", - "name" : "--amqp-host", - "is_value_required" : true, - "is_multiple" : false - }, - "interactive" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--interactive", - "description" : "Interactive Magento installation", - "default" : false, - "shortcut" : "-i", - "accept_value" : false - }, - "dry-run" : { - "accept_value" : true, - "shortcut" : "", - "description" : "Magento Installation will be run in dry-run mode", - "default" : false, - "name" : "--dry-run", - "is_multiple" : false, - "is_value_required" : false - }, - "enable-syslog-logging" : { - "is_value_required" : true, - "is_multiple" : false, - "default" : null, - "description" : "Enable syslog logging", - "name" : "--enable-syslog-logging", - "shortcut" : "", - "accept_value" : true - }, - "use-rewrites" : { - "accept_value" : true, - "shortcut" : "", - "name" : "--use-rewrites", - "description" : "Use rewrites. Deprecated, use config:set with path web/seo/use_rewrites", - "default" : null, - "is_value_required" : true, - "is_multiple" : false - }, - "db-model" : { - "shortcut" : "", - "accept_value" : true, - "is_value_required" : true, - "is_multiple" : false, - "default" : null, - "description" : "Database type", - "name" : "--db-model" - }, - "page-cache" : { - "is_multiple" : false, - "is_value_required" : true, - "name" : "--page-cache", - "description" : "Default cache handler", - "default" : null, - "shortcut" : "", - "accept_value" : true - }, - "amqp-ssl" : { - "name" : "--amqp-ssl", - "description" : "Amqp SSL", - "default" : "", - "is_multiple" : false, - "is_value_required" : true, - "accept_value" : true, - "shortcut" : "" - }, - "session-save-redis-min-lifetime" : { - "is_value_required" : true, - "is_multiple" : false, - "default" : null, - "description" : "Redis min session lifetime, in seconds", - "name" : "--session-save-redis-min-lifetime", - "shortcut" : "", - "accept_value" : true - }, - "session-save-redis-bot-first-lifetime" : { - "shortcut" : "", - "accept_value" : true, - "is_value_required" : true, - "is_multiple" : false, - "default" : null, - "description" : "Lifetime, in seconds, of session for bots on the first write (use 0 to disable)", - "name" : "--session-save-redis-bot-first-lifetime" - }, - "page-cache-redis-password" : { - "is_multiple" : false, - "is_value_required" : true, - "description" : "Redis server password", - "default" : null, - "name" : "--page-cache-redis-password", - "shortcut" : "", - "accept_value" : true - }, - "session-save" : { - "is_multiple" : false, - "is_value_required" : true, - "description" : "Session save handler", - "default" : null, - "name" : "--session-save", - "shortcut" : "", - "accept_value" : true - }, - "cache-backend-redis-password" : { - "name" : "--cache-backend-redis-password", - "default" : null, - "description" : "Redis server password", - "is_value_required" : true, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "" - }, - "admin-use-security-key" : { - "accept_value" : true, - "shortcut" : "", - "default" : null, - "description" : "Whether to use a \"security key\" feature in Magento Admin URLs and forms. Deprecated, use config:set with path admin/security/use_form_key", - "name" : "--admin-use-security-key", - "is_multiple" : false, - "is_value_required" : true - }, - "db-host" : { - "accept_value" : true, - "shortcut" : "", - "name" : "--db-host", - "default" : null, - "description" : "Database server host", - "is_multiple" : false, - "is_value_required" : true - }, - "disable-modules" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--disable-modules", - "description" : "List of comma-separated module names. That must be avoided during installation. Available magic param \"all\".", - "default" : null, - "shortcut" : "", - "accept_value" : true - }, - "convert-old-scripts" : { - "accept_value" : true, - "shortcut" : "", - "description" : "Allows to convert old scripts (InstallSchema, UpgradeSchema) to db_schema.xml format", - "default" : false, - "name" : "--convert-old-scripts", - "is_multiple" : false, - "is_value_required" : false - }, - "page-cache-redis-db" : { - "default" : null, - "description" : "Database number for the cache", - "name" : "--page-cache-redis-db", - "is_value_required" : true, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "" - }, - "session-save-redis-max-lifetime" : { - "shortcut" : "", - "accept_value" : true, - "is_value_required" : true, - "is_multiple" : false, - "default" : null, - "description" : "Redis max session lifetime, in seconds", - "name" : "--session-save-redis-max-lifetime" - }, - "db-ssl-ca" : { - "description" : "Full path of server certificate file in order to establish db connection through SSL", - "default" : "", - "name" : "--db-ssl-ca", - "is_value_required" : true, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "" - }, - "session-save-redis-timeout" : { - "accept_value" : true, - "shortcut" : "", - "default" : null, - "description" : "Connection timeout, in seconds", - "name" : "--session-save-redis-timeout", - "is_multiple" : false, - "is_value_required" : true - }, - "session-save-redis-break-after-frontend" : { - "accept_value" : true, - "shortcut" : "", - "default" : null, - "description" : "Number of seconds to wait before trying to break a lock for frontend session", - "name" : "--session-save-redis-break-after-frontend", - "is_value_required" : true, - "is_multiple" : false - }, - "timezone" : { - "is_multiple" : false, - "is_value_required" : true, - "name" : "--timezone", - "default" : null, - "description" : "Default time zone code. Deprecated, use config:set with path general/locale/timezone", - "shortcut" : "", - "accept_value" : true - }, - "admin-user" : { - "shortcut" : "", - "accept_value" : true, - "is_value_required" : false, - "is_multiple" : false, - "description" : "Admin user", - "default" : null, - "name" : "--admin-user" - }, - "db-prefix" : { - "name" : "--db-prefix", - "description" : "Database table prefix", - "default" : null, - "is_multiple" : false, - "is_value_required" : true, - "accept_value" : true, - "shortcut" : "" - }, - "base-url" : { - "is_value_required" : true, - "is_multiple" : false, - "description" : "URL the store is supposed to be available at. Deprecated, use config:set with path web/unsecure/base_url", - "default" : null, - "name" : "--base-url", - "shortcut" : "", - "accept_value" : true - }, - "enable-modules" : { - "shortcut" : "", - "accept_value" : true, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--enable-modules", - "description" : "List of comma-separated module names. That must be included during installation. Available magic param \"all\".", - "default" : null - }, - "version" : { - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Display this application version", - "name" : "--version", - "shortcut" : "-V", - "accept_value" : false - }, - "cache-backend-redis-server" : { - "is_value_required" : true, - "is_multiple" : false, - "default" : null, - "description" : "Redis server", - "name" : "--cache-backend-redis-server", - "shortcut" : "", - "accept_value" : true - }, - "verbose" : { - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "admin-lastname" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--admin-lastname", - "default" : null, - "description" : "Admin last name", - "shortcut" : "", - "accept_value" : true - }, - "session-save-redis-bot-lifetime" : { - "is_multiple" : false, - "is_value_required" : true, - "description" : "Lifetime of session for bots on subsequent writes (use 0 to disable)", - "default" : null, - "name" : "--session-save-redis-bot-lifetime", - "shortcut" : "", - "accept_value" : true - } - }, - "arguments" : [] - }, - "usage" : [ - "setup:install [--amqp-host AMQP-HOST] [--amqp-port AMQP-PORT] [--amqp-user AMQP-USER] [--amqp-password AMQP-PASSWORD] [--amqp-virtualhost AMQP-VIRTUALHOST] [--amqp-ssl AMQP-SSL] [--amqp-ssl-options AMQP-SSL-OPTIONS] [--enable-debug-logging ENABLE-DEBUG-LOGGING] [--enable-syslog-logging ENABLE-SYSLOG-LOGGING] [--backend-frontname BACKEND-FRONTNAME] [--consumers-wait-for-messages CONSUMERS-WAIT-FOR-MESSAGES] [--key KEY] [--db-host DB-HOST] [--db-name DB-NAME] [--db-user DB-USER] [--db-engine DB-ENGINE] [--db-password DB-PASSWORD] [--db-prefix DB-PREFIX] [--db-model DB-MODEL] [--db-init-statements DB-INIT-STATEMENTS] [-s|--skip-db-validation] [--http-cache-hosts HTTP-CACHE-HOSTS] [--db-ssl-key DB-SSL-KEY] [--db-ssl-cert DB-SSL-CERT] [--db-ssl-ca DB-SSL-CA] [--db-ssl-verify] [--session-save SESSION-SAVE] [--session-save-redis-host SESSION-SAVE-REDIS-HOST] [--session-save-redis-port SESSION-SAVE-REDIS-PORT] [--session-save-redis-password SESSION-SAVE-REDIS-PASSWORD] [--session-save-redis-timeout SESSION-SAVE-REDIS-TIMEOUT] [--session-save-redis-persistent-id SESSION-SAVE-REDIS-PERSISTENT-ID] [--session-save-redis-db SESSION-SAVE-REDIS-DB] [--session-save-redis-compression-threshold SESSION-SAVE-REDIS-COMPRESSION-THRESHOLD] [--session-save-redis-compression-lib SESSION-SAVE-REDIS-COMPRESSION-LIB] [--session-save-redis-log-level SESSION-SAVE-REDIS-LOG-LEVEL] [--session-save-redis-max-concurrency SESSION-SAVE-REDIS-MAX-CONCURRENCY] [--session-save-redis-break-after-frontend SESSION-SAVE-REDIS-BREAK-AFTER-FRONTEND] [--session-save-redis-break-after-adminhtml SESSION-SAVE-REDIS-BREAK-AFTER-ADMINHTML] [--session-save-redis-first-lifetime SESSION-SAVE-REDIS-FIRST-LIFETIME] [--session-save-redis-bot-first-lifetime SESSION-SAVE-REDIS-BOT-FIRST-LIFETIME] [--session-save-redis-bot-lifetime SESSION-SAVE-REDIS-BOT-LIFETIME] [--session-save-redis-disable-locking SESSION-SAVE-REDIS-DISABLE-LOCKING] [--session-save-redis-min-lifetime SESSION-SAVE-REDIS-MIN-LIFETIME] [--session-save-redis-max-lifetime SESSION-SAVE-REDIS-MAX-LIFETIME] [--session-save-redis-sentinel-master SESSION-SAVE-REDIS-SENTINEL-MASTER] [--session-save-redis-sentinel-servers SESSION-SAVE-REDIS-SENTINEL-SERVERS] [--session-save-redis-sentinel-verify-master SESSION-SAVE-REDIS-SENTINEL-VERIFY-MASTER] [--session-save-redis-sentinel-connect-retires SESSION-SAVE-REDIS-SENTINEL-CONNECT-RETIRES] [--cache-backend CACHE-BACKEND] [--cache-backend-redis-server CACHE-BACKEND-REDIS-SERVER] [--cache-backend-redis-db CACHE-BACKEND-REDIS-DB] [--cache-backend-redis-port CACHE-BACKEND-REDIS-PORT] [--cache-backend-redis-password CACHE-BACKEND-REDIS-PASSWORD] [--cache-backend-redis-compress-data CACHE-BACKEND-REDIS-COMPRESS-DATA] [--cache-backend-redis-compression-lib CACHE-BACKEND-REDIS-COMPRESSION-LIB] [--cache-id-prefix CACHE-ID-PREFIX] [--page-cache PAGE-CACHE] [--page-cache-redis-server PAGE-CACHE-REDIS-SERVER] [--page-cache-redis-db PAGE-CACHE-REDIS-DB] [--page-cache-redis-port PAGE-CACHE-REDIS-PORT] [--page-cache-redis-password PAGE-CACHE-REDIS-PASSWORD] [--page-cache-redis-compress-data PAGE-CACHE-REDIS-COMPRESS-DATA] [--page-cache-redis-compression-lib PAGE-CACHE-REDIS-COMPRESSION-LIB] [--page-cache-id-prefix PAGE-CACHE-ID-PREFIX] [--lock-provider LOCK-PROVIDER] [--lock-db-prefix LOCK-DB-PREFIX] [--lock-zookeeper-host LOCK-ZOOKEEPER-HOST] [--lock-zookeeper-path LOCK-ZOOKEEPER-PATH] [--lock-file-path LOCK-FILE-PATH] [--base-url BASE-URL] [--language LANGUAGE] [--timezone TIMEZONE] [--currency CURRENCY] [--use-rewrites USE-REWRITES] [--use-secure USE-SECURE] [--base-url-secure BASE-URL-SECURE] [--use-secure-admin USE-SECURE-ADMIN] [--admin-use-security-key ADMIN-USE-SECURITY-KEY] [--admin-user [ADMIN-USER]] [--admin-password [ADMIN-PASSWORD]] [--admin-email [ADMIN-EMAIL]] [--admin-firstname [ADMIN-FIRSTNAME]] [--admin-lastname [ADMIN-LASTNAME]] [--cleanup-database] [--sales-order-increment-prefix SALES-ORDER-INCREMENT-PREFIX] [--use-sample-data] [--enable-modules [ENABLE-MODULES]] [--disable-modules [DISABLE-MODULES]] [--convert-old-scripts [CONVERT-OLD-SCRIPTS]] [-i|--interactive] [--safe-mode [SAFE-MODE]] [--data-restore [DATA-RESTORE]] [--dry-run [DRY-RUN]] [--magento-init-params MAGENTO-INIT-PARAMS]" - ], - "description" : "Installs the Magento application", - "hidden" : false, - "name" : "setup:install", - "help" : "Installs the Magento application" - }, - { - "help" : "Generates fixtures", - "definition" : { - "arguments" : { - "profile" : { - "default" : null, - "description" : "Path to profile configuration file", - "name" : "profile", - "is_array" : false, - "is_required" : true - } - }, - "options" : { - "no-interaction" : { - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false, - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-n" - }, - "ansi" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--ansi", - "description" : "Force ANSI output", - "default" : false, - "shortcut" : "", - "accept_value" : false - }, - "help" : { - "description" : "Display this help message", - "default" : false, - "name" : "--help", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-h" - }, - "quiet" : { - "name" : "--quiet", - "default" : false, - "description" : "Do not output any message", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-q" - }, - "skip-reindex" : { - "default" : false, - "description" : "Skip reindex", - "name" : "--skip-reindex", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-s" - }, - "version" : { - "accept_value" : false, - "shortcut" : "-V", - "name" : "--version", - "description" : "Display this application version", - "default" : false, - "is_multiple" : false, - "is_value_required" : false - }, - "verbose" : { - "is_value_required" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false - }, - "no-ansi" : { - "default" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "" - } - } - }, - "usage" : [ - "setup:performance:generate-fixtures [-s|--skip-reindex] [--] " - ], - "description" : "Generates fixtures", - "name" : "setup:performance:generate-fixtures", - "hidden" : false - }, - { - "help" : "Rolls back Magento Application codebase, media and database", - "definition" : { - "arguments" : [], - "options" : { - "version" : { - "shortcut" : "-V", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--version", - "default" : false, - "description" : "Display this application version" - }, - "verbose" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--verbose", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false - }, - "media-file" : { - "description" : "Basename of the media backup file in var/backups", - "default" : null, - "name" : "--media-file", - "is_value_required" : true, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "-m" - }, - "no-ansi" : { - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "" - }, - "no-interaction" : { - "shortcut" : "-n", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false - }, - "code-file" : { - "accept_value" : true, - "shortcut" : "-c", - "name" : "--code-file", - "default" : null, - "description" : "Basename of the code backup file in var/backups", - "is_value_required" : true, - "is_multiple" : false - }, - "db-file" : { - "shortcut" : "-d", - "accept_value" : true, - "is_multiple" : false, - "is_value_required" : true, - "name" : "--db-file", - "description" : "Basename of the db backup file in var/backups", - "default" : null - }, - "magento-init-params" : { - "name" : "--magento-init-params", - "default" : null, - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "is_value_required" : true, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "" - }, - "quiet" : { - "name" : "--quiet", - "default" : false, - "description" : "Do not output any message", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-q" - }, - "ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--ansi", - "description" : "Force ANSI output", - "default" : false, - "is_value_required" : false, - "is_multiple" : false - }, - "help" : { - "accept_value" : false, - "shortcut" : "-h", - "description" : "Display this help message", - "default" : false, - "name" : "--help", - "is_multiple" : false, - "is_value_required" : false - } - } - }, - "description" : "Rolls back Magento Application codebase, media and database", - "usage" : [ - "setup:rollback [-c|--code-file CODE-FILE] [-m|--media-file MEDIA-FILE] [-d|--db-file DB-FILE] [--magento-init-params MAGENTO-INIT-PARAMS]" - ], - "name" : "setup:rollback", - "hidden" : false - }, - { - "help" : "Deploys static view files", - "hidden" : false, - "name" : "setup:static-content:deploy", - "description" : "Deploys static view files", - "definition" : { - "arguments" : { - "languages" : { - "is_required" : false, - "is_array" : true, - "default" : [], - "description" : "Space-separated list of ISO-639 language codes for which to output static view files.", - "name" : "languages" - } - }, - "options" : { - "no-ansi" : { - "description" : "Disable ANSI output", - "default" : false, - "name" : "--no-ansi", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "" - }, - "strategy" : { - "shortcut" : "-s", - "accept_value" : true, - "is_multiple" : false, - "is_value_required" : false, - "default" : "quick", - "description" : "Deploy files using specified strategy.", - "name" : "--strategy" - }, - "no-html-minify" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-html-minify", - "description" : "Do not minify HTML files.", - "default" : false, - "shortcut" : "", - "accept_value" : false - }, - "theme" : { - "description" : "Generate static view files for only the specified themes.", - "default" : [ - "all" - ], - "name" : "--theme", - "is_value_required" : false, - "is_multiple" : true, - "accept_value" : true, - "shortcut" : "-t" - }, - "force" : { - "shortcut" : "-f", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--force", - "default" : false, - "description" : "Deploy files in any mode." - }, - "max-execution-time" : { - "accept_value" : true, - "shortcut" : "", - "default" : 400, - "description" : "The maximum expected execution time of deployment static process (in seconds).", - "name" : "--max-execution-time", - "is_multiple" : false, - "is_value_required" : false - }, - "ansi" : { - "is_multiple" : false, - "is_value_required" : false, - "description" : "Force ANSI output", - "default" : false, - "name" : "--ansi", - "shortcut" : "", - "accept_value" : false - }, - "quiet" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--quiet", - "default" : false, - "description" : "Do not output any message", - "shortcut" : "-q", - "accept_value" : false - }, - "area" : { - "accept_value" : true, - "shortcut" : "-a", - "name" : "--area", - "description" : "Generate files only for the specified areas.", - "default" : [ - "all" - ], - "is_value_required" : false, - "is_multiple" : true - }, - "refresh-content-version-only" : { - "accept_value" : false, - "shortcut" : "", - "default" : false, - "description" : "Refreshing the version of static content only can be used to refresh static content in browser cache and CDN cache.", - "name" : "--refresh-content-version-only", - "is_multiple" : false, - "is_value_required" : false - }, - "exclude-language" : { - "accept_value" : true, - "shortcut" : "", - "name" : "--exclude-language", - "default" : [ - "none" - ], - "description" : "Do not generate files for the specified languages.", - "is_multiple" : true, - "is_value_required" : false - }, - "jobs" : { - "description" : "Enable parallel processing using the specified number of jobs.", - "default" : 0, - "name" : "--jobs", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : true, - "shortcut" : "-j" - }, - "no-images" : { - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Do not deploy images.", - "name" : "--no-images", - "shortcut" : "", - "accept_value" : false - }, - "content-version" : { - "is_multiple" : false, - "is_value_required" : true, - "description" : "Custom version of static content can be used if running deployment on multiple nodes to ensure that static content version is identical and caching works properly.", - "default" : null, - "name" : "--content-version", - "shortcut" : "", - "accept_value" : true - }, - "language" : { - "description" : "Generate files only for the specified languages.", - "default" : [ - "all" - ], - "name" : "--language", - "is_value_required" : false, - "is_multiple" : true, - "accept_value" : true, - "shortcut" : "-l" - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--verbose", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug" - }, - "exclude-area" : { - "is_value_required" : false, - "is_multiple" : true, - "description" : "Do not generate files for the specified areas.", - "default" : [ - "none" - ], - "name" : "--exclude-area", - "shortcut" : "", - "accept_value" : true - }, - "no-js-bundle" : { - "shortcut" : "", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-js-bundle", - "description" : "Do not deploy JavaScript bundle files.", - "default" : false - }, - "no-less" : { - "accept_value" : false, - "shortcut" : "", - "default" : false, - "description" : "Do not deploy LESS files.", - "name" : "--no-less", - "is_value_required" : false, - "is_multiple" : false - }, - "no-css" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-css", - "default" : false, - "description" : "Do not deploy CSS files.", - "shortcut" : "", - "accept_value" : false - }, - "no-misc" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-misc", - "description" : "Do not deploy files of other types (.md, .jbf, .csv, etc.).", - "default" : false, - "shortcut" : "", - "accept_value" : false - }, - "version" : { - "accept_value" : false, - "shortcut" : "-V", - "default" : false, - "description" : "Display this application version", - "name" : "--version", - "is_value_required" : false, - "is_multiple" : false - }, - "symlink-locale" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--symlink-locale", - "default" : false, - "description" : "Create symlinks for the files of those locales, which are passed for deployment, but have no customizations.", - "shortcut" : "", - "accept_value" : false - }, - "no-html" : { - "shortcut" : "", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "description" : "Do not deploy HTML files.", - "default" : false, - "name" : "--no-html" - }, - "help" : { - "accept_value" : false, - "shortcut" : "-h", - "description" : "Display this help message", - "default" : false, - "name" : "--help", - "is_value_required" : false, - "is_multiple" : false - }, - "no-javascript" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-javascript", - "description" : "Do not deploy JavaScript files.", - "default" : false, - "shortcut" : "", - "accept_value" : false - }, - "exclude-theme" : { - "shortcut" : "", - "accept_value" : true, - "is_value_required" : false, - "is_multiple" : true, - "description" : "Do not generate files for the specified themes.", - "default" : [ - "none" - ], - "name" : "--exclude-theme" - }, - "no-interaction" : { - "shortcut" : "-n", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "description" : "Do not ask any interactive question", - "default" : false, - "name" : "--no-interaction" - }, - "no-fonts" : { - "description" : "Do not deploy font files.", - "default" : false, - "name" : "--no-fonts", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "" - } - } - }, - "usage" : [ - "setup:static-content:deploy [-f|--force] [-s|--strategy [STRATEGY]] [-a|--area [AREA]] [--exclude-area [EXCLUDE-AREA]] [-t|--theme [THEME]] [--exclude-theme [EXCLUDE-THEME]] [-l|--language [LANGUAGE]] [--exclude-language [EXCLUDE-LANGUAGE]] [-j|--jobs [JOBS]] [--max-execution-time [MAX-EXECUTION-TIME]] [--symlink-locale] [--content-version CONTENT-VERSION] [--refresh-content-version-only] [--no-javascript] [--no-js-bundle] [--no-css] [--no-less] [--no-images] [--no-fonts] [--no-html] [--no-misc] [--no-html-minify] [--] [...]" - ] - }, - { - "hidden" : false, - "name" : "setup:store-config:set", - "usage" : [ - "setup:store-config:set [--base-url BASE-URL] [--language LANGUAGE] [--timezone TIMEZONE] [--currency CURRENCY] [--use-rewrites USE-REWRITES] [--use-secure USE-SECURE] [--base-url-secure BASE-URL-SECURE] [--use-secure-admin USE-SECURE-ADMIN] [--admin-use-security-key ADMIN-USE-SECURITY-KEY] [--magento-init-params MAGENTO-INIT-PARAMS]" - ], - "definition" : { - "options" : { - "use-rewrites" : { - "accept_value" : true, - "shortcut" : "", - "description" : "Use rewrites. Deprecated, use config:set with path web/seo/use_rewrites", - "default" : null, - "name" : "--use-rewrites", - "is_multiple" : false, - "is_value_required" : true - }, - "language" : { - "name" : "--language", - "default" : null, - "description" : "Default language code. Deprecated, use config:set with path general/locale/code", - "is_multiple" : false, - "is_value_required" : true, - "accept_value" : true, - "shortcut" : "" - }, - "ansi" : { - "name" : "--ansi", - "description" : "Force ANSI output", - "default" : false, - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "" - }, - "quiet" : { - "name" : "--quiet", - "default" : false, - "description" : "Do not output any message", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-q" - }, - "base-url-secure" : { - "accept_value" : true, - "shortcut" : "", - "name" : "--base-url-secure", - "description" : "Base URL for SSL connection. Deprecated, use config:set with path web/secure/base_url", - "default" : null, - "is_multiple" : false, - "is_value_required" : true - }, - "magento-init-params" : { - "accept_value" : true, - "shortcut" : "", - "name" : "--magento-init-params", - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "default" : null, - "is_value_required" : true, - "is_multiple" : false - }, - "admin-use-security-key" : { - "shortcut" : "", - "accept_value" : true, - "is_multiple" : false, - "is_value_required" : true, - "default" : null, - "description" : "Whether to use a \"security key\" feature in Magento Admin URLs and forms. Deprecated, use config:set with path admin/security/use_form_key", - "name" : "--admin-use-security-key" - }, - "no-ansi" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "shortcut" : "", - "accept_value" : false - }, - "use-secure" : { - "is_multiple" : false, - "is_value_required" : true, - "description" : "Use secure URLs. Enable this option only if SSL is available. Deprecated, use config:set with path web/secure/use_in_frontend", - "default" : null, - "name" : "--use-secure", - "shortcut" : "", - "accept_value" : true - }, - "no-interaction" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false, - "shortcut" : "-n", - "accept_value" : false - }, - "help" : { - "is_value_required" : false, - "is_multiple" : false, - "description" : "Display this help message", - "default" : false, - "name" : "--help", - "shortcut" : "-h", - "accept_value" : false - }, - "use-secure-admin" : { - "shortcut" : "", - "accept_value" : true, - "is_value_required" : true, - "is_multiple" : false, - "name" : "--use-secure-admin", - "default" : null, - "description" : "Run admin interface with SSL. Deprecated, use config:set with path web/secure/use_in_adminhtml" - }, - "timezone" : { - "accept_value" : true, - "shortcut" : "", - "name" : "--timezone", - "description" : "Default time zone code. Deprecated, use config:set with path general/locale/timezone", - "default" : null, - "is_value_required" : true, - "is_multiple" : false - }, - "base-url" : { - "shortcut" : "", - "accept_value" : true, - "is_value_required" : true, - "is_multiple" : false, - "default" : null, - "description" : "URL the store is supposed to be available at. Deprecated, use config:set with path web/unsecure/base_url", - "name" : "--base-url" - }, - "currency" : { - "shortcut" : "", - "accept_value" : true, - "is_value_required" : true, - "is_multiple" : false, - "name" : "--currency", - "default" : null, - "description" : "Default currency code. Deprecated, use config:set with path currency/options/base, currency/options/default and currency/options/allow" - }, - "version" : { - "default" : false, - "description" : "Display this application version", - "name" : "--version", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-V" - }, - "verbose" : { - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose" - } - }, - "arguments" : [] - }, - "description" : "Installs the store configuration. Deprecated since 2.2.0. Use config:set instead", - "help" : "Installs the store configuration. Deprecated since 2.2.0. Use config:set instead" - }, - { - "help" : "Uninstalls the Magento application", - "usage" : [ - "setup:uninstall [--magento-init-params MAGENTO-INIT-PARAMS]" - ], - "definition" : { - "arguments" : [], - "options" : { - "help" : { - "default" : false, - "description" : "Display this help message", - "name" : "--help", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-h" - }, - "ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "description" : "Force ANSI output", - "default" : false, - "name" : "--ansi" - }, - "quiet" : { - "shortcut" : "-q", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "description" : "Do not output any message", - "default" : false, - "name" : "--quiet" - }, - "magento-init-params" : { - "shortcut" : "", - "accept_value" : true, - "is_multiple" : false, - "is_value_required" : true, - "name" : "--magento-init-params", - "default" : null, - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"" - }, - "no-interaction" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-interaction", - "default" : false, - "description" : "Do not ask any interactive question", - "shortcut" : "-n", - "accept_value" : false - }, - "no-ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--no-ansi", - "default" : false, - "description" : "Disable ANSI output", - "is_value_required" : false, - "is_multiple" : false - }, - "verbose" : { - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "name" : "--verbose", - "is_value_required" : false, - "is_multiple" : false - }, - "version" : { - "default" : false, - "description" : "Display this application version", - "name" : "--version", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-V" - } - } - }, - "description" : "Uninstalls the Magento application", - "name" : "setup:uninstall", - "hidden" : false - }, - { - "hidden" : false, - "name" : "setup:upgrade", - "definition" : { - "arguments" : [], - "options" : { - "no-ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "is_multiple" : false, - "is_value_required" : false - }, - "dry-run" : { - "shortcut" : "", - "accept_value" : true, - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Magento Installation will be run in dry-run mode", - "name" : "--dry-run" - }, - "verbose" : { - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv", - "name" : "--verbose", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "is_multiple" : false, - "is_value_required" : false - }, - "keep-generated" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--keep-generated", - "description" : "Prevents generated files from being deleted. We discourage using this option except when deploying to production. Consult your system integrator or administrator for more information.", - "default" : false, - "shortcut" : "", - "accept_value" : false - }, - "convert-old-scripts" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--convert-old-scripts", - "default" : false, - "description" : "Allows to convert old scripts (InstallSchema, UpgradeSchema) to db_schema.xml format", - "shortcut" : "", - "accept_value" : true - }, - "version" : { - "accept_value" : false, - "shortcut" : "-V", - "name" : "--version", - "description" : "Display this application version", - "default" : false, - "is_value_required" : false, - "is_multiple" : false - }, - "quiet" : { - "shortcut" : "-q", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--quiet", - "default" : false, - "description" : "Do not output any message" - }, - "ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--ansi", - "default" : false, - "description" : "Force ANSI output", - "is_multiple" : false, - "is_value_required" : false - }, - "help" : { - "description" : "Display this help message", - "default" : false, - "name" : "--help", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-h" - }, - "data-restore" : { - "name" : "--data-restore", - "default" : null, - "description" : "Restore removed data from dumps", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "" - }, - "magento-init-params" : { - "default" : null, - "description" : "Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache\"", - "name" : "--magento-init-params", - "is_multiple" : false, - "is_value_required" : true, - "accept_value" : true, - "shortcut" : "" - }, - "safe-mode" : { - "is_value_required" : false, - "is_multiple" : false, - "default" : null, - "description" : "Safe installation of Magento with dumps on destructive operations, like column removal", - "name" : "--safe-mode", - "shortcut" : "", - "accept_value" : true - }, - "no-interaction" : { - "shortcut" : "-n", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction" - } - } - }, - "description" : "Upgrades the Magento application, DB data, and schema", - "usage" : [ - "setup:upgrade [--keep-generated] [--convert-old-scripts [CONVERT-OLD-SCRIPTS]] [--safe-mode [SAFE-MODE]] [--data-restore [DATA-RESTORE]] [--dry-run [DRY-RUN]] [--magento-init-params MAGENTO-INIT-PARAMS]" - ], - "help" : "Upgrades the Magento application, DB data, and schema" - }, - { - "help" : "Displays the list of stores", - "definition" : { - "options" : { - "version" : { - "shortcut" : "-V", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Display this application version", - "name" : "--version" - }, - "no-interaction" : { - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction", - "shortcut" : "-n", - "accept_value" : false - }, - "no-ansi" : { - "default" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "" - }, - "verbose" : { - "is_multiple" : false, - "is_value_required" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false - }, - "ansi" : { - "accept_value" : false, - "shortcut" : "", - "default" : false, - "description" : "Force ANSI output", - "name" : "--ansi", - "is_multiple" : false, - "is_value_required" : false - }, - "help" : { - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Display this help message", - "name" : "--help", - "shortcut" : "-h", - "accept_value" : false - }, - "quiet" : { - "shortcut" : "-q", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--quiet", - "default" : false, - "description" : "Do not output any message" - } - }, - "arguments" : [] - }, - "usage" : [ - "store:list" - ], - "description" : "Displays the list of stores", - "name" : "store:list", - "hidden" : false - }, - { - "help" : "Displays the list of websites", - "name" : "store:website:list", - "hidden" : false, - "description" : "Displays the list of websites", - "definition" : { - "arguments" : [], - "options" : { - "no-interaction" : { - "accept_value" : false, - "shortcut" : "-n", - "description" : "Do not ask any interactive question", - "default" : false, - "name" : "--no-interaction", - "is_value_required" : false, - "is_multiple" : false - }, - "version" : { - "shortcut" : "-V", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "description" : "Display this application version", - "default" : false, - "name" : "--version" - }, - "ansi" : { - "is_multiple" : false, - "is_value_required" : false, - "description" : "Force ANSI output", - "default" : false, - "name" : "--ansi", - "shortcut" : "", - "accept_value" : false - }, - "quiet" : { - "accept_value" : false, - "shortcut" : "-q", - "name" : "--quiet", - "description" : "Do not output any message", - "default" : false, - "is_value_required" : false, - "is_multiple" : false - }, - "verbose" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--verbose", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false - }, - "help" : { - "default" : false, - "description" : "Display this help message", - "name" : "--help", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-h" - }, - "no-ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "is_multiple" : false, - "is_value_required" : false - } - } - }, - "usage" : [ - "store:website:list" - ] - }, - { - "definition" : { - "arguments" : { - "theme" : { - "name" : "theme", - "default" : [], - "description" : "Path of the theme. Theme path should be specified as full path which is area/vendor/name. For example, frontend/Magento/blank", - "is_array" : true, - "is_required" : true - } - }, - "options" : { - "backup-code" : { - "shortcut" : "", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--backup-code", - "default" : false, - "description" : "Take code backup (excluding temporary files)" - }, - "version" : { - "shortcut" : "-V", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Display this application version", - "name" : "--version" - }, - "clear-static-content" : { - "default" : false, - "description" : "Clear generated static view files.", - "name" : "--clear-static-content", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-c" - }, - "verbose" : { - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv", - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "name" : "--verbose", - "is_value_required" : false, - "is_multiple" : false - }, - "no-ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--no-ansi", - "default" : false, - "description" : "Disable ANSI output" - }, - "no-interaction" : { - "description" : "Do not ask any interactive question", - "default" : false, - "name" : "--no-interaction", - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "-n" - }, - "quiet" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--quiet", - "default" : false, - "description" : "Do not output any message", - "shortcut" : "-q", - "accept_value" : false - }, - "ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--ansi", - "default" : false, - "description" : "Force ANSI output", - "is_value_required" : false, - "is_multiple" : false - }, - "help" : { - "is_value_required" : false, - "is_multiple" : false, - "name" : "--help", - "description" : "Display this help message", - "default" : false, - "shortcut" : "-h", - "accept_value" : false - } - } - }, - "description" : "Uninstalls theme", - "usage" : [ - "theme:uninstall [--backup-code] [-c|--clear-static-content] [--] ..." - ], - "name" : "theme:uninstall", - "hidden" : false, - "help" : "Uninstalls theme" - }, - { - "help" : "Generates Varnish VCL and echos it to the command line", - "hidden" : false, - "name" : "varnish:vcl:generate", - "definition" : { - "arguments" : [], - "options" : { - "version" : { - "accept_value" : false, - "shortcut" : "-V", - "name" : "--version", - "default" : false, - "description" : "Display this application version", - "is_multiple" : false, - "is_value_required" : false - }, - "export-version" : { - "accept_value" : true, - "shortcut" : "", - "default" : "4", - "description" : "The version of Varnish file", - "name" : "--export-version", - "is_multiple" : false, - "is_value_required" : true - }, - "backend-port" : { - "accept_value" : true, - "shortcut" : "", - "name" : "--backend-port", - "default" : 8080, - "description" : "Port of the web backend", - "is_multiple" : false, - "is_value_required" : true - }, - "output-file" : { - "accept_value" : true, - "shortcut" : "", - "name" : "--output-file", - "description" : "Path to the file to write vcl", - "default" : null, - "is_multiple" : false, - "is_value_required" : true - }, - "verbose" : { - "is_value_required" : false, - "is_multiple" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "default" : false, - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false - }, - "no-ansi" : { - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Disable ANSI output", - "name" : "--no-ansi", - "shortcut" : "", - "accept_value" : false - }, - "no-interaction" : { - "shortcut" : "-n", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "name" : "--no-interaction", - "description" : "Do not ask any interactive question", - "default" : false - }, - "grace-period" : { - "accept_value" : true, - "shortcut" : "", - "default" : 300, - "description" : "Grace period in seconds", - "name" : "--grace-period", - "is_value_required" : true, - "is_multiple" : false - }, - "backend-host" : { - "shortcut" : "", - "accept_value" : true, - "is_value_required" : true, - "is_multiple" : false, - "name" : "--backend-host", - "default" : "localhost", - "description" : "Host of the web backend" - }, - "help" : { - "description" : "Display this help message", - "default" : false, - "name" : "--help", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-h" - }, - "ansi" : { - "description" : "Force ANSI output", - "default" : false, - "name" : "--ansi", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "" - }, - "quiet" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--quiet", - "default" : false, - "description" : "Do not output any message", - "shortcut" : "-q", - "accept_value" : false - }, - "access-list" : { - "is_value_required" : true, - "is_multiple" : true, - "name" : "--access-list", - "default" : [ - "localhost" - ], - "description" : "IPs access list that can purge Varnish", - "shortcut" : "", - "accept_value" : true - } - } - }, - "description" : "Generates Varnish VCL and echos it to the command line", - "usage" : [ - "varnish:vcl:generate [--access-list ACCESS-LIST] [--backend-host BACKEND-HOST] [--backend-port BACKEND-PORT] [--export-version EXPORT-VERSION] [--grace-period GRACE-PERIOD] [--output-file OUTPUT-FILE]" - ] - }, - { - "name" : "yotpo:reset", - "hidden" : false, - "usage" : [ - "yotpo:reset [-e|--entity [ENTITY]]" - ], - "definition" : { - "options" : { - "ansi" : { - "shortcut" : "", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "description" : "Force ANSI output", - "default" : false, - "name" : "--ansi" - }, - "quiet" : { - "accept_value" : false, - "shortcut" : "-q", - "default" : false, - "description" : "Do not output any message", - "name" : "--quiet", - "is_value_required" : false, - "is_multiple" : false - }, - "help" : { - "accept_value" : false, - "shortcut" : "-h", - "name" : "--help", - "default" : false, - "description" : "Display this help message", - "is_multiple" : false, - "is_value_required" : false - }, - "no-interaction" : { - "shortcut" : "-n", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "description" : "Do not ask any interactive question", - "default" : false, - "name" : "--no-interaction" - }, - "no-ansi" : { - "accept_value" : false, - "shortcut" : "", - "description" : "Disable ANSI output", - "default" : false, - "name" : "--no-ansi", - "is_value_required" : false, - "is_multiple" : false - }, - "verbose" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--verbose", - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false - }, - "version" : { - "accept_value" : false, - "shortcut" : "-V", - "name" : "--version", - "description" : "Display this application version", - "default" : false, - "is_multiple" : false, - "is_value_required" : false - }, - "entity" : { - "accept_value" : true, - "shortcut" : "-e", - "default" : "orders", - "description" : "Entity type (orders)", - "name" : "--entity", - "is_multiple" : false, - "is_value_required" : false - } - }, - "arguments" : [] - }, - "description" : "Reset Yotpo sync flags &/or configurations", - "help" : "Reset Yotpo sync flags &/or configurations" - }, - { - "definition" : { - "arguments" : [], - "options" : { - "no-ansi" : { - "description" : "Disable ANSI output", - "default" : false, - "name" : "--no-ansi", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "" - }, - "verbose" : { - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose", - "shortcut" : "-v|-vv|-vvv", - "accept_value" : false - }, - "version" : { - "shortcut" : "-V", - "accept_value" : false, - "is_multiple" : false, - "is_value_required" : false, - "default" : false, - "description" : "Display this application version", - "name" : "--version" - }, - "entity" : { - "description" : "Entity type (allowed options: orders)", - "default" : "orders", - "name" : "--entity", - "is_value_required" : true, - "is_multiple" : false, - "accept_value" : true, - "shortcut" : "-e" - }, - "ansi" : { - "name" : "--ansi", - "description" : "Force ANSI output", - "default" : false, - "is_value_required" : false, - "is_multiple" : false, - "accept_value" : false, - "shortcut" : "" - }, - "quiet" : { - "accept_value" : false, - "shortcut" : "-q", - "name" : "--quiet", - "default" : false, - "description" : "Do not output any message", - "is_multiple" : false, - "is_value_required" : false - }, - "help" : { - "is_multiple" : false, - "is_value_required" : false, - "name" : "--help", - "description" : "Display this help message", - "default" : false, - "shortcut" : "-h", - "accept_value" : false - }, - "limit" : { - "accept_value" : true, - "shortcut" : "-l", - "name" : "--limit", - "description" : "Max entity items to sync. WARNING: Setting a high sync limit (or no limit) may result in a high server load (0=no limit).", - "default" : null, - "is_value_required" : false, - "is_multiple" : false - }, - "no-interaction" : { - "shortcut" : "-n", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "default" : false, - "description" : "Do not ask any interactive question", - "name" : "--no-interaction" - } - } - }, - "usage" : [ - "yotpo:sync [-e|--entity ENTITY] [-l|--limit [LIMIT]]" - ], - "description" : "Sync Yotpo manually (reviews module)", - "hidden" : false, - "name" : "yotpo:sync", - "help" : "Sync Yotpo manually (reviews module)" - }, - { - "help" : "Manually send platform metadata to Yotpo", - "usage" : [ - "yotpo:update-metadata" - ], - "definition" : { - "arguments" : [], - "options" : { - "quiet" : { - "name" : "--quiet", - "description" : "Do not output any message", - "default" : false, - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-q" - }, - "ansi" : { - "description" : "Force ANSI output", - "default" : false, - "name" : "--ansi", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "" - }, - "verbose" : { - "default" : false, - "description" : "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug", - "name" : "--verbose", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-v|-vv|-vvv" - }, - "help" : { - "shortcut" : "-h", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--help", - "default" : false, - "description" : "Display this help message" - }, - "no-ansi" : { - "accept_value" : false, - "shortcut" : "", - "name" : "--no-ansi", - "description" : "Disable ANSI output", - "default" : false, - "is_value_required" : false, - "is_multiple" : false - }, - "no-interaction" : { - "name" : "--no-interaction", - "default" : false, - "description" : "Do not ask any interactive question", - "is_multiple" : false, - "is_value_required" : false, - "accept_value" : false, - "shortcut" : "-n" - }, - "version" : { - "shortcut" : "-V", - "accept_value" : false, - "is_value_required" : false, - "is_multiple" : false, - "name" : "--version", - "default" : false, - "description" : "Display this application version" - } - } - }, - "description" : "Manually send platform metadata to Yotpo", - "hidden" : false, - "name" : "yotpo:update-metadata" - } - ] -} +{"application":{"name":"Magento CLI","version":"2.3.6"},"commands":[{"name":"help","usage":["help [--format FORMAT] [--raw] [--] []"],"description":"Displays help for a command","help":"The help<\/info> command displays help for a given command:\n\n php \/var\/www\/html\/magento2\/bin\/magento help list<\/info>\n\nYou can also output the help in other formats by using the --format<\/comment> option:\n\n php \/var\/www\/html\/magento2\/bin\/magento help --format=xml list<\/info>\n\nTo display the list of available commands, please use the list<\/info> command.","definition":{"arguments":{"command_name":{"name":"command_name","is_required":false,"is_array":false,"description":"The command name","default":"help"}},"options":{"format":{"name":"--format","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The output format (txt, xml, json, or md)","default":"txt"},"raw":{"name":"--raw","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"To output raw command help","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"list","usage":["list [--raw] [--format FORMAT] [--] []"],"description":"Lists commands","help":"The list<\/info> command lists all commands:\n\n php \/var\/www\/html\/magento2\/bin\/magento list<\/info>\n\nYou can also display the commands for a specific namespace:\n\n php \/var\/www\/html\/magento2\/bin\/magento list test<\/info>\n\nYou can also output the information in other formats by using the --format<\/comment> option:\n\n php \/var\/www\/html\/magento2\/bin\/magento list --format=xml<\/info>\n\nIt's also possible to get raw list of commands (useful for embedding command runner):\n\n php \/var\/www\/html\/magento2\/bin\/magento list --raw<\/info>","definition":{"arguments":{"namespace":{"name":"namespace","is_required":false,"is_array":false,"description":"The namespace name","default":null}},"options":{"raw":{"name":"--raw","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"To output raw command list","default":false},"format":{"name":"--format","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The output format (txt, xml, json, or md)","default":"txt"}}},"hidden":false},{"name":"admin:user:create","usage":["admin:user:create [--admin-user ADMIN-USER] [--admin-password ADMIN-PASSWORD] [--admin-email ADMIN-EMAIL] [--admin-firstname ADMIN-FIRSTNAME] [--admin-lastname ADMIN-LASTNAME] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Creates an administrator","help":"Creates an administrator","definition":{"arguments":[],"options":{"admin-user":{"name":"--admin-user","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"(Required) Admin user","default":null},"admin-password":{"name":"--admin-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"(Required) Admin password","default":null},"admin-email":{"name":"--admin-email","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"(Required) Admin email","default":null},"admin-firstname":{"name":"--admin-firstname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"(Required) Admin first name","default":null},"admin-lastname":{"name":"--admin-lastname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"(Required) Admin last name","default":null},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"admin:user:unlock","usage":["admin:user:unlock "],"description":"Unlock Admin Account","help":"This command unlocks an admin account by its username.\nTo unlock:\n \/var\/www\/html\/magento2\/bin\/magento admin:user:unlock username<\/comment>","definition":{"arguments":{"username":{"name":"username","is_required":true,"is_array":false,"description":"The admin username to unlock","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"app:config:dump","usage":["app:config:dump [...]"],"description":"Create dump of application","help":"Create dump of application","definition":{"arguments":{"config-types":{"name":"config-types","is_required":false,"is_array":true,"description":"Space-separated list of config types or omit to dump all [scopes, system, themes, i18n]","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"app:config:import","usage":["app:config:import"],"description":"Import data from shared configuration files to appropriate data storage","help":"Import data from shared configuration files to appropriate data storage","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"app:config:status","usage":["app:config:status"],"description":"Checks if config propagation requires update","help":"Checks if config propagation requires update","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cache:clean","usage":["cache:clean [--bootstrap BOOTSTRAP] [--] [...]"],"description":"Cleans cache type(s)","help":"Cleans cache type(s)","definition":{"arguments":{"types":{"name":"types","is_required":false,"is_array":true,"description":"Space-separated list of cache types or omit to apply to all cache types.","default":[]}},"options":{"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cache:disable","usage":["cache:disable [--bootstrap BOOTSTRAP] [--] [...]"],"description":"Disables cache type(s)","help":"Disables cache type(s)","definition":{"arguments":{"types":{"name":"types","is_required":false,"is_array":true,"description":"Space-separated list of cache types or omit to apply to all cache types.","default":[]}},"options":{"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cache:enable","usage":["cache:enable [--bootstrap BOOTSTRAP] [--] [...]"],"description":"Enables cache type(s)","help":"Enables cache type(s)","definition":{"arguments":{"types":{"name":"types","is_required":false,"is_array":true,"description":"Space-separated list of cache types or omit to apply to all cache types.","default":[]}},"options":{"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cache:flush","usage":["cache:flush [--bootstrap BOOTSTRAP] [--] [...]"],"description":"Flushes cache storage used by cache type(s)","help":"Flushes cache storage used by cache type(s)","definition":{"arguments":{"types":{"name":"types","is_required":false,"is_array":true,"description":"Space-separated list of cache types or omit to apply to all cache types.","default":[]}},"options":{"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cache:status","usage":["cache:status [--bootstrap BOOTSTRAP]"],"description":"Checks cache status","help":"Checks cache status","definition":{"arguments":[],"options":{"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"catalog:images:resize","usage":["catalog:images:resize"],"description":"Creates resized product images","help":"Creates resized product images","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"catalog:product:attributes:cleanup","usage":["catalog:product:attributes:cleanup"],"description":"Removes unused product attributes.","help":"Removes unused product attributes.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"config:sensitive:set","usage":["config:sensitive:set [-i|--interactive] [--scope [SCOPE]] [--scope-code [SCOPE-CODE]] [--] [ []]"],"description":"Set sensitive configuration values","help":"Set sensitive configuration values","definition":{"arguments":{"path":{"name":"path","is_required":false,"is_array":false,"description":"Configuration path for example group\/section\/field_name","default":null},"value":{"name":"value","is_required":false,"is_array":false,"description":"Configuration value","default":null}},"options":{"interactive":{"name":"--interactive","shortcut":"-i","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Enable interactive mode to set all sensitive variables","default":false},"scope":{"name":"--scope","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Scope for configuration, if not set use 'default'","default":"default"},"scope-code":{"name":"--scope-code","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Scope code for configuration, empty string by default","default":""},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"config:set","usage":["config:set [--scope SCOPE] [--scope-code SCOPE-CODE] [-e|--lock-env] [-c|--lock-config] [-l|--lock] [--] "],"description":"Change system configuration","help":"Change system configuration","definition":{"arguments":{"path":{"name":"path","is_required":true,"is_array":false,"description":"Configuration path in format section\/group\/field_name","default":null},"value":{"name":"value","is_required":true,"is_array":false,"description":"Configuration value","default":null}},"options":{"scope":{"name":"--scope","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Configuration scope (default, website, or store)","default":"default"},"scope-code":{"name":"--scope-code","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Scope code (required only if scope is not 'default')","default":null},"lock-env":{"name":"--lock-env","shortcut":"-e","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Lock value which prevents modification in the Admin (will be saved in app\/etc\/env.php)","default":false},"lock-config":{"name":"--lock-config","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Lock and share value with other installations, prevents modification in the Admin (will be saved in app\/etc\/config.php)","default":false},"lock":{"name":"--lock","shortcut":"-l","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Deprecated, use the --lock-env option instead.","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"config:show","usage":["config:show [--scope [SCOPE]] [--scope-code [SCOPE-CODE]] [--] []"],"description":"Shows configuration value for given path. If path is not specified, all saved values will be shown","help":"Shows configuration value for given path. If path is not specified, all saved values will be shown","definition":{"arguments":{"path":{"name":"path","is_required":false,"is_array":false,"description":"Configuration path, for example section_id\/group_id\/field_id","default":null}},"options":{"scope":{"name":"--scope","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Scope for configuration, if not specified, then 'default' scope will be used","default":"default"},"scope-code":{"name":"--scope-code","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Scope code (required only if scope is not `default`)","default":""},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cron:install","usage":["cron:install [-f|--force] [-d|--non-optional]"],"description":"Generates and installs crontab for current user","help":"Generates and installs crontab for current user","definition":{"arguments":[],"options":{"force":{"name":"--force","shortcut":"-f","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force install tasks","default":false},"non-optional":{"name":"--non-optional","shortcut":"-d","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Install only the non-optional (default) tasks","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cron:remove","usage":["cron:remove"],"description":"Removes tasks from crontab","help":"Removes tasks from crontab","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"cron:run","usage":["cron:run [--group GROUP] [--bootstrap BOOTSTRAP]"],"description":"Runs jobs by schedule","help":"Runs jobs by schedule","definition":{"arguments":[],"options":{"group":{"name":"--group","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Run jobs only from specified group","default":null},"bootstrap":{"name":"--bootstrap","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add or override parameters of the bootstrap","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"customer:hash:upgrade","usage":["customer:hash:upgrade"],"description":"Upgrade customer's hash according to the latest algorithm","help":"Upgrade customer's hash according to the latest algorithm","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"deploy:mode:set","usage":["deploy:mode:set [-s|--skip-compilation] [--] "],"description":"Set application mode.","help":"Set application mode.","definition":{"arguments":{"mode":{"name":"mode","is_required":true,"is_array":false,"description":"The application mode to set. Available options are \"developer\" or \"production\"","default":null}},"options":{"skip-compilation":{"name":"--skip-compilation","shortcut":"-s","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Skips the clearing and regeneration of static content (generated code, preprocessed CSS, and assets in pub\/static\/)","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"deploy:mode:show","usage":["deploy:mode:show"],"description":"Displays current application mode.","help":"Displays current application mode.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:di:info","usage":["dev:di:info "],"description":"Provides information on Dependency Injection configuration for the Command.","help":"Provides information on Dependency Injection configuration for the Command.","definition":{"arguments":{"class":{"name":"class","is_required":true,"is_array":false,"description":"Class name","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:profiler:disable","usage":["dev:profiler:disable"],"description":"Disable the profiler.","help":"Disable the profiler.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:profiler:enable","usage":["dev:profiler:enable []"],"description":"Enable the profiler.","help":"Enable the profiler.","definition":{"arguments":{"type":{"name":"type","is_required":false,"is_array":false,"description":"Profiler type","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:query-log:disable","usage":["dev:query-log:disable"],"description":"Disable DB query logging","help":"Disable DB query logging","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:query-log:enable","usage":["dev:query-log:enable [--include-all-queries [INCLUDE-ALL-QUERIES]] [--query-time-threshold [QUERY-TIME-THRESHOLD]] [--include-call-stack [INCLUDE-CALL-STACK]]"],"description":"Enable DB query logging","help":"Enable DB query logging","definition":{"arguments":[],"options":{"include-all-queries":{"name":"--include-all-queries","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Log all queries. [true|false]","default":"true"},"query-time-threshold":{"name":"--query-time-threshold","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Query time thresholds.","default":"0.001"},"include-call-stack":{"name":"--include-call-stack","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Include call stack. [true|false]","default":"true"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:source-theme:deploy","usage":["dev:source-theme:deploy [--type TYPE] [--locale LOCALE] [--area AREA] [--theme THEME] [--] [...]"],"description":"Collects and publishes source files for theme.","help":"Collects and publishes source files for theme.","definition":{"arguments":{"file":{"name":"file","is_required":false,"is_array":true,"description":"Files to pre-process (file should be specified without extension)","default":["css\/styles-m","css\/styles-l"]}},"options":{"type":{"name":"--type","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Type of source files: [less]","default":"less"},"locale":{"name":"--locale","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Locale: [en_US]","default":"en_US"},"area":{"name":"--area","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Area: [frontend|adminhtml]","default":"frontend"},"theme":{"name":"--theme","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Theme: [Vendor\/theme]","default":"Magento\/luma"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:template-hints:disable","usage":["dev:template-hints:disable"],"description":"Disable frontend template hints. A cache flush might be required.","help":"Disable frontend template hints. A cache flush might be required.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:template-hints:enable","usage":["dev:template-hints:enable"],"description":"Enable frontend template hints. A cache flush might be required.","help":"Enable frontend template hints. A cache flush might be required.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:tests:run","usage":["dev:tests:run [-c|--arguments ARGUMENTS] [--] []"],"description":"Runs tests","help":"Runs tests","definition":{"arguments":{"type":{"name":"type","is_required":false,"is_array":false,"description":"Type of test to run. Available types: all, unit, integration, integration-all, static, static-all, integrity, legacy, default","default":"default"}},"options":{"arguments":{"name":"--arguments","shortcut":"-c","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Additional arguments for PHPUnit. Example: \"-c'--filter=MyTest'\" (no spaces)","default":""},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:urn-catalog:generate","usage":["dev:urn-catalog:generate [--ide IDE] [--] "],"description":"Generates the catalog of URNs to *.xsd mappings for the IDE to highlight xml.","help":"Generates the catalog of URNs to *.xsd mappings for the IDE to highlight xml.","definition":{"arguments":{"path":{"name":"path","is_required":true,"is_array":false,"description":"Path to file to output the catalog. For PhpStorm use .idea\/misc.xml","default":null}},"options":{"ide":{"name":"--ide","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Format in which catalog will be generated. Supported: [phpstorm]","default":"phpstorm"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dev:xml:convert","usage":["dev:xml:convert [-o|--overwrite] [--] "],"description":"Converts XML file using XSL style sheets","help":"Converts XML file using XSL style sheets","definition":{"arguments":{"xml-file":{"name":"xml-file","is_required":true,"is_array":false,"description":"Path to XML file that going to be transformed","default":null},"processor":{"name":"processor","is_required":true,"is_array":false,"description":"Path to XSL style sheet that going to be applied to XML file","default":null}},"options":{"overwrite":{"name":"--overwrite","shortcut":"-o","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Overwrite XML file","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dotdigital:connector:automap","usage":["dotdigital:connector:automap"],"description":"Auto-map data fields","help":"Auto-map data fields","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dotdigital:connector:enable","usage":["dotdigital:connector:enable [--username USERNAME] [--password PASSWORD] [--automap-datafields [AUTOMAP-DATAFIELDS]] [--enable-syncs [ENABLE-SYNCS]] [--remove-ip-restriction [REMOVE-IP-RESTRICTION]] [--enable-email-capture [ENABLE-EMAIL-CAPTURE]]"],"description":"Add Dotdigital API credentials and enable the connector","help":"Add Dotdigital API credentials and enable the connector","definition":{"arguments":[],"options":{"username":{"name":"--username","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"API username","default":null},"password":{"name":"--password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"API password","default":null},"automap-datafields":{"name":"--automap-datafields","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Automap data fields","default":null},"enable-syncs":{"name":"--enable-syncs","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Enable syncs","default":null},"remove-ip-restriction":{"name":"--remove-ip-restriction","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Remove IP restriction","default":null},"enable-email-capture":{"name":"--enable-email-capture","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Enable email capture","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dotdigital:migrate","usage":["dotdigital:migrate"],"description":"Migrate data into email_ tables to sync with Engagement Cloud","help":"Migrate data into email_ tables to sync with Engagement Cloud","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"dotdigital:sync","usage":["dotdigital:sync [--from [FROM]] [--] []"],"description":"Run syncs to populate email_ tables before importing to Engagement Cloud","help":"Run syncs to populate email_ tables before importing to Engagement Cloud","definition":{"arguments":{"sync":{"name":"sync","is_required":false,"is_array":false,"description":"The name of the sync to run","default":null}},"options":{"from":{"name":"--from","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Specify a date\/time (parsable by \\DateTime) to run a sync from (if supported)","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"downloadable:domains:add","usage":["downloadable:domains:add [...]"],"description":"Add domains to the downloadable domains whitelist","help":"Add domains to the downloadable domains whitelist","definition":{"arguments":{"domains":{"name":"domains","is_required":false,"is_array":true,"description":"Domains name","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"downloadable:domains:remove","usage":["downloadable:domains:remove [...]"],"description":"Remove domains from the downloadable domains whitelist","help":"Remove domains from the downloadable domains whitelist","definition":{"arguments":{"domains":{"name":"domains","is_required":false,"is_array":true,"description":"Domain names","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"downloadable:domains:show","usage":["downloadable:domains:show"],"description":"Display downloadable domains whitelist","help":"Display downloadable domains whitelist","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"encryption:payment-data:update","usage":["encryption:payment-data:update"],"description":"Re-encrypts encrypted credit card data with latest encryption cipher.","help":"Re-encrypts encrypted credit card data with latest encryption cipher.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"i18n:collect-phrases","usage":["i18n:collect-phrases [-o|--output OUTPUT] [-m|--magento] [--] []"],"description":"Discovers phrases in the codebase","help":"Discovers phrases in the codebase","definition":{"arguments":{"directory":{"name":"directory","is_required":false,"is_array":false,"description":"Directory path to parse. Not needed if --magento flag is set","default":null}},"options":{"output":{"name":"--output","shortcut":"-o","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Path (including filename) to an output file. With no file specified, defaults to stdout.","default":null},"magento":{"name":"--magento","shortcut":"-m","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Use the --magento parameter to parse the current Magento codebase. Omit the parameter if a directory is specified.","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"i18n:pack","usage":["i18n:pack [-m|--mode MODE] [-d|--allow-duplicates] [--] "],"description":"Saves language package","help":"Saves language package","definition":{"arguments":{"source":{"name":"source","is_required":true,"is_array":false,"description":"Path to source dictionary file with translations","default":null},"locale":{"name":"locale","is_required":true,"is_array":false,"description":"Target locale for dictionary, for example \"de_DE\"","default":null}},"options":{"mode":{"name":"--mode","shortcut":"-m","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Save mode for dictionary - \"replace\" - replace language pack by new one - \"merge\" - merge language packages, by default \"replace\"","default":"replace"},"allow-duplicates":{"name":"--allow-duplicates","shortcut":"-d","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Use the --allow-duplicates parameter to allow saving duplicates of translate. Otherwise omit the parameter.","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"i18n:uninstall","usage":["i18n:uninstall [-b|--backup-code] [--] ..."],"description":"Uninstalls language packages","help":"Uninstalls language packages","definition":{"arguments":{"package":{"name":"package","is_required":true,"is_array":true,"description":"Language package name","default":[]}},"options":{"backup-code":{"name":"--backup-code","shortcut":"-b","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take code and configuration files backup (excluding temporary files)","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:info","usage":["indexer:info"],"description":"Shows allowed Indexers","help":"Shows allowed Indexers","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:reindex","usage":["indexer:reindex [...]"],"description":"Reindexes Data","help":"Reindexes Data","definition":{"arguments":{"index":{"name":"index","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes.","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:reset","usage":["indexer:reset [...]"],"description":"Resets indexer status to invalid","help":"Resets indexer status to invalid","definition":{"arguments":{"index":{"name":"index","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes.","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:set-dimensions-mode","usage":["indexer:set-dimensions-mode [ []]"],"description":"Set Indexer Dimensions Mode","help":"Set Indexer Dimensions Mode","definition":{"arguments":{"indexer":{"name":"indexer","is_required":false,"is_array":false,"description":"Indexer name [catalog_product_price]","default":null},"mode":{"name":"mode","is_required":false,"is_array":false,"description":"Indexer dimension modes catalog_product_price none,website,customer_group,website_and_customer_group ","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:set-mode","usage":["indexer:set-mode [ [...]]"],"description":"Sets index mode type","help":"Sets index mode type","definition":{"arguments":{"mode":{"name":"mode","is_required":false,"is_array":false,"description":"Indexer mode type [realtime|schedule]","default":null},"index":{"name":"index","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes.","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:show-dimensions-mode","usage":["indexer:show-dimensions-mode [...]"],"description":"Shows Indexer Dimension Mode","help":"Shows Indexer Dimension Mode","definition":{"arguments":{"indexer":{"name":"indexer","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes (catalog_product_price)","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:show-mode","usage":["indexer:show-mode [...]"],"description":"Shows Index Mode","help":"Shows Index Mode","definition":{"arguments":{"index":{"name":"index","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes.","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"indexer:status","usage":["indexer:status [...]"],"description":"Shows status of Indexer","help":"Shows status of Indexer","definition":{"arguments":{"index":{"name":"index","is_required":false,"is_array":true,"description":"Space-separated list of index types or omit to apply to all indexes.","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:adminuri","usage":["info:adminuri"],"description":"Displays the Magento Admin URI","help":"Displays the Magento Admin URI","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:backups:list","usage":["info:backups:list"],"description":"Prints list of available backup files","help":"Prints list of available backup files","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:currency:list","usage":["info:currency:list"],"description":"Displays the list of available currencies","help":"Displays the list of available currencies","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:dependencies:show-framework","usage":["info:dependencies:show-framework [-o|--output OUTPUT]"],"description":"Shows number of dependencies on Magento framework","help":"Shows number of dependencies on Magento framework","definition":{"arguments":[],"options":{"output":{"name":"--output","shortcut":"-o","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Report filename","default":"framework-dependencies.csv"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:dependencies:show-modules","usage":["info:dependencies:show-modules [-o|--output OUTPUT]"],"description":"Shows number of dependencies between modules","help":"Shows number of dependencies between modules","definition":{"arguments":[],"options":{"output":{"name":"--output","shortcut":"-o","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Report filename","default":"modules-dependencies.csv"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:dependencies:show-modules-circular","usage":["info:dependencies:show-modules-circular [-o|--output OUTPUT]"],"description":"Shows number of circular dependencies between modules","help":"Shows number of circular dependencies between modules","definition":{"arguments":[],"options":{"output":{"name":"--output","shortcut":"-o","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Report filename","default":"modules-circular-dependencies.csv"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:language:list","usage":["info:language:list"],"description":"Displays the list of available language locales","help":"Displays the list of available language locales","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"info:timezone:list","usage":["info:timezone:list"],"description":"Displays the list of available timezones","help":"Displays the list of available timezones","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"inventory:reservation:create-compensations","usage":["inventory:reservation:create-compensations [-r|--raw] [--] [...]"],"description":"Create reservations by provided compensation arguments","help":"Create reservations by provided compensation arguments","definition":{"arguments":{"compensations":{"name":"compensations","is_required":false,"is_array":true,"description":"List of compensation arguments in format \":::\"","default":[]}},"options":{"raw":{"name":"--raw","shortcut":"-r","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Raw output","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"inventory:reservation:list-inconsistencies","usage":["inventory:reservation:list-inconsistencies [-c|--complete-orders] [-i|--incomplete-orders] [-b|--bunch-size [BUNCH-SIZE]] [-r|--raw]"],"description":"Show all orders and products with salable quantity inconsistencies","help":"Show all orders and products with salable quantity inconsistencies","definition":{"arguments":[],"options":{"complete-orders":{"name":"--complete-orders","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Show only inconsistencies for complete orders","default":false},"incomplete-orders":{"name":"--incomplete-orders","shortcut":"-i","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Show only inconsistencies for incomplete orders","default":false},"bunch-size":{"name":"--bunch-size","shortcut":"-b","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Defines how many orders will be loaded at once","default":50},"raw":{"name":"--raw","shortcut":"-r","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Raw output","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"inventory-geonames:import","usage":["inventory-geonames:import ..."],"description":"Download and import geo names for source selection algorithm","help":"Download and import geo names for source selection algorithm","definition":{"arguments":{"countries":{"name":"countries","is_required":true,"is_array":true,"description":"List of country codes to import","default":[]}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"maintenance:allow-ips","usage":["maintenance:allow-ips [--none] [--add] [--magento-init-params MAGENTO-INIT-PARAMS] [--] [...]"],"description":"Sets maintenance mode exempt IPs","help":"Sets maintenance mode exempt IPs","definition":{"arguments":{"ip":{"name":"ip","is_required":false,"is_array":true,"description":"Allowed IP addresses","default":[]}},"options":{"none":{"name":"--none","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Clear allowed IP addresses","default":false},"add":{"name":"--add","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Add the IP address to existing list","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"maintenance:disable","usage":["maintenance:disable [--ip IP] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Disables maintenance mode","help":"Disables maintenance mode","definition":{"arguments":[],"options":{"ip":{"name":"--ip","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":true,"description":"Allowed IP addresses (use 'none' to clear allowed IP list)","default":[]},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"maintenance:enable","usage":["maintenance:enable [--ip IP] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Enables maintenance mode","help":"Enables maintenance mode","definition":{"arguments":[],"options":{"ip":{"name":"--ip","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":true,"description":"Allowed IP addresses (use 'none' to clear allowed IP list)","default":[]},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"maintenance:status","usage":["maintenance:status [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Displays maintenance mode status","help":"Displays maintenance mode status","definition":{"arguments":[],"options":{"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"module:config:status","usage":["module:config:status"],"description":"Checks the modules configuration in the 'app\/etc\/config.php' file and reports if they are up to date or not","help":"Checks the modules configuration in the 'app\/etc\/config.php' file and reports if they are up to date or not","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"module:disable","usage":["module:disable [-f|--force] [--all] [-c|--clear-static-content] [--magento-init-params MAGENTO-INIT-PARAMS] [--] [...]"],"description":"Disables specified modules","help":"Disables specified modules","definition":{"arguments":{"module":{"name":"module","is_required":false,"is_array":true,"description":"Name of the module","default":[]}},"options":{"force":{"name":"--force","shortcut":"-f","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Bypass dependencies check","default":false},"all":{"name":"--all","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable all modules","default":false},"clear-static-content":{"name":"--clear-static-content","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Clear generated static view files. Necessary, if the module(s) have static view files","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"module:enable","usage":["module:enable [-f|--force] [--all] [-c|--clear-static-content] [--magento-init-params MAGENTO-INIT-PARAMS] [--] [...]"],"description":"Enables specified modules","help":"Enables specified modules","definition":{"arguments":{"module":{"name":"module","is_required":false,"is_array":true,"description":"Name of the module","default":[]}},"options":{"force":{"name":"--force","shortcut":"-f","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Bypass dependencies check","default":false},"all":{"name":"--all","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Enable all modules","default":false},"clear-static-content":{"name":"--clear-static-content","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Clear generated static view files. Necessary, if the module(s) have static view files","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"module:status","usage":["module:status [--enabled] [--disabled] [--magento-init-params MAGENTO-INIT-PARAMS] [--] []"],"description":"Displays status of modules","help":"Displays status of modules","definition":{"arguments":{"module":{"name":"module","is_required":false,"is_array":false,"description":"Optional module name","default":null}},"options":{"enabled":{"name":"--enabled","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Print only enabled modules","default":false},"disabled":{"name":"--disabled","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Print only disabled modules","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"module:uninstall","usage":["module:uninstall [-r|--remove-data] [--backup-code] [--backup-media] [--backup-db] [--non-composer] [-c|--clear-static-content] [--magento-init-params MAGENTO-INIT-PARAMS] [--] ..."],"description":"Uninstalls modules installed by composer","help":"Uninstalls modules installed by composer","definition":{"arguments":{"module":{"name":"module","is_required":true,"is_array":true,"description":"Name of the module","default":[]}},"options":{"remove-data":{"name":"--remove-data","shortcut":"-r","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Remove data installed by module(s)","default":false},"backup-code":{"name":"--backup-code","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take code and configuration files backup (excluding temporary files)","default":false},"backup-media":{"name":"--backup-media","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take media backup","default":false},"backup-db":{"name":"--backup-db","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take complete database backup","default":false},"non-composer":{"name":"--non-composer","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"All modules, that will be past here will be non composer based","default":false},"clear-static-content":{"name":"--clear-static-content","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Clear generated static view files. Necessary, if the module(s) have static view files","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"msp:security:recaptcha:disable","usage":["msp:security:recaptcha:disable"],"description":"Disable backend reCaptcha","help":"Disable backend reCaptcha","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"msp:security:tfa:disable","usage":["msp:security:tfa:disable"],"description":"Globally disable two factor auth","help":"Globally disable two factor auth","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"msp:security:tfa:providers","usage":["msp:security:tfa:providers"],"description":"List all available providers","help":"List all available providers","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"msp:security:tfa:reset","usage":["msp:security:tfa:reset "],"description":"Reset configuration for one user","help":"Reset configuration for one user","definition":{"arguments":{"user":{"name":"user","is_required":true,"is_array":false,"description":"Username","default":null},"provider":{"name":"provider","is_required":true,"is_array":false,"description":"Provider code","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"newrelic:create:deploy-marker","usage":["newrelic:create:deploy-marker []"],"description":"Check the deploy queue for entries and create an appropriate deploy marker.","help":"Check the deploy queue for entries and create an appropriate deploy marker.","definition":{"arguments":{"message":{"name":"message","is_required":true,"is_array":false,"description":"Deploy Message?","default":null},"change_log":{"name":"change_log","is_required":true,"is_array":false,"description":"Change Log?","default":null},"user":{"name":"user","is_required":false,"is_array":false,"description":"Deployment User","default":null}},"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"queue:consumers:list","usage":["queue:consumers:list"],"description":"List of MessageQueue consumers","help":"This command shows list of MessageQueue consumers.","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"queue:consumers:start","usage":["queue:consumers:start [--max-messages MAX-MESSAGES] [--batch-size BATCH-SIZE] [--area-code AREA-CODE] [--single-thread] [--pid-file-path PID-FILE-PATH] [--] "],"description":"Start MessageQueue consumer","help":"This command starts MessageQueue consumer by its name.\n\nTo start consumer which will process all queued messages and terminate execution:\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer<\/comment>\n\nTo specify the number of messages which should be processed by consumer before its termination:\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer --max-messages=50<\/comment>\n\nTo specify the number of messages per batch for the batch consumer:\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer --batch-size=500<\/comment>\n\nTo specify the preferred area:\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer --area-code='adminhtml'<\/comment>\n \nTo do not run multiple copies of one consumer simultaneously:\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer --single-thread'<\/comment>\n\nTo save PID enter path (This option is deprecated, use --single-thread instead):\n\n \/var\/www\/html\/magento2\/bin\/magento queue:consumers:start someConsumer --pid-file-path='\/var\/someConsumer.pid'<\/comment>","definition":{"arguments":{"consumer":{"name":"consumer","is_required":true,"is_array":false,"description":"The name of the consumer to be started.","default":null}},"options":{"max-messages":{"name":"--max-messages","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The number of messages to be processed by the consumer before process termination. If not specified - terminate after processing all queued messages.","default":null},"batch-size":{"name":"--batch-size","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The number of messages per batch. Applicable for the batch consumer only.","default":null},"area-code":{"name":"--area-code","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The preferred area (global, adminhtml, etc...) default is global.","default":null},"single-thread":{"name":"--single-thread","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"This option prevents running multiple copies of one consumer simultaneously.","default":false},"pid-file-path":{"name":"--pid-file-path","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The file path for saving PID (This option is deprecated, use --single-thread instead)","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"sampledata:deploy","usage":["sampledata:deploy [--no-update]"],"description":"Deploy sample data modules for composer-based Magento installations","help":"Deploy sample data modules for composer-based Magento installations","definition":{"arguments":[],"options":{"no-update":{"name":"--no-update","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Update composer.json without executing composer update","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"sampledata:remove","usage":["sampledata:remove [--no-update]"],"description":"Remove all sample data packages from composer.json","help":"Remove all sample data packages from composer.json","definition":{"arguments":[],"options":{"no-update":{"name":"--no-update","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Update composer.json without executing composer update","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"sampledata:reset","usage":["sampledata:reset"],"description":"Reset all sample data modules for re-installation","help":"Reset all sample data modules for re-installation","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:backup","usage":["setup:backup [--code] [--media] [--db] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Takes backup of Magento Application code base, media and database","help":"Takes backup of Magento Application code base, media and database","definition":{"arguments":[],"options":{"code":{"name":"--code","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take code and configuration files backup (excluding temporary files)","default":false},"media":{"name":"--media","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take media backup","default":false},"db":{"name":"--db","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take complete database backup","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:config:set","usage":["setup:config:set [--amqp-host AMQP-HOST] [--amqp-port AMQP-PORT] [--amqp-user AMQP-USER] [--amqp-password AMQP-PASSWORD] [--amqp-virtualhost AMQP-VIRTUALHOST] [--amqp-ssl AMQP-SSL] [--amqp-ssl-options AMQP-SSL-OPTIONS] [--enable-debug-logging ENABLE-DEBUG-LOGGING] [--enable-syslog-logging ENABLE-SYSLOG-LOGGING] [--backend-frontname BACKEND-FRONTNAME] [--consumers-wait-for-messages CONSUMERS-WAIT-FOR-MESSAGES] [--key KEY] [--db-host DB-HOST] [--db-name DB-NAME] [--db-user DB-USER] [--db-engine DB-ENGINE] [--db-password DB-PASSWORD] [--db-prefix DB-PREFIX] [--db-model DB-MODEL] [--db-init-statements DB-INIT-STATEMENTS] [-s|--skip-db-validation] [--http-cache-hosts HTTP-CACHE-HOSTS] [--db-ssl-key DB-SSL-KEY] [--db-ssl-cert DB-SSL-CERT] [--db-ssl-ca DB-SSL-CA] [--db-ssl-verify] [--session-save SESSION-SAVE] [--session-save-redis-host SESSION-SAVE-REDIS-HOST] [--session-save-redis-port SESSION-SAVE-REDIS-PORT] [--session-save-redis-password SESSION-SAVE-REDIS-PASSWORD] [--session-save-redis-timeout SESSION-SAVE-REDIS-TIMEOUT] [--session-save-redis-persistent-id SESSION-SAVE-REDIS-PERSISTENT-ID] [--session-save-redis-db SESSION-SAVE-REDIS-DB] [--session-save-redis-compression-threshold SESSION-SAVE-REDIS-COMPRESSION-THRESHOLD] [--session-save-redis-compression-lib SESSION-SAVE-REDIS-COMPRESSION-LIB] [--session-save-redis-log-level SESSION-SAVE-REDIS-LOG-LEVEL] [--session-save-redis-max-concurrency SESSION-SAVE-REDIS-MAX-CONCURRENCY] [--session-save-redis-break-after-frontend SESSION-SAVE-REDIS-BREAK-AFTER-FRONTEND] [--session-save-redis-break-after-adminhtml SESSION-SAVE-REDIS-BREAK-AFTER-ADMINHTML] [--session-save-redis-first-lifetime SESSION-SAVE-REDIS-FIRST-LIFETIME] [--session-save-redis-bot-first-lifetime SESSION-SAVE-REDIS-BOT-FIRST-LIFETIME] [--session-save-redis-bot-lifetime SESSION-SAVE-REDIS-BOT-LIFETIME] [--session-save-redis-disable-locking SESSION-SAVE-REDIS-DISABLE-LOCKING] [--session-save-redis-min-lifetime SESSION-SAVE-REDIS-MIN-LIFETIME] [--session-save-redis-max-lifetime SESSION-SAVE-REDIS-MAX-LIFETIME] [--session-save-redis-sentinel-master SESSION-SAVE-REDIS-SENTINEL-MASTER] [--session-save-redis-sentinel-servers SESSION-SAVE-REDIS-SENTINEL-SERVERS] [--session-save-redis-sentinel-verify-master SESSION-SAVE-REDIS-SENTINEL-VERIFY-MASTER] [--session-save-redis-sentinel-connect-retires SESSION-SAVE-REDIS-SENTINEL-CONNECT-RETIRES] [--cache-backend CACHE-BACKEND] [--cache-backend-redis-server CACHE-BACKEND-REDIS-SERVER] [--cache-backend-redis-db CACHE-BACKEND-REDIS-DB] [--cache-backend-redis-port CACHE-BACKEND-REDIS-PORT] [--cache-backend-redis-password CACHE-BACKEND-REDIS-PASSWORD] [--cache-backend-redis-compress-data CACHE-BACKEND-REDIS-COMPRESS-DATA] [--cache-backend-redis-compression-lib CACHE-BACKEND-REDIS-COMPRESSION-LIB] [--cache-id-prefix CACHE-ID-PREFIX] [--page-cache PAGE-CACHE] [--page-cache-redis-server PAGE-CACHE-REDIS-SERVER] [--page-cache-redis-db PAGE-CACHE-REDIS-DB] [--page-cache-redis-port PAGE-CACHE-REDIS-PORT] [--page-cache-redis-password PAGE-CACHE-REDIS-PASSWORD] [--page-cache-redis-compress-data PAGE-CACHE-REDIS-COMPRESS-DATA] [--page-cache-redis-compression-lib PAGE-CACHE-REDIS-COMPRESSION-LIB] [--page-cache-id-prefix PAGE-CACHE-ID-PREFIX] [--lock-provider LOCK-PROVIDER] [--lock-db-prefix LOCK-DB-PREFIX] [--lock-zookeeper-host LOCK-ZOOKEEPER-HOST] [--lock-zookeeper-path LOCK-ZOOKEEPER-PATH] [--lock-file-path LOCK-FILE-PATH] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Creates or modifies the deployment configuration","help":"Creates or modifies the deployment configuration","definition":{"arguments":[],"options":{"amqp-host":{"name":"--amqp-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server host","default":""},"amqp-port":{"name":"--amqp-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server port","default":"5672"},"amqp-user":{"name":"--amqp-user","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server username","default":""},"amqp-password":{"name":"--amqp-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server password","default":""},"amqp-virtualhost":{"name":"--amqp-virtualhost","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp virtualhost","default":"\/"},"amqp-ssl":{"name":"--amqp-ssl","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp SSL","default":""},"amqp-ssl-options":{"name":"--amqp-ssl-options","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp SSL Options (JSON)","default":""},"enable-debug-logging":{"name":"--enable-debug-logging","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Enable debug logging","default":null},"enable-syslog-logging":{"name":"--enable-syslog-logging","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Enable syslog logging","default":null},"backend-frontname":{"name":"--backend-frontname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Backend frontname (will be autogenerated if missing)","default":null},"consumers-wait-for-messages":{"name":"--consumers-wait-for-messages","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Should consumers wait for a message from the queue? 1 - Yes, 0 - No","default":null},"key":{"name":"--key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Encryption key","default":null},"db-host":{"name":"--db-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server host","default":null},"db-name":{"name":"--db-name","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database name","default":null},"db-user":{"name":"--db-user","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server username","default":null},"db-engine":{"name":"--db-engine","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server engine","default":null},"db-password":{"name":"--db-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server password","default":null},"db-prefix":{"name":"--db-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database table prefix","default":null},"db-model":{"name":"--db-model","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database type","default":null},"db-init-statements":{"name":"--db-init-statements","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database initial set of commands","default":null},"skip-db-validation":{"name":"--skip-db-validation","shortcut":"-s","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"If specified, then db connection validation will be skipped","default":false},"http-cache-hosts":{"name":"--http-cache-hosts","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"http Cache hosts","default":null},"db-ssl-key":{"name":"--db-ssl-key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of client key file in order to establish db connection through SSL","default":""},"db-ssl-cert":{"name":"--db-ssl-cert","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of client certificate file in order to establish db connection through SSL","default":""},"db-ssl-ca":{"name":"--db-ssl-ca","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of server certificate file in order to establish db connection through SSL","default":""},"db-ssl-verify":{"name":"--db-ssl-verify","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Verify server certification","default":false},"session-save":{"name":"--session-save","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Session save handler","default":null},"session-save-redis-host":{"name":"--session-save-redis-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Fully qualified host name, IP address, or absolute path if using UNIX sockets","default":null},"session-save-redis-port":{"name":"--session-save-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"session-save-redis-password":{"name":"--session-save-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"session-save-redis-timeout":{"name":"--session-save-redis-timeout","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Connection timeout, in seconds","default":null},"session-save-redis-persistent-id":{"name":"--session-save-redis-persistent-id","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Unique string to enable persistent connections","default":null},"session-save-redis-db":{"name":"--session-save-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis database number","default":null},"session-save-redis-compression-threshold":{"name":"--session-save-redis-compression-threshold","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis compression threshold","default":null},"session-save-redis-compression-lib":{"name":"--session-save-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis compression library. Values:\u00a0gzip (default), lzf, lz4, snappy","default":null},"session-save-redis-log-level":{"name":"--session-save-redis-log-level","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis log level. Values: 0 (least verbose) to 7 (most verbose)","default":null},"session-save-redis-max-concurrency":{"name":"--session-save-redis-max-concurrency","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Maximum number of processes that can wait for a lock on one session","default":null},"session-save-redis-break-after-frontend":{"name":"--session-save-redis-break-after-frontend","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Number of seconds to wait before trying to break a lock for frontend session","default":null},"session-save-redis-break-after-adminhtml":{"name":"--session-save-redis-break-after-adminhtml","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Number of seconds to wait before trying to break a lock for Admin session","default":null},"session-save-redis-first-lifetime":{"name":"--session-save-redis-first-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime, in seconds, of session for non-bots on the first write (use 0 to disable)","default":null},"session-save-redis-bot-first-lifetime":{"name":"--session-save-redis-bot-first-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime, in seconds, of session for bots on the first write (use 0 to disable)","default":null},"session-save-redis-bot-lifetime":{"name":"--session-save-redis-bot-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime of session for bots on subsequent writes (use 0 to disable)","default":null},"session-save-redis-disable-locking":{"name":"--session-save-redis-disable-locking","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis disable locking. Values:\u00a0false (default), true","default":null},"session-save-redis-min-lifetime":{"name":"--session-save-redis-min-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis min session lifetime, in seconds","default":null},"session-save-redis-max-lifetime":{"name":"--session-save-redis-max-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis max session lifetime, in seconds","default":null},"session-save-redis-sentinel-master":{"name":"--session-save-redis-sentinel-master","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel master","default":null},"session-save-redis-sentinel-servers":{"name":"--session-save-redis-sentinel-servers","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel servers, comma separated","default":null},"session-save-redis-sentinel-verify-master":{"name":"--session-save-redis-sentinel-verify-master","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel verify master. Values: false (default), true","default":null},"session-save-redis-sentinel-connect-retires":{"name":"--session-save-redis-sentinel-connect-retires","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel connect retries.","default":null},"cache-backend":{"name":"--cache-backend","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default cache handler","default":null},"cache-backend-redis-server":{"name":"--cache-backend-redis-server","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server","default":null},"cache-backend-redis-db":{"name":"--cache-backend-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database number for the cache","default":null},"cache-backend-redis-port":{"name":"--cache-backend-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"cache-backend-redis-password":{"name":"--cache-backend-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"cache-backend-redis-compress-data":{"name":"--cache-backend-redis-compress-data","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Set to 0 to disable compression (default is 1, enabled)","default":null},"cache-backend-redis-compression-lib":{"name":"--cache-backend-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Compression lib to use [snappy,lzf,l4z,zstd,gzip] (leave blank to determine automatically)","default":null},"cache-id-prefix":{"name":"--cache-id-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"ID prefix for cache keys","default":null},"page-cache":{"name":"--page-cache","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default cache handler","default":null},"page-cache-redis-server":{"name":"--page-cache-redis-server","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server","default":null},"page-cache-redis-db":{"name":"--page-cache-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database number for the cache","default":null},"page-cache-redis-port":{"name":"--page-cache-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"page-cache-redis-password":{"name":"--page-cache-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"page-cache-redis-compress-data":{"name":"--page-cache-redis-compress-data","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Set to 1 to compress the full page cache (use 0 to disable)","default":null},"page-cache-redis-compression-lib":{"name":"--page-cache-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Compression library to use [snappy,lzf,l4z,zstd,gzip] (leave blank to determine automatically)","default":null},"page-cache-id-prefix":{"name":"--page-cache-id-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"ID prefix for cache keys","default":null},"lock-provider":{"name":"--lock-provider","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lock provider name","default":null},"lock-db-prefix":{"name":"--lock-db-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Installation specific lock prefix to avoid lock conflicts","default":null},"lock-zookeeper-host":{"name":"--lock-zookeeper-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Host and port to connect to Zookeeper cluster. For example: 127.0.0.1:2181","default":null},"lock-zookeeper-path":{"name":"--lock-zookeeper-path","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The path where Zookeeper will save locks. The default path is: \/magento\/locks","default":null},"lock-file-path":{"name":"--lock-file-path","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The path where file locks will be saved.","default":null},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:cron:run","usage":["setup:cron:run [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Runs cron job scheduled for setup application","help":"Runs cron job scheduled for setup application","definition":{"arguments":[],"options":{"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-data:upgrade","usage":["setup:db-data:upgrade [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Installs and upgrades data in the DB","help":"Installs and upgrades data in the DB","definition":{"arguments":[],"options":{"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-declaration:generate-patch","usage":["setup:db-declaration:generate-patch [--revertable [REVERTABLE]] [--type [TYPE]] [--] "],"description":"Generate patch and put it in specific folder.","help":"Generate patch and put it in specific folder.","definition":{"arguments":{"module":{"name":"module","is_required":true,"is_array":false,"description":"Module name","default":null},"patch":{"name":"patch","is_required":true,"is_array":false,"description":"Patch name","default":null}},"options":{"revertable":{"name":"--revertable","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Check whether patch is revertable or not.","default":false},"type":{"name":"--type","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Find out what type of patch should be generated. Available values: `data`, `schema`.","default":"data"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-declaration:generate-whitelist","usage":["setup:db-declaration:generate-whitelist [--module-name [MODULE-NAME]]"],"description":"Generate whitelist of tables and columns that are allowed to be edited by declaration installer","help":"Generate whitelist of tables and columns that are allowed to be edited by declaration installer","definition":{"arguments":[],"options":{"module-name":{"name":"--module-name","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Name of the module where whitelist will be generated","default":"all"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db-schema:upgrade","usage":["setup:db-schema:upgrade [--convert-old-scripts [CONVERT-OLD-SCRIPTS]] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Installs and upgrades the DB schema","help":"Installs and upgrades the DB schema","definition":{"arguments":[],"options":{"convert-old-scripts":{"name":"--convert-old-scripts","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Allows to convert old scripts (InstallSchema, UpgradeSchema) to db_schema.xml format","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:db:status","usage":["setup:db:status [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Checks if DB schema or data requires upgrade","help":"Checks if DB schema or data requires upgrade","definition":{"arguments":[],"options":{"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:di:compile","usage":["setup:di:compile"],"description":"Generates DI configuration and all missing classes that can be auto-generated","help":"Generates DI configuration and all missing classes that can be auto-generated","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:install","usage":["setup:install [--amqp-host AMQP-HOST] [--amqp-port AMQP-PORT] [--amqp-user AMQP-USER] [--amqp-password AMQP-PASSWORD] [--amqp-virtualhost AMQP-VIRTUALHOST] [--amqp-ssl AMQP-SSL] [--amqp-ssl-options AMQP-SSL-OPTIONS] [--enable-debug-logging ENABLE-DEBUG-LOGGING] [--enable-syslog-logging ENABLE-SYSLOG-LOGGING] [--backend-frontname BACKEND-FRONTNAME] [--consumers-wait-for-messages CONSUMERS-WAIT-FOR-MESSAGES] [--key KEY] [--db-host DB-HOST] [--db-name DB-NAME] [--db-user DB-USER] [--db-engine DB-ENGINE] [--db-password DB-PASSWORD] [--db-prefix DB-PREFIX] [--db-model DB-MODEL] [--db-init-statements DB-INIT-STATEMENTS] [-s|--skip-db-validation] [--http-cache-hosts HTTP-CACHE-HOSTS] [--db-ssl-key DB-SSL-KEY] [--db-ssl-cert DB-SSL-CERT] [--db-ssl-ca DB-SSL-CA] [--db-ssl-verify] [--session-save SESSION-SAVE] [--session-save-redis-host SESSION-SAVE-REDIS-HOST] [--session-save-redis-port SESSION-SAVE-REDIS-PORT] [--session-save-redis-password SESSION-SAVE-REDIS-PASSWORD] [--session-save-redis-timeout SESSION-SAVE-REDIS-TIMEOUT] [--session-save-redis-persistent-id SESSION-SAVE-REDIS-PERSISTENT-ID] [--session-save-redis-db SESSION-SAVE-REDIS-DB] [--session-save-redis-compression-threshold SESSION-SAVE-REDIS-COMPRESSION-THRESHOLD] [--session-save-redis-compression-lib SESSION-SAVE-REDIS-COMPRESSION-LIB] [--session-save-redis-log-level SESSION-SAVE-REDIS-LOG-LEVEL] [--session-save-redis-max-concurrency SESSION-SAVE-REDIS-MAX-CONCURRENCY] [--session-save-redis-break-after-frontend SESSION-SAVE-REDIS-BREAK-AFTER-FRONTEND] [--session-save-redis-break-after-adminhtml SESSION-SAVE-REDIS-BREAK-AFTER-ADMINHTML] [--session-save-redis-first-lifetime SESSION-SAVE-REDIS-FIRST-LIFETIME] [--session-save-redis-bot-first-lifetime SESSION-SAVE-REDIS-BOT-FIRST-LIFETIME] [--session-save-redis-bot-lifetime SESSION-SAVE-REDIS-BOT-LIFETIME] [--session-save-redis-disable-locking SESSION-SAVE-REDIS-DISABLE-LOCKING] [--session-save-redis-min-lifetime SESSION-SAVE-REDIS-MIN-LIFETIME] [--session-save-redis-max-lifetime SESSION-SAVE-REDIS-MAX-LIFETIME] [--session-save-redis-sentinel-master SESSION-SAVE-REDIS-SENTINEL-MASTER] [--session-save-redis-sentinel-servers SESSION-SAVE-REDIS-SENTINEL-SERVERS] [--session-save-redis-sentinel-verify-master SESSION-SAVE-REDIS-SENTINEL-VERIFY-MASTER] [--session-save-redis-sentinel-connect-retires SESSION-SAVE-REDIS-SENTINEL-CONNECT-RETIRES] [--cache-backend CACHE-BACKEND] [--cache-backend-redis-server CACHE-BACKEND-REDIS-SERVER] [--cache-backend-redis-db CACHE-BACKEND-REDIS-DB] [--cache-backend-redis-port CACHE-BACKEND-REDIS-PORT] [--cache-backend-redis-password CACHE-BACKEND-REDIS-PASSWORD] [--cache-backend-redis-compress-data CACHE-BACKEND-REDIS-COMPRESS-DATA] [--cache-backend-redis-compression-lib CACHE-BACKEND-REDIS-COMPRESSION-LIB] [--cache-id-prefix CACHE-ID-PREFIX] [--page-cache PAGE-CACHE] [--page-cache-redis-server PAGE-CACHE-REDIS-SERVER] [--page-cache-redis-db PAGE-CACHE-REDIS-DB] [--page-cache-redis-port PAGE-CACHE-REDIS-PORT] [--page-cache-redis-password PAGE-CACHE-REDIS-PASSWORD] [--page-cache-redis-compress-data PAGE-CACHE-REDIS-COMPRESS-DATA] [--page-cache-redis-compression-lib PAGE-CACHE-REDIS-COMPRESSION-LIB] [--page-cache-id-prefix PAGE-CACHE-ID-PREFIX] [--lock-provider LOCK-PROVIDER] [--lock-db-prefix LOCK-DB-PREFIX] [--lock-zookeeper-host LOCK-ZOOKEEPER-HOST] [--lock-zookeeper-path LOCK-ZOOKEEPER-PATH] [--lock-file-path LOCK-FILE-PATH] [--base-url BASE-URL] [--language LANGUAGE] [--timezone TIMEZONE] [--currency CURRENCY] [--use-rewrites USE-REWRITES] [--use-secure USE-SECURE] [--base-url-secure BASE-URL-SECURE] [--use-secure-admin USE-SECURE-ADMIN] [--admin-use-security-key ADMIN-USE-SECURITY-KEY] [--admin-user [ADMIN-USER]] [--admin-password [ADMIN-PASSWORD]] [--admin-email [ADMIN-EMAIL]] [--admin-firstname [ADMIN-FIRSTNAME]] [--admin-lastname [ADMIN-LASTNAME]] [--cleanup-database] [--sales-order-increment-prefix SALES-ORDER-INCREMENT-PREFIX] [--use-sample-data] [--enable-modules [ENABLE-MODULES]] [--disable-modules [DISABLE-MODULES]] [--convert-old-scripts [CONVERT-OLD-SCRIPTS]] [-i|--interactive] [--safe-mode [SAFE-MODE]] [--data-restore [DATA-RESTORE]] [--dry-run [DRY-RUN]] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Installs the Magento application","help":"Installs the Magento application","definition":{"arguments":[],"options":{"amqp-host":{"name":"--amqp-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server host","default":""},"amqp-port":{"name":"--amqp-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server port","default":"5672"},"amqp-user":{"name":"--amqp-user","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server username","default":""},"amqp-password":{"name":"--amqp-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp server password","default":""},"amqp-virtualhost":{"name":"--amqp-virtualhost","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp virtualhost","default":"\/"},"amqp-ssl":{"name":"--amqp-ssl","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp SSL","default":""},"amqp-ssl-options":{"name":"--amqp-ssl-options","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Amqp SSL Options (JSON)","default":""},"enable-debug-logging":{"name":"--enable-debug-logging","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Enable debug logging","default":null},"enable-syslog-logging":{"name":"--enable-syslog-logging","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Enable syslog logging","default":null},"backend-frontname":{"name":"--backend-frontname","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Backend frontname (will be autogenerated if missing)","default":null},"consumers-wait-for-messages":{"name":"--consumers-wait-for-messages","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Should consumers wait for a message from the queue? 1 - Yes, 0 - No","default":null},"key":{"name":"--key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Encryption key","default":null},"db-host":{"name":"--db-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server host","default":null},"db-name":{"name":"--db-name","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database name","default":null},"db-user":{"name":"--db-user","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server username","default":null},"db-engine":{"name":"--db-engine","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server engine","default":null},"db-password":{"name":"--db-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database server password","default":null},"db-prefix":{"name":"--db-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database table prefix","default":null},"db-model":{"name":"--db-model","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database type","default":null},"db-init-statements":{"name":"--db-init-statements","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database initial set of commands","default":null},"skip-db-validation":{"name":"--skip-db-validation","shortcut":"-s","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"If specified, then db connection validation will be skipped","default":false},"http-cache-hosts":{"name":"--http-cache-hosts","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"http Cache hosts","default":null},"db-ssl-key":{"name":"--db-ssl-key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of client key file in order to establish db connection through SSL","default":""},"db-ssl-cert":{"name":"--db-ssl-cert","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of client certificate file in order to establish db connection through SSL","default":""},"db-ssl-ca":{"name":"--db-ssl-ca","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Full path of server certificate file in order to establish db connection through SSL","default":""},"db-ssl-verify":{"name":"--db-ssl-verify","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Verify server certification","default":false},"session-save":{"name":"--session-save","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Session save handler","default":null},"session-save-redis-host":{"name":"--session-save-redis-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Fully qualified host name, IP address, or absolute path if using UNIX sockets","default":null},"session-save-redis-port":{"name":"--session-save-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"session-save-redis-password":{"name":"--session-save-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"session-save-redis-timeout":{"name":"--session-save-redis-timeout","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Connection timeout, in seconds","default":null},"session-save-redis-persistent-id":{"name":"--session-save-redis-persistent-id","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Unique string to enable persistent connections","default":null},"session-save-redis-db":{"name":"--session-save-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis database number","default":null},"session-save-redis-compression-threshold":{"name":"--session-save-redis-compression-threshold","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis compression threshold","default":null},"session-save-redis-compression-lib":{"name":"--session-save-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis compression library. Values:\u00a0gzip (default), lzf, lz4, snappy","default":null},"session-save-redis-log-level":{"name":"--session-save-redis-log-level","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis log level. Values: 0 (least verbose) to 7 (most verbose)","default":null},"session-save-redis-max-concurrency":{"name":"--session-save-redis-max-concurrency","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Maximum number of processes that can wait for a lock on one session","default":null},"session-save-redis-break-after-frontend":{"name":"--session-save-redis-break-after-frontend","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Number of seconds to wait before trying to break a lock for frontend session","default":null},"session-save-redis-break-after-adminhtml":{"name":"--session-save-redis-break-after-adminhtml","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Number of seconds to wait before trying to break a lock for Admin session","default":null},"session-save-redis-first-lifetime":{"name":"--session-save-redis-first-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime, in seconds, of session for non-bots on the first write (use 0 to disable)","default":null},"session-save-redis-bot-first-lifetime":{"name":"--session-save-redis-bot-first-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime, in seconds, of session for bots on the first write (use 0 to disable)","default":null},"session-save-redis-bot-lifetime":{"name":"--session-save-redis-bot-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lifetime of session for bots on subsequent writes (use 0 to disable)","default":null},"session-save-redis-disable-locking":{"name":"--session-save-redis-disable-locking","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis disable locking. Values:\u00a0false (default), true","default":null},"session-save-redis-min-lifetime":{"name":"--session-save-redis-min-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis min session lifetime, in seconds","default":null},"session-save-redis-max-lifetime":{"name":"--session-save-redis-max-lifetime","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis max session lifetime, in seconds","default":null},"session-save-redis-sentinel-master":{"name":"--session-save-redis-sentinel-master","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel master","default":null},"session-save-redis-sentinel-servers":{"name":"--session-save-redis-sentinel-servers","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel servers, comma separated","default":null},"session-save-redis-sentinel-verify-master":{"name":"--session-save-redis-sentinel-verify-master","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel verify master. Values: false (default), true","default":null},"session-save-redis-sentinel-connect-retires":{"name":"--session-save-redis-sentinel-connect-retires","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis Sentinel connect retries.","default":null},"cache-backend":{"name":"--cache-backend","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default cache handler","default":null},"cache-backend-redis-server":{"name":"--cache-backend-redis-server","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server","default":null},"cache-backend-redis-db":{"name":"--cache-backend-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database number for the cache","default":null},"cache-backend-redis-port":{"name":"--cache-backend-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"cache-backend-redis-password":{"name":"--cache-backend-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"cache-backend-redis-compress-data":{"name":"--cache-backend-redis-compress-data","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Set to 0 to disable compression (default is 1, enabled)","default":null},"cache-backend-redis-compression-lib":{"name":"--cache-backend-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Compression lib to use [snappy,lzf,l4z,zstd,gzip] (leave blank to determine automatically)","default":null},"cache-id-prefix":{"name":"--cache-id-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"ID prefix for cache keys","default":null},"page-cache":{"name":"--page-cache","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default cache handler","default":null},"page-cache-redis-server":{"name":"--page-cache-redis-server","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server","default":null},"page-cache-redis-db":{"name":"--page-cache-redis-db","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Database number for the cache","default":null},"page-cache-redis-port":{"name":"--page-cache-redis-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server listen port","default":null},"page-cache-redis-password":{"name":"--page-cache-redis-password","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Redis server password","default":null},"page-cache-redis-compress-data":{"name":"--page-cache-redis-compress-data","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Set to 1 to compress the full page cache (use 0 to disable)","default":null},"page-cache-redis-compression-lib":{"name":"--page-cache-redis-compression-lib","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Compression library to use [snappy,lzf,l4z,zstd,gzip] (leave blank to determine automatically)","default":null},"page-cache-id-prefix":{"name":"--page-cache-id-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"ID prefix for cache keys","default":null},"lock-provider":{"name":"--lock-provider","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Lock provider name","default":null},"lock-db-prefix":{"name":"--lock-db-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Installation specific lock prefix to avoid lock conflicts","default":null},"lock-zookeeper-host":{"name":"--lock-zookeeper-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Host and port to connect to Zookeeper cluster. For example: 127.0.0.1:2181","default":null},"lock-zookeeper-path":{"name":"--lock-zookeeper-path","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The path where Zookeeper will save locks. The default path is: \/magento\/locks","default":null},"lock-file-path":{"name":"--lock-file-path","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The path where file locks will be saved.","default":null},"base-url":{"name":"--base-url","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"URL the store is supposed to be available at. Deprecated, use config:set with path web\/unsecure\/base_url","default":null},"language":{"name":"--language","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default language code. Deprecated, use config:set with path general\/locale\/code","default":null},"timezone":{"name":"--timezone","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default time zone code. Deprecated, use config:set with path general\/locale\/timezone","default":null},"currency":{"name":"--currency","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default currency code. Deprecated, use config:set with path currency\/options\/base, currency\/options\/default and currency\/options\/allow","default":null},"use-rewrites":{"name":"--use-rewrites","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Use rewrites. Deprecated, use config:set with path web\/seo\/use_rewrites","default":null},"use-secure":{"name":"--use-secure","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Use secure URLs. Enable this option only if SSL is available. Deprecated, use config:set with path web\/secure\/use_in_frontend","default":null},"base-url-secure":{"name":"--base-url-secure","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Base URL for SSL connection. Deprecated, use config:set with path web\/secure\/base_url","default":null},"use-secure-admin":{"name":"--use-secure-admin","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Run admin interface with SSL. Deprecated, use config:set with path web\/secure\/use_in_adminhtml","default":null},"admin-use-security-key":{"name":"--admin-use-security-key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Whether to use a \"security key\" feature in Magento Admin URLs and forms. Deprecated, use config:set with path admin\/security\/use_form_key","default":null},"admin-user":{"name":"--admin-user","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Admin user","default":null},"admin-password":{"name":"--admin-password","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Admin password","default":null},"admin-email":{"name":"--admin-email","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Admin email","default":null},"admin-firstname":{"name":"--admin-firstname","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Admin first name","default":null},"admin-lastname":{"name":"--admin-lastname","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Admin last name","default":null},"cleanup-database":{"name":"--cleanup-database","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Cleanup the database before installation","default":false},"sales-order-increment-prefix":{"name":"--sales-order-increment-prefix","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Sales order number prefix","default":null},"use-sample-data":{"name":"--use-sample-data","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Use sample data","default":false},"enable-modules":{"name":"--enable-modules","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"List of comma-separated module names. That must be included during installation. Available magic param \"all\".","default":null},"disable-modules":{"name":"--disable-modules","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"List of comma-separated module names. That must be avoided during installation. Available magic param \"all\".","default":null},"convert-old-scripts":{"name":"--convert-old-scripts","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Allows to convert old scripts (InstallSchema, UpgradeSchema) to db_schema.xml format","default":false},"interactive":{"name":"--interactive","shortcut":"-i","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Interactive Magento installation","default":false},"safe-mode":{"name":"--safe-mode","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Safe installation of Magento with dumps on destructive operations, like column removal","default":null},"data-restore":{"name":"--data-restore","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Restore removed data from dumps","default":null},"dry-run":{"name":"--dry-run","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Magento Installation will be run in dry-run mode","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:performance:generate-fixtures","usage":["setup:performance:generate-fixtures [-s|--skip-reindex] [--] "],"description":"Generates fixtures","help":"Generates fixtures","definition":{"arguments":{"profile":{"name":"profile","is_required":true,"is_array":false,"description":"Path to profile configuration file","default":null}},"options":{"skip-reindex":{"name":"--skip-reindex","shortcut":"-s","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Skip reindex","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:rollback","usage":["setup:rollback [-c|--code-file CODE-FILE] [-m|--media-file MEDIA-FILE] [-d|--db-file DB-FILE] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Rolls back Magento Application codebase, media and database","help":"Rolls back Magento Application codebase, media and database","definition":{"arguments":[],"options":{"code-file":{"name":"--code-file","shortcut":"-c","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Basename of the code backup file in var\/backups","default":null},"media-file":{"name":"--media-file","shortcut":"-m","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Basename of the media backup file in var\/backups","default":null},"db-file":{"name":"--db-file","shortcut":"-d","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Basename of the db backup file in var\/backups","default":null},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:static-content:deploy","usage":["setup:static-content:deploy [-f|--force] [-s|--strategy [STRATEGY]] [-a|--area [AREA]] [--exclude-area [EXCLUDE-AREA]] [-t|--theme [THEME]] [--exclude-theme [EXCLUDE-THEME]] [-l|--language [LANGUAGE]] [--exclude-language [EXCLUDE-LANGUAGE]] [-j|--jobs [JOBS]] [--max-execution-time [MAX-EXECUTION-TIME]] [--symlink-locale] [--content-version CONTENT-VERSION] [--refresh-content-version-only] [--no-javascript] [--no-js-bundle] [--no-css] [--no-less] [--no-images] [--no-fonts] [--no-html] [--no-misc] [--no-html-minify] [--] [...]"],"description":"Deploys static view files","help":"Deploys static view files","definition":{"arguments":{"languages":{"name":"languages","is_required":false,"is_array":true,"description":"Space-separated list of ISO-639 language codes for which to output static view files.","default":[]}},"options":{"force":{"name":"--force","shortcut":"-f","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Deploy files in any mode.","default":false},"strategy":{"name":"--strategy","shortcut":"-s","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Deploy files using specified strategy.","default":"quick"},"area":{"name":"--area","shortcut":"-a","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Generate files only for the specified areas.","default":["all"]},"exclude-area":{"name":"--exclude-area","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Do not generate files for the specified areas.","default":["none"]},"theme":{"name":"--theme","shortcut":"-t","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Generate static view files for only the specified themes.","default":["all"]},"exclude-theme":{"name":"--exclude-theme","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Do not generate files for the specified themes.","default":["none"]},"language":{"name":"--language","shortcut":"-l","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Generate files only for the specified languages.","default":["all"]},"exclude-language":{"name":"--exclude-language","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"Do not generate files for the specified languages.","default":["none"]},"jobs":{"name":"--jobs","shortcut":"-j","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Enable parallel processing using the specified number of jobs.","default":0},"max-execution-time":{"name":"--max-execution-time","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"The maximum expected execution time of deployment static process (in seconds).","default":900},"symlink-locale":{"name":"--symlink-locale","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Create symlinks for the files of those locales, which are passed for deployment, but have no customizations.","default":false},"content-version":{"name":"--content-version","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Custom version of static content can be used if running deployment on multiple nodes to ensure that static content version is identical and caching works properly.","default":null},"refresh-content-version-only":{"name":"--refresh-content-version-only","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Refreshing the version of static content only can be used to refresh static content in browser cache and CDN cache.","default":false},"no-javascript":{"name":"--no-javascript","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy JavaScript files.","default":false},"no-js-bundle":{"name":"--no-js-bundle","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy JavaScript bundle files.","default":false},"no-css":{"name":"--no-css","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy CSS files.","default":false},"no-less":{"name":"--no-less","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy LESS files.","default":false},"no-images":{"name":"--no-images","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy images.","default":false},"no-fonts":{"name":"--no-fonts","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy font files.","default":false},"no-html":{"name":"--no-html","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy HTML files.","default":false},"no-misc":{"name":"--no-misc","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not deploy files of other types (.md, .jbf, .csv, etc.).","default":false},"no-html-minify":{"name":"--no-html-minify","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not minify HTML files.","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:store-config:set","usage":["setup:store-config:set [--base-url BASE-URL] [--language LANGUAGE] [--timezone TIMEZONE] [--currency CURRENCY] [--use-rewrites USE-REWRITES] [--use-secure USE-SECURE] [--base-url-secure BASE-URL-SECURE] [--use-secure-admin USE-SECURE-ADMIN] [--admin-use-security-key ADMIN-USE-SECURITY-KEY] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Installs the store configuration. Deprecated since 2.2.0. Use config:set instead","help":"Installs the store configuration. Deprecated since 2.2.0. Use config:set instead","definition":{"arguments":[],"options":{"base-url":{"name":"--base-url","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"URL the store is supposed to be available at. Deprecated, use config:set with path web\/unsecure\/base_url","default":null},"language":{"name":"--language","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default language code. Deprecated, use config:set with path general\/locale\/code","default":null},"timezone":{"name":"--timezone","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default time zone code. Deprecated, use config:set with path general\/locale\/timezone","default":null},"currency":{"name":"--currency","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Default currency code. Deprecated, use config:set with path currency\/options\/base, currency\/options\/default and currency\/options\/allow","default":null},"use-rewrites":{"name":"--use-rewrites","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Use rewrites. Deprecated, use config:set with path web\/seo\/use_rewrites","default":null},"use-secure":{"name":"--use-secure","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Use secure URLs. Enable this option only if SSL is available. Deprecated, use config:set with path web\/secure\/use_in_frontend","default":null},"base-url-secure":{"name":"--base-url-secure","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Base URL for SSL connection. Deprecated, use config:set with path web\/secure\/base_url","default":null},"use-secure-admin":{"name":"--use-secure-admin","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Run admin interface with SSL. Deprecated, use config:set with path web\/secure\/use_in_adminhtml","default":null},"admin-use-security-key":{"name":"--admin-use-security-key","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Whether to use a \"security key\" feature in Magento Admin URLs and forms. Deprecated, use config:set with path admin\/security\/use_form_key","default":null},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:uninstall","usage":["setup:uninstall [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Uninstalls the Magento application","help":"Uninstalls the Magento application","definition":{"arguments":[],"options":{"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"setup:upgrade","usage":["setup:upgrade [--keep-generated] [--convert-old-scripts [CONVERT-OLD-SCRIPTS]] [--safe-mode [SAFE-MODE]] [--data-restore [DATA-RESTORE]] [--dry-run [DRY-RUN]] [--magento-init-params MAGENTO-INIT-PARAMS]"],"description":"Upgrades the Magento application, DB data, and schema","help":"Upgrades the Magento application, DB data, and schema","definition":{"arguments":[],"options":{"keep-generated":{"name":"--keep-generated","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Prevents generated files from being deleted. We discourage using this option except when deploying to production. Consult your system integrator or administrator for more information.","default":false},"convert-old-scripts":{"name":"--convert-old-scripts","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Allows to convert old scripts (InstallSchema, UpgradeSchema) to db_schema.xml format","default":false},"safe-mode":{"name":"--safe-mode","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Safe installation of Magento with dumps on destructive operations, like column removal","default":null},"data-restore":{"name":"--data-restore","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Restore removed data from dumps","default":null},"dry-run":{"name":"--dry-run","shortcut":"","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Magento Installation will be run in dry-run mode","default":false},"magento-init-params":{"name":"--magento-init-params","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Add to any command to customize Magento initialization parameters For example: \"MAGE_MODE=developer&MAGE_DIRS[base][path]=\/var\/www\/example.com&MAGE_DIRS[cache][path]=\/var\/tmp\/cache\"","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"store:list","usage":["store:list"],"description":"Displays the list of stores","help":"Displays the list of stores","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"store:website:list","usage":["store:website:list"],"description":"Displays the list of websites","help":"Displays the list of websites","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"theme:uninstall","usage":["theme:uninstall [--backup-code] [-c|--clear-static-content] [--] ..."],"description":"Uninstalls theme","help":"Uninstalls theme","definition":{"arguments":{"theme":{"name":"theme","is_required":true,"is_array":true,"description":"Path of the theme. Theme path should be specified as full path which is area\/vendor\/name. For example, frontend\/Magento\/blank","default":[]}},"options":{"backup-code":{"name":"--backup-code","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Take code backup (excluding temporary files)","default":false},"clear-static-content":{"name":"--clear-static-content","shortcut":"-c","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Clear generated static view files.","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"varnish:vcl:generate","usage":["varnish:vcl:generate [--access-list ACCESS-LIST] [--backend-host BACKEND-HOST] [--backend-port BACKEND-PORT] [--export-version EXPORT-VERSION] [--grace-period GRACE-PERIOD] [--output-file OUTPUT-FILE]"],"description":"Generates Varnish VCL and echos it to the command line","help":"Generates Varnish VCL and echos it to the command line","definition":{"arguments":[],"options":{"access-list":{"name":"--access-list","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":true,"description":"IPs access list that can purge Varnish","default":["localhost"]},"backend-host":{"name":"--backend-host","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Host of the web backend","default":"localhost"},"backend-port":{"name":"--backend-port","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Port of the web backend","default":8080},"export-version":{"name":"--export-version","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The version of Varnish file","default":"4"},"grace-period":{"name":"--grace-period","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Grace period in seconds","default":300},"output-file":{"name":"--output-file","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Path to the file to write vcl","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"yotpo:reset","usage":["yotpo:reset [-e|--entity [ENTITY]]"],"description":"Reset Yotpo sync flags &\/or configurations","help":"Reset Yotpo sync flags &\/or configurations","definition":{"arguments":[],"options":{"entity":{"name":"--entity","shortcut":"-e","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Entity type (orders)","default":"orders"},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"yotpo:sync","usage":["yotpo:sync [-e|--entity ENTITY] [-l|--limit [LIMIT]]"],"description":"Sync Yotpo manually (reviews module)","help":"Sync Yotpo manually (reviews module)","definition":{"arguments":[],"options":{"entity":{"name":"--entity","shortcut":"-e","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"Entity type (allowed options: orders)","default":"orders"},"limit":{"name":"--limit","shortcut":"-l","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"Max entity items to sync. WARNING: Setting a high sync limit (or no limit) may result in a high server load (0=no limit).","default":null},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false},{"name":"yotpo:update-metadata","usage":["yotpo:update-metadata"],"description":"Manually send platform metadata to Yotpo","help":"Manually send platform metadata to Yotpo","definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}},"hidden":false}],"namespaces":[{"id":"_global","commands":["help","list"]},{"id":"admin","commands":["admin:user:create","admin:user:unlock"]},{"id":"app","commands":["app:config:dump","app:config:import","app:config:status"]},{"id":"cache","commands":["cache:clean","cache:disable","cache:enable","cache:flush","cache:status"]},{"id":"catalog","commands":["catalog:images:resize","catalog:product:attributes:cleanup"]},{"id":"config","commands":["config:sensitive:set","config:set","config:show"]},{"id":"cron","commands":["cron:install","cron:remove","cron:run"]},{"id":"customer","commands":["customer:hash:upgrade"]},{"id":"deploy","commands":["deploy:mode:set","deploy:mode:show"]},{"id":"dev","commands":["dev:di:info","dev:profiler:disable","dev:profiler:enable","dev:query-log:disable","dev:query-log:enable","dev:source-theme:deploy","dev:template-hints:disable","dev:template-hints:enable","dev:tests:run","dev:urn-catalog:generate","dev:xml:convert"]},{"id":"dotdigital","commands":["dotdigital:connector:automap","dotdigital:connector:enable","dotdigital:migrate","dotdigital:sync"]},{"id":"downloadable","commands":["downloadable:domains:add","downloadable:domains:remove","downloadable:domains:show"]},{"id":"encryption","commands":["encryption:payment-data:update"]},{"id":"i18n","commands":["i18n:collect-phrases","i18n:pack","i18n:uninstall"]},{"id":"indexer","commands":["indexer:info","indexer:reindex","indexer:reset","indexer:set-dimensions-mode","indexer:set-mode","indexer:show-dimensions-mode","indexer:show-mode","indexer:status"]},{"id":"info","commands":["info:adminuri","info:backups:list","info:currency:list","info:dependencies:show-framework","info:dependencies:show-modules","info:dependencies:show-modules-circular","info:language:list","info:timezone:list"]},{"id":"inventory","commands":["inventory:reservation:create-compensations","inventory:reservation:list-inconsistencies"]},{"id":"inventory-geonames","commands":["inventory-geonames:import"]},{"id":"maintenance","commands":["maintenance:allow-ips","maintenance:disable","maintenance:enable","maintenance:status"]},{"id":"module","commands":["module:config:status","module:disable","module:enable","module:status","module:uninstall"]},{"id":"msp","commands":["msp:security:recaptcha:disable","msp:security:tfa:disable","msp:security:tfa:providers","msp:security:tfa:reset"]},{"id":"newrelic","commands":["newrelic:create:deploy-marker"]},{"id":"queue","commands":["queue:consumers:list","queue:consumers:start"]},{"id":"sampledata","commands":["sampledata:deploy","sampledata:remove","sampledata:reset"]},{"id":"setup","commands":["setup:backup","setup:config:set","setup:cron:run","setup:db-data:upgrade","setup:db-declaration:generate-patch","setup:db-declaration:generate-whitelist","setup:db-schema:upgrade","setup:db:status","setup:di:compile","setup:install","setup:performance:generate-fixtures","setup:rollback","setup:static-content:deploy","setup:store-config:set","setup:uninstall","setup:upgrade"]},{"id":"store","commands":["store:list","store:website:list"]},{"id":"theme","commands":["theme:uninstall"]},{"id":"varnish","commands":["varnish:vcl:generate"]},{"id":"yotpo","commands":["yotpo:reset","yotpo:sync","yotpo:update-metadata"]}]} \ No newline at end of file From 6f688feeaf651393844ad3ad347d2c83226ed6de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20H=C3=BCnig?= Date: Fri, 16 Oct 2020 01:04:26 +0200 Subject: [PATCH 025/143] change varnish and apache version to supported version (#8070) Co-authored-by: Jeff Matthews --- .../varnish/config-varnish-advanced.md | 180 +++++++++++- .../varnish/config-varnish-configure.md | 271 +++++++++++++++++- .../varnish/config-varnish-install.md | 43 ++- 3 files changed, 491 insertions(+), 3 deletions(-) mode change 120000 => 100644 src/guides/v2.4/config-guide/varnish/config-varnish-advanced.md mode change 120000 => 100644 src/guides/v2.4/config-guide/varnish/config-varnish-configure.md mode change 120000 => 100644 src/guides/v2.4/config-guide/varnish/config-varnish-install.md diff --git a/src/guides/v2.4/config-guide/varnish/config-varnish-advanced.md b/src/guides/v2.4/config-guide/varnish/config-varnish-advanced.md deleted file mode 120000 index 8a3f5b0b784..00000000000 --- a/src/guides/v2.4/config-guide/varnish/config-varnish-advanced.md +++ /dev/null @@ -1 +0,0 @@ -../../../v2.3/config-guide/varnish/config-varnish-advanced.md \ No newline at end of file diff --git a/src/guides/v2.4/config-guide/varnish/config-varnish-advanced.md b/src/guides/v2.4/config-guide/varnish/config-varnish-advanced.md new file mode 100644 index 00000000000..2b1c8d2d2c5 --- /dev/null +++ b/src/guides/v2.4/config-guide/varnish/config-varnish-advanced.md @@ -0,0 +1,179 @@ +--- +group: configuration-guide +title: Advanced Varnish configuration +functional_areas: + - Configuration + - System + - Setup +--- + +Varnish provides several features that prevent customers from experiencing long delays and timeouts when the Magento server is not functioning properly. These features can be configured in the `default.vcl` file. This topic describes the additions that Magento provides in the VCL (Varnish Configuration Language) file you download from [Magento Admin](https://glossary.magento.com/magento-admin). + +See the [Varnish Reference Manual](https://varnish-cache.org/docs/6.3/reference/index.html) for details about using the Varnish Configuration Language. + +## Health check {#health} + +Varnish's health check feature polls the Magento server to determine whether it is responding in a timely manner. If it is responding normally, fresh content will be regenerated after the Time to Live (TTL) period has expired. If not, Varnish always serves stale content. + +Magento defines the following default health check: + +```json +.probe = { + .url = "/pub/health_check.php"; + .timeout = 2s; + .interval = 5s; + .window = 10; + .threshold = 5; + } +``` + +Every 5 seconds, this health check calls the `pub/health_check.php` script. This script checks the availability of the server, each database, and Redis (if installed). The script must return a response within 2 seconds. If the script determines that any of these resources are down, it returns a 500 HTTP error code. If this error code is received in 6 out of 10 attempts, the [backend](https://glossary.magento.com/backend) is considered unhealthy. + +The `health_check.php` script is located in the `pub` directory. If your Magento root directory is `pub`, then be sure to change the path in the `url` parameter from `/pub/health_check.php` to `health_check.php`. + +For more information, see the [Varnish health checks](https://varnish-cache.org/docs/6.3/users-guide/vcl-backends.html?highlight=health%20check#health-checks) documentation. + +## Grace mode {#grace} + +Grace mode enables Varnish to keep an object in [cache](https://glossary.magento.com/cache) beyond its TTL value. Varnish can then serve the expired (stale) content while it fetches a new version. This improves the flow of traffic and decreases load times. It's used in the following situations: + +* When the Magento backend is healthy, but a request is taking longer than normal +* When the Magento backend is not healthy. + +The `vcl_hit` subroutine defines how Varnish responds to a request for objects that have been cached. + +### When the Magento backend is healthy {#grace-healthy} + +When the health checks determine that the Magento backend is healthy, Varnish checks whether time remains in the grace period. The default grace period is 300 seconds, but a merchant can set the value from [Admin](https://glossary.magento.com/admin) as described in [Configure Magento to use Varnish]({{ page.baseurl }}/config-guide/varnish/config-varnish-magento.html). If the grace period hasn't expired, Varnish delivers the stale content, and asynchronously refreshes the object from the Magento server. If the grace period has expired, Varnish serves the stale content and synchronously refreshes the object from the Magento backend. + +The maximum amount of time that Varnish serves a stale object is the sum of the grace period (300 seconds by default) and the TTL value (86400 seconds by default). + +To change the default grace period from within the `default.vcl` file, edit the following line in the `vcl_hit` subroutine: + +```conf +if (obj.ttl + 300s > 0s) { +``` + +### When the Magento backend is not healthy {#grace-unhealthy} + +If the Magento backend is not responsive, Varnish serves stale content from cache for three days (or as defined in `beresp.grace`) plus the remaining TTL (which by default is one day), unless the cached content is manually purged. + +## Saint mode {#saint} + +Saint mode blacklists unhealthy backends for a configurable amount of time. As a result, unhealthy backends cannot serve traffic when using Varnish as a load balancer. Saint mode can be used in conjunction with grace mode to allow for complex handling of unhealthy backend servers. For example, if one backend server is unhealthy, retries can be routed to another server. If all other servers are down, then serve stale cached objects. The saint mode backend hosts and blackout periods are defined in the `default.vcl` file. + +Saint mode can also be used when Magento instances are individually taken offline to perform maintenance and upgrade tasks without affecting the availability of the Magento site. + +### Saint mode prerequisites {#saint-prereq} + +You should designate one machine as the primary installation. On this machine, install the main instance of Magento, mySQL database, and Varnish. + +On all other machines, the Magento instance must have access the primary machine's mySQL database. The secondary machines should also have access to the files of the primary Magento instance. + +Alternatively, [static files](https://glossary.magento.com/static-files) versioning can be turned off on all machines. This can be accessed from the Admin under **Stores** > Settings > **Configuration** > **Advanced** > **Developer** > **Static Files Settings** > **Sign Static Files** = **No**. + +Finally, all Magento instances must be in production mode. Before Varnish starts, clear the cache on each instance. In Admin, go to **System** > Tools > **Cache Management** and click **Flush Magento Cache**. You can also run the following command to clear the cache: + +```bash +bin/magento cache:flush +``` + +### Installation {#saint-install} + +Saint mode is not part of the main Varnish package. It is a separately-versioned vmod that must be downloaded and installed. As a result, you should re-compile Varnish from source, as described in the following articles: + +* [Installing Varnish 6.3](https://varnish-cache.org/docs/6.3/installation/install.html) +* [Installing Varnish 6.0](https://varnish-cache.org/docs/6.0/installation/install.html) (LTS) + +After you've recompiled, you can install the Saint mode [module](https://glossary.magento.com/module). In general, follow these steps: + +1. Obtain the source code from [Varnish modules](https://github.com/varnish/varnish-modules) . Clone the Git version (master version) since the 0.9.x versions contain a source code error. +1. Build the source code with autotools: + +```bash +sudo apt-get install libvarnishapi-dev || sudo yum install varnish-libs-devel +./bootstrap # If running from git. +./configure +make +make check # optional +sudo make install +``` + +See [Varnish module collection](https://github.com/varnish/varnish-modules) for information about installing the Saint mode module. + +### Sample `vcl` file {#saint-sample} + +The following code example shows the code that must be added to your VCL file to enable saint mode. Place the `import` statements and `backend` definitions at the top of the file. + +{% collapsible Click to show/hide %} + +```cpp + +import saintmode; +import directors; + +backend default1 { + .host = "192.168.0.1"; + .port = "8080"; + .first_byte_timeout = 600s; + .probe = { + .url = "/pub/health_check.php"; + .timeout = 2s; + .interval = 5s; + .window = 10; + .threshold = 5; + } +} + +backend default2 { + .host = "192.168.0.2"; + .port = "8080"; + .first_byte_timeout = 600s; + .probe = { + .url = "/pub/health_check.php"; + .timeout = 2s; + .interval = 5s; + .window = 10; + .threshold = 5; + } +} + +sub vcl_init { + # Instantiate sm1, sm2 for backends tile1, tile2 + # with 10 blacklisted objects as the threshold for marking the + # whole backend sick. + new sm1 = saintmode.saintmode(default1, 10); + new sm2 = saintmode.saintmode(default2, 10); + + # Add both to a director. Use sm0, sm1 in place of tile1, tile2. + # Other director types can be used in place of random. + new magedirector = directors.random(); + magedirector.add_backend(sm1.backend(), 1); + magedirector.add_backend(sm2.backend(), 1); +} + +sub vcl_backend_fetch { + # Get a backend from the director. + # When returning a backend, the director will only return backends + # saintmode says are healthy. + set bereq.backend = magedirector.backend(); +} + +sub vcl_backend_response { + if (beresp.status >= 500) { + # This marks the backend as sick for this specific + # object for the next 20s. + saintmode.blacklist(20s); + # Retry the request. This will result in a different backend + # being used. + return (retry); + } +} +``` + +{% endcollapsible %} + +{:.ref-header} +Final step + +[Final verification]({{ page.baseurl }}/config-guide/varnish/config-varnish-final.html) diff --git a/src/guides/v2.4/config-guide/varnish/config-varnish-configure.md b/src/guides/v2.4/config-guide/varnish/config-varnish-configure.md deleted file mode 120000 index 85bd6486829..00000000000 --- a/src/guides/v2.4/config-guide/varnish/config-varnish-configure.md +++ /dev/null @@ -1 +0,0 @@ -../../../v2.3/config-guide/varnish/config-varnish-configure.md \ No newline at end of file diff --git a/src/guides/v2.4/config-guide/varnish/config-varnish-configure.md b/src/guides/v2.4/config-guide/varnish/config-varnish-configure.md new file mode 100644 index 00000000000..62a9af4e9ee --- /dev/null +++ b/src/guides/v2.4/config-guide/varnish/config-varnish-configure.md @@ -0,0 +1,270 @@ +--- +group: configuration-guide +title: Configure Varnish and your web server +functional_areas: + - Configuration + - System + - Setup +--- + +## Configure your web server {#config-varnish-config-web} + +Configure your web server to listen on a port other than the default port 80 because Varnish responds directly to incoming HTTP requests, not the web server. + +In the sections that follow, we use port 8080 as an example. + +To change the Apache 2.4 listen port: + +1. Open `/etc/httpd/conf/httpd.conf` in a text editor. +1. Locate the `Listen` directive. +1. Change the value of the listen port to `8080`. (You can use any available listen port.) +1. Save your changes to `httpd.conf` and exit the text editor. + +## Modify the Varnish system configuration {#config-varnish-config-sysvcl} + +To modify the Varnish system configuration: + +1. As a user with `root` privileges, open your Vanish configuration file in a text editor: + + * CentOS 6: `/etc/sysconfig/varnish` + * CentOS 7: `/etc/varnish/varnish.params` + * Debian: `/etc/default/varnish` + * Ubuntu: `/etc/default/varnish` + +1. Set the Varnish listen port to 80: + + ```conf + VARNISH_LISTEN_PORT=80 + ``` + + For Varnish 4.*, make sure that DAEMON_OPTS contains the correct listening port for the `-a` parameter (even if VARNISH_LISTEN_PORT is set to the correct value): + + ```conf + DAEMON_OPTS="-a :80 \ + -T localhost:6082 \ + -f /etc/varnish/default.vcl \ + -S /etc/varnish/secret \ + -s malloc,256m" + ``` + +1. Save your changes to the Varnish configuration file and exit the text editor. + +### Modify default.vcl {#config-varnish-config-default} + +This section discusses how to provide minimal configuration so Varnish returns HTTP response headers. This enables you to verify Varnish works before you configure Magento to use Varnish. + +To minimally configure Varnish: + +1. Back up `default.vcl`: + + ```bash + cp /etc/varnish/default.vcl /etc/varnish/default.vcl.bak + ``` + +1. Open `/etc/varnish/default.vcl` in a text editor. +1. Locate the following stanza: + + ```conf + backend default { + .host = "127.0.0.1"; + .port = "80"; + } + ``` + +1. Replace the value of `.host` with the fully qualified hostname or IP address and listen port of the Varnish *backend* or *origin server*; that is, the server providing the content Varnish will accelerate. + + Typically, this is your web server. + + [More information](https://www.varnish-cache.org/docs/trunk/users-guide/vcl-backends.html) + +1. Replace the value of `.port` with the web server's listen port (8080 in this example). + + Example: Apache is installed on host 192.0.2.55 and Apache is listening on port 8080: + + ```conf + backend default { + .host = "192.0.2.55"; + .port = "8080"; + } + ``` + + {:.bs-callout-info} + If Varnish and Apache are running on the same host, we recommend you use an IP address or hostname and not `localhost`. + +1. Save your changes to `default.vcl` and exit the text editor. + +1. Restart Varnish: + + ```bash + service varnish restart + ``` + +If Varnish fails to start, try running it from the command line as follows: + +```bash +varnishd -d -f /etc/varnish/default.vcl +``` + +This should display error messages. + +{% +include note.html +type='info' +content='If Varnish does not start as a service, you must configure SELinux rules to allow it to run. Consult the following resources: + +* [flatlinesecurity](http://flatlinesecurity.com/posts/varnish-4-selinux/) +* [CentOS wiki](https://wiki.centos.org/HowTos/SELinux) +* [CentOS documentation](https://www.centos.org)' + +%} + +## Verify Varnish is working {#config-varnish-verify} + +The following sections discuss how you can verify that Varnish is working but *without* configuring Magento to use it. You should try this before you configure Magento. + +Perform the tasks discussed in the following sections in the order shown: + +* [Start Varnish](#config-varnish-verify-start) +* [netstat](#config-varnish-verify-netstat) + +### Start Varnish {#config-varnish-verify-start} + +Enter `service varnish start` + +If Varnish fails to start as a service, start it from the command line as follows: + +1. Start the Varnish CLI: + + ```bash + varnishd -d -f /etc/varnish/default.vcl + ``` + +1. Start the Varnish child process: + + When prompted, enter `start` + + The following messages display to confirm a successful start: + + ```terminal + child (29805) Started + 200 0 + + Child (29805) said + Child (29805) said Child starts + ``` + +### netstat {#config-varnish-verify-netstat} + +Log in to the Varnish server and enter the following command: + +```bash +netstat -tulpn +``` + +Look for the following output in particular: + +```terminal +tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 32614/varnishd +tcp 0 0 127.0.0.1:58484 0.0.0.0:* LISTEN 32604/varnishd +tcp 0 0 :::8080 :::* LISTEN 26822/httpd +tcp 0 0 ::1:48509 :::* LISTEN 32604/varnishd +``` + +The preceding shows Varnish running on port 80 and Apache running on port 8080. + +If you don't see output for `varnishd`, make sure Varnish is running. + +[More information about netstat options](http://tldp.org/LDP/nag2/x-087-2-iface.netstat.html) + +## Install the Magento 2 software {#config-varnish-install} + +Install the Magento 2 software if you haven't already done so. When prompted for a Base URL, use the Varnish host and port 80 (for Varnish) because Varnish receives all incoming HTTP requests. + +Possible error installing Magento: + +```terminal +Error 503 Service Unavailable +Service Unavailable +XID: 303394517 +Varnish cache server +``` + +If you experience this error, edit `default.vcl` and add a timeout to the `backend` stanza as follows: + +```conf +backend default { + .host = "127.0.0.1"; + .port = "8080"; + .first_byte_timeout = 600s; +} +``` + +## Verify HTTP response headers {#config-varnish-verify-headers} + +Now you can verify that Varnish is serving pages by looking at [HTML](https://glossary.magento.com/html) response headers returned from any Magento page. + +Before you can look at headers, you must set Magento for developer mode. There are several ways to do it, the simplest of which is to modify `.htaccess` in the Magento 2 root. You can also use the [`magento deploy:mode:set`]({{ page.baseurl }}/config-guide/cli/config-cli-subcommands-mode.html) command. + +### Set Magento for developer mode + +To set Magento for developer mode, use the [`magento deploy:mode:set`]({{ page.baseurl }}/config-guide/cli/config-cli-subcommands-mode.html#change-to-developer-mode) command. + +### Look at the Varnish log + +Make sure Varnish is running then enter the following command on the Varnish server: + +```bash +varnishlog +``` + +In a web browser, go to any Magento 2 page. + +A long list of response headers display in your command prompt window. Look for headers like the following: + +```terminal +- BereqHeader X-Varnish: 3 +- VCL_call BACKEND_FETCH +- VCL_return fetch +- BackendOpen 17 default(10.249.151.10,,8080) 10.249.151.10 60914 +- Backend 17 default(10.249.151.10,,8080) +- Timestamp Bereq: 1440449534.261791 0.000618 0.000618 +- ReqHeader Host: 10.249.151.10 +- ReqHeader Connection: keep-alive +- ReqHeader Content-Length: 86 +- ReqHeader Cache-Control: max-age=0 +- ReqHeader Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8 +- ReqHeader Origin: http://10.249.151.10 +``` + +If headers like these do *not* display, stop Varnish, check your `default.vcl`, and try again. + +### Look at HTML response headers + +There are several ways to look at response headers, including using a browser [plug-in](https://glossary.magento.com/plug-in) or a browser inspector. + +The following example uses `curl`. You can enter this command from any machine that can access the Magento server using HTTP. + +```bash +curl -I -v --location-trusted '' +``` + +For example, + +```bash +curl -I -v --location-trusted 'http://192.0.2.55/magento2' +``` + +Look for headers like the following: + +```terminal +Content-Type: text/html; charset=iso-8859-1 +X-Varnish: 15 +Age: 0 +Via: 1.1 varnish-v6 +X-Magento-Cache-Debug: HIT +``` + +{:.ref-header} +Related topics + +[Configure Magento to use Varnish]({{ page.baseurl }}/config-guide/varnish/config-varnish-magento.html) diff --git a/src/guides/v2.4/config-guide/varnish/config-varnish-install.md b/src/guides/v2.4/config-guide/varnish/config-varnish-install.md deleted file mode 120000 index ef0c6313901..00000000000 --- a/src/guides/v2.4/config-guide/varnish/config-varnish-install.md +++ /dev/null @@ -1 +0,0 @@ -../../../v2.3/config-guide/varnish/config-varnish-install.md \ No newline at end of file diff --git a/src/guides/v2.4/config-guide/varnish/config-varnish-install.md b/src/guides/v2.4/config-guide/varnish/config-varnish-install.md new file mode 100644 index 00000000000..dfcdad02e08 --- /dev/null +++ b/src/guides/v2.4/config-guide/varnish/config-varnish-install.md @@ -0,0 +1,42 @@ +--- +group: configuration-guide +title: Install Varnish +functional_areas: + - Configuration + - System + - Setup +--- + +## Install Varnish {#config-varnish-install} + +Installing the Varnish software is beyond the scope of this guide. For more information about installing Varnish, see: + +* [installation wiki](http://wiki.mikejung.biz/Varnish) +* [Varnish installation guides](https://www.varnish-cache.org/docs) +* [How to install Varnish (Tecmint)](http://www.tecmint.com/install-varnish-cache-web-accelerator) + +{:.bs-callout-info} +This topic is written for Varnish on CentOS and Apache 2.4. If you are setting up Varnish in a different environment, some commands are likely different. Consult the preceding documentation for more information.

If you intend to install Varnish modules (vmods), such as saint mode, you should install Varnish by compiling the code, rather than installing from a package. See [Saint mode]({{ page.baseurl }}/config-guide/varnish/config-varnish-advanced.html#saint) for more details. + +## Confirm your Varnish version {#config-varnish-version} + +Enter the following command to display the version of Varnish you are running: + +```bash +varnishd -V +``` + +A sample follows: + +```terminal +varnishd (varnish-6.3.2 revision 199de9b) +Copyright (c) 2006 Verdens Gang AS +Copyright (c) 2006-2019 Varnish Software AS +``` + +Make sure the version is 6.x before continuing. If you are running version lower than 6.x, you must upgrade to a supported version. Consult the Varnish installation documentation for more information. + +{:.ref-header} +Related topics + +[Configure Varnish and your web server]({{ page.baseurl }}/config-guide/varnish/config-varnish-configure.html) From 72bb72ececa5c9452a9a403c04dd976c7f98158c Mon Sep 17 00:00:00 2001 From: Ihor Sviziev Date: Fri, 16 Oct 2020 11:38:10 +0300 Subject: [PATCH 026/143] Fix incorrect link --- src/cloud/project/magento-app-php-ini.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cloud/project/magento-app-php-ini.md b/src/cloud/project/magento-app-php-ini.md index bc4c3447056..46efe0a0946 100644 --- a/src/cloud/project/magento-app-php-ini.md +++ b/src/cloud/project/magento-app-php-ini.md @@ -54,4 +54,4 @@ cat /etc/php5/fpm/php.ini ``` {:.bs-callout-info} -If you use {{site.data.var.mcd-prod}} for local development, see [Docker service containers]{{site.baseurl}}//cloud/docker/docker-containers-service.html#fpm-container) for information about using a custom `php.ini` file in a Docker environment. +If you use {{site.data.var.mcd-prod}} for local development, see [Docker service containers]({{site.baseurl}}//cloud/docker/docker-containers-service.html#fpm-container) for information about using a custom `php.ini` file in a Docker environment. From 36070cda30ff58a71eb5f76b522e77ff2335519c Mon Sep 17 00:00:00 2001 From: Donald Booth Date: Fri, 16 Oct 2020 08:15:41 -0500 Subject: [PATCH 027/143] Added spaces to command --- src/cloud/project/services-mysql.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cloud/project/services-mysql.md b/src/cloud/project/services-mysql.md index 6f3a1e5a7ca..f664ba97c61 100644 --- a/src/cloud/project/services-mysql.md +++ b/src/cloud/project/services-mysql.md @@ -158,7 +158,7 @@ Accessing the MariaDB database directly requires you to use a SSH to log in to t - For Pro, use the following command with hostname, username, and password retrieved from the `$MAGENTO_CLOUD_RELATIONSHIPS` variable. ```bash - mysql -h -P -u -p + mysql -h -P -u -p ``` ## Connect to secondary database From 63acdc356a0ad3b708b21b5b6e91818e1bcccdad Mon Sep 17 00:00:00 2001 From: Donald Booth Date: Fri, 16 Oct 2020 08:16:28 -0500 Subject: [PATCH 028/143] Added portnumber --- src/cloud/project/services-mysql.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cloud/project/services-mysql.md b/src/cloud/project/services-mysql.md index f664ba97c61..2fe294eef5b 100644 --- a/src/cloud/project/services-mysql.md +++ b/src/cloud/project/services-mysql.md @@ -155,7 +155,7 @@ Accessing the MariaDB database directly requires you to use a SSH to log in to t mysql -h database.internal -u ``` - - For Pro, use the following command with hostname, username, and password retrieved from the `$MAGENTO_CLOUD_RELATIONSHIPS` variable. + - For Pro, use the following command with hostname, port number, username, and password retrieved from the `$MAGENTO_CLOUD_RELATIONSHIPS` variable. ```bash mysql -h -P -u -p From 3e92c5618c5325ac3fdd6feac3e540fb336d9be0 Mon Sep 17 00:00:00 2001 From: Donald Booth Date: Fri, 16 Oct 2020 08:52:56 -0500 Subject: [PATCH 029/143] Update src/guides/v2.3/rest/generate-local.md Co-authored-by: Barny Shergold --- src/guides/v2.3/rest/generate-local.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guides/v2.3/rest/generate-local.md b/src/guides/v2.3/rest/generate-local.md index febe01699ff..9424b59ebca 100644 --- a/src/guides/v2.3/rest/generate-local.md +++ b/src/guides/v2.3/rest/generate-local.md @@ -65,7 +65,7 @@ The base URL for returning the asynchronous schema is `http:///res ## Security -By default, the `/swagger` endpoint is open on Magneto instances. Leaving it open on a public instance could potentially expose system information that should not be readable. +By default, the `/swagger` endpoint is open on Magento instances. Leaving it open on a public instance could potentially expose system information that should not be readable. To close off the `/swagger` endpoint, disable the following modules: From 3f241e5a99f47903057b08b4278fe2614ee16246 Mon Sep 17 00:00:00 2001 From: Donald Booth Date: Fri, 16 Oct 2020 08:53:34 -0500 Subject: [PATCH 030/143] Update src/guides/v2.4/rest/generate-local.md Co-authored-by: Barny Shergold --- src/guides/v2.4/rest/generate-local.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guides/v2.4/rest/generate-local.md b/src/guides/v2.4/rest/generate-local.md index d7d32e84d47..756418b90e2 100644 --- a/src/guides/v2.4/rest/generate-local.md +++ b/src/guides/v2.4/rest/generate-local.md @@ -62,7 +62,7 @@ The base URL for returning the asynchronous schema is `http:///res ## Security -By default, the `/swagger` endpoint is open on Magneto instances. Leaving it open on a public instance could potentially expose system information that should not be readable. +By default, the `/swagger` endpoint is open on Magento instances. Leaving it open on a public instance could potentially expose system information that should not be readable. To close off the `/swagger` endpoint, disable the following modules: From 4cc6c1e461411ccc56aa3f54b4d22cb4f87e64d7 Mon Sep 17 00:00:00 2001 From: Donald Booth Date: Fri, 16 Oct 2020 09:33:13 -0500 Subject: [PATCH 031/143] Trailing space --- src/guides/v2.3/rest/generate-local.md | 2 +- src/guides/v2.4/rest/generate-local.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/guides/v2.3/rest/generate-local.md b/src/guides/v2.3/rest/generate-local.md index febe01699ff..1ba6057820b 100644 --- a/src/guides/v2.3/rest/generate-local.md +++ b/src/guides/v2.3/rest/generate-local.md @@ -65,7 +65,7 @@ The base URL for returning the asynchronous schema is `http:///res ## Security -By default, the `/swagger` endpoint is open on Magneto instances. Leaving it open on a public instance could potentially expose system information that should not be readable. +By default, the `/swagger` endpoint is open on Magneto instances. Leaving it open on a public instance could potentially expose system information that should not be readable. To close off the `/swagger` endpoint, disable the following modules: diff --git a/src/guides/v2.4/rest/generate-local.md b/src/guides/v2.4/rest/generate-local.md index d7d32e84d47..85a78a04f82 100644 --- a/src/guides/v2.4/rest/generate-local.md +++ b/src/guides/v2.4/rest/generate-local.md @@ -62,7 +62,7 @@ The base URL for returning the asynchronous schema is `http:///res ## Security -By default, the `/swagger` endpoint is open on Magneto instances. Leaving it open on a public instance could potentially expose system information that should not be readable. +By default, the `/swagger` endpoint is open on Magneto instances. Leaving it open on a public instance could potentially expose system information that should not be readable. To close off the `/swagger` endpoint, disable the following modules: From ce7bb179e7075cbe1a3d08c0be095a5e41bd29e3 Mon Sep 17 00:00:00 2001 From: Donald Booth Date: Fri, 16 Oct 2020 09:37:03 -0500 Subject: [PATCH 032/143] Grrr --- src/guides/v2.3/rest/generate-local.md | 2 +- src/guides/v2.4/rest/generate-local.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/guides/v2.3/rest/generate-local.md b/src/guides/v2.3/rest/generate-local.md index 9424b59ebca..1423f82513e 100644 --- a/src/guides/v2.3/rest/generate-local.md +++ b/src/guides/v2.3/rest/generate-local.md @@ -65,7 +65,7 @@ The base URL for returning the asynchronous schema is `http:///res ## Security -By default, the `/swagger` endpoint is open on Magento instances. Leaving it open on a public instance could potentially expose system information that should not be readable. +By default, the `/swagger` endpoint is open on Magento instances. Leaving it open on a public instance could potentially expose system information that should not be readable. To close off the `/swagger` endpoint, disable the following modules: diff --git a/src/guides/v2.4/rest/generate-local.md b/src/guides/v2.4/rest/generate-local.md index 756418b90e2..b77c8d5a57c 100644 --- a/src/guides/v2.4/rest/generate-local.md +++ b/src/guides/v2.4/rest/generate-local.md @@ -62,7 +62,7 @@ The base URL for returning the asynchronous schema is `http:///res ## Security -By default, the `/swagger` endpoint is open on Magento instances. Leaving it open on a public instance could potentially expose system information that should not be readable. +By default, the `/swagger` endpoint is open on Magento instances. Leaving it open on a public instance could potentially expose system information that should not be readable. To close off the `/swagger` endpoint, disable the following modules: From 601306109e795b690b0bf76ba95030228b93bcd8 Mon Sep 17 00:00:00 2001 From: Donald Booth Date: Fri, 16 Oct 2020 09:54:51 -0500 Subject: [PATCH 033/143] Matched list styles --- src/guides/v2.3/rest/generate-local.md | 6 +++--- src/guides/v2.4/rest/generate-local.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/guides/v2.3/rest/generate-local.md b/src/guides/v2.3/rest/generate-local.md index 1423f82513e..50e880ecf14 100644 --- a/src/guides/v2.3/rest/generate-local.md +++ b/src/guides/v2.3/rest/generate-local.md @@ -21,9 +21,9 @@ To view the Swagger documentation for a specific store view, use this URL: The value of `store_code` must be one of the following: -* `default` -* The assigned store code -* `all`. This value only applies to the [CMS](https://glossary.magento.com/cms) and Product modules. If this value is specified, the API call affects all the merchant's stores. +- `default` +- The assigned store code +- `all`. This value only applies to the [CMS](https://glossary.magento.com/cms) and Product modules. If this value is specified, the API call affects all the merchant's stores. By default, Magento returns documentation for resources available to anonymous users across all stores. If you specify a valid value in the `api_key` text box in the upper right corner, Swagger returns documentation for all the endpoints the user has access to. To generate an API key, call the `POST /V1/integration/customer/token` or `POST /V1/integration/admin/token` as directed in [Token-based authentication]({{ page.baseurl }}/get-started/authentication/gs-authentication-token.html). diff --git a/src/guides/v2.4/rest/generate-local.md b/src/guides/v2.4/rest/generate-local.md index b77c8d5a57c..e50047cb3ee 100644 --- a/src/guides/v2.4/rest/generate-local.md +++ b/src/guides/v2.4/rest/generate-local.md @@ -21,9 +21,9 @@ To view the Swagger documentation for a specific store view, use this URL: The value of `store_code` must be one of the following: -* `default` -* The assigned store code -* `all`. This value only applies to the [CMS](https://glossary.magento.com/cms) and Product modules. If this value is specified, the API call affects all the merchant's stores. +- `default` +- The assigned store code +- `all`. This value only applies to the [CMS](https://glossary.magento.com/cms) and Product modules. If this value is specified, the API call affects all the merchant's stores. By default, Magento returns documentation for resources available to anonymous users across all stores. If you specify a valid customer or admin token in the `api_key` text box in the upper right corner, Swagger returns documentation for all the endpoints the user has access to. To generate an API key, call the `POST /V1/integration/customer/token` endpoint or a 2FA endpoint such as `POST /V1/tfa/provider/google/authenticate` with the appropriate payload, as directed in [Token-based authentication]({{ page.baseurl }}/get-started/authentication/gs-authentication-token.html). From 5d673b5f115407c5b5e414f228e961d092a126e0 Mon Sep 17 00:00:00 2001 From: Pratik Oza <33807558+mage2pratik@users.noreply.github.com> Date: Fri, 16 Oct 2020 23:57:04 +0530 Subject: [PATCH 034/143] Update attributes.md Added missing docblock in example. --- .../v2.3/extension-dev-guide/attributes.md | 22 +++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/src/guides/v2.3/extension-dev-guide/attributes.md b/src/guides/v2.3/extension-dev-guide/attributes.md index 63c33c5a3ef..e403dda86b8 100644 --- a/src/guides/v2.3/extension-dev-guide/attributes.md +++ b/src/guides/v2.3/extension-dev-guide/attributes.md @@ -58,13 +58,25 @@ use Magento\Framework\Setup\ModuleDataSetupInterface; use Magento\Framework\Setup\Patch\DataPatchInterface; use Magento\Framework\Setup\Patch\PatchVersionInterface; +/** + * Class add customer example attribute to customer + */ class AddCustomerExampleAttribute implements DataPatchInterface { - + /** + * @var ModuleDataSetupInterface + */ private $moduleDataSetup; + /** + * @var CustomerSetupFactory + */ private $customerSetupFactory; + /** + * @param ModuleDataSetupInterface $moduleDataSetup + * @param CustomerSetupFactory $customerSetupFactory + */ public function __construct( ModuleDataSetupInterface $moduleDataSetup, CustomerSetupFactory $customerSetupFactory @@ -73,6 +85,9 @@ class AddCustomerExampleAttribute implements DataPatchInterface $this->customerSetupFactory = $customerSetupFactory; } + /** + * @inheritdoc + */ public function apply() { $customerSetup = $this->customerSetupFactory->create(['setup' => $this->moduleDataSetup]); @@ -82,7 +97,7 @@ class AddCustomerExampleAttribute implements DataPatchInterface } /** - * {@inheritdoc} + * @inheritdoc */ public static function getDependencies() { @@ -91,6 +106,9 @@ class AddCustomerExampleAttribute implements DataPatchInterface ]; } + /** + * @inheritdoc + */ public function getAliases() { return []; From c9f4ebeca545ed9b630adb2df8a3a9ea82980369 Mon Sep 17 00:00:00 2001 From: Margaret Eker Date: Fri, 16 Oct 2020 13:46:54 -0500 Subject: [PATCH 035/143] Add link to KB article for css and js optimization --- src/guides/v2.4/performance-best-practices/configuration.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/guides/v2.4/performance-best-practices/configuration.md b/src/guides/v2.4/performance-best-practices/configuration.md index 0ab92a0dbac..a7dabd34548 100644 --- a/src/guides/v2.4/performance-best-practices/configuration.md +++ b/src/guides/v2.4/performance-best-practices/configuration.md @@ -63,6 +63,11 @@ The **Developer** tab and options are only available in [Developer mode]({{ page When you activate the **Enable JavaScript Bundling** option, you allow Magento to merge all JS resources into one or a set of bundles that are loaded in storefront pages. Bundling JS results in fewer requests to the server, which improves page performance. It also helps the browser cache JS resources on the first call and reuse them for all further browsing. This option also brings lazy evaluation, as all JS is loaded as text. It initiates analysis and evaluation of code only after specific actions are triggered on the page. However, this setting is not recommended for stores where the first page load time is extremely critical, because all JS content will be loaded on the first call. +{:.bs-callout-info} +See [CSS and Javascript file optimization on Magento Commerce Cloud and Magento Commerce](https://support.magento.com/hc/en-us/articles/360044482152) in the _Magento Help Center_ for more information about optimizing CSS and Javascript. + +When you activate the **Enable JavaScript Bundling** option, you allow Magento to merge all JS resources into one or a set of bundles that are loaded in storefront pages. Bundling JS results in fewer requests to the server, which improves page performance. It also helps the browser cache JS resources on the first call and reuse them for all further browsing. This option also brings lazy evaluation, as all JS is loaded as text. It initiates analysis and evaluation of code only after specific actions are triggered on the page. However, this setting is not recommended for stores where the first page load time is extremely critical, because all JS content will be loaded on the first call. + ### Bundling tips * Magento recommends that you use third-party tools for minification and bundling (like [r.js](http://requirejs.org/)). Magento built-in mechanisms are not optimal and are shipped as fallback alternatives. From 2fa6838daee05d2fc9cb6b84ff1248bbafa3ed97 Mon Sep 17 00:00:00 2001 From: Donald Booth Date: Fri, 16 Oct 2020 14:07:16 -0500 Subject: [PATCH 036/143] Small edits --- src/guides/v2.4/test/integration/annotations.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/guides/v2.4/test/integration/annotations.md b/src/guides/v2.4/test/integration/annotations.md index 9ae6150f24e..c0e11ac80b8 100644 --- a/src/guides/v2.4/test/integration/annotations.md +++ b/src/guides/v2.4/test/integration/annotations.md @@ -12,12 +12,12 @@ The following annotations are available in integration tests: Name|Annotation|Format|Description ---|---|---|--- -Admin Configuration Fixture|`@magentoAdminConfigFixture`|`@magentoAdminConfigFixture `| Configures an admin setting for the test run. For example, to enabled Captcha, you would use `@magentoAdminConfigFixture admin/captcha/enable 1`. +Admin Configuration Fixture|`@magentoAdminConfigFixture`|`@magentoAdminConfigFixture `| Configures an admin setting for the test run. For example, to enable Captcha, you would use `@magentoAdminConfigFixture admin/captcha/enable 1`. Application Isolation|`@magentoAppIsolation`|`@magentoAppIsolation enabled|disabled`|Enables or disables application isolation when you run tests. When enabled, an application state after a test run will be the same as before the test run. For example, you should enable it, when you want to create sessions in a test, but you don't want them to affect other tests. Configuration Fixture|`@magentoConfigFixture`|`@magentoConfigFixture [_store] `|Sets up configuration settings for a particular test. The list of settings is stored in the `core_config_data` database table. After the test execution, the settings revert to their original state. Database Isolation|`@magentoDbIsolation`|`@magentoDbIsolation enabled|disabled`|Enables or disables database isolation. Disabled by default, unless you are using `@magentoDataFixture`, in which case it is enabled by default. All data, required for a test, live during transaction only. Any test results won't be written in a database. Data Fixture|`@magentoDataFixture`|`@magentoDataFixture |`|Points to a class or a method which creates testing entities (fixtures) for test execution. These are applied during the transaction. -Data Fixture Before Transaction|`@magentoDataFixtureBeforeTransaction`|`@magentoDataFixtureBeforeTransaction |`|Points to a class or a method which creates testing entities (fixtures) for test execution before the transaction has begun. You will need to implement a rollback for changes made here. +Data Fixture Before Transaction|`@magentoDataFixtureBeforeTransaction`|`@magentoDataFixtureBeforeTransaction |`|Points to a class or a method which creates testing entities (fixtures) for test execution before the transaction has begun. You will need to implement a rollback file for changes made here. (e.g. Fixture file my_fixture.php would also require a my_fixture_rollback.php that reverts the original fixture's changed.) Application Area|`@magentoAppArea`|`@magentoAppArea adminhtml|frontend|global`|Configures test environment in the context of specified application area. Enable/Disable Cache|`@magentoCache`|`@magentoCache |all enabled|disabled`|Enables or disables certain cache segment or all of them to prevent isolation problems. Indexer Dimension Mode|`@magentoIndexerDimensionMode`|`@magentoIndexerDimensionMode `|Sets the indexer dimension mode for the test run. More information can be found in the [DevBlog](https://community.magento.com/t5/Magento-DevBlog/Indexers-parallelization-and-optimization/ba-p/104922_). From 3b039f6f280e5747d68c086f915c022f5995716f Mon Sep 17 00:00:00 2001 From: Rajneesh Gupta Date: Fri, 16 Oct 2020 20:34:34 +0100 Subject: [PATCH 037/143] update inventory-cli-reference.md incorrect info (#8023) * update inventory-cli-reference.md incorrect info since the cli command inventory:reservation:create-compensations yet not accepting the -c & -i argument , I rectified few points here for incorrect message string and the arguments. * Format error message as terminal text * Remove trailing space * Remove duplicated content and fix syntax errors * Added examples and missing option - Added the `bunchsize` option to the inventory:reservation:list-inconsistencies command. - Added " Detect inconsistencies and create compensations" section with examples to run piped commands for incomplete and complete orders. * Apply suggestions from code review Co-authored-by: Kevin Harper * Updates based on review feedback Co-authored-by: Margaret Eker Co-authored-by: Kevin Harper --- .../v2.3/inventory/inventory-cli-reference.md | 34 ++++++++++++++----- 1 file changed, 26 insertions(+), 8 deletions(-) diff --git a/src/guides/v2.3/inventory/inventory-cli-reference.md b/src/guides/v2.3/inventory/inventory-cli-reference.md index 07ff8e6ae04..39f5dabbb1c 100644 --- a/src/guides/v2.3/inventory/inventory-cli-reference.md +++ b/src/guides/v2.3/inventory/inventory-cli-reference.md @@ -53,6 +53,7 @@ Command options: - `-c`, `--complete-orders` - Returns inconsistencies for completed orders. Incorrect reservations may still be on hold for completed orders. - `-i`, `--incomplete-orders` - Returns inconsistencies for incomplete orders (partially shipped, unshipped). Incorrect reservations may hold too much or not enough salable quantity for the orders. +- `-b`, `--bunch-size` - Defines how many orders to load at once. - `-r`, `--raw` - Raw output. Responses using `-r` return in `:::` format: @@ -90,14 +91,15 @@ To create reservations, provide compensations using the format `.*):(?P.*):(?P.*):(?P.*)/". +``` As the command creates reservations, it displays messages indicating the updates by SKU, order, and stock. @@ -108,7 +110,9 @@ Following reservations were created: - Product bike-123 was compensated by +2.000000 for stock 1 ``` -You can run both commands by piping `list-inconsistencies` and `create-compensations` to detect inconsistencies and immediately create compensations. Use the `-r` command option to generate and submit the raw data to `create-compensations`. +### Detect inconsistencies and create compensations + +You can detect inconsistences and immediately create compensations by using a pipe to run both the `list-inconsistencies` and `create-compensations`. Use the `-r` command option to generate and submit the raw data to `create-compensations`. ```bash bin/magento inventory:reservation:list-inconsistencies -r | bin/magento inventory:reservation:create-compensations @@ -116,9 +120,11 @@ bin/magento inventory:reservation:list-inconsistencies -r | bin/magento inventor Example response: -```terminal +```bash bin/magento inventory:reservation:list-inconsistencies -r | bin/magento inventory:reservation:create-compensations +``` +```terminal Following reservations were created: - Product bike-123 was compensated by +2.000000 for stock 1 - Product bikehat-456 was compensated by +1.000000 for stock 1 @@ -126,12 +132,24 @@ Following reservations were created: After updates complete, run the list command to verify: -```terminal +```bash bin/magento inventory:reservation:list-inconsistencies -r +``` +```terminal No order inconsistencies were found. ``` +You can also pipe the commands to detect inconsistencies and create compensations for only incomplete (`-i`) or complete (`-c`) orders. + +```bash +bin/magento inventory:reservation:list-inconsistencies -r -i | bin/magento inventory:reservation:create-compensations +``` + +```bash +bin/magento inventory:reservation:list-inconsistencies -r -c | bin/magento inventory:reservation:create-compensations +``` + ## Import geocodes {{site.data.var.im}} provides the [Distance Priority](https://docs.magento.com/m2/ce/user_guide/catalog/inventory-configure-distance-priority.html) algorithm, which helps determine the best option for shipping a full or partial order. The algorithm uses GPS information or geocodes to calculate the distance between the source (a warehouse or other physical location) of each item in an order and the shipping address. Based on those results, the algorithm recommends which source should be used to ship out each item in the order. From a720d4e6f75c2a1909d5e8d728cd01c54bdd5f17 Mon Sep 17 00:00:00 2001 From: Margaret Eker Date: Fri, 16 Oct 2020 15:44:15 -0500 Subject: [PATCH 038/143] Clarify unique Fastly credentials per environment (#8072) * Clarify unique Fastly credentials per environment * Update src/cloud/cdn/configure-fastly.md --- src/cloud/cdn/configure-fastly.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cloud/cdn/configure-fastly.md b/src/cloud/cdn/configure-fastly.md index 274092fea68..b617ba309d0 100644 --- a/src/cloud/cdn/configure-fastly.md +++ b/src/cloud/cdn/configure-fastly.md @@ -29,7 +29,7 @@ After you enable and verify that Fastly works with the default settings, you can ## Get Fastly credentials {#cloud-fastly-creds} -During project provisioning, Magento adds your project to the [Fastly service account]({{ site.baseurl }}/cloud/cdn/cloud-fastly.html#fastly-service-account-and-credentials) for {{ site.data.var.ece }} and adds the Fastly account credentials to the Staging and Production environment configuration. +During project provisioning, Magento adds your project to the [Fastly service account]({{ site.baseurl }}/cloud/cdn/cloud-fastly.html#fastly-service-account-and-credentials) for {{ site.data.var.ece }} and creates Fastly account credentials for the Starter `master` and Pro Staging and Production environments. Each environment has unique credentials. You need the Fastly credentials to configure Fastly CDN services from the Magento Admin UI and to submit Fastly API requests. @@ -41,7 +41,7 @@ Use the following methods to find and save the Fastly service ID and API token f {:.procedure} To view your Fastly credentials: -- IaaS-mounted shared directory—On Pro projects, use SSH to connect to your server and get the Fastly credentials from the `/mnt/shared/fastly_tokens.txt` file. +- IaaS-mounted shared directory—On Pro projects, use SSH to connect to your server and get the Fastly credentials from the `/mnt/shared/fastly_tokens.txt` file. Staging and Production environments have unique credentials. You must get the credentials for each environment. - Local workspace—From the command line, use the Magento Cloud CLI to [list and review]({{ site.baseurl }}/cloud/before/before-setup-env-2_clone.html) Fastly environment variables. From 72440c2befe011e3716c62479241f41821076f28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20H=C3=BCnig?= Date: Fri, 16 Oct 2020 23:50:43 +0200 Subject: [PATCH 039/143] Update technical-details.md fix missing link --- .../v2.3/config-guide/deployment/pipeline/technical-details.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guides/v2.3/config-guide/deployment/pipeline/technical-details.md b/src/guides/v2.3/config-guide/deployment/pipeline/technical-details.md index 9654d813000..5305fd785ed 100644 --- a/src/guides/v2.3/config-guide/deployment/pipeline/technical-details.md +++ b/src/guides/v2.3/config-guide/deployment/pipeline/technical-details.md @@ -309,4 +309,4 @@ Next steps * [Set up your development systems]({{ page.baseurl }}/config-guide/deployment/pipeline/development-system.html) * [Set up your build system]({{ page.baseurl }}/config-guide/deployment/pipeline/build-system.html) * [Set up your production system]({{ page.baseurl }}/config-guide/deployment/pipeline/production-system.html) -* [config-cli-config-set]: {{ page.baseurl }}/config-guide/cli/config-cli-subcommands-config-mgmt-set.html#config-cli-config-set +* [config-cli-config-set]({{ page.baseurl }}/config-guide/cli/config-cli-subcommands-config-mgmt-set.html#config-cli-config-set) From 7cfcfb0e06b3f5be06455074935dc431c55f147b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20H=C3=BCnig?= Date: Fri, 16 Oct 2020 23:55:22 +0200 Subject: [PATCH 040/143] Update technical-details.md Update headline to match link target --- .../v2.3/config-guide/deployment/pipeline/technical-details.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guides/v2.3/config-guide/deployment/pipeline/technical-details.md b/src/guides/v2.3/config-guide/deployment/pipeline/technical-details.md index 5305fd785ed..2d1915cdde8 100644 --- a/src/guides/v2.3/config-guide/deployment/pipeline/technical-details.md +++ b/src/guides/v2.3/config-guide/deployment/pipeline/technical-details.md @@ -309,4 +309,4 @@ Next steps * [Set up your development systems]({{ page.baseurl }}/config-guide/deployment/pipeline/development-system.html) * [Set up your build system]({{ page.baseurl }}/config-guide/deployment/pipeline/build-system.html) * [Set up your production system]({{ page.baseurl }}/config-guide/deployment/pipeline/production-system.html) -* [config-cli-config-set]({{ page.baseurl }}/config-guide/cli/config-cli-subcommands-config-mgmt-set.html#config-cli-config-set) +* [Set configuration values]({{ page.baseurl }}/config-guide/cli/config-cli-subcommands-config-mgmt-set.html#config-cli-config-set) From db89ff1d4a37df441b439dcc639873542e2781ee Mon Sep 17 00:00:00 2001 From: Margaret Eker Date: Fri, 16 Oct 2020 17:54:24 -0500 Subject: [PATCH 041/143] Fix duplicated text --- src/guides/v2.4/performance-best-practices/configuration.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/guides/v2.4/performance-best-practices/configuration.md b/src/guides/v2.4/performance-best-practices/configuration.md index a7dabd34548..e2599c9041f 100644 --- a/src/guides/v2.4/performance-best-practices/configuration.md +++ b/src/guides/v2.4/performance-best-practices/configuration.md @@ -66,8 +66,6 @@ When you activate the **Enable JavaScript Bundling** option, you allow Magento t {:.bs-callout-info} See [CSS and Javascript file optimization on Magento Commerce Cloud and Magento Commerce](https://support.magento.com/hc/en-us/articles/360044482152) in the _Magento Help Center_ for more information about optimizing CSS and Javascript. -When you activate the **Enable JavaScript Bundling** option, you allow Magento to merge all JS resources into one or a set of bundles that are loaded in storefront pages. Bundling JS results in fewer requests to the server, which improves page performance. It also helps the browser cache JS resources on the first call and reuse them for all further browsing. This option also brings lazy evaluation, as all JS is loaded as text. It initiates analysis and evaluation of code only after specific actions are triggered on the page. However, this setting is not recommended for stores where the first page load time is extremely critical, because all JS content will be loaded on the first call. - ### Bundling tips * Magento recommends that you use third-party tools for minification and bundling (like [r.js](http://requirejs.org/)). Magento built-in mechanisms are not optimal and are shipped as fallback alternatives. From 3f8798f7ece9121fbe4e94c9c98c31fe19e49fac Mon Sep 17 00:00:00 2001 From: Viktor Tymchynskyi Date: Fri, 16 Oct 2020 19:41:08 -0500 Subject: [PATCH 042/143] Added requirement about minimum version of ece-tools for MQP ## Purpose of this pull request Updates the [Magento Quality Patches](https://devdocs.magento.com/cloud/project/project-patch.html) topic in the _Software Update Guide_ to link to add requirement about the minimum version of ece-tools for MQP ## Affected DevDocs pages - --- src/cloud/project/project-patch.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cloud/project/project-patch.md b/src/cloud/project/project-patch.md index 05d8ed27eff..b6db5acc5c5 100644 --- a/src/cloud/project/project-patch.md +++ b/src/cloud/project/project-patch.md @@ -29,7 +29,7 @@ When you update `{{ site.data.var.ct }}` or the {{ site.data.var.mcp-prod }} pac {% include cloud/note-upgrade.md %} -The Magento Quality Patches package is a dependency for the {{ site.data.var.mcp-prod }} and {{site.data.var.ct}} packages. To apply the latest patches, you must have [the latest version of {{ site.data.var.ct }}]({{site.baseurl}}/cloud/project/ece-tools-update.html) installed. +The Magento Quality Patches package is a dependency for the {{ site.data.var.mcp-prod }} and {{site.data.var.ct}} packages. To apply the latest patches, you must have [the latest version of {{ site.data.var.ct }}]({{site.baseurl}}/cloud/project/ece-tools-update.html) installed. The minimum required version of {{site.data.var.ct}} is 2002.1.2. ## View available patches and status From 895050935ccd51514f105c782591ade64f5c0e54 Mon Sep 17 00:00:00 2001 From: Pratik Oza <33807558+mage2pratik@users.noreply.github.com> Date: Sat, 17 Oct 2020 23:34:49 +0530 Subject: [PATCH 043/143] Moved the else logic before if condition Moved the else logic before if condition. --- .../extension-dev-guide/searching-with-repositories.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/guides/v2.4/extension-dev-guide/searching-with-repositories.md b/src/guides/v2.4/extension-dev-guide/searching-with-repositories.md index b639eefd7c3..f3270617ce3 100644 --- a/src/guides/v2.4/extension-dev-guide/searching-with-repositories.md +++ b/src/guides/v2.4/extension-dev-guide/searching-with-repositories.md @@ -227,12 +227,11 @@ class ProductCategoryFilter implements CustomFilterInterface { $value = $filter->getValue(); $conditionType = $filter->getConditionType() ?: 'in'; + $filterValue = [$value]; if (($conditionType === 'in' || $conditionType === 'nin') && is_string($value)) { - $value = explode(',', $value); - } else { - $value = [$value]; + $filterValue = explode(',', $value); } - $categoryFilter = [$conditionType => $value]; + $categoryFilter = [$conditionType => $filterValue]; /** @var Collection $collection */ $collection->addCategoriesFilter($categoryFilter); From 90ca451c4a5230f8f9d299d1cdab4adf0f0aba49 Mon Sep 17 00:00:00 2001 From: Pratik Oza <33807558+mage2pratik@users.noreply.github.com> Date: Sun, 18 Oct 2020 19:56:22 +0530 Subject: [PATCH 044/143] Fix a typo of bin/magento command line setup:config:set argument/option Fix a typo of bin/magento command line setup:config:set argument/option. --- src/guides/v2.3/config-guide/redis/redis-session.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guides/v2.3/config-guide/redis/redis-session.md b/src/guides/v2.3/config-guide/redis/redis-session.md index f6462989bdc..e0e5597b92f 100644 --- a/src/guides/v2.3/config-guide/redis/redis-session.md +++ b/src/guides/v2.3/config-guide/redis/redis-session.md @@ -50,7 +50,7 @@ where |session-save-redis-sentinel-master|sentinel_master|Redis Sentinel master name|empty| |session-save-redis-sentinel-servers|sentinel_servers|List of Redis Sentinel servers, comma separated|empty| |session-save-redis-sentinel-verify-master|sentinel_verify_master|Verify Redis Sentinel master status flag|0 (false)| -|session-save-redis-sentinel-connect-retires|sentinel_connect_retries|Connection retries for sentinels|5| +|session-save-redis-sentinel-connect-retries|sentinel_connect_retries|Connection retries for sentinels|5| ### Example command From 24fa2497d6c8d57b7814720a8bfdb9b4a059cbca Mon Sep 17 00:00:00 2001 From: Marvin Hinz <35603466+marvinhinz@users.noreply.github.com> Date: Sun, 18 Oct 2020 20:41:05 +0200 Subject: [PATCH 045/143] Fix typo (similiar -> similar) --- src/_data/codebase/v2_4/mrg/b2b/RequisitionList.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_data/codebase/v2_4/mrg/b2b/RequisitionList.yml b/src/_data/codebase/v2_4/mrg/b2b/RequisitionList.yml index 1e849c021fe..fe396a9278b 100644 --- a/src/_data/codebase/v2_4/mrg/b2b/RequisitionList.yml +++ b/src/_data/codebase/v2_4/mrg/b2b/RequisitionList.yml @@ -7,7 +7,7 @@ last_modified_at: '2017-02-15 17:02:23 +0300' content: "## Overview\n\nThe Magento_RequisitionList module allows a customer to create multiple lists of frequently-purchased items and use those lists for order placement. This feature is available for both logged-in users and guests.\n \nRequisitionList - functionality is similiar to wish lists, but it has the following differences: \n\n* + functionality is similar to wish lists, but it has the following differences: \n\n* A requisition list is not purged after sending items to the shopping cart. It can be used to place multiple orders.\n\n* The UI for requisition lists has been modified to a compact view in order to display large number of items. \n\nThe merchant can From 1d6d2ff256f673a1bbafa600fcf0011bd95c47d2 Mon Sep 17 00:00:00 2001 From: Marvin Hinz <35603466+marvinhinz@users.noreply.github.com> Date: Sun, 18 Oct 2020 20:56:35 +0200 Subject: [PATCH 046/143] Correct spelling Change invdividual to individual --- src/_data/whats-new.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_data/whats-new.yml b/src/_data/whats-new.yml index 663e92ec85e..b079c4cd6fa 100644 --- a/src/_data/whats-new.yml +++ b/src/_data/whats-new.yml @@ -526,7 +526,7 @@ entries: contributor: jeff-matthews profile: https://github.com/jeff-matthews - description: Standardized [release terminology](https://devdocs.magento.com/release/policy/) - related to patch releases, hotfixes, invdividual fixes, and custom patches. + related to patch releases, hotfixes, individual fixes, and custom patches. versions: 2.4.0 type: Major Update date: July 27, 2020 From 12b6e98778d5a7228631c037cae86de1900f558e Mon Sep 17 00:00:00 2001 From: dangminh Date: Mon, 19 Oct 2020 11:28:11 +0700 Subject: [PATCH 047/143] Update index.md --- .../ui_comp_guide/components/wysiwyg/add-custom-editor/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guides/v2.3/ui_comp_guide/components/wysiwyg/add-custom-editor/index.md b/src/guides/v2.3/ui_comp_guide/components/wysiwyg/add-custom-editor/index.md index 4233d4ada98..73f50357982 100644 --- a/src/guides/v2.3/ui_comp_guide/components/wysiwyg/add-custom-editor/index.md +++ b/src/guides/v2.3/ui_comp_guide/components/wysiwyg/add-custom-editor/index.md @@ -101,7 +101,7 @@ If you are integrating Magento entities such as variable and widget as plugins, After loading, modifying, and merging all configurations, Magento serializes the result into a JSON object and passes it to the UI component. -In your module's `view/base/requirejs-config.php` file, add a shim configuration entry for your editor in order to have RequireJS load it correctly. +In your module's `view/base/requirejs-config.js` file, add a shim configuration entry for your editor in order to have RequireJS load it correctly. **Example:** CKEditor\CKEditor4\view\base\requirejs-config.js From cf11aa9fd31bf075842e474b64a5f63e1c18c407 Mon Sep 17 00:00:00 2001 From: Jorge Henrique Date: Mon, 19 Oct 2020 10:24:16 -0300 Subject: [PATCH 048/143] Fixing mispelled 'Braintree' word. --- .../payments-integrations/payment-gateway/command-pool.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/guides/v2.3/payments-integrations/payment-gateway/command-pool.md b/src/guides/v2.3/payments-integrations/payment-gateway/command-pool.md index cc754dbc7ee..23ab412eb86 100644 --- a/src/guides/v2.3/payments-integrations/payment-gateway/command-pool.md +++ b/src/guides/v2.3/payments-integrations/payment-gateway/command-pool.md @@ -26,7 +26,7 @@ Following is an example of the command pool configuring for the Braintree paymen ```xml ... - + @@ -38,7 +38,7 @@ Following is an example of the command pool configuring for the Braintree paymen ... - + ... From 5707d67dbcadce2c00e7225337c0a363b087b436 Mon Sep 17 00:00:00 2001 From: jfrontain Date: Mon, 19 Oct 2020 15:54:40 -0500 Subject: [PATCH 049/143] added known issue Gh-30513 --- src/guides/v2.3/release-notes/commerce-2-3-6.md | 3 +++ src/guides/v2.3/release-notes/open-source-2-3-6.md | 2 ++ src/guides/v2.4/release-notes/commerce-2-4-1.md | 2 ++ src/guides/v2.4/release-notes/open-source-2-4-1.md | 2 ++ 4 files changed, 9 insertions(+) diff --git a/src/guides/v2.3/release-notes/commerce-2-3-6.md b/src/guides/v2.3/release-notes/commerce-2-3-6.md index cbcea65cb92..b0810c0a3b3 100644 --- a/src/guides/v2.3/release-notes/commerce-2-3-6.md +++ b/src/guides/v2.3/release-notes/commerce-2-3-6.md @@ -1,3 +1,4 @@ + --- group: release-notes title: Magento Commerce 2.3.6 Release Notes @@ -824,6 +825,8 @@ We have fixed hundreds of issues in the Magento 2.3.6 core code. **Issue**: Merchants upgrading their stores from 2.3.5-p2 to 2.3.6 will note that two module versions downgrade. These messages reflect the incomplete delivery of two security fixes to the 2.3.x quarterly patches. These fixes for low severity issues are included in Magento 2.3.5-p2, 2.4.1, and 2.4.0-p1 but are missing from Magento 2.3.6. No hot fixes will be provided. These fixes will be merged along with the other security fixes in Magento 2.3.6-p1, which is scheduled for Q12021. +**Issue**: The **Submit** button on the Create New Account page remains disabled if a shopper has entered invalid data. This prevents shoppers from re-attempting to create an account after making an error. [GitHub-30513](https://github.com/magento/magento2/issues/30513) + **Issue**: Merchants cannot log in to dotdigital from the Admin when dotdigital is enabled. See the [It's impossible to login in the dotdigital via admin panel when dotdigital account is enabled](https://support.magento.com/hc/en-us/articles/360050092291) Knowledge Base article. ### System requirements diff --git a/src/guides/v2.3/release-notes/open-source-2-3-6.md b/src/guides/v2.3/release-notes/open-source-2-3-6.md index d942f350ce3..3a7be56ce7e 100644 --- a/src/guides/v2.3/release-notes/open-source-2-3-6.md +++ b/src/guides/v2.3/release-notes/open-source-2-3-6.md @@ -685,6 +685,8 @@ We have fixed hundreds of issues in the Magento 2.3.6 core code. **Issue**: Merchants upgrading their stores from 2.3.5-p2 to 2.3.6 will note that two module versions downgrade. These messages reflect the incomplete delivery of two security fixes to the 2.3.x quarterly patches. These fixes for low severity issues are included in Magento 2.3.5-p2, 2.4.1, and 2.4.0-p1 but are missing from Magento 2.3.6. No hot fixes will be provided. These fixes will be merged along with the other security fixes in Magento 2.3.6-p1, which is scheduled for Q12021. +**Issue**: The **Submit** button on the Create New Account page remains disabled if a shopper has entered invalid data. This prevents shoppers from re-attempting to create an account after making an error. [GitHub-30513](https://github.com/magento/magento2/issues/30513) + **Issue**: Merchants cannot log in to dotdigital from the Admin when dotdigital is enabled. See the [It's impossible to login in the dotdigital via admin panel when dotdigital account is enabled](https://support.magento.com/hc/en-us/articles/360050092291) Knowledge Base article. ### System requirements diff --git a/src/guides/v2.4/release-notes/commerce-2-4-1.md b/src/guides/v2.4/release-notes/commerce-2-4-1.md index e6e24f73bcc..5d9b5c3ad0b 100644 --- a/src/guides/v2.4/release-notes/commerce-2-4-1.md +++ b/src/guides/v2.4/release-notes/commerce-2-4-1.md @@ -1910,6 +1910,8 @@ We have fixed hundreds of issues in the Magento 2.4.1 core code. **Issue**: Users without administrator privileges cannot currently set up their personal 2FA access. 2FA as implemented in Magento includes two ACL roles. One role affects global system configuration and it is needed only when configuring the system. The second ACL role affects individual user 2FA accounts. An admin user must configure this second type of 2FA ACL. **Workaround**: After the user has logged in and seen the Access denied screen, they can visit `https:////tfa/tfa/requestconfig/` to force configuration. Note: We do not recommend disabling security settings. However, this workaround is effective only when Admin URL secret keys are disabled. +**Issue**: The **Submit** button on the Create New Account page remains disabled if a shopper has entered invalid data. This prevents shoppers from re-attempting to create an account after making an error. [GitHub-30513](https://github.com/magento/magento2/issues/30513) + **Issue**: Merchants cannot log in to dotdigital from the Admin in Safari when dotdigital is enabled. See the [It's impossible to login in the dotdigital via admin panel when dotdigital account is enabled](https://support.magento.com/hc/en-us/articles/360050092291) Knowledge Base article. **Issue**: Vertex address validation does not work during payment when the shopper selects a shipping address that differs from the billing address. The issue will be fixed in Magento 2.4.2. See the [Magento 2.4.1 known issue: Vertex Address Validation message does not disappear after updating address](https://support.magento.com/hc/en-us/articles/360050139631) Knowledge Base article. diff --git a/src/guides/v2.4/release-notes/open-source-2-4-1.md b/src/guides/v2.4/release-notes/open-source-2-4-1.md index 37b72954373..8e9675d625f 100644 --- a/src/guides/v2.4/release-notes/open-source-2-4-1.md +++ b/src/guides/v2.4/release-notes/open-source-2-4-1.md @@ -1652,6 +1652,8 @@ _Fix submitted by Michał Derlatka in pull request [29256](https://github.com/ma **Issue**: Users without administrator privileges cannot currently set up their personal 2FA access. 2FA as implemented in Magento includes two ACL roles. One role affects global system configuration and it is needed only when configuring the system. The second ACL role affects individual user 2FA accounts. An admin user must configure this second type of 2FA ACL. **Workaround**: After the user has logged in and seen the Access denied screen, they can visit `https:////tfa/tfa/requestconfig/` to force configuration. Note: We do not recommend disabling security settings. However, this workaround is effective only when Admin URL secret keys are disabled. +**Issue**: The **Submit** button on the Create New Account page remains disabled if a shopper has entered invalid data. This prevents shoppers from re-attempting to create an account after making an error. [GitHub-30513](https://github.com/magento/magento2/issues/30513) + **Issue**: Merchants cannot log in to dotdigital from the Admin in Safari when dotdigital is enabled. See the [It's impossible to login in the dotdigital via admin panel when dotdigital account is enabled](https://support.magento.com/hc/en-us/articles/360050092291) Knowledge Base article. **Issue**: Vertex address validation does not work during payment when the shopper selects a shipping address that differs from the billing address. The issue will be fixed in Magento 2.4.2. See the [Magento 2.4.1 known issue: Vertex Address Validation message does not disappear after updating address](https://support.magento.com/hc/en-us/articles/360050139631) Knowledge Base article. From e4eba06d96a9be9d712c216bdf7d06973e5a7c60 Mon Sep 17 00:00:00 2001 From: Barny Shergold Date: Mon, 19 Oct 2020 22:11:29 +0100 Subject: [PATCH 050/143] Index Status Updated (#8089) * Index Status Updated * Corrected Linting * Update indexing.md * Update indexing.md Co-authored-by: Barny Shergold Co-authored-by: Kevin Harper --- src/guides/v2.3/extension-dev-guide/indexing.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/guides/v2.3/extension-dev-guide/indexing.md b/src/guides/v2.3/extension-dev-guide/indexing.md index e44fb77e811..876feb65465 100644 --- a/src/guides/v2.3/extension-dev-guide/indexing.md +++ b/src/guides/v2.3/extension-dev-guide/indexing.md @@ -82,11 +82,15 @@ The following figure shows the logic for partial reindexing. ### Indexer status {#m2devgde-indexing-status} -Depending on whether an index data is up to date, an indexer status value is one of the following: +Depending on whether index data is up to date, an indexer status value is one of the following: -* valid - data is synchronized, no reindex required -* invalid - the original data was changed, the index should be updated -* working - indexing is in progress +Database Status|Admin Status|Description +`valid`|Ready|Data is synchronized, no reindex required +`invalid`|Reindex Required|The original data was changed, the index should be updated +`working`|Processing|Indexing is in progress + +The database status can be seen when viewing the SQL table `indexer_state`. +The admin status can be seen when viewing the indexer grid in Magento Admin or when running the index status from the CLI. The Magento indexing mechanism uses the status value in reindex triggering process. You can check the status of an indexer in the [Admin](https://glossary.magento.com/admin) panel in **System >** Tools **> Index Management** or manually using the [command line]({{ page.baseurl }}/config-guide/cli/config-cli-subcommands-index.html#view-indexer-status). From 6ba63bc9ab3d3d7f391092a745f439e6c2431c20 Mon Sep 17 00:00:00 2001 From: jfrontain Date: Tue, 20 Oct 2020 08:48:50 -0500 Subject: [PATCH 051/143] deleted space --- src/guides/v2.3/release-notes/commerce-2-3-6.md | 1 - 1 file changed, 1 deletion(-) diff --git a/src/guides/v2.3/release-notes/commerce-2-3-6.md b/src/guides/v2.3/release-notes/commerce-2-3-6.md index b0810c0a3b3..77f543727b0 100644 --- a/src/guides/v2.3/release-notes/commerce-2-3-6.md +++ b/src/guides/v2.3/release-notes/commerce-2-3-6.md @@ -1,4 +1,3 @@ - --- group: release-notes title: Magento Commerce 2.3.6 Release Notes From bb388be78a63c223e026b258d870c3f3113889e7 Mon Sep 17 00:00:00 2001 From: Shrie Spangler Date: Tue, 20 Oct 2020 10:10:36 -0500 Subject: [PATCH 052/143] Update CONTRIBUTING.md Add information about referencing the Pull Request Process topic. --- .github/CONTRIBUTING.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 811a869a671..18c9651d711 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -46,7 +46,7 @@ The following diagram shows the contribution workflow: In general, you should use `master` as the base branch when creating a PR. If your contribution is related to a release that is in progress, use a version-specific integration branch, such as `develop`. -1. Complete the pull request template. +1. Complete the pull request template. Review the [Pull Request Process page](https://github.com/magento/devdocs/wiki/Pull-Request-Process) to learn how to complete a PR (with info about completing the template, adding a `whatsnew`, and more.) **We will close your pull request if you do not complete the template.** @@ -63,7 +63,7 @@ The following guidelines may answer most of your questions and help you get star - Write content using Markdown. See the [Templates](#templates) section for examples. - Review existing [pull requests](https://github.com/magento/devdocs/pulls) and [issues](https://github.com/magento/devdocs/issues) to avoid duplicating work. - For large contributions, or changes that include multiple files, [open an issue](#report-an-issue) and discuss it with us first. This helps prevent duplicate or unnecessary work. -- Do not make global find-and-replace changes without first creating an issue and discussing it with us. Global changes can have unintended consequences. +- Do not make global find-and-replace changes without first [creating an issue](https://github.com/magento/devdocs/issues/new/choose) and discussing it with us. Global changes can have unintended consequences. - Do not make changes to content in the [`_data/codebase`](https://github.com/magento/devdocs/tree/master/src/_data/codebase) directory, which contains auto-generated data from Magento source code. Any manual changes will be lost when the file regenerates. - Combine multiple small changes (such as minor editorial and technical changes) into a single pull request. This helps us efficiently and effectively facilitate your contribution. - Familiarize yourself with the organization and conventions of our existing documentation before creating a pull request. Changes that are consistent with our style and conventions have a higher acceptance rate. @@ -110,7 +110,6 @@ We provide templates to help you get started writing new content and understandi The Markdown (.md) file's metadata is a set of YAML key-value pairs. The metadata section is located at the top of each file. For more info, see the [Basic Template](https://devdocs.magento.com/contributor-guide/templates/basic_template.html). ```yaml - --- group: title: From 7bdd6d8c5f534d6095a4b8a71e6a3b18796bcf04 Mon Sep 17 00:00:00 2001 From: Margaret Eker Date: Tue, 20 Oct 2020 10:26:07 -0500 Subject: [PATCH 053/143] Added links and resources for Magento Cloud Docker support (#8077) --- src/cloud/docker/docker-development.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/cloud/docker/docker-development.md b/src/cloud/docker/docker-development.md index 6b4b6b01ec3..d435ecc09ca 100644 --- a/src/cloud/docker/docker-development.md +++ b/src/cloud/docker/docker-development.md @@ -40,7 +40,23 @@ You can use the Docker environment to emulate the {{site.data.var.ece}} Integrat - [Docker architecture and common commands]({{site.baseurl}}/cloud/docker/docker-containers.html) - [Launch Docker development environment]({{site.baseurl}}/cloud/docker/docker-config.html) +## Getting support for {{site.data.var.mcd-prod}} + +{{site.data.var.mcd-prod}} is a Magento Community Engineering project supported by the Magento developer community. You have several options to get support and learn more about {{site.data.var.mcd-prod}} and Magento local development. + +- **[Magento Community Engineering Slack organization]**–For support, questions, or discussion, chat with us in the **#cloud-docker** and **#cloud** channels. To join, send a request to _engcom@magento.com_ or [sign yourself up] using Slack. + +- **[{{site.data.var.mcd-package}} GitHub repository]**–Visit the GitHub repository to read discussions about current issues, check current development, and submit issues or pull requests to improve the project. + +- **Magento Cloud Community Engineering demos**–Magento hosts Cloud demo session where you can learn about developing Magento on the Cloud platform, including information about local development with {{site.data.var.mcd-prod}}}. For a schedule and recordings of previous demos, see the [Magento Cloud Community Engineering Demo Schedule]. + + + [config docker]: {{site.baseurl}}/cloud/docker/docker-config.html [Magento authentication keys]: {{site.baseurl}}/guides/v2.3/install-gde/prereq/connect-auth.html +[Magento Community Engineering Slack organization]: https://magentocommeng.slack.com/ [Set up an account]: {{site.baseurl}}/cloud/before/before-workspace.html#newaccount +[sign yourself up]: https://tinyurl.com/engcom-slack +[Magento Cloud Community Engineering demo schedule]: https://spark.adobe.com/page/PbxJoujH7oRTc/ +[{{site.data.var.mcd-package}} GitHub repository]: https://github.com/magento/magento-cloud-docker [Resolve issues with encryption key]: {{site.baseurl}}/cloud/trouble/trouble-crypt-key-variable.html From 3a3c8d5ba29324c87d1e8282c4ae5c1c4742e7b9 Mon Sep 17 00:00:00 2001 From: Margaret Eker Date: Tue, 20 Oct 2020 10:37:05 -0500 Subject: [PATCH 054/143] Fix code sample Add missing semicolon from bypass VCL code sample --- src/cloud/cdn/fastly-vcl-allowlist.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cloud/cdn/fastly-vcl-allowlist.md b/src/cloud/cdn/fastly-vcl-allowlist.md index a88aa908e84..fcca4541c17 100644 --- a/src/cloud/cdn/fastly-vcl-allowlist.md +++ b/src/cloud/cdn/fastly-vcl-allowlist.md @@ -114,7 +114,7 @@ After reviewing and updating the code for your environment, use either of the fo - Add the **VCL** snippet content: ```conf - if ((req.url ~ "^/admin") && !(client.ip ~ allowlist) && !req.http.Fastly-FF) { error 403 "Forbidden"} + if ((req.url ~ "^/admin") && !(client.ip ~ allowlist) && !req.http.Fastly-FF) { error 403 "Forbidden";} ``` 1. Click **Create** to generate the VCL snippet file with the name pattern `type_priority_name.vcl`, for example `recv_5_allowlist.vcl` From 98db87fc2eb7531a78fe73c60292d55abec95741 Mon Sep 17 00:00:00 2001 From: Barny Shergold Date: Tue, 20 Oct 2020 18:32:42 +0100 Subject: [PATCH 055/143] Correct number of Integration environments (#8087) Co-authored-by: Barny Shergold Co-authored-by: Margaret Eker --- src/cloud/architecture/cloud-architecture.md | 4 ++-- src/cloud/live/stage-prod-live.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cloud/architecture/cloud-architecture.md b/src/cloud/architecture/cloud-architecture.md index 22e3baf6614..8a7c686dc21 100644 --- a/src/cloud/architecture/cloud-architecture.md +++ b/src/cloud/architecture/cloud-architecture.md @@ -55,7 +55,7 @@ For comparison, each plan includes the following infrastructure features and sup
  • New Relic Infrastructure on Production + APM (Performance Monitoring) on Staging and Production. The Managed alerts for {{ site.data.var.ee }} policy implements monitoring best practices to proactively notify you about application and infrastructure issues affecting site performance.
  • -
  • Platform-as-a-service (PaaS) based Integration development environments (8 total active environments) optimized for {{site.data.var.ee}}
  • +
  • Platform-as-a-service (PaaS) based Integration development environments (2 total active environments) optimized for {{site.data.var.ee}}
  • Infrastructure-as-a-Service (IaaS)—dedicated virtual infrastructure for Production environments and for Staging environments
  • @@ -107,6 +107,6 @@ The [Starter plan architecture]({{ site.baseurl }}/cloud/architecture/starter-ar The [Pro plan architecture]({{ site.baseurl }}/cloud/architecture/pro-architecture.html) has a global master with three environments: - **Integration**—The Integration environment provides a testable environment that includes a database, web server, caching, some services, environment variables, and configurations. You can develop, deploy, and test your code before merging to the Staging environment. - - _Inactive_—You can have an unlimited number of inactive branches based on the Integration environment. + - _Inactive_—You can have an unlimited number of inactive branches based on the Integration environment, but only one active branch (not including Integration itself). - **Staging**—The Staging environment is for pre-Production testing and includes a database, web server, caching, third-party services, environment variables, configurations, and services, such as Fastly. - **Production**—The Production environment includes a three-node, high-availability architecture for your data, services, caching, and store. This is your live, public store environment with environment variables, configurations, and third-party services. diff --git a/src/cloud/live/stage-prod-live.md b/src/cloud/live/stage-prod-live.md index 155c9d0dc79..40d99725d82 100644 --- a/src/cloud/live/stage-prod-live.md +++ b/src/cloud/live/stage-prod-live.md @@ -31,7 +31,7 @@ For detailed information of the process, see [Starter Develop and Deploy Workflo ## Pro plan deployment {#pro} -Pro comes with a large Integration environment with eight active branches and environments including `master`, Staging, and Production. When you create your project, code is ready to branch, develop, and push for building and deploying your site. Although the Integration environment can have many branches, Staging and Production have only one branch: the deployed Git `master`. +Pro comes with a large Integration environment with two active branches and environments including `master`, Staging, and Production. When you create your project, code is ready to branch, develop, and push for building and deploying your site. Although the Integration environment can have many branches, Staging and Production have only one branch: the deployed Git `master`. 1. Create development branches from the Integration `master` branch. 1. Develop on local: custom modules, Magento extensions, 3rd party integrations, and configurations. From 89f2908b99373d9967caeca90a07059990a29775 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20H=C3=BCnig?= Date: Tue, 20 Oct 2020 22:43:10 +0200 Subject: [PATCH 056/143] add small block about redis configuration (#8073) * Update config-redis.md add quick explanation how to setup Redis * Update config-redis.md Fix line length * Update config-redis.md fix markdown Add more explanation about AOF and RDB * Update src/guides/v2.3/config-guide/redis/config-redis.md * RDB written out correctly * Reformulated size explanation in config-redis.md to be more clear Co-authored-by: Barny Shergold Co-authored-by: Margaret Eker --- .../v2.3/config-guide/redis/config-redis.md | 33 ++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/src/guides/v2.3/config-guide/redis/config-redis.md b/src/guides/v2.3/config-guide/redis/config-redis.md index 685f8e91ea1..3d0b4e89398 100644 --- a/src/guides/v2.3/config-guide/redis/config-redis.md +++ b/src/guides/v2.3/config-guide/redis/config-redis.md @@ -16,7 +16,7 @@ Redis features include: * Redis supports on-disk save and master/slave replication. {:.bs-callout-info} -Starting in Magento 2.0.6, you can use either Redis or [memcached]({{ page.baseurl }}/config-guide/memcache/memcache.html) for session storage. Earlier issues with the Redis session handler and session locking have been resolved. +Starting from Magento 2.0.6, you can use either Redis or [memcached]({{ page.baseurl }}/config-guide/memcache/memcache.html) for session storage. Earlier issues with the Redis session handler and session locking have been resolved. ## Install Redis {#config-redis-install} @@ -27,6 +27,37 @@ Installing and configuring the Redis software is beyond the scope of this guide. * [digitalocean](https://www.digitalocean.com/community/tutorials/how-to-install-and-use-redis) * [Redis documentation page](http://redis.io/documentation) +## Set up redis configuration {#config-redis-setup} + +Depending on your installation, you can usually find your Redis configuration in one of the following files: `/etc/redis/redis.conf` or `/etc/redis/.conf` + +To optimize the Redis instance for your requirements, you get best results by using a dedicated instance for each session, Magento cache and FPC. + +For sessions, we recommend that you enable persistence to copy Redis data to disk using either of the following persistence options: regular Redis Database Backup (RDB) snapshots, or Append Only File (AOF) persistence logs. + +* RDB (Redis Database Backup) snapshots store the complete database in a dump file after a given time, when a minimum number of keys have changed since the last save. Use the `save` setting inside the `redis.conf` file to configure this setting. + +* AOF (Append Only File) stores each write operation sent to Redis in a journal file. Redis reads this file on restart only and uses it to restore the original dataset. + +You can also enable both the RDB and AOF options at the same time. For additional details including the advantages and disadvantages of the persistence options, see the [Redis Persistence documentation](https://redis.io/topics/persistence). + +For the cache instance, set up the instance so that it is large enough to store your entire Magento cache. +Size requirements depend on different factors like the number of products and store views. As a starting point, you can use the size of the cache folder on your file system. For example, if the `var/cache` folder on your file system is 5 GB, set up your Redis instance with at least 5 GB to start. Persistence is not required for the cache instance because the Magento cache can be restored. See also [Redis cache guide](https://redis.io/topics/lru-cache). + +For performance tuning, you can also enable the following settings for asynchronous deletion. These settings do not change the behavior of Redis. See also [redis news](http://antirez.com/news/93) for details about asynchronous deletion. + +```ini +lazyfree-lazy-eviction yes +lazyfree-lazy-expire yes +lazyfree-lazy-server-del yes +replica-lazy-flush yes +``` +On Redis 6.x and later, you can also add the following value: + +```ini +lazyfree-lazy-user-del yes +``` + ## For more information You can find more information about configuring Redis from the following: From 3afc57a6b524190d9f309ec6c846843e49f67575 Mon Sep 17 00:00:00 2001 From: Sathish Date: Wed, 21 Oct 2020 16:50:56 +0530 Subject: [PATCH 057/143] Updated another way of string translation in js --- .../translations/translate_theory.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/guides/v2.3/frontend-dev-guide/translations/translate_theory.md b/src/guides/v2.3/frontend-dev-guide/translations/translate_theory.md index c02e394d8c7..7f6f4781737 100644 --- a/src/guides/v2.3/frontend-dev-guide/translations/translate_theory.md +++ b/src/guides/v2.3/frontend-dev-guide/translations/translate_theory.md @@ -125,7 +125,7 @@ To ensure that the text you add in a `.js` file is collected by the i18n tool an 1. Link the `mage/translate` library: ```javascript - define (['jquery', 'mage/translate'], function ($) {...}); + define (['jquery', 'mage/translate'], function ($, $t) {...}); ``` 1. Use the `$.mage.__('')` function when adding a string: @@ -133,12 +133,20 @@ To ensure that the text you add in a `.js` file is collected by the i18n tool an ```javascript $.mage.__(''); ``` + (or) + ```javascript + $t(''); + ``` If your string contains a variable, to add a placeholder for this variable to the string stored in the dictionary, use the syntax similar to the following: ```javascript $.mage.__('Hello %1').replace('%1', yourVariable); ``` + (or) + ```javascript + $t('Hello %1').replace('%1', yourVariable); + ``` In this example, the `'Hello %1'` string is added to the dictionary when the i18n tool is run. From ea528a33b05b436ea1886b0e20abdc333f7ef7ef Mon Sep 17 00:00:00 2001 From: Sathish Date: Wed, 21 Oct 2020 16:50:56 +0530 Subject: [PATCH 058/143] Updated another way of string translation in js --- .../translations/translate_theory.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/guides/v2.3/frontend-dev-guide/translations/translate_theory.md b/src/guides/v2.3/frontend-dev-guide/translations/translate_theory.md index c02e394d8c7..cda055d32e1 100644 --- a/src/guides/v2.3/frontend-dev-guide/translations/translate_theory.md +++ b/src/guides/v2.3/frontend-dev-guide/translations/translate_theory.md @@ -125,7 +125,7 @@ To ensure that the text you add in a `.js` file is collected by the i18n tool an 1. Link the `mage/translate` library: ```javascript - define (['jquery', 'mage/translate'], function ($) {...}); + define (['jquery', 'mage/translate'], function ($, $t) {...}); ``` 1. Use the `$.mage.__('')` function when adding a string: @@ -133,12 +133,20 @@ To ensure that the text you add in a `.js` file is collected by the i18n tool an ```javascript $.mage.__(''); ``` + or + ```javascript + $t(''); + ``` If your string contains a variable, to add a placeholder for this variable to the string stored in the dictionary, use the syntax similar to the following: ```javascript $.mage.__('Hello %1').replace('%1', yourVariable); ``` + or + ```javascript + $t('Hello %1').replace('%1', yourVariable); + ``` In this example, the `'Hello %1'` string is added to the dictionary when the i18n tool is run. From a6036f77dd34818aa1fbaff00d32daeb083b26bf Mon Sep 17 00:00:00 2001 From: Igor Date: Wed, 21 Oct 2020 09:24:54 -0500 Subject: [PATCH 059/143] Updated Extension guides links to 2.4 release line - changed links to PHP dev guide, Best Practices, Magento Web API, Frontend dev guide to 2.4 release line - fixed mistake "submitting your extension review" to "submitting your extension for Marketplace review" --- src/marketplace/sellers/extension-create.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/marketplace/sellers/extension-create.md b/src/marketplace/sellers/extension-create.md index 9126076665b..c68c6670aa9 100644 --- a/src/marketplace/sellers/extension-create.md +++ b/src/marketplace/sellers/extension-create.md @@ -6,10 +6,10 @@ redirect_from: /marketplace/sellers/completing-your-extension.html Before you can submit your extension to Magento Marketplace, the code must be complete, tested, and packaged. For technical information, see the Magento DevDocs for additional technical information for developing extensions and more: -- [PHP Developer Guide]({{ site.baseurl }}/guides/v2.3/extension-dev-guide/bk-extension-dev-guide.html) -- [Best Practices for Extension Developers]({{ site.baseurl }}/guides/v2.3/ext-best-practices/bk-ext-best-practices.html) -- [Magento Web APIs]({{ site.baseurl }}/guides/v2.3/get-started/bk-get-started-api.html) -- [Frontend Developer Guide]({{ site.baseurl }}/guides/v2.3/frontend-dev-guide/bk-frontend-dev-guide.html) +- [PHP Developer Guide]({{ site.baseurl }}/guides/v2.4/extension-dev-guide/bk-extension-dev-guide.html) +- [Best Practices for Extension Developers]({{ site.baseurl }}/guides/v2.4/ext-best-practices/bk-ext-best-practices.html) +- [Magento Web APIs]({{ site.baseurl }}/guides/v2.4/get-started/bk-get-started-api.html) +- [Frontend Developer Guide]({{ site.baseurl }}/guides/v2.4/frontend-dev-guide/bk-frontend-dev-guide.html) ![]({{ site.baseurl }}/marketplace/sellers/images/extension-prep.png){: .zoom} _Building and Submitting an Extension_ @@ -19,7 +19,7 @@ Magento Marketplace does not support encrypted extensions at this time. ## Build your extension -1. Before submitting your extension review, see the [Technical Review Guidelines]({{ site.baseurl }}/marketplace/sellers/technical-review-guidelines.html) and the [Marketing Review Guidelines]({{ site.baseurl }}/marketplace/sellers/marketing-review-guidelines.html). +1. Before submitting your extension for Marketplace review, see the [Technical Review Guidelines]({{ site.baseurl }}/marketplace/sellers/technical-review-guidelines.html) and the [Marketing Review Guidelines]({{ site.baseurl }}/marketplace/sellers/marketing-review-guidelines.html). 1. Use the [CodeSniffer][1] tool to verify that your code meets Marketplace guidelines. From 9c1b4b00f5fa6ae7e759b87442cf871510c7f055 Mon Sep 17 00:00:00 2001 From: Igor Date: Wed, 21 Oct 2020 09:29:22 -0500 Subject: [PATCH 060/143] Purged Magento 1 reference from Create an Extension --- src/marketplace/sellers/extension-create.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/marketplace/sellers/extension-create.md b/src/marketplace/sellers/extension-create.md index 9126076665b..c2b467a7ed6 100644 --- a/src/marketplace/sellers/extension-create.md +++ b/src/marketplace/sellers/extension-create.md @@ -25,7 +25,7 @@ Magento Marketplace does not support encrypted extensions at this time. Testing your extension in advance reduces the time it takes to pass Technical Review. For a list of code sniffer rules, see [Magento Extension Quality Program Coding Standard][2]. -1. Prepare, validate, and zip your extension as described in Packaging a Component for Magento version [2.x]({{ site.baseurl }}/guides/v2.3/extension-dev-guide/package/package_module.html) or [1.x]({{ site.baseurl }}/marketplace/sellers/packaging-v1x-extensions.html). +1. Prepare, validate, and zip your extension as described in [Packaging a Component]({{ site.baseurl }}/guides/v2.3/extension-dev-guide/package/package_module.html). 1. Prepare the following preliminary documentation: From 443b874f36d8e89b3496b769da47c8bb31323803 Mon Sep 17 00:00:00 2001 From: Igor Date: Wed, 21 Oct 2020 09:35:35 -0500 Subject: [PATCH 061/143] Purged Magento 1 reference from Create an Extension --- src/marketplace/sellers/extension-create.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/marketplace/sellers/extension-create.md b/src/marketplace/sellers/extension-create.md index c68c6670aa9..f922e934d8a 100644 --- a/src/marketplace/sellers/extension-create.md +++ b/src/marketplace/sellers/extension-create.md @@ -25,7 +25,7 @@ Magento Marketplace does not support encrypted extensions at this time. Testing your extension in advance reduces the time it takes to pass Technical Review. For a list of code sniffer rules, see [Magento Extension Quality Program Coding Standard][2]. -1. Prepare, validate, and zip your extension as described in Packaging a Component for Magento version [2.x]({{ site.baseurl }}/guides/v2.3/extension-dev-guide/package/package_module.html) or [1.x]({{ site.baseurl }}/marketplace/sellers/packaging-v1x-extensions.html). +1. Prepare, validate, and zip your extension as described in [Packaging a Component]({{ site.baseurl }}/guides/v2.3/extension-dev-guide/package/package_module.html). 1. Prepare the following preliminary documentation: From 73612cf5a60a6301782be9ddd5e51c07e47954e0 Mon Sep 17 00:00:00 2001 From: Igor Date: Wed, 21 Oct 2020 09:37:41 -0500 Subject: [PATCH 062/143] Fixed link to be 2.4 line --- src/marketplace/sellers/extension-create.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/marketplace/sellers/extension-create.md b/src/marketplace/sellers/extension-create.md index f922e934d8a..2201bf646ad 100644 --- a/src/marketplace/sellers/extension-create.md +++ b/src/marketplace/sellers/extension-create.md @@ -25,7 +25,7 @@ Magento Marketplace does not support encrypted extensions at this time. Testing your extension in advance reduces the time it takes to pass Technical Review. For a list of code sniffer rules, see [Magento Extension Quality Program Coding Standard][2]. -1. Prepare, validate, and zip your extension as described in [Packaging a Component]({{ site.baseurl }}/guides/v2.3/extension-dev-guide/package/package_module.html). +1. Prepare, validate, and zip your extension as described in [Packaging a Component]({{ site.baseurl }}/guides/v2.4/extension-dev-guide/package/package_module.html). 1. Prepare the following preliminary documentation: From 516f63e880a881f2a7531e3413650c4fbaa94211 Mon Sep 17 00:00:00 2001 From: Igor Date: Wed, 21 Oct 2020 09:41:07 -0500 Subject: [PATCH 063/143] Fixed release line for Packaging a component --- src/marketplace/sellers/extension-create.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/marketplace/sellers/extension-create.md b/src/marketplace/sellers/extension-create.md index c2b467a7ed6..e85068ad177 100644 --- a/src/marketplace/sellers/extension-create.md +++ b/src/marketplace/sellers/extension-create.md @@ -25,7 +25,7 @@ Magento Marketplace does not support encrypted extensions at this time. Testing your extension in advance reduces the time it takes to pass Technical Review. For a list of code sniffer rules, see [Magento Extension Quality Program Coding Standard][2]. -1. Prepare, validate, and zip your extension as described in [Packaging a Component]({{ site.baseurl }}/guides/v2.3/extension-dev-guide/package/package_module.html). +1. Prepare, validate, and zip your extension as described in [Packaging a Component]({{ site.baseurl }}/guides/v2.4 /extension-dev-guide/package/package_module.html). 1. Prepare the following preliminary documentation: From 1589f887971a3f04db53388006d230d9d933c62e Mon Sep 17 00:00:00 2001 From: Erik Marr Date: Wed, 21 Oct 2020 10:31:36 -0500 Subject: [PATCH 064/143] Updating release notes for 3.0.8 --- src/_data/mde.yml | 12 ++++++++++++ src/recommendations/release-notes.md | 4 ++++ 2 files changed, 16 insertions(+) diff --git a/src/_data/mde.yml b/src/_data/mde.yml index 73028681443..1f7f16d4f2c 100644 --- a/src/_data/mde.yml +++ b/src/_data/mde.yml @@ -309,6 +309,18 @@ extensions: - name: Product Recommendations versions: + - + name: 3.0.8 + support: + 2.3.0: supported + 2.3.1: supported + 2.3.2: supported + 2.3.3: supported + 2.3.4: supported + 2.3.5-p1: supported + 2.3.6: supported + 2.4.0: supported + 2.4.1: supported - name: 3.0.6 support: diff --git a/src/recommendations/release-notes.md b/src/recommendations/release-notes.md index 41b83fdcb88..75fc7ee72e3 100644 --- a/src/recommendations/release-notes.md +++ b/src/recommendations/release-notes.md @@ -15,6 +15,10 @@ The release notes include: - {:.new}New features - {:.fix}Fixes and improvements +## 3.0.8 of magento/product-recommendations for Magento Commerce 2.4.0 + +- {:.fix}Fixed an issue where events were sent for data collection before the module was configured, causing invalid traffic + ## 3.0.6 of magento/product-recommendations for Magento Commerce 2.4.0 - {:.new}**(Beta)** Includes support for new [Visual similarity recommendation type](https://docs-beta.magento.com/user-guide/marketing/prex-type-visualsim.html) From 40c163b1de107c48e6e2059a4d03c73cc71d2938 Mon Sep 17 00:00:00 2001 From: Kevin Harper Date: Wed, 21 Oct 2020 10:36:07 -0500 Subject: [PATCH 065/143] Break symlink (#8102) --- .../mutations/generate-customer-token.md | 81 ++++++++++++++++++- 1 file changed, 80 insertions(+), 1 deletion(-) mode change 120000 => 100644 src/guides/v2.4/graphql/mutations/generate-customer-token.md diff --git a/src/guides/v2.4/graphql/mutations/generate-customer-token.md b/src/guides/v2.4/graphql/mutations/generate-customer-token.md deleted file mode 120000 index 636ef189054..00000000000 --- a/src/guides/v2.4/graphql/mutations/generate-customer-token.md +++ /dev/null @@ -1 +0,0 @@ -../../../v2.3/graphql/mutations/generate-customer-token.md \ No newline at end of file diff --git a/src/guides/v2.4/graphql/mutations/generate-customer-token.md b/src/guides/v2.4/graphql/mutations/generate-customer-token.md new file mode 100644 index 00000000000..fe634a936b1 --- /dev/null +++ b/src/guides/v2.4/graphql/mutations/generate-customer-token.md @@ -0,0 +1,80 @@ +--- +group: graphql +title: generateCustomerToken mutation +--- + +Use the `generateCustomerToken` mutation to create a new customer token. + +To return or modify information about a customer, Magento recommends you use customer tokens in the header of your GraphQL calls. However, you also can use [session authentication]({{ page.baseurl }}/get-started/authentication/gs-authentication-session.html). + +## Syntax + +```graphql +mutation { + generateCustomerToken( + email: String! + password: String! + ) { + CustomerToken + } +} +``` + +## Example usage + +The following call creates a new customer token. + +**Request:** + +```graphql +mutation { + generateCustomerToken( + email: "bobloblaw@example.com" + password: "b0bl0bl@w" + ) { + token + } +} +``` + +**Response:** + +```json +{ + "data": { + "generateCustomerToken": { + "token": "ar4116zozoagxty1xjn4lj13kim36r6x" + } + } +} +``` + +## Input attributes + +The `generateCustomerToken` mutation requires the following inputs: + +Attribute | Data Type | Description +--- | --- | --- +`email` | String | The customer's email address +`password` | String | The customer's password + +## Output attributes + +The `generateCustomerToken` mutation returns a valid token for the customer. + +Attribute | Data Type | Description +--- | --- | --- +`token` | String | The customer token + +## Errors + +Error | Description +--- | --- +`Specify the "email" value.` | The value specified in the `email` argument is empty. +`Specify the "password" value.` | The value specified value in the `password` argument is empty. +`The account sign-in was incorrect or your account is disabled temporarily. Please wait and try again later.` | Authentication error. The email or password is incorrect, or the customer account is locked. + +## Related topics + +* [customer query]({{page.baseurl}}/graphql/queries/customer.html) +* [revokeCustomerToken mutation]({{page.baseurl}}/graphql/mutations/revoke-customer-token.html) From 3c28d63317a1f8b63cde4756007dc4bdaef6d964 Mon Sep 17 00:00:00 2001 From: Donald Booth Date: Wed, 21 Oct 2020 10:47:51 -0500 Subject: [PATCH 066/143] removed space from link --- src/marketplace/sellers/extension-create.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/marketplace/sellers/extension-create.md b/src/marketplace/sellers/extension-create.md index e85068ad177..7f09cb6eb2d 100644 --- a/src/marketplace/sellers/extension-create.md +++ b/src/marketplace/sellers/extension-create.md @@ -25,7 +25,7 @@ Magento Marketplace does not support encrypted extensions at this time. Testing your extension in advance reduces the time it takes to pass Technical Review. For a list of code sniffer rules, see [Magento Extension Quality Program Coding Standard][2]. -1. Prepare, validate, and zip your extension as described in [Packaging a Component]({{ site.baseurl }}/guides/v2.4 /extension-dev-guide/package/package_module.html). +1. Prepare, validate, and zip your extension as described in [Packaging a Component]({{site.baseurl}}/guides/v2.4/extension-dev-guide/package/package_module.html). 1. Prepare the following preliminary documentation: From d9627dad06e96de440e3153068a4d77f01f1df83 Mon Sep 17 00:00:00 2001 From: Heather Guthrie Date: Wed, 21 Oct 2020 12:23:29 -0500 Subject: [PATCH 067/143] Update magento-app-properties.md --- src/cloud/project/magento-app-properties.md | 26 ++++++++++++--------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/src/cloud/project/magento-app-properties.md b/src/cloud/project/magento-app-properties.md index 938b818323c..5178a99d7db 100644 --- a/src/cloud/project/magento-app-properties.md +++ b/src/cloud/project/magento-app-properties.md @@ -73,22 +73,26 @@ See [Services]({{ site.baseurl }}/cloud/project/services.html) for a full list o ### `web` -The `web` property defines how your application is exposed to the web (in HTTP). It determines how the web application serves content— from the front-controller script to a non-static request to an `index.php` file on the root. We support any directory structure so the static file can be in a sub directory, and the `index.php` file can be further down. +The `web` property defines how your application is exposed to the web (in HTTP), determines how the web application serves content, and controls how the application container responds to incoming requests by setting rules in each location _block_. A block represents an absolute path leading with a forward slash (`/`). -You can specify the following key values for the `web` property _locations_: +```yaml +web: + locations: + "/": + # The public directory of the app, relative to its root. +``` + +You can specify the following key values for each `locations` block: Attribute | Description --------- | ----------- -`allow` | Serve files that do not match a rule. Default value = `true` -`blacklist` | Files that should never be served. Has no effect on static files. -`expires` | The number of seconds to cache `whitelist` content in the browser. This attribute enables the `cache-control` and `expires` headers for static content. If this value is not set, the `expires` directive and resulting headers are not included when serving static content files. -`index` | Static files to serve your application, such as the `index.html` file. This key expects a collection. You must include the static file(s) in the `whitelist` as an index file: `- \.html$` -`passthru` | The URL used in the event that a static file or PHP file cannot be found. Typically, this URL is the front controller for your applications, such as `/index.php` or `/app.php`. -`root` | The path relative to the root of the application that is exposed on the web. Typical values include `/public` and `/web`. +`allow` | Serve files that do not match "rules". Default value = `true` +`expires` | Set the number of seconds to cache content in the browser. This key enables the `cache-control` and `expires` headers for static content. If this value is not set, the `expires` directive and resulting headers are not included when serving static content files. A negative 1 (`-1`) value results in no caching and is the default value. You can express time value with the following units: `ms` (milliseconds), `s` (seconds), `m` (minutes), `h` (hours), `d` (days), `w` (weeks), `M` (months, 30d), or `y` (years, 365d) +`index` | List the static files to serve your application, such as the `index.html` file. This key expects a collection. This only works if access to the file or files is "allowed" by the `allow` or `rules` key for this location. +`rules` | Specify overrides for a location. Use a regular expression to match a request. If an incoming request matches the rule, then regular handling of the request is overridden by the keys used in the rule. +`passthru` | Set the URL used in the event that a static file or PHP file cannot be found. Typically, this URL is the front controller for your applications, such as `/index.php` or `/app.php`. +`root` | Set the path relative to the root of the application that is exposed on the web. Typical values include `/public` and `/web`. `scripts` | Allow loading scripts in this location. Set the value to `true` to allow scripts. -`whitelist` | A list of static files that can be served. Dynamic files, such as PHP files, are treated as static files, where the source code is served and not run. - -Contrary to standard `.htaccess` approaches that accept a _blacklist_ and allow access to everything not on a specific list, we accept a _whitelist_, which means that any request that does not match triggers a 404 error and passes through to the URL specified by the `passthru` attribute. Our default configuration allows the following: From 135531317250581ad9340a63d2cc08d89fbe8d0d Mon Sep 17 00:00:00 2001 From: Heather Guthrie Date: Wed, 21 Oct 2020 12:38:32 -0500 Subject: [PATCH 068/143] fix table comment --- src/cloud/project/magento-app-properties.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cloud/project/magento-app-properties.md b/src/cloud/project/magento-app-properties.md index 5178a99d7db..541eb8a1252 100644 --- a/src/cloud/project/magento-app-properties.md +++ b/src/cloud/project/magento-app-properties.md @@ -82,7 +82,7 @@ web: # The public directory of the app, relative to its root. ``` -You can specify the following key values for each `locations` block: +You can fine-tune your `locations` configuration using the following key values for each `locations` block: Attribute | Description --------- | ----------- From f49314c1806b5a1d64f17aa613be6ab2f7204be1 Mon Sep 17 00:00:00 2001 From: Heather Guthrie Date: Wed, 21 Oct 2020 14:10:50 -0500 Subject: [PATCH 069/143] Update from technical feedback --- src/cloud/project/magento-app-properties.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cloud/project/magento-app-properties.md b/src/cloud/project/magento-app-properties.md index 541eb8a1252..e6fdf861e93 100644 --- a/src/cloud/project/magento-app-properties.md +++ b/src/cloud/project/magento-app-properties.md @@ -91,7 +91,7 @@ Attribute | Description `index` | List the static files to serve your application, such as the `index.html` file. This key expects a collection. This only works if access to the file or files is "allowed" by the `allow` or `rules` key for this location. `rules` | Specify overrides for a location. Use a regular expression to match a request. If an incoming request matches the rule, then regular handling of the request is overridden by the keys used in the rule. `passthru` | Set the URL used in the event that a static file or PHP file cannot be found. Typically, this URL is the front controller for your applications, such as `/index.php` or `/app.php`. -`root` | Set the path relative to the root of the application that is exposed on the web. Typical values include `/public` and `/web`. +`root` | Set the path relative to the root of the application that is exposed on the web. The public directory (location "/") for a Cloud project is set to "pub" by default. `scripts` | Allow loading scripts in this location. Set the value to `true` to allow scripts. Our default configuration allows the following: From d615c66df47e4e90a034ebd494397178aa543b89 Mon Sep 17 00:00:00 2001 From: jfrontain Date: Thu, 22 Oct 2020 13:14:12 -0500 Subject: [PATCH 070/143] deleted redundant issue description --- src/guides/v2.4/release-notes/b2b-release-notes.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/guides/v2.4/release-notes/b2b-release-notes.md b/src/guides/v2.4/release-notes/b2b-release-notes.md index c1121fa8478..dd7b97b1b1f 100644 --- a/src/guides/v2.4/release-notes/b2b-release-notes.md +++ b/src/guides/v2.4/release-notes/b2b-release-notes.md @@ -56,8 +56,6 @@ This release includes improvements to order approvals, shipping methods, shoppin - {:.fix} Magento no longer displays a 404 page when a merchant uses the **Enter** button instead of clicking the **Save** button when creating a requisition list on the storefront. -- {:.fix} When a merchant creates a new shared catalog, permissions are now automatically set to **Allow** for the **Display Product Prices** and **Add to Cart** features in categories when the customer group has been assigned this access in catalog permission settings. Previously, these settings were automatically set to **Deny** even when catalog permissions were set to **Allow**. - - {:.fix} Category permissions no longer change when a new product is assigned to a public shared catalog. Previously, category permissions were duplicated. - {:.fix} The REST API endpoint PUT `rest/default/V1/company/{id}`, which is used to update Company email, is no longer case-sensitive. From a2de6c15c9e5ef1c0e47ce2feb741cc581d27ca3 Mon Sep 17 00:00:00 2001 From: Eugene Bannykh Date: Thu, 22 Oct 2020 14:57:42 -0500 Subject: [PATCH 071/143] Add Adobe logo (#8113) --- Gemfile.lock | 4 ++-- _config.yml | 2 +- src/_includes/layout/site-nav.html | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index ea452f59c50..80063347880 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,8 +1,8 @@ GIT remote: https://github.com/magento-devdocs/devdocs-theme.git - revision: c96131acc7a0ed03629ab3401c8a64d819e7e610 + revision: 0bd45b1e1816f5c94233c2c36403bc3242a6551a specs: - devdocs (12) + devdocs (14) jekyll (>= 4.0) GEM diff --git a/_config.yml b/_config.yml index 6ac8022404e..46c0f1739c0 100644 --- a/_config.yml +++ b/_config.yml @@ -3,7 +3,7 @@ # For more details about available options and defaults, refer to https://jekyllrb.com/docs/configuration/ # title: Magento 2 Developer Documentation -logo: DevDocs +logo: Magento DevDocs description: Magento 2 Developer Documentation. # the base protocol and domain diff --git a/src/_includes/layout/site-nav.html b/src/_includes/layout/site-nav.html index 9debcf3a9d6..14222ec6541 100644 --- a/src/_includes/layout/site-nav.html +++ b/src/_includes/layout/site-nav.html @@ -15,7 +15,7 @@ From 1ac4468f44224e4a7a62ed3cd0ceaddf4303c56a Mon Sep 17 00:00:00 2001 From: Margaret Eker Date: Fri, 23 Oct 2020 16:45:42 -0500 Subject: [PATCH 072/143] Added information about using Managed Alerts on Starter projects (#8115) * Added information about using Managed Alerts on Starter projects * Update src/cloud/project/new-relic.md * Update src/cloud/project/new-relic.md * Update src/cloud/project/new-relic.md * Update src/cloud/project/new-relic.md Co-authored-by: hguthrie * Update src/cloud/project/new-relic.md Co-authored-by: hguthrie * Remove extra bracket (#8118) Co-authored-by: maeker12 <{ID}+{username}@users.noreply.github.com> Co-authored-by: hguthrie --- src/cloud/docker/docker-development.md | 2 +- src/cloud/project/new-relic.md | 64 +++++++++++++------------- 2 files changed, 32 insertions(+), 34 deletions(-) diff --git a/src/cloud/docker/docker-development.md b/src/cloud/docker/docker-development.md index d435ecc09ca..dc5bf4932d3 100644 --- a/src/cloud/docker/docker-development.md +++ b/src/cloud/docker/docker-development.md @@ -48,7 +48,7 @@ You can use the Docker environment to emulate the {{site.data.var.ece}} Integrat - **[{{site.data.var.mcd-package}} GitHub repository]**–Visit the GitHub repository to read discussions about current issues, check current development, and submit issues or pull requests to improve the project. -- **Magento Cloud Community Engineering demos**–Magento hosts Cloud demo session where you can learn about developing Magento on the Cloud platform, including information about local development with {{site.data.var.mcd-prod}}}. For a schedule and recordings of previous demos, see the [Magento Cloud Community Engineering Demo Schedule]. +- **Magento Cloud Community Engineering demos**–Magento hosts Cloud demo session where you can learn about developing Magento on the Cloud platform, including information about local development with {{site.data.var.mcd-prod}}. For a schedule and recordings of previous demos, see the [Magento Cloud Community Engineering Demo Schedule]. diff --git a/src/cloud/project/new-relic.md b/src/cloud/project/new-relic.md index 3472e164e1c..7516e382c14 100644 --- a/src/cloud/project/new-relic.md +++ b/src/cloud/project/new-relic.md @@ -8,7 +8,7 @@ functional_areas: - Services --- -{{ site.data.var.ece }} projects include access to New Relic services to help manage, monitor, and troubleshoot your applications and infrastructure by collecting, viewing, and analyzing data from your {{ site.data.var.ece }} project. +{{ site.data.var.ece }} projects include access to the following New Relic services to help manage, monitor, and troubleshoot your applications and infrastructure by collecting, viewing, and analyzing data from your {{ site.data.var.ece }} project. - [New Relic APM](#new-relic-apm) (Pro and Starter) - [New Relic Infrastructure](#new-relic-infrastructure) (Pro, Production environment only) @@ -22,7 +22,7 @@ functional_areas: - **Database query monitoring**—Locate and monitor database queries affecting performance. - **App Map**—View all application dependencies within your Magento site, extensions, and external services. - **Apdex scores**—Evaluate performance and create alerts that identify issues and notify you when they occur, such as site performance affected by a flash sale or web event. See [Apdex score]. -- **Managed Alerts for Magento Commerce**–Use this New Relic alert policy to monitor application and infrastructure performance based on industry best practices. See [Monitor performance with the Magento alert policy](#monitor-performance-with-managed-alerts). +- **Managed Alerts for Magento Commerce**–Use this New Relic alert policy to monitor application and infrastructure performance based on industry best practices. See [Monitor performance with the Managed Alerts for {{ site.data.var.ee }} alert policy](#monitor-performance-with-managed-alerts). Your {{site.data.var.ece}} project includes the software for the New Relic APM service along with a license key. You do not need to purchase or install any additional software. @@ -31,7 +31,7 @@ Your {{site.data.var.ece}} project includes the software for the New Relic APM s {{site.data.var.ece}} Pro projects include the [New Relic Infrastructure (NRI)][New Relic infrastructure] service, which automatically connects with the application data and performance analytics to provide dynamic server monitoring. This service is available on Production and Staging environments. {:.bs-callout-info} -For Pro accounts, if New Relic APM is not installed on the Staging and Production environments or New Relic Infrastructure is not available in the Production environment, submit a [support ticket]({{ site.baseurl }}/cloud/trouble/trouble.html) to request installation. +For Pro accounts, if New Relic APM is not installed on the Staging and Production environments or New Relic Infrastructure is not available in the Production environment, [submit a Magento Support ticket] to request installation. ## New Relic Logs @@ -52,7 +52,7 @@ As soon as your project is connected to New Relic, you can use the New Relic Log See [View and analyze logs](#view-and-analyze-log-data). -## Manage your New Relic account +## Manage New Relic account When Magento provisions your {{site.data.var.ece}} project, the License Owner receives an email from New Relic with credentials and instructions for accessing the New Relic account. If you did not receive the email, use the License Owner email address to [reset the New Relic password]. @@ -80,13 +80,13 @@ To add a user: 1. Ask the new user to check their email for a New Relic notification with account information. -## Set up the New Relic service +## Set up New Relic Pro environments are preconfigured to use New Relic services. For Starter environments, you must check the `.magento.app.yaml` file to verify that the `runtime` section includes the New Relic extension. If the extension has not been configured, add the following: -> .magento.app.yaml +> `.magento.app.yaml` ```yaml runtime: @@ -95,11 +95,11 @@ runtime: ``` {:.bs-callout-warning} -If you upgrade the PHP version on your {{site.data.var.ece}} project, you must submit a Magento Support ticket to update the New Relic service. +If you upgrade the PHP version on your {{site.data.var.ece}} project, you must [submit a Magento Support ticket] to update the New Relic service. ## Connect to New Relic -To connect a Cloud environment to New Relic, you must add the New Relic license key to the environment. +To connect a Cloud environment to New Relic, add the New Relic license key to the environment. - For Pro accounts, Magento adds the license key to your Cloud environments during the provisioning process. You can log in to your New Relic account to verify connectivity between your Magento Commerce site and New Relic. @@ -107,19 +107,18 @@ To connect a Cloud environment to New Relic, you must add the New Relic license ### Configure New Relic for Starter environments -For Starter environments, you must add the New Relic license key to the environment configuration to enable the New Relic integration. We recommend adding the key to the Staging and Production (master) environments and one other environment of your choice. Only the New Relic license key is required for configuration. You can find information about additional configuration options in the [New Relic reporting] topic in the _Magento User Guide_. +For Starter environments, enable the New Relic integration by adding the New Relic license key to the environment configuration. We recommend adding the key to the Staging and Production (master) environments and one other environment of your choice. Only the New Relic license key is required for configuration. You can find information about additional configuration options in the [New Relic reporting] topic in the _Magento Commerce User Guide_. {:.bs-callout-warning} Updating the environment configuration triggers a redeployment, which takes your site offline until deployment completes. For Production environments, we recommend completing this work during off-peak hours to avoid service disruptions. See [Working with variables]. -{:.procedure} -Prerequisites +**Prerequisites:** - Log in credentials for the Magento account page, or for the New Relic account associated with your project - [Admin level access]({{site.baseurl}}/cloud/project/user-admin.html) to the Starter environments to configure, or credentials to access the [Magento Admin](https://docs.magento.com/m2/ce/user_guide/system/permissions.html) for the environment. {:.procedure} -To configure New Relic on a Starter environment: +To configure New Relic for Starter environments: 1. Find your New Relic license key from your Magento Cloud account page, or [from your New Relic account page]: @@ -133,7 +132,7 @@ To configure New Relic on a Starter environment: - Copy the license key. -1. Add the New Relic license key to an environment using the Magento Cloud CLI, or [add it from the Magento Admin]: +1. Add the New Relic license key to an environment using the Magento Cloud CLI, or [add it from the Magento Admin]. - Change to the environment that needs the license key. @@ -145,7 +144,7 @@ To configure New Relic on a Starter environment: 1. [Log in to New Relic][New Relic login] to verify that you can view data from the Magento Cloud environment. (See [Investigate performance](#investigate-performance).) -### Remove New Relic license key from a Starter environment +### Remove license key from a Starter environment If three active Starter environments already use the same New Relic license key, and you want to configure New Relic reporting on a different environment, you must remove the key from one of the configured environments before you can reuse it. @@ -250,29 +249,27 @@ For further information and examples, see [Introduction to New Relic Logs][New R ### Monitor performance with Managed Alerts -Adobe provides the Managed Alerts for {{ site.data.var.ee }} alert policy on Cloud Pro Production environments to track the following metrics: - -- [Apdex score] -- error rate -- disk space (available on Pro Production environments only) -- CPU usage -- memory usage +Adobe provides the Managed Alerts for {{ site.data.var.ee }} alert policy to track performance metrics. +Based on industry best practices, the policy includes a collection of alerts that set thresholds to trigger warning and critical notifications when site infrastructure or application issues affect performance. The Managed Alerts policy tracks the following metrics on Production environments only: -Based on industry best practices, this policy is a collection of alerts that set thresholds for warning and critical conditions that affect performance. +| Metric | Data collection | Availability +|:--------|:------------------------|:------------- +| [Apdex score] | APM | Pro and Starter +| error rate | APM | Pro and Starter +| disk space | NRI | Pro +| CPU usage | NRI | Pro +| memory usage | NRI | Pro -When your site experiences an infrastructure or application issue that triggers an alert threshold, New Relic sends alert notifications so that you can proactively address the issue. See [Managed Alerts for Magento Commerce][] in the _Magento Help Center_ for details about each alert type and troubleshooting steps to resolve the issues that triggered the alert. - -{:.bs-callout-warning} -To use this policy and get notified when an issue on your site triggers an alert condition, you must configure at least one notification channel to receive the alert notifications. +When site infrastructure or application conditions trigger an alert threshold, New Relic sends alert notifications so that you can proactively address the issue. See [Managed Alerts for Magento Commerce] in the _Magento Help Center_ for details about alert thresholds and troubleshooting steps to resolve the issues that triggered the alert. {:.bs-callout-info} For Pro Staging and Integration environments and Starter environments, use [Health notifications] to monitor disk space. -{:.procedure} -Prerequisites +**Prerequisites:** - Credentials to log in to the [New Relic account] for your Cloud project - Verify that your Cloud environment is [connected to New Relic](#connect-to-new-relic) +- Configure at least one [notification channel](#configure-notification-channels) to receive the alert notifications {:.procedure} To review the Managed Alerts for {{ site.data.var.ee }} policy: @@ -294,7 +291,7 @@ To review the Managed Alerts for {{ site.data.var.ee }} policy: ![Generated alert policies]({{ site.baseurl }}/common/images/cloud/cloud-newrelic-managed-alerts-for-magento.png){:width="650px"} {:.bs-callout-info} - If the policy is missing, submit a Magento support ticket. Include your project ID in the ticket. The policy is available on Pro and Starter Production environments only. + If the Managed Alerts for {{ site.data.var.ee }} alert policy is not available, see [Managed Alerts for Magento Commerce][] in the _Magento Help Center_. 1. Click **Managed Alerts for Magento Commerce** to review the alert conditions defined in the policy. @@ -302,7 +299,7 @@ To review the Managed Alerts for {{ site.data.var.ee }} policy: ### Configure notification channels -To use the Managed Alerts for Magento Commerce policy to monitor your Production sites, you must configure at least one notification channel and map it to the alert policy. +To use Managed Alerts for {{ site.data.var.ee }} to monitor your Production sites, you must configure at least one notification channel and map it to the alert policy. Notifications about performance issues go to all channels associated with an alert policy when conditions on the application or infrastructure trigger an alert. You also receive notifications when an issue is acknowledged and closed. @@ -350,7 +347,7 @@ See the following New Relic documentation topics for additional information: {:.bs-callout-warning} The alerts in the Managed Alerts for Magento Commerce policy have default notification channels configured to notify Magento teams that support {{ site.data.var.ece }} customers. Do not modify the configuration for these default channels, and do not remove any alert policies assigned to them. -### Create Alert Policies +### Create alert policies Do not modify any alerts included in the Managed Alerts for Magento Commerce policy. We update and improve the alert conditions in this policy over time, which overwrites any customizations you add to the policy. @@ -377,7 +374,7 @@ See [Alerts concepts and workflow] in the New Relic documentation for more detai [Magento Admin credentials]: https://docs.magento.com/m2/ce/user_guide/system/permissions.html [Magento Partnership Owner Account]: https://account.newrelic.com/accounts/1311131/users [Managed Alerts for Magento Commerce]: https://support.magento.com/hc/en-us/articles/360045806832 -[New Relic account]: #manage-your-new-relic-account +[New Relic account]: #manage-new-relic-account [New Relic APM]: https://docs.newrelic.com/docs/apm/new-relic-apm/getting-started/introduction-new-relic-apm [New Relic APM Overview]: https://docs.newrelic.com/docs/apm/applications-menu/monitoring/apm-overview-page-view-transaction-apdex-usage-data [New Relic ONE UI]: https://docs.newrelic.com/docs/new-relic-one/use-new-relic-one/get-started/new-relic-one-core-ui-components @@ -390,8 +387,9 @@ See [Alerts concepts and workflow] in the New Relic documentation for more detai [New Relic query syntax for logs]: https://docs.newrelic.com/docs/logs/new-relic-logs/ui-data/query-syntax-logs [New Relic reporting]: https://docs.magento.com/m2/ce/user_guide/configuration/general/new-relic-reporting.html [prerequisite steps]: https://docs.newrelic.com/docs/alerts/new-relic-alerts/managing-notification-channels/notification-channels-control-where-send-alerts#channel-types -[Troubleshoot performance using New Relic]: https://support.magento.com/hc/en-us/articles/360042149832#low_user_satisfaction [reset the New Relic password]: https://rpm.newrelic.com/forgot_password +[submit a Magento Support ticket]: {{ site.baseurl }}/cloud/trouble/trouble.html +[Troubleshoot performance using New Relic]: https://support.magento.com/hc/en-us/articles/360042149832#low_user_satisfaction [Update the account owner]: https://docs.newrelic.com/docs/accounts/accounts/roles-permissions/change-account-owner [Update policies or conditions]: https://docs.newrelic.com/docs/alerts/new-relic-alerts/configuring-alert-policies/update-or-disable-policies-conditions [View your license key]: https://docs.newrelic.com/docs/accounts/install-new-relic/account-setup/license-key#finding From 78e9d7534e89fd235ffd39339a31884ae7787c75 Mon Sep 17 00:00:00 2001 From: Erik Marr Date: Mon, 26 Oct 2020 10:02:45 -0500 Subject: [PATCH 073/143] Adding content on catalog sync CLI --- src/_data/toc/configuration-guide.yml | 3 +++ .../config-cli-subcommands-catalog-sync.md | 26 +++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 src/guides/v2.4/config-guide/cli/config-cli-subcommands-catalog-sync.md diff --git a/src/_data/toc/configuration-guide.yml b/src/_data/toc/configuration-guide.yml index 62e45e5f5c7..d4ad204b8f1 100644 --- a/src/_data/toc/configuration-guide.yml +++ b/src/_data/toc/configuration-guide.yml @@ -115,6 +115,9 @@ pages: - label: Dependency reports url: /config-guide/cli/config-cli-subcommands-depen.html + - label: Catalog sync + url: /config-guide/cli/config-cli-subcommands-catalog-sync.html + - label: Configuration management children: diff --git a/src/guides/v2.4/config-guide/cli/config-cli-subcommands-catalog-sync.md b/src/guides/v2.4/config-guide/cli/config-cli-subcommands-catalog-sync.md new file mode 100644 index 00000000000..4a73cc1b67e --- /dev/null +++ b/src/guides/v2.4/config-guide/cli/config-cli-subcommands-catalog-sync.md @@ -0,0 +1,26 @@ +--- +group: configuration-guide +title: Catalog Sync +--- + +Magento compiles catalog data into tables using indexers. This process is automatically [triggered by several events](https://docs.magento.com/user-guide/system/index-management-events.html), such as changes to a product's price or inventory levels. To allow some Magento services to use that catalog data, a catalog sync process runs hourly. The catalog sync process exports product data from the Magento server to SaaS services on an ongoing basis. For example, the [Product Recommendations](https://docs.magento.com/user-guide/marketing/product-recommendations.html) feature needs up-to-date catalog information so that it can accurately return recommendations with correct names, pricing, and availability. In addition to providing a [catalog sync dashboard](https://docs.magento.com/user-guide/system/catalog-sync.html) in the Admin UI to observe and manage the Magento to SaaS syncing process, you also can use the command-line interface to trigger the catalog sync and reindex the products in the SaaS service. This is especially useful if you notice your catalog data is not syncing correctly using the Catalog Sync dashboard. + +{:.bs-callout-info} +When you initiate a catalog sync in the Admin UI, Magento resyncs your catalog on the hour. By running the CLI commands, the catalog sync executes immediately. + +The following command resyncs your entire Magento catalog to Magento SaaS services and reindexes the products in the SaaS service: + +```bash +saascatalog:resync --feed products +``` + +If you do not want to run a full reindex of the products in the SaaS service, run: + +```bash +saascatalog:resync --feed products --no-reindex +``` + +|Parameter|Description| +|---|---| +|`feed`|(Required) Specifies which entity to resync, such as `products`| +|`no-reindex`|(Optional) Resubmits the catalog feed data to the SaaS service only. If you do not specify `no-reindex`, the command runs a full reindex.| From 6f9e5a9c2c22db0a0550268aff8ddfa8b365e42c Mon Sep 17 00:00:00 2001 From: Misha Date: Mon, 26 Oct 2020 11:14:51 -0500 Subject: [PATCH 074/143] small updates I know you mention accepting cookies in a banner, but I think we should repeat in the instruction steps too --- src/recommendations/verify.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/recommendations/verify.md b/src/recommendations/verify.md index c5c660eb4ff..190f81d034b 100644 --- a/src/recommendations/verify.md +++ b/src/recommendations/verify.md @@ -9,7 +9,7 @@ After you [install]({{ page.baseurl }}/recommendations/product-recs.html) and [c ## Verify using developer tools in Chrome {:.procedure} -To ensure that the `DataServices.js` file is loading on all site pages: +To ensure that the event collector JS file is loading on all site pages: 1. In Chrome, choose **Customize and control Google Chrome** then select **More Tools** > **Developer Tools**. 1. Choose the **Network** tab then select the **JS** type. @@ -22,6 +22,7 @@ To ensure that the `DataServices.js` file is loading on all site pages: {:.procedure} To ensure events are firing on pages across your site (home, product, checkout, and so on): +1. Make sure you disable any ad blockers on your browser and accept cookies on the site. 1. In Chrome, choose **Customize and control Google Chrome** (the three vertical dots in the upper right corner of the browser) then select **More Tools** > **Developer Tools**. 1. Choose the **Network** tab then select the **XHR** type. 1. Filter for `tp2`. @@ -34,7 +35,7 @@ To ensure events are firing on pages across your site (home, product, checkout, Install the [Snowplow Analytics Debugger extension for Chrome](https://chrome.google.com/webstore/detail/snowplow-analytics-debugg/jbnlcgeengmijcghameodeaenefieedm). This extension displays the events being collected and sent to Magento. -1. Make sure you disable any ad blockers on your browser. +1. Make sure you disable any ad blockers on your browser and accept cookies on the site. 1. In Chrome, choose **Customize and control Google Chrome** (the three vertical dots in the upper right corner of the browser) then select **More Tools** > **Developer Tools**. From efea8c4b161a10a5e261b7e2711e992e2b34a06f Mon Sep 17 00:00:00 2001 From: Misha Date: Mon, 26 Oct 2020 11:35:01 -0500 Subject: [PATCH 075/143] Update src/recommendations/verify.md Co-authored-by: Barny Shergold --- src/recommendations/verify.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/recommendations/verify.md b/src/recommendations/verify.md index 190f81d034b..ba59de60f4b 100644 --- a/src/recommendations/verify.md +++ b/src/recommendations/verify.md @@ -22,7 +22,7 @@ To ensure that the event collector JS file is loading on all site pages: {:.procedure} To ensure events are firing on pages across your site (home, product, checkout, and so on): -1. Make sure you disable any ad blockers on your browser and accept cookies on the site. +1. Make sure you disable any ad blockers on your browser and accept cookies on the site. 1. In Chrome, choose **Customize and control Google Chrome** (the three vertical dots in the upper right corner of the browser) then select **More Tools** > **Developer Tools**. 1. Choose the **Network** tab then select the **XHR** type. 1. Filter for `tp2`. From ef5e428d61bceb5b729841baf1689001240807d1 Mon Sep 17 00:00:00 2001 From: Misha Date: Mon, 26 Oct 2020 11:35:11 -0500 Subject: [PATCH 076/143] Update src/recommendations/verify.md Co-authored-by: Barny Shergold --- src/recommendations/verify.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/recommendations/verify.md b/src/recommendations/verify.md index ba59de60f4b..5ef7b287381 100644 --- a/src/recommendations/verify.md +++ b/src/recommendations/verify.md @@ -35,7 +35,7 @@ To ensure events are firing on pages across your site (home, product, checkout, Install the [Snowplow Analytics Debugger extension for Chrome](https://chrome.google.com/webstore/detail/snowplow-analytics-debugg/jbnlcgeengmijcghameodeaenefieedm). This extension displays the events being collected and sent to Magento. -1. Make sure you disable any ad blockers on your browser and accept cookies on the site. +1. Make sure you disable any ad blockers on your browser and accept cookies on the site. 1. In Chrome, choose **Customize and control Google Chrome** (the three vertical dots in the upper right corner of the browser) then select **More Tools** > **Developer Tools**. From 1f3a491796637ac0820e3bdad00c58d29ab91f06 Mon Sep 17 00:00:00 2001 From: Shrie Spangler Date: Mon, 26 Oct 2020 13:13:31 -0500 Subject: [PATCH 077/143] Update MAINTAINER_GUIDELINES.md Add information about requiring `whatsnew` and leaving alone `Internal Dev` PRs. --- .github/MAINTAINER_GUIDELINES.md | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/.github/MAINTAINER_GUIDELINES.md b/.github/MAINTAINER_GUIDELINES.md index ab4319e21ed..f97cf425292 100644 --- a/.github/MAINTAINER_GUIDELINES.md +++ b/.github/MAINTAINER_GUIDELINES.md @@ -4,12 +4,13 @@ In general, the same [guidelines](https://devdocs.magento.com/contributor-guide/ ## General expectations -- Self assign issues/pull requests (mostly pull requests) - - Review and approve or request changes - - Enforce the use of the issue/pull requests template - - Ask contributors to link to the code base to validate documentation updates when applicable - - Ask contributors not to contribute to unsupported versions of documentation when applicable -- If a DevDocs maintainer creates a pull request, it must be reviewed by another maintainer or DevDocs admin +- Self assign issues/pull requests (mostly pull requests). See the [Pull Request Process wiki topic](https://github.com/magento/devdocs/wiki/Pull-Request-Process) to learn more. + - Review and approve, or request changes. + - Enforce the use of the issue/pull request template. + - Ask contributors to link to the code base to validate documentation updates when applicable. + - Ask contributors not to contribute to unsupported versions of documentation when applicable. + - Ask contributors to add a [`whatsnew`](https://github.com/magento/devdocs/wiki/Pull-Request-Process) to their `New Topic`, `Major Update`, or `Technical` labeled PRs. +- If a DevDocs maintainer creates a pull request, it must be reviewed by another maintainer or DevDocs admin. ## Labels @@ -23,12 +24,21 @@ Here is a brief summary of the most important labels: - `Editorial`: Typos, grammatical inconsistencies, or minor rewrites - `small changes`: See [Small changes workflow](#small-changes-workflow) +PRs with the `Internal Dev` label were created by Magento/Adobe employees and will be handled by the Documentation team only. + We also use version labels when appropriate (for example, 2.3.x). As a maintainer, we expect you to add or remove labels according to these guidelines. See https://github.com/magento/devdocs/labels for all labels and their descriptions. +## Communicating internally and externally + +There may be instances in which a maintainer has questions about a specific PR or issue. There are proper channels for communicating internally (Magento) and externally (contributors): + +- Externally: Questions, revisions, or other conversation with the contributor must happen within the applicable PR or issue. Tag the contributor, if needed, to get their attention. +- Internally: Questions for the Magento Documentation team about a PR or issue can happen as a comment in the applicable PR or issue or within the #devdocs_maintainers channel in Magento Community Engineering Slack. If your question pertains to a specific team member, you can tag their name to initiate the conversation. + ## Testing We use a private CI/CD stack and do not provide access to it. From c1178405b39a05e67e4b734bc0fd992c1be24e6b Mon Sep 17 00:00:00 2001 From: Erik Marr <45772211+erikmarr@users.noreply.github.com> Date: Mon, 26 Oct 2020 14:03:12 -0500 Subject: [PATCH 078/143] Update src/guides/v2.4/config-guide/cli/config-cli-subcommands-catalog-sync.md Co-authored-by: Misha --- .../config-guide/cli/config-cli-subcommands-catalog-sync.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guides/v2.4/config-guide/cli/config-cli-subcommands-catalog-sync.md b/src/guides/v2.4/config-guide/cli/config-cli-subcommands-catalog-sync.md index 4a73cc1b67e..4f9cd456fb1 100644 --- a/src/guides/v2.4/config-guide/cli/config-cli-subcommands-catalog-sync.md +++ b/src/guides/v2.4/config-guide/cli/config-cli-subcommands-catalog-sync.md @@ -3,7 +3,7 @@ group: configuration-guide title: Catalog Sync --- -Magento compiles catalog data into tables using indexers. This process is automatically [triggered by several events](https://docs.magento.com/user-guide/system/index-management-events.html), such as changes to a product's price or inventory levels. To allow some Magento services to use that catalog data, a catalog sync process runs hourly. The catalog sync process exports product data from the Magento server to SaaS services on an ongoing basis. For example, the [Product Recommendations](https://docs.magento.com/user-guide/marketing/product-recommendations.html) feature needs up-to-date catalog information so that it can accurately return recommendations with correct names, pricing, and availability. In addition to providing a [catalog sync dashboard](https://docs.magento.com/user-guide/system/catalog-sync.html) in the Admin UI to observe and manage the Magento to SaaS syncing process, you also can use the command-line interface to trigger the catalog sync and reindex the products in the SaaS service. This is especially useful if you notice your catalog data is not syncing correctly using the Catalog Sync dashboard. +Magento compiles catalog data into tables using indexers. This process is automatically [triggered by several events](https://docs.magento.com/user-guide/system/index-management-events.html), such as changes to a product's price or inventory levels. To allow some Magento services to use that catalog data, a catalog sync process runs hourly. The catalog sync process exports product data from the Magento server to SaaS services on an ongoing basis. For example, the [Product Recommendations](https://docs.magento.com/user-guide/marketing/product-recommendations.html) feature needs up-to-date catalog information so that it can accurately return recommendations with correct names, pricing, and availability. In addition to providing a [catalog sync dashboard](https://docs.magento.com/user-guide/system/catalog-sync.html) in the Admin UI to observe and manage the Magento to SaaS syncing process, you also can use the command-line interface to trigger the catalog sync and reindex product data for consumption by SaaS services. This is especially useful if you notice your catalog data is not syncing correctly using the Catalog Sync dashboard. {:.bs-callout-info} When you initiate a catalog sync in the Admin UI, Magento resyncs your catalog on the hour. By running the CLI commands, the catalog sync executes immediately. From b3809aedd42423b55b3615fc178a2b9ea72b03e1 Mon Sep 17 00:00:00 2001 From: Erik Marr <45772211+erikmarr@users.noreply.github.com> Date: Mon, 26 Oct 2020 14:05:33 -0500 Subject: [PATCH 079/143] Apply suggestions from code review Co-authored-by: Misha --- .../cli/config-cli-subcommands-catalog-sync.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/guides/v2.4/config-guide/cli/config-cli-subcommands-catalog-sync.md b/src/guides/v2.4/config-guide/cli/config-cli-subcommands-catalog-sync.md index 4f9cd456fb1..d4555fce4fb 100644 --- a/src/guides/v2.4/config-guide/cli/config-cli-subcommands-catalog-sync.md +++ b/src/guides/v2.4/config-guide/cli/config-cli-subcommands-catalog-sync.md @@ -6,15 +6,15 @@ title: Catalog Sync Magento compiles catalog data into tables using indexers. This process is automatically [triggered by several events](https://docs.magento.com/user-guide/system/index-management-events.html), such as changes to a product's price or inventory levels. To allow some Magento services to use that catalog data, a catalog sync process runs hourly. The catalog sync process exports product data from the Magento server to SaaS services on an ongoing basis. For example, the [Product Recommendations](https://docs.magento.com/user-guide/marketing/product-recommendations.html) feature needs up-to-date catalog information so that it can accurately return recommendations with correct names, pricing, and availability. In addition to providing a [catalog sync dashboard](https://docs.magento.com/user-guide/system/catalog-sync.html) in the Admin UI to observe and manage the Magento to SaaS syncing process, you also can use the command-line interface to trigger the catalog sync and reindex product data for consumption by SaaS services. This is especially useful if you notice your catalog data is not syncing correctly using the Catalog Sync dashboard. {:.bs-callout-info} -When you initiate a catalog sync in the Admin UI, Magento resyncs your catalog on the hour. By running the CLI commands, the catalog sync executes immediately. +When you trigger a data resync from the Admin UI or the command line, it can take up to an hour for the data to update. -The following command resyncs your entire Magento catalog to Magento SaaS services and reindexes the products in the SaaS service: +The following command reindexes the product data from the Magento catalog and resyncs it to Magento SaaS services: ```bash saascatalog:resync --feed products ``` -If you do not want to run a full reindex of the products in the SaaS service, run: +If you do not want to run a full reindex of the products, you can instead sync the product data that has already been generated: ```bash saascatalog:resync --feed products --no-reindex @@ -23,4 +23,4 @@ saascatalog:resync --feed products --no-reindex |Parameter|Description| |---|---| |`feed`|(Required) Specifies which entity to resync, such as `products`| -|`no-reindex`|(Optional) Resubmits the catalog feed data to the SaaS service only. If you do not specify `no-reindex`, the command runs a full reindex.| +|`no-reindex`|(Optional) Resubmits the existing catalog data to the SaaS service without reindexing. When this parameter is not specified, the command runs a full reindex before syncing data.| From ae195b058282fb90f7361d7c2e93e0b771083ecb Mon Sep 17 00:00:00 2001 From: Navarr Barnier Date: Mon, 26 Oct 2020 15:46:09 -0400 Subject: [PATCH 080/143] Correct commands for splitting databases (#8109) * Correct commands for splitting databases Co-authored-by: Margaret Eker --- src/guides/v2.3/performance-best-practices/advanced-setup.md | 4 ++-- src/guides/v2.4/performance-best-practices/advanced-setup.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/guides/v2.3/performance-best-practices/advanced-setup.md b/src/guides/v2.3/performance-best-practices/advanced-setup.md index df1a607a3c4..45d9b6fe4ba 100644 --- a/src/guides/v2.3/performance-best-practices/advanced-setup.md +++ b/src/guides/v2.3/performance-best-practices/advanced-setup.md @@ -60,13 +60,13 @@ To configure additional databases, you must create an empty database and run one For Checkout Master DB ```bash -bin/magento setup:db-schema:add-slave +bin/magento setup:db-schema:split-quote ``` For OMS Master DB ```bash -bin/magento setup:db-schema:add-slave +bin/magento setup:db-schema:split-sales ``` These commands migrate specific domain tables from the main database to a domain database. They also change the Magento configuration to allow corresponding connectivity and constraints processing. diff --git a/src/guides/v2.4/performance-best-practices/advanced-setup.md b/src/guides/v2.4/performance-best-practices/advanced-setup.md index b7d8eb512ad..dd711f662cb 100644 --- a/src/guides/v2.4/performance-best-practices/advanced-setup.md +++ b/src/guides/v2.4/performance-best-practices/advanced-setup.md @@ -54,13 +54,13 @@ To configure additional databases, you must create an empty database and run one For Checkout Master DB ```bash -bin/magento setup:db-schema:add-slave +bin/magento setup:db-schema:split-quote ``` For OMS Master DB ```bash -bin/magento setup:db-schema:add-slave +bin/magento setup:db-schema:split-sales ``` These commands migrate specific domain tables from the main database to a domain database. They also change the Magento configuration to allow corresponding connectivity and constraints processing. From dcf970f0ea37514819c5308db2d112ff6625ea00 Mon Sep 17 00:00:00 2001 From: Olena Orobei Date: Mon, 26 Oct 2020 17:44:16 -0500 Subject: [PATCH 081/143] Update contributing.md (#8095) * Update contributing.md Co-authored-by: Barny Shergold Co-authored-by: Margaret Eker --- src/contributor-guide/contributing.md | 29 +-------------------------- 1 file changed, 1 insertion(+), 28 deletions(-) diff --git a/src/contributor-guide/contributing.md b/src/contributor-guide/contributing.md index ff438f19171..9b3548fd3e7 100644 --- a/src/contributor-guide/contributing.md +++ b/src/contributor-guide/contributing.md @@ -206,7 +206,7 @@ When you want to verify an issue or pull request, use the `instance` command to @magento give me {$version} instance ``` -Replace `{$version}` with the version tag for the version required. The currently supported values are the latest [version tags](https://github.com/magento/magento2/tags) and the 2.4-develop branch. For example: +Replace `{$version}` with the version tag or branch. The following values are supported: the version tag for the latest release and `2.4-develop` for the development branch. ```text @magento give me 2.4.0 instance @@ -275,33 +275,6 @@ For example, append the following text to the PR comment to deploy a {{site.data with edition b2b ``` -#### Environment - -Append the following text to your PR comment to specify the version for applications and services to use when you [Deploy a vanilla Magento instance](#vanilla-pr) or [Deploy an instance based on PR changes](#deploy-pr). - -```text -with env PHP {$phpVersion}, search-engine ElasticSearch {$searchEngineVersion}, database {$dbEngine} {$dbEngineVersion} -``` - -Replace variables in the command with the following values as needed for your environment: - -- `{$phpVersion}`–Specify the PHP version for the instance. - -- `{$searchEngineVersion}`–Specify the Elasticsearch version for the instance. - -- `{$dbEngine}`–Specify the database type, either `MariaDB` or `MySQL`. - -- `{$dbEngineVersion}`–Specify the version of the database engine for the instance. - -For example, append the following text to the PR comment to deploy an instance with PHP 7.4, Elasticsearch version 7, and MariaDB version 10.4. - -```text -with env PHP 7.4, search-engine Elasticsearch 7, database MariaDB 10.4 -``` - -{:.bs-callout-info} -We generally recommend that you deploy the default environment. Use the custom configuration options only when you require a special configuration to test specfic use cases. - #### Add extensions Append the following text to your PR comment to specify extensions to add to an instance when you [Deploy a vanilla Magento instance](#vanilla-pr) or [Deploy an instance based on PR changes](#deploy-pr). From 7cf4a0677bc4af84547a9b8aed29a1f65b5b22f4 Mon Sep 17 00:00:00 2001 From: Sathish Date: Tue, 27 Oct 2020 09:23:31 +0530 Subject: [PATCH 082/143] Updated the broken template --- src/cloud/trouble/trouble-error-html-minification.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cloud/trouble/trouble-error-html-minification.md b/src/cloud/trouble/trouble-error-html-minification.md index 4d54654b43e..6c0fbdfcaa6 100644 --- a/src/cloud/trouble/trouble-error-html-minification.md +++ b/src/cloud/trouble/trouble-error-html-minification.md @@ -34,6 +34,7 @@ As a work-around, complete the following: ```shell update core_config_data set value=0 where path ='dev/template/minify_html' + ``` 1. Flush all caches. From 58c219c5e5b78bcb0e1bcb45bdc1824900da0f88 Mon Sep 17 00:00:00 2001 From: Margaret Eker Date: Tue, 27 Oct 2020 07:20:32 -0500 Subject: [PATCH 083/143] Magento EQP Documentation update. (#8112) (#8133) * Magento EQP Documentation update. (#8112) * Added Installation and Varnish Test description. * Technical review updates: Manual Review block updated Documentation Review block added Changed titles hierarchy * Added SCV and CPD descriptions for EQP. * Added SCV and CPD descriptions for EQP. * Technical review updates: Removed "M2 Only" notes Fixed guides links with correct Magento version "2.4" instead of old ones with "2.3" * Update SVC * Added Malware Scanner description to EQP docs. * Updated docs, added php-code-sniffer-test.md * EQP Documentation update. * Fixed syntax typo. * Fixed formatting issues. * Fixed broken link. * Update src/marketplace/sellers/code-sniffer.md Co-authored-by: Barny Shergold * Apply suggestions from code review Co-authored-by: Barny Shergold * Fix issues detected by code review. * Apply suggestions from code review Co-authored-by: Margaret Eker * Apply suggestions from code review Co-authored-by: Margaret Eker * Apply suggestions from code review Co-authored-by: Margaret Eker * Fix CS tool name to highlight implementation specific for EQP * Apply suggestions from code review Co-authored-by: Margaret Eker * Apply suggestions from code review Co-authored-by: Margaret Eker * Apply suggestions from code review * Apply suggestions from code review Co-authored-by: Margaret Eker * Apply suggestions from code review Co-authored-by: Margaret Eker * Apply suggestions from code review * Apply suggestions from code review Co-authored-by: Margaret Eker * Consistent naming * Fixed formatting. * Apply suggestions from code review Co-authored-by: Margaret Eker Co-authored-by: Barny Shergold Co-authored-by: miakobchuk Co-authored-by: Ronald E. Oribio <1751465+roribio@users.noreply.github.com> Co-authored-by: Serhii Litviachenko Co-authored-by: Barny Shergold Co-authored-by: Margaret Eker * Update src/marketplace/sellers/technical-review-guidelines.md * Update installation-and-varnish-tests.md Fix broken link Co-authored-by: Volodymyr Kublytskyi Co-authored-by: Ronald E. Oribio <1751465+roribio@users.noreply.github.com> Co-authored-by: Serhii Litviachenko Co-authored-by: Barny Shergold --- src/_data/toc/marketplace-sellers.yml | 29 ++- src/marketplace/sellers/code-sniffer.md | 63 ++++++ src/marketplace/sellers/code-validation.md | 138 ------------ .../sellers/copy-paste-detector.md | 42 ++++ src/marketplace/sellers/extension-create.md | 1 - .../sellers/installation-and-varnish-tests.md | 134 +++++++++++ src/marketplace/sellers/malware-scan.md | 46 ++++ .../sellers/packaging-v1x-extensions.md | 210 ------------------ .../sellers/semantic-version-check.md | 62 ++++++ .../sellers/submit-for-technical-review.md | 2 +- .../sellers/technical-review-guidelines.md | 159 ++++++++----- 11 files changed, 467 insertions(+), 419 deletions(-) create mode 100644 src/marketplace/sellers/code-sniffer.md delete mode 100644 src/marketplace/sellers/code-validation.md create mode 100644 src/marketplace/sellers/copy-paste-detector.md create mode 100644 src/marketplace/sellers/installation-and-varnish-tests.md create mode 100644 src/marketplace/sellers/malware-scan.md delete mode 100644 src/marketplace/sellers/packaging-v1x-extensions.md create mode 100644 src/marketplace/sellers/semantic-version-check.md diff --git a/src/_data/toc/marketplace-sellers.yml b/src/_data/toc/marketplace-sellers.yml index a3c9b13553d..d0d30361686 100644 --- a/src/_data/toc/marketplace-sellers.yml +++ b/src/_data/toc/marketplace-sellers.yml @@ -103,8 +103,24 @@ pages: url: /marketplace/sellers/technical-review-guidelines.html versionless: true - - label: Code Validation - url: /marketplace/sellers/code-validation.html + - label: Malware Scan + url: /marketplace/sellers/malware-scan.html + versionless: true + + - label: Code Sniffer + url: /marketplace/sellers/code-sniffer.html + versionless: true + + - label: Installation and Varnish Tests + url: /marketplace/sellers/installation-and-varnish-tests.html + versionless: true + + - label: Copy Paste Detector + url: /marketplace/sellers/copy-paste-detector.html + versionless: true + + - label: Semantic Version Check + url: /marketplace/sellers/semantic-version-check.html versionless: true - label: Submit for Marketing Review @@ -153,12 +169,3 @@ pages: - label: Analytics url: /marketplace/sellers/analytics.html versionless: true - -- label: Technical Reference - url: /marketplace/sellers/technical-reference.html - versionless: true - children: - - - label: Packaging v1.x Extensions - url: /marketplace/sellers/packaging-v1x-extensions.html - versionless: true diff --git a/src/marketplace/sellers/code-sniffer.md b/src/marketplace/sellers/code-sniffer.md new file mode 100644 index 00000000000..3b750045363 --- /dev/null +++ b/src/marketplace/sellers/code-sniffer.md @@ -0,0 +1,63 @@ +--- +group: marketplace-sellers +title: Code Sniffer +--- + +## Overview + +Code Sniffer is a static test that uses static code analysis to detect violations of the [Magento Coding Standard](https://github.com/magento/magento-coding-standard/) to prevent common coding errors. + +## What testing is for + +Magento projects typically use source code from several vendors. By adopting the [Magento Coding Standard](https://github.com/magento/magento-coding-standard), we solve two problems: + +1. Identify common coding errors and pitfalls at an early stage before code execution. +1. Standardize and unify the way code is written, so that it can be read easily by developers from different organizations. + +## When testing is done + +Code Sniffer is mandatory for extensions of any type. When you submit an extension, Magento uses Code Sniffer to analyze the entire code base regardless of the scope of changes. Only extensions that have passed Code Sniffer testing can be listed in the [Magento Marketplace](https://marketplace.magento.com/). + +## What is being checked + +Code Sniffer validates that the implementation of the submitted extension adheres to the [Magento Coding Standard](https://github.com/magento/magento-coding-standard/). + +## Tools and environments used + +The Magento EQP Code Sniffer is based on the [PHP_CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer) and uses [Magento Coding Standard](https://github.com/magento/magento-coding-standard/) as a ruleset. + +You can complete Code Sniffer testing in a development environment by using Composer to install PHPCS and the Magento Coding Standard as a global dependency for a particular project. + +You can test an extension to detect violations of the [Magento Coding Standard](https://github.com/magento/magento-coding-standard/) using the following [PHPCS CLI command](https://github.com/squizlabs/PHP_CodeSniffer/blob/master/bin/phpcs): + +```bash +phpcs --standard=Magento2 --extensions=php,phtml --error-severity=10 --ignore-annotations --report=json --report-file=report.json +``` +If PHPCS finds any errors, the extension in `` is rejected. + +## Reading the error report + +All detected errors include a description of the problem with references to the locations in the code where the errors were detected. + +The Magento Coding Standard evolves continuously and the rules change. You can find the most current version with an up-to-date list of implemented rules in the [Magento Coding Standard GitHub repository](https://github.com/magento/magento-coding-standard/blob/develop/Magento2/ruleset.xml). + +According to the Magento Coding Standard, Code Sniffer classifies detected violations in the following type categories: + +| Type | Severity | Description | +|------|----------|-------------| +| Error | 10 | Critical code issues that indicate a bug or security vulnerability. | +| Warning | 9 | Possible security issues that can cause bugs. | +| Warning | 8 | Magento specific code issues and design violations. | +| Warning | 7 | General code issues. | +| Warning | 6 | Code style issues. | +| Warning | 5 | PHPDoc formatting and commenting issues. | + +Only violations of type "Error" (severity >= 10) prevent a submitted extension from being published on the Magento Marketplace. Although other reported issues do not block delivery of the extension, we encourage developers to review and fix them. + +## Troubleshooting + +As a best practice, we recommend that developers include [PHPCS](https://github.com/squizlabs/PHP_CodeSniffer) and the [Magento Coding Standard](https://github.com/magento/magento-coding-standard/) in their development workflow and CI/CD infrastructure to verify that code complies with the coding standards before submitting to the Magento Marketplace. + +The [Magento Coding Standard](https://github.com/magento/magento-coding-standard/) is an open source project. You can report issues or submit pull requests with enhancements directly on GitHub. + +We welcome feedback and discussion on the [Magento Community Engineering Slack](https://magentocommeng.slack.com/archives/C7SL5CGDN) #marketplace channel. diff --git a/src/marketplace/sellers/code-validation.md b/src/marketplace/sellers/code-validation.md deleted file mode 100644 index 41a0be867c1..00000000000 --- a/src/marketplace/sellers/code-validation.md +++ /dev/null @@ -1,138 +0,0 @@ ---- -group: marketplace-sellers -title: Code Validation ---- - -During technical review, all submissions are checked to ensure that the code meets Magento standards. - -| Type | Severity | Description | -|---------- -| Error | 10 | A critical error with severity level 10 prevents an extension from passing technical review. | -| Warning | 8 | A severity level 8 warning does not prevent an extension from passing technical review. Developers are encouraged to resolve any issues that trigger a level 8 warning. | -| Warning | 6 | A severity level 6 warning does not prevent an extension from passing technical review. Developers are encouraged to resolve any issues that trigger a level 6 warning. | - -## Magento 2.x rules - -### Critical errors - severity 10 - -`Generic.Functions.CallTimePassByReference.NotAllowed`|Call-time pass-by-reference calls are prohibited. -`Generic.PHP.CharacterBeforePHPOpeningTag.Found`|The opening PHP tag must be the first content in the file. -`Generic.PHP.DeprecatedFunctions.Deprecated`|Function has been deprecated. -`MEQP1.Exceptions.Namespace.NotFoundNamespace`|Namespace is not specified. -`MEQP1.PHP.Goto.FoundGoto`|Use of goto is discouraged. -`MEQP1.Security.LanguageConstruct.DirectOutput`|Use of echo and print language construct is discouraged. -`MEQP1.Security.LanguageConstruct.ExitUsage`|Use of exit language construct is discouraged. -`MEQP1.Security.LanguageConstruct.WrongBackQuotesUsage`|Incorrect usage of back quote string constant. Back quotes should be always inside strings. -`MEQP1.Strings.RegEx.PossibleExecutableRegEx`|Possible executable regular expression. Make sure that the pattern doesn’t contain “e” modifier. -`MEQP1.Strings.StringPosition.ImproperValueTesting`|Identical operator === is not used for testing the return value of %s function. -`MEQP2.PHP.Syntax.PHPSyntax`|PHP syntax error. -`MEQP2.Security.Superglobal.SuperglobalUsageError`|Direct use of Superglobal detected. -`PSR1.Classes.ClassDeclaration.MissingNamespace`|Each class must be in a namespace of at least one level (a top-level vendor name). -`PSR1.Classes.ClassDeclaration.MultipleClasses`|Each class must be in a file by itself. -`PSR2.Files.ClosingTag.NotAllowed`|A closing tag is not permitted at the end of a PHP file. -`Squiz.PHP.Eval.Discouraged`|Use of eval() is discouraged. - -### Warnings - severity 8 - -`Generic.Arrays.DisallowLongArraySyntax.Found`|Short array syntax must be used to define arrays. -`Generic.Classes.DuplicateClassName.Found`|Duplicate class name found. -`Generic.CodeAnalysis.JumbledIncrementer.Found`|Loop incrementor jumbling with inner loop. -`Generic.Files.LineEndings.InvalidEOLChar`|End of line character is invalid. -`Generic.Metrics.CyclomaticComplexity.MaxExceeded`|The cyclomatic complexity of the function exceeds allowed maximum of 20. -`Generic.Metrics.CyclomaticComplexity.TooHigh`|The cyclomatic complexity of the function exceeds 10; consider refactoring the function. -`Generic.Metrics.NestingLevel.MaxExceeded`|The nesting level of the function exceeds allowed maximum of 10. -`Generic.Metrics.NestingLevel.TooHigh`|The nesting level of the function exceeds 5; consider refactoring the function. -`Generic.PHP.NoSilencedErrors.Discouraged`|Silencing errors is discouraged. -`MEQP1.Performance.CollectionCount.FoundCollectionCount`|Unnecessary loading of a Magento data collection. Use the `getSize()` method instead. -`MEQP1.PHP.Var.FoundVar`|Use of `var` class variables is discouraged. -`MEQP1.Security.IncludeFile.FoundIncludeFile`|File manipulations are discouraged. -`MEQP1.SQL.RawQuery.FoundRawSql`|Possible raw SQL statement detected. -`MEQP1.Strings.StringConcat.ImproperStringConcatenation`|Use of `+` operator to concatenate two strings detected. -`MEQP2.Classes.ObjectInstantiation.FoundDirectInstantiation`|Direct object instantiation is discouraged in Magento 2. -`MEQP2.Classes.ResourceModel.OutsideOfResourceModel`|Data access method detected outside of Resource Model. -`MEQP2.Exceptions.DirectThrow.FoundDirectThrow`|Direct throw of exception is discouraged. -`MEQP2.SQL.MissedIndexes.MissedIndexes`|No index found in database schema file. -`MEQP2.Templates.RawJavaScript.FoundRawJS`|Missing JS component initialization. Use `x-magento-init` or `x-magento-template`. -`MEQP2.Templates.XssTemplate.FoundUnescaped`|Unescaped output detected. -`Squiz.Functions.GlobalFunction.Found`|Consider putting global function in a static class. -`Squiz.PHP.GlobalKeyword.NotAllowed`|Use of the `global` keyword is forbidden. - -## Magento 1.x rules - -### Critical errors - severity 10 - -`Generic.Arrays.DisallowShortArraySyntax.Found`|Short array syntax is not allowed. -`Generic.Functions.CallTimePassByReference.NotAllowed`|Call-time pass-by-reference calls are prohibited. -`Generic.PHP.CharacterBeforePHPOpeningTag.Found`|The opening PHP tag must be the first content in the file. -`Generic.PHP.DeprecatedFunctions.Deprecated`|Function has been deprecated. -`MEQP1.Exceptions.Namespace.NotFoundNamespace`|Namespace for `%s` class is not specified. -`MEQP1.PHP.Goto.FoundGoto`|Use of `goto` is discouraged. -`MEQP1.PHP.Syntax.PHPSyntax`|PHP syntax error. -`MEQP1.Security.Acl.MissingAclMethod`|Missing the `_isAllowed()` ACL method in the class. -`MEQP1.Security.LanguageConstruct.DirectOutput`|Use of `echo` and print language construct is discouraged. -`MEQP1.Security.LanguageConstruct.ExitUsage`|Use of `exit` language construct is discouraged. -`MEQP1.Security.LanguageConstruct.WrongBackQuotesUsage`|Incorrect usage of back quote string constant. Back quotes should be always inside strings. -`MEQP1.Security.Superglobal.SuperglobalUsageError`|Direct use of `Superglobal` detected. -`MEQP1.Strings.RegEx.PossibleExecutableRegEx`|Possible executable regular expression. Make sure that the pattern doesn’t contain “e” modifier. -`MEQP1.Strings.StringPosition.ImproperValueTesting`|Identical operator `===` is not used for testing the return value of `%s` function. -`PSR1.Classes.ClassDeclaration.MultipleClasses`|Each class must be in a file by itself. -`Squiz.PHP.Eval.Discouraged`|Use of `eval()` is discouraged. -`Zend.Files.ClosingTag.NotAllowed`|A closing tag is not permitted at the end of a PHP file. - -### Warnings - severity 8 - -`Generic.Classes.DuplicateClassName.Found`|Duplicate class name found. -`Generic.CodeAnalysis.JumbledIncrementer.Found`|Loop incrementor jumbling with inner loop. -`Generic.Metrics.CyclomaticComplexity.MaxExceeded`|The cyclomatic complexity of the function exceeds allowed maximum of 20. -`Generic.Metrics.CyclomaticComplexity.TooHigh`|The cyclomatic complexity of the function exceeds 10; consider refactoring the function. -`Generic.Metrics.NestingLevel.MaxExceeded`|The nesting level of the function exceeds allowed maximum of 10. -`Generic.Metrics.NestingLevel.TooHigh`|The nesting level of the function exceeds 5; consider refactoring the function. -`Generic.PHP.NoSilencedErrors.Discouraged`|Silencing errors is discouraged. -`MEQP1.Classes.ObjectInstantiation.FoundDirectInstantiation`|Direct object instantiation is discouraged in Magento. -`MEQP1.Classes.ResourceModel.OutsideOfResourceModel`|Data access method detected outside of Resource Model. -`MEQP1.Performance.CollectionCount.FoundCollectionCount`|Unnecessary loading of a Magento data collection. Use the `getSize()` method instead. -`MEQP1.Performance.FetchAll.FoundFetchAll`|`fetchAll()` can be memory inefficient for large data sets. -`MEQP1.Performance.GetFirstItem.FoundGetFirstItem`|`getFirstItem()` does not limit the result of collection load to one item. -`MEQP1.Performance.Loop.ArraySize`|Array size calculation function detected in loop. -`MEQP1.Performance.Loop.DataLoad`|Data load method detected in loop. -`MEQP1.Performance.Loop.ModelLSD`|Model LSD method detected in loop. -`MEQP1.PHP.Var.FoundVar`|Use of `var` class variables is discouraged. -`MEQP1.SQL.RawQuery.FoundRawSql`|Possible raw SQL statement detected. -`MEQP1.SQL.SlowQuery.FoundSlowSql`|Possible slow SQL method detected. -`MEQP1.SQL.SlowQuery.FoundSlowRawSql`|Possible slow SQL method detected. -`MEQP1.Strings.StringConcat.ImproperStringConcatenation`|Use of `+` operator to concatenate two strings detected. -`MEQP1.Security.IncludeFile.FoundIncludeFile`|File manipulations are discouraged. -`MEQP1.SQL.MissedIndexes.MissedIndexes`|There was not found any index in database schema file. -`Squiz.Functions.GlobalFunction.Found`|Consider putting global function in a static class. -`Squiz.PHP.GlobalKeyword.NotAllowed`|Use of the `global` keyword is forbidden. - -### Code quality issues and solutions - -#### Copy paste detector (CPD) - -Issue |The Copy Paste Detector indicates that the extension contains duplicate code from Magento native products or from other extensions. -Solution|The Marketplace team will provide a list of places in your extension code that were identified as duplicate. If the extension is found to duplicate Magento code, review the list, and remove each instance of duplicate code. Then, upload a new package and resubmit the extension.Any extension that is found to duplicate code from another extension will be rejected. To prove that you own the code in question, see [Magento Marketplace Support][1]. - -#### Sniffs - -Issue|The extension contains code elements that are not allowed to be used in Marketplace extensions. See the Technical Report for a list of elements in your code that are not allowed. -Solution|To duplicate the tests locally, use the MEQP [CodeSniffer][2] tool. Remove all disallowed code elements. Then, upload a new package and resubmit the extension. To learn more, see [Magento Extension Quality Program Coding Standard][3]. - -#### Inconsistency - -Issue|The extension conflicts with other extensions. -Solution|The Marketplace team will provide you with a list of the identified conflicts. Correct the code that is causing the conflict. Then, upload a new package and resubmit the extension. - -#### M1 Package missing - -Issue|The package file was not submitted, or is missing from the Magento repository. It's possible that the package file was not included correctly during the migration. -Solution|Upload a new package, and resubmit the extension. - -#### Hidden files in archive - -Issue|Hidden files were detected in the archive. It is possible that configuration files from the development environment were included in the distribution package. Such hidden files can cause configuration problems for the end user. -Solution|Remove the hidden files. Then, upload a new package, and resubmit the extension. - -[1]: https://marketplacesupport.magento.com/ -[2]: https://github.com/squizlabs/PHP_CodeSniffer -[3]: https://github.com/magento/marketplace-eqp diff --git a/src/marketplace/sellers/copy-paste-detector.md b/src/marketplace/sellers/copy-paste-detector.md new file mode 100644 index 00000000000..52beeced4a9 --- /dev/null +++ b/src/marketplace/sellers/copy-paste-detector.md @@ -0,0 +1,42 @@ +--- +group: marketplace-sellers +title: Copy Paste Detector +--- + +## Overview + +The Copy Paste Detector check validates that implementation of the submitted extension is unique and not duplicated code from an already known extension. + +## What testing is for + +Only original extensions can be listed in the [Magento Marketplace](https://marketplace.magento.com/). We test submitted extensions to detect duplication of code from Magento or from another extension available in the Magento Marketplace. If duplication is extensive, the extension submission is rejected on the grounds that the content is plagiarized. + +## When testing is done + +All submissions are subject to the Copy Past Detector check regardless of extension type and scope of changes. + +## What is being checked + +Copy Paste Detector performs a static analysis of the source code and tries to detect similar code snippets. + +If the Detector identifies many similarities between the submitted extension and a previously known extension, we may mark the check as failed if there is strong evidence of plagiarism. We can also schedule problematic submissions for human code review if there are concerns regarding code fragments. Expert judgement is required to make final decisions about plagiarism. + +## Tools and environments used + +Copy Paste Detector includes, but is not limited to, [PHPCPD](https://github.com/sebastianbergmann/phpcpd). We also use a proprietary solution to search for duplicates across multiple extensions and their versions. This solution ignores irrelevant implementation details such as variables, classes and method names, and so on. + +## Reading an error report + +Copy Paste Detector provides a list of places in your extension code that were identified as duplicates. If the extension is found to duplicate Magento code, review the list and remove each instance of duplicated code. Then, upload a new package and resubmit the extension. We reject any extension submission that has duplicate code from another extension. + +## Troubleshooting + +Implementing a solution for detecting plagiarism in source code is not a trivial task. As a result, we expect that the test results will sometimes be inaccurate, for example: + +- We may not detect 'copy paste' if the code was changed significantly, or if only the concept of the extension was copied. We still consider such use-cases as plagiarism and hope that the original extension authors and the Magento community will report such behavior. + +- We might incorrectly identify code fragments that follow a common pattern as duplicates. To prevent an extension submission from being rejected due to incorrect results, we also perform manual code review. Even with manual reviews, we can still make mistakes. + +If you notice an extension submission that is rejected or approved based on inaccurate information from the Copy Paste Detector, [create a Marketplace Support ticket](https://marketplacesupport.magento.com/hc/en-us) so that we can resolve your case and keep our community healthy. Please specify your Submission ID in a ticket. + +We always welcome feedback and discussion on the [Magento Community Engineering Slack](https://magentocommeng.slack.com/archives/C7SL5CGDN) #marketplace channel. diff --git a/src/marketplace/sellers/extension-create.md b/src/marketplace/sellers/extension-create.md index 7f09cb6eb2d..2bb6ce5426e 100644 --- a/src/marketplace/sellers/extension-create.md +++ b/src/marketplace/sellers/extension-create.md @@ -26,7 +26,6 @@ Magento Marketplace does not support encrypted extensions at this time. Testing your extension in advance reduces the time it takes to pass Technical Review. For a list of code sniffer rules, see [Magento Extension Quality Program Coding Standard][2]. 1. Prepare, validate, and zip your extension as described in [Packaging a Component]({{site.baseurl}}/guides/v2.4/extension-dev-guide/package/package_module.html). - 1. Prepare the following preliminary documentation: - Release notes in text format diff --git a/src/marketplace/sellers/installation-and-varnish-tests.md b/src/marketplace/sellers/installation-and-varnish-tests.md new file mode 100644 index 00000000000..99c6aefb780 --- /dev/null +++ b/src/marketplace/sellers/installation-and-varnish-tests.md @@ -0,0 +1,134 @@ +--- +group: marketplace-sellers +title: Installation & Varnish Tests +--- + +## Overview + +The Installation and Varnish tests are automated EQP checks to ensure that the submitted extension version is compatible with the Magento versions and the editions that it claims to support. + +## What testing is for + +Magento is a complex, highly extensible platform. To ensure that third-party extensions are production-ready, the Installation and Varnish tests verify successful installation with the extension included, ability to switch to Magento [production mode](https://devdocs.magento.com/guides/v2.4/config-guide/bootstrap/magento-modes.html), and that the extension does not affect the caching mechanism for the most critical scenarios. The caching check ensures that the Magento storefront provides a high performance customer experience. + +## When testing is done + +All extension submissions must pass the mandatory Installation and Varnish tests, regardless of extension type and scope of changes. Only extensions that have passed these tests can be listed in the [Magento Marketplace](https://marketplace.magento.com/). + +## What is being checked + +The Installation and Varnish tests complete the following checks: + +1. Successful installation of Magento with the submitted extension and ability to switch to production mode–This check includes the following steps: + + - Verify ability to add the extension to the [Magento project](https://devdocs.magento.com/guides/v2.4/install-gde/install-quick-ref.html#get-the-magento-software) with [Composer](https://getcomposer.org/). + - After adding and enabling the extension, verify successful Magento installation. + - Verify that you can [compile Magento code](https://devdocs.magento.com/guides/v2.4/config-guide/cli/config-cli-subcommands-compiler.html). + - Verify that you can [deploy static content](https://devdocs.magento.com/guides/v2.4/config-guide/cli/config-cli-subcommands-static-view.html). + - Verify that you can [enable Magento Production mode](https://devdocs.magento.com/guides/v2.4/config-guide/cli/config-cli-subcommands-mode.html). + - Check that you can [reindex all data](https://devdocs.magento.com/guides/v2.4/config-guide/cli/config-cli-subcommands-index.html) with the installed extension. + +1. Check availability of critical pages and correct cache processing–This check includes the following steps: + + - Complete acceptance testing to validate that product and category pages are properly cached. + - Complete acceptance testing to validate that the product and category page cache is reset when a product is edited. + - Verify that different product types are validated. + +## Tools and environments used + +The Magento test infrastructure follows the [recommended setup](https://devdocs.magento.com/guides/v2.4/install-gde/install-quick-ref.html) for the Magento installation. The Installation and Varnish tests always runs on the most up-to-date version of software compatible with the Magento release. You can use [Magento Cloud Docker](https://devdocs.magento.com/cloud/docker/docker-development.html) to create a similar environment. + +The Installation and Varnish tests always use the latest patch version for the Magento release line that the submitted extension claims to support. For each supported release line, the entire test suite is performed on all compatible PHP versions. + +### Additional Magento Configuration + +The Varnish test requires [Varnish as a caching application](https://devdocs.magento.com/guides/v2.4/config-guide/varnish/config-varnish-magento.html). The test checks for the presence of the **X-EQP-Cache** HTTP header set by Varnish and analyzes its value on page loads. To complete this check, the following additional instruction must be added to the **vcl_deliver** function: + +```vcl +sub vcl_deliver { + if (resp.http.x-varnish ~ " ") { + set resp.http.X-EQP-Cache = "HIT"; + } else { + set resp.http.X-EQP-Cache = "MISS"; + } + ... +} +``` + +The Varnish test also uses the [setup:performance:generate-fixtures command](https://devdocs.magento.com/guides/v2.4/config-guide/cli/config-cli-subcommands-perf-data.html) to install sample products to run the test against: + +```bash +magento setup:performance:generate-fixtures ./varnish-config/profile.xml +``` + +> `*./varnish-config/profile.xml* file` contents + +```xml + + + + 1 + 1 + 1 + 1 + 0 + 10 + 2 + + + admin/security/use_form_key + default + 0 + 0 + + + system/full_page_cache/caching_application + default + 0 + 2 + + + + +``` + +### Varnish Test Execution + +The Varnish test issues a series of requests, and then analyzes the value of the `X-EQP-Cache` HTTP header: + +1. Check the value of the `X-EQP-Cache` header by submitting the following series of requests two times to the same URL to verify the cache operation. + - On the first set of requests against a fresh installation, the test verifies that each response returns the `X-EQP-Cache` header with the `MISS` value because the page has never been cached. + - On the second set of requests, the test verifies that each response returns the `X-EQP-Cache` header with the `HIT` value because the page was added to the cache after the initial request. + - GET "https://\/simple-product-1.html" + - GET "https://\/simple-product-2.html" + - GET "https://\/simple-product-3.html" + - GET "https://\/category-1.html" + - GET "https://\/category-2.html" + - GET "https://\/" +1. After updating product prices, the test runs the following requests to verify that the FPC cache is cleared: + - PUT "https://\/rest/V1/products/product_dynamic_1" with `{"product":{"price":"999.99"}}` + - PUT "https://\/rest/V1/products/product_dynamic_2" with `{"product":{"price":"999.99"}}` + - PUT "https://\/rest/V1/products/product_dynamic_3" with `{"product":{"price":"999.99"}}` +1. After the FPC cache has been cleared, verify the cache operation again by submitting the following series of requests two times to the same URL to verify the cache operation. + - On the first set of requests, the test verifies that each response returns the `X-EQP-Cache` header with the `MISS` value because the cache was cleared and the page has not been cached yet. + - On the second set of requests, the test verifies that each response returns the `X-EQP-Cache` header with the `HIT` value because the page was added to the cache after the previous request. + - GET "https://\/simple-product-1.html" + - GET "https://\/simple-product-2.html" + - GET "https://\/simple-product-3.html" + +## Reading the error report + +The Installation test returns the logs of the Magento CLI commands. You can reproduce any error in the log by running the failed command in a local environment. + +The Varnish test provides the following information about failures: + +- A brief description of the failed scenario +- Expected and actual cache behavior (HIT or MISS for cached page) + +To debug Varnish test errors, we recommend using a locally installed Magento version with the Varnish cache configured to submit requests and check the HTTP headers in the response. + +## Troubleshooting + +If the extension submission fails Installation and Varnish testing, and you cannot reproduce or troubleshoot the issues locally, [create a Support ticket](https://marketplacesupport.magento.com/hc/en-us) to request assistance. Ensure that the relevant Submission ID is included on the ticket. + +We always welcome feedback and discussion on the [Magento Community Engineering Slack](https://magentocommeng.slack.com/archives/C7SL5CGDN) #marketplace channel. diff --git a/src/marketplace/sellers/malware-scan.md b/src/marketplace/sellers/malware-scan.md new file mode 100644 index 00000000000..f99e079cc30 --- /dev/null +++ b/src/marketplace/sellers/malware-scan.md @@ -0,0 +1,46 @@ +--- +group: marketplace-sellers +title: Malware Scan +--- + +## Overview + +The Malware Scan checks the submitted extension and all media files and documents to verify that they do not contain any malicious code or links. + +## What testing is for + +Security is one of the top concerns for Magento. The Malware Scan ensures that extensions submitted to [Magento Marketplace](https://marketplace.magento.com/) and any associated content do not contain malicious code or viruses. + +## When testing is done + +When you upload an extension and associated files, all code, media files, and documents are scanned before all other checks. + +If the extension submission fails the Malware Scan, it is rejected without any further verification or validation. + +## What is being checked + +The Malware Scan checks all files for the following issues: + +- Signatures of known viruses and malware software +- Links to sites known to contain malware or other malicious content + +## Tools and environments used + +The Malware Scan uses the following tools to check the extension submission: + +- General purpose antivirus with automatically updated virus database. +- [Yara](https://github.com/virustotal/yara) with a set of Magento specific rules. + +## Reading the error report + +The Magento Developer portal notifies the user if any malware or malicious links are detected during the file upload process. + +If the Malware Scan fails, check the integrity of the files you uploaded by using an antivirus application to scan an environment where the package was generated. + +## Troubleshooting + +If the Malware Scan fails on a valid extension, [create a Support ticket](https://marketplacesupport.magento.com/hc/en-us) and describe the use case. + +If you find any code on the [Magento Marketplace](https://marketplace.magento.com/) that looks suspicious, contact Magento immediately through the [Marketplace Support Portal](https://marketplacesupport.magento.com/hc/en-us). + +We always welcome feedback and discussion on the [Magento Community Engineering Slack](https://magentocommeng.slack.com/archives/C7SL5CGDN) #marketplace channel. diff --git a/src/marketplace/sellers/packaging-v1x-extensions.md b/src/marketplace/sellers/packaging-v1x-extensions.md deleted file mode 100644 index c8d0abd0fbe..00000000000 --- a/src/marketplace/sellers/packaging-v1x-extensions.md +++ /dev/null @@ -1,210 +0,0 @@ ---- -group: marketplace-sellers -title: Packaging Magento Version 1.x Extensions ---- - -Extensions developed for Magento version 1.x have different packaging guidelines than [Magento version 2.x]({{ site.baseurl }}/guides/v2.3/extension-dev-guide/package/package_module.html). - -1. Log in to the Magento Admin. - -1. From the Admin, go to **System** > **Magento Connect** > **Package Extensions**. - - ![]({{ site.baseurl }}/marketplace/sellers/images/create-extension-package.png){: .zoom} - _Create Extension Package_ - - This takes you to the Create Extension Package page, which consists of six sections: - - - Package info - - Release info - - Authors - - Dependencies - - Contents - - Load local package - -## Section A: Package info - -Enter the name of the extension. It is good practice to keep the name short using simple words whenever possible. - -Formatting requirements: The name of an extension can be a combination of letters (a-z or A- Z), numbers (0-9), and the underscore character (\_). Other characters are not allowed. - -{: .bs-callout .bs-callout-info} -The name used in this field will be your extension key. It is case-sensitive. - -![]({{ site.baseurl }}/marketplace/sellers/images/package-info.png){: .zoom} -_Package Info_ - -### Channel - -The Channel field is required and determined by the version of Magento you are using to package your extension. Make sure to type it exactly as it is shown below. These fields are case sensitive. - -- If you are using Magento 1.5 or later to package your extension, type `community`. -- If you are using Magento 1.4 or prior to package your extension, type `connect.magentocommerce.com/community`. - -{: .bs-callout .bs-callout-info} -If the wrong channel is used during the packaging process, you will receive an error and will have to resubmit it. - -### Supported releases - -This field is intended for backward compatibility. - -- Select the option **Pre 1.5** if this extension supports Magento versions 1.4.x and lower. For these releases, the package will be created in PEAR format and all associated files will be saved in the magento/var/pear/ directory. -- Select the option **1.5.0.0 & later** if this extension supports Magento versions 1.5.x and later. For these releases, the package will be saved in the magento/var/connect directory. -- Select both options if this extension supports both older and newer versions. - -{: .bs-callout .bs-callout-info} -If you are using EE 1.9 or earlier versions this field is absent but this won’t affect extension packaging process. You can skip this step in this situation. - -### Upload and packaging options - -If you are packaging an extension using a Magento Pre 1.5 (i.e., 1.4.x and lower) version and the extension only supports Pre 1.5 versions of Magento use the following settings: - -- Channel: **connect.magentocommerce.com/community** -- Supported Releases: **Pre 1.5** -- Package file will appear in `/var/pear/`. Package will appear in PEAR format. - -{: .bs-callout .bs-callout-info} -If there is no `/var/pear` folder, create it before packaging your extension. - -If you are packaging an extension using a Magento 1.5 and later version and the extension only supports 1.5 and later versions of Magento use the following settings: - -- Channel: **Community** -- Supported releases: **1.5 & later** -- Package file will appear in `/var/connect/`. - -If you are packaging an extension using a Magento 1.5 and later version, but the extension supports both Magento Pre 1.5 and Magento 1.5 and later versions use the following settings: - -- Channel: **connect.magentocommerce.com/community** -- Supported Releases: **Pre 1.5 and 1.5 & later (select both)** -- Package will appear in `/var/pear`. - -{: .bs-callout .bs-callout-info} -Another package will be created in `/var/connect`. You will need this file if your extension is paid and you prefer to give customers the .tgz file to upload into their Magento Connect Manager. - -If you are supporting two extensions with the same name when one of them is compatible with Magento Pre 1.5 and another with Magento 1.5+ do the following: - -- Package version of your extension for Magento Pre 1.5 in Channel 1.0 format and [submit it to Magento Marketplace]({{ site.baseurl }}/marketplace/sellers/submit-for-review.html). -- Package new version of your extension for Magento versions 1.5+ in Channel 2.0 format and [submit it to Magento Marketplace]({{ site.baseurl }}/marketplace/sellers/submit-for-review.html). -- Package will appear in `/var/pear`. - -{: .bs-callout .bs-callout-info} -Version numbers for your Pre 1.5 and 1.5+ versions should be different. You are not allowed to upload several versions with the same version number to Magento Marketplace. - -{: .bs-callout .bs-callout-tip} -It’s a good idea to also mention information about the supported releases in the extensions description, so merchants can quickly know whether or not they can use it. - -### Summary and description - -Provide a brief summary and description about the extension. This is a required field. Magento uses this information in the extension review process. The summary will be displayed in Magento Marketplace. - -### License - -The License field is required. Select the license that your extension falls under. The full list of possible licenses as stated on the Magento community website is: - -- Open Software License (OSL) -- Mozilla Public License (MPL) -- Massachusetts Institute of Technology License (MITL) -- GNU Lesser General Public License (LGPL) -- GNU General Public License (GPL) -- Berkeley Software Distribution License (BSDL) -- Apache Software License (ASL) -- Academic Free License (AFL) -- You can specify another (commercial) license if you distribute the extension package as paid. - -{: .bs-callout .bs-callout-info} -If you are using EE 1.9 or earlier versions, this field is absent but this won’t affect extension packaging process. You can skip this step in such situation. - -### License URL - -Use this field to link to the license text. It is not required, but recommended. - -For example, http://opensource.org/licenses/osl-3.0.php - -## Section B: Release info - -In order to understand this process, see [Software Versioning][1]. - -![]({{ site.baseurl }}/marketplace/sellers/images/release-info.png){: .zoom} -_Release Info_ - -### Release version - -The release version can be any arbitrary number value that you want to use as the base version. This is often set to 1.0.0 or 10.0.0. It is critical, however, to increment the release version number every time you update and repackage this extension. To protect against incorrect release version inputs, Magento Marketplace will not allow you to upload the same version twice. - -### Release stability - -The release version can be any arbitrary number value that you want to use as the base version. This is often set to 1.0.0 or 10.0.0. It is critical, however, to increment the release version number every time you update and repackage this extension. To protect against incorrect release version inputs, Magento Marketplace will not allow you to upload the same version twice. - -Release stability can be set to: - -- Alpha -- Beta -- Stable - -By default, Magento Marketplace users are only allowed to install Stable release extensions. To download development, alpha, or beta releases, the user must change this setting in the backend of Magento Marketplace. If you upload a package with release stability alpha or beta, add this information into the extension description. - -{: .bs-callout .bs-callout-info} -Do not attempt to upload an extension with release stability Development. This option is used for testing purposes only. No Development release extensions will be approved. - -### Notes - -Add any notes you may have for this release. - -## Section C: Authors - -In the Authors section, type in the real name, user name, and email address of all members who contributed to this extension. The first user must match the user name of your Magento Developer account used to display your extensions on Magento Marketplace. - -![]({{ site.baseurl }}/marketplace/sellers/images/authors.png){: .zoom} -_Authors_ - -## Section D: Dependencies - -The dependencies tab is used to specify the dependence of our code in regard to the PHP version. If it is necessary, the dependence on other extension packages can be filled out as well. During the installation of an extension, the system will check it in regard to all versions specified for it, and if dependent extensions are not installed, Magento Marketplace offers to install them. Also, you can specify the dependence on the PHP extensions, for example, if your module uses GD library functions of the latest version. In this case, if a necessary PHP extension is not installed on the server, Marketplace will show an alert the administrator. - -The following example provides an example of dependency on the `Mage\_Core\_Modules` package. This means that our extension will only work with Magento versions within the set range. The PHP [`version\_compare`][2] function is used to verify the compatibility of versions during the extension installation. - -![]({{ site.baseurl }}/marketplace/sellers/images/dependencies.png){: .zoom} -_Dependencies_ - -## Section E: Contents - -This is one of the most important sections in the extension packaging process. It is also the easiest to mess up. Be careful here. - -For proper compilation of extension package contents, use the following tips for the Target field. The following options correspond to the path on the disk: - -- Magento Local module file - `./app/code/local` -- Magento Community module file - `./app/code/community` -- Magento Core team module file - `./app/code/core` -- Magento User Interface (layouts, templates) - `./app/design` -- Magento Global Configuration - `./app/etc` -- Magento PHP Library file - `./lib` -- Magento Locale language file - `./app/locale` -- Magento Media library - `./media` -- Magento Theme Skin (Images, CSS, JS) - `./skin` -- Magento Other web accessible file - `./` -- Magento PHPUnit test - `./tests` -- Magento other - `./` - -_Where “`./`” represents the Magento root directory._ - -In the Path field, enter the path relative to the path in the Target field. In the Include and Ignore fields, enter a regular expression which will check the path with the file name only for the rows where the Type field is set to Recursive Dir. A file to be included in the extension package must match the expression specified in the Include field. If the file matches the expression in the Ignore field, it will not be included in the extension package correspondingly. - -![]({{ site.baseurl }}/marketplace/sellers/images/contents.png){: .zoom} -_Contents_ - -## Section F: Load local package - -After you fill in all of the fields, click **Save Data and Create the Package**. - -This saves it in a package data file and creates a package file. - -**Package data file** - The package data file is an XML document that stores the rules for building the package. This file is saved on the disk in the magento/var/connect/ folder if packaged with Magento 1.5 and later or in the magento/var/pear directory if packaged using Magento 1.4 or prior. A different location can be specified if you click the Save As button. - -**Extension package file** - The Extension Package file contains all source code needed. In addition, the archive includes another file that is created by a packager - `package.xml`. This file contains information about the extension, including the description of the structure of files and folders included in the package, and md5 sum for each file. - -When the extension package file is ready, it can be [submitted for review]({{ site.baseurl }}/marketplace/sellers/submit-for-review.html). - -{: .bs-callout .bs-callout-info} -First you should set write permissions to the appropriate folders. - -[1]: https://en.wikipedia.org/wiki/Software_versioning -[2]: http://php.net/version-compare diff --git a/src/marketplace/sellers/semantic-version-check.md b/src/marketplace/sellers/semantic-version-check.md new file mode 100644 index 00000000000..59d20d3467b --- /dev/null +++ b/src/marketplace/sellers/semantic-version-check.md @@ -0,0 +1,62 @@ +--- +group: marketplace-sellers +title: Semantic Version Check +--- + +## Overview + +The Semantic Version Check (SVC) is a quality check that validates the change level of an extension submission against the change level declared by the extension developer. + +## What testing is for + +[Semantic Versioning](https://semver.org/) is a good way to communicate what kind of changes were introduced between software releases. Clients can use this information to estimate the risk level of upgrading a particular software package and to determine how much effort is required to adopt the new version. + +Magento follows Semantic Versioning and encourages all third-party vendors to apply this versioning strategy for their Magento extensions as well. + +Magento Marketplace uses version information to fast-track the extension validation process for submissions that introduce patch level changes, as these are expected to be backwards compatible bug fixes without any new functionality. + +## When testing is done + +For the Semantic Version check to be applied, the extension submission must meet the following conditions: + +1. A new submission must update an already existing version of an extension that has been previously published to the Marketplace storefront. +1. The extension developer must declare the new submission as a "PATCH" level change. + +## What is being checked + +The Semantic Version check analyzes the submission to determine the change level of the new submission and to verify whether the change level qualifies as a "PATCH" level change. + +If the submission is a "PATCH" level change, the submission is fast-tracked and is exempt from the Manual QA process. Otherwise, this check fails. + +A failed Semantic Version check has no impact on extension approval. If a submission receives Manual QA approval, then the extension will be published. + +## Tools and environments used + +The Semantic Version Check is implemented using the publicly available, [magento/magento-semver](https://github.com/magento/magento-semver) tool. + +Magento SemVer is a static analysis tool that validates the change level of Magento source code based on the [Semantic Versioning Specification](https://semver.org/) and makes suggestions about the version increment to use, for example _PATCH_, _MINOR_, or _MAJOR_. + +Magento SemVer can: + +1. Detect PATCH, MINOR and MAJOR change levels and suggest the appropriate change level for a new version. +1. Validate an update against a desired change level. + +## Reading the error report + +The error report lists minor and major changes detected in the extension source code. To fix an error, refactor the implementation until it no longer introduces non-patch level changes. + +## Troubleshooting + +The Magento Semantic Version check uses the following command to check an extension: + +```bash +php magento-semver/bin/svc compare 1 +``` + +This command requires an environment with PHP version 7.2.29 or later. + +If the Semantic Version check detects any issues, [create a Magento Support ticket](https://marketplacesupport.magento.com/hc/en-us) to request assistance. Specify the relevant Submission ID in the ticket. + +As the check is solely based on [Magento SemVer open source project](https://github.com/magento/magento-semver), submitting an issue or pull request on GitHub is highly recommended. + +We always welcome feedback and discussion on the [Magento Community Engineering Slack](https://magentocommeng.slack.com/archives/C7SL5CGDN) #marketplace channel. diff --git a/src/marketplace/sellers/submit-for-technical-review.md b/src/marketplace/sellers/submit-for-technical-review.md index 2f620d96267..f5fd653871a 100644 --- a/src/marketplace/sellers/submit-for-technical-review.md +++ b/src/marketplace/sellers/submit-for-technical-review.md @@ -5,7 +5,7 @@ title: Submit for Technical Review All extensions submitted to Magento Marketplace must pass the automated technical review as part of the extension submission workflow. Technical review helps to improve the quality of products on Magento Marketplace by checking for indications of plagiarism, malware, and adherence to Magento coding standards. Developers whose extensions do not pass technical review receive a report of the results. After the issues are resolved, you are welcome to resubmit the extension. Extensions must pass technical review to receive a listing on Magento Marketplace. -When your [extension entry]({{ site.baseurl }}/marketplace/sellers/extension-information.html) is complete, you can submit your extension for technical review. During the process, we [review the code]({{ site.baseurl }}/marketplace/sellers/code-validation.html) according to [technical guidelines]({{ site.baseurl }}/marketplace/sellers/technical-review-guidelines.html), install and use the extension according to your documentation, and verify specifics from your submission form. You can track the status and progress of your extension submission through your Marketplace account. +When your [extension entry]({{ site.baseurl }}/marketplace/sellers/extension-information.html) is complete, you can submit your extension for technical review. During the process, we review the code according to [technical guidelines]({{ site.baseurl }}/marketplace/sellers/technical-review-guidelines.html), install and use the extension according to your documentation, and verify specifics from your submission form. You can track the status and progress of your extension submission through your Marketplace account. ![]({{ site.baseurl }}/marketplace/sellers/images/tech-review-content.png){: .zoom} diff --git a/src/marketplace/sellers/technical-review-guidelines.md b/src/marketplace/sellers/technical-review-guidelines.md index 6a3d6ae5242..f53d1fc1357 100644 --- a/src/marketplace/sellers/technical-review-guidelines.md +++ b/src/marketplace/sellers/technical-review-guidelines.md @@ -5,42 +5,16 @@ title: Technical Review Guidelines During technical review, your code is examined to detect the presence of viruses, malware, and any indication of plagiarism. The process also ensures that the package meets Composer packaging and format requirements and Magento coding standards. -## Validate: Verify package for required files +## Submission -The submitted package must be a Magento module, theme, language pack, or metapackage, that meets Composer packaging and format requirements. All Magento modules, themes, and language packs must contain a `composer.json` and `registration.php` file. +The technical review begins as soon as you upload an extension package at [Developer Portal](https://developer.magento.com/) and consists of two mandatory steps to generate the submission id and trigger further extension testing: -### Required Files +1. [Malware Scan]({{ site.baseurl }}/marketplace/sellers/malware-scan.html) — Ensures that uploaded packages do not contain viruses or malware software. +1. Extension Package Verification — Checks that the uploaded file is a zip archive which is a [Composer](https://getcomposer.org/) package with Magento extension. -|--- |--- | -|All|`composer.json`
    `registration.php`| -|Module|`etc/module.xml`| -|Theme|`theme.xml`| -|Language Pack|`language.xml`| -|Metapackage|`composer.json`| +### Extension Package Verification -Developers of Magento 2.x extensions can use the validation tool to test the package before it is submitted to Magento Marketplace. To download the tool, see the Marketplace Tools GitHub repository. - -_See also:_ - -- [PHP Developer Guide]({{ site.baseurl }}/guides/v2.3/extension-dev-guide/bk-extension-dev-guide.html) -- [How to Package Magento Extensions]({{ site.baseurl }}/guides/v2.3/extension-dev-guide/package/package_module.html) -- [Packaging Magento Version 1.x Extensions]({{ site.baseurl }}/marketplace/sellers/packaging-v1x-extensions.html) - -## Coding Standards: Check code quality/syntax - -The Marketplace coding standard review uses a custom set of coding sniffs. If the submitted code fails to pass the review, a technical report is generated that describes each issue found, and its location in the codebase. - -_See also:_ [Coding Standards]({{ site.baseurl }}/guides/v2.3/coding-standards/bk-coding-standards.html) - -### Package Validation: verify that submitted code is a valid Magento extension - -This check verifies that submitted code: - -- Is packaged as a valid Magento module, theme, language package, or meta-package -- Enforces best practices for Magento code distribution -- Helps to avoid common pitfalls - -Any code submitted for technical review at [Magento Developers Portal](https://developer.magento.com/) is examined to ensure that: +Package submissions must contain a Magento module, theme, language pack, or metapackage that meets Composer packaging and format requirements: 1. Code submitted as a zip archive. 1. Submitted package does not exceed 30 MB. @@ -63,54 +37,123 @@ Any code submitted for technical review at [Magento Developers Portal](https://d - `magento/product-community-edition` - `magento/magento2-ee-base` - `magento/product-enterprise-edition` -1. The package does not use `*` as a version restriction for Magento packages (packages with `magento` vendor). Version restriction should be specified according to [recommendations](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/versioning/dependencies.html?itm_source=devdocs&itm_medium=quick_search&itm_campaign=federated_search&itm_term=versio#determine-module-dependency). +1. The package does not use `*` as a version restriction for Magento packages (packages with `magento` vendor). You must specify version restriction according to the [recommendations]({{ site.baseurl }}/guides/v2.4/extension-dev-guide/versioning/dependencies.html#determine-module-dependency) in the _Magento PHP Developer Guide_. 1. [Require inline aliases](https://getcomposer.org/doc/articles/aliases.md#require-inline-alias) are not used in the `composer.json` file. -Additional requirements for package declarations are applied depending on the package type. +Additional requirements for package declarations are applied based on the package type: -Magento modules (packages with type `magento2-module`) must have a valid `registrar.php` file. Configured [autoloading](https://getcomposer.org/doc/04-schema.md#autoload) in `compopser.json`: `autoload.files` must include at least a `registrar.php` file and `autoload.psr-4` is expected to declare at least one namespace. +1. Magento modules (packages with type `magento2-module`) must have valid `etc/module.xml` and `registration.php` files. Configured [autoloading](https://getcomposer.org/doc/04-schema.md#autoload) in `composer.json`: `autoload.files` must include at least a `registration.php` file and the `autoload.psr-4` section must declare at least one namespace. +1. Magento themes (package type `magento2-theme`) must have valid `theme.xml` and `registration.php` files. You must include the registration file in the `autoload.files` section of `composer.json`. Do not include an `autoload.psr-4` declaration in a theme package. +1. Magento language packages (type `magento2-language`) must have valid `language.xml` and `registration.php` files. You must include the registration file in the `autoload.files` section of `composer.json`. Do not include an `autoload.psr-4` declaration in a language package. +1. Packages of type `metapackage` must declare at least one dependency in the `require` section. -Magento themes (package type `magento2-theme`) and language packages (type `magento2-language`) must have a valid `registrar.php` file, which must be included in the `autoload.files` section of `composer.json`. `autoload.psr-4` must not be used for these types of packages. +_See also:_ + +- [PHP Developer Guide]({{ site.baseurl }}/guides/v2.4/extension-dev-guide/bk-extension-dev-guide.html) +- [How to Package Magento Extensions]({{ site.baseurl }}/guides/v2.4/extension-dev-guide/package/package_module.html) + +## Extension Validation and QA + +After accepting a package for Technical Review, a series of automated checks and manual checks are scheduled. + +### Code Sniffer: Check code quality/syntax -Packages of type `metapackage` must declare at least one dependency in the `require` section. +The Marketplace coding standard review uses a custom set of coding sniffs. If the submitted code fails the review, Magento generates a technical report that describes each issue found and its location in the codebase. -### Intellectual Property: Check for plagiarism +_More details:_ [Code Sniffer]({{ site.baseurl }}/marketplace/sellers/code-sniffer.html) + +_See also:_ [Coding Standards]({{ site.baseurl }}/guides/v2.4/coding-standards/bk-coding-standards.html) + +### Copy Paste Detector: Check for plagiarism All code and marketing content that is submitted to Magento Marketplace is checked for plagiarism to ensure that it has not been copied from existing Marketplace extensions or from the Magento codebase. -If the extension contains source code from the Community Edition of Magento 1.x or 2.x, the extension must be licensed under [Open Source License v. 3.0][3] and properly credit Adobe, Inc. +If the extension contains source code from the Community Edition of Magento, the extension must be licensed under [Open Source License v. 3.0][3] and properly credit Adobe, Inc. + +_More details:_ [Copy Paste Detector]({{ site.baseurl }}/marketplace/sellers/copy-paste-detector.html) _See also:_ [OSL 3.0: A Better License for Open Source Software][4] -### Installation (M2 only): Verify that product installs correctly +### Installation and Varnish Tests: Verify that product installs and caching works correctly -Extensions for Magento 2.x are installed with Varnish Cache enabled for each supported version of PHP, and switched from development to [production mode]({{ site.baseurl }}/guides/v2.3/config-guide/cli/config-cli-subcommands-mode.html). If you have shared packages and dependencies required for your extension, also test installs and usage with those packages. +Extensions for Magento are installed with Varnish Cache enabled for each supported version of PHP and switched from development to [production mode]({{ site.baseurl }}/guides/v2.4/config-guide/cli/config-cli-subcommands-mode.html). If you have shared packages and dependencies required for your extension, the Installation test also tests Magento installation and usage with those packages included. -_See also:_ [Magento System Requirements]({{ site.baseurl }}/guides/v2.3/install-gde/system-requirements.html) +In addition, cacheable pages are accessed to ensure that they are served directly from Varnish Cache. You will be notified if your extension fails the test. -### Page Caching (M2 only): Verify that Varnish works correctly +_More details:_ [Installation and Varnish Tests]({{ site.baseurl }}/marketplace/sellers/installation-and-varnish-tests.html) -In addition to the Production Mode test, cacheable pages are accessed to ensure that they are served directory from Varnish Cache. You will be notified if your extension fails the test. +_See also:_ + +- [Configure and Use Varnish]({{ site.baseurl }}/guides/v2.4/config-guide/varnish/config-varnish.html) +- [Magento System Requirements]({{ site.baseurl }}/guides/v2.4/install-gde/system-requirements.html) + +### Quality Assurance: Pass Manual QA + +This check verifies that the extension installs without error, is configurable (as applicable), and operates as expected. + +Manual QA can be skipped if the [Semantic Version Check]({{ site.baseurl }}/marketplace/sellers/semantic-version-check.html) confirms that only patch-level changes were introduced in a new version of an already listed extension. + +#### Documentation and resources +Magento uses the documentation provided with the extension during manual QA. The submitted documentation must comply with the following requirements: + +1. Submit the user guide in one of the following formats: + + - A PDF that describes the extension setup and features. + - A PDF containing a link to a wiki or a similar page that describes the extension setup and features. + +1. Extension documentation must cover all features of the extension. + +1. Extension documentation must not direct users to make purchases on sites other than Marketplace. + +_See also:_ [Polishing your Marketplace submission: 7 tips from the Marketplace EQP team](https://community.magento.com/t5/Magento-DevBlog/Polishing-your-Marketplace-submission-7-tips-from-the/ba-p/142382) + +#### Manual QA checklist + +To pass Manual QA, the extension must meet the following requirements: + +1. Installs with Composer. +1. Compiles without errors using the following command: [`deploy:mode:set production`](https://devdocs.magento.com/guides/v2.4/config-guide/cli/config-cli-subcommands-mode.html#change-to-production-mode) +1. Extension has all supporting documentation that complies with the [documentation requirements](#documentation-and-resources) +1. Works with each version of Magento that the extension claims to support in the extension product profile. + + - Basic Magento functionality works as expected with the installed extension. + - Basic test suite includes, but is not limited to the following scenarios: + + - Create order as guest user (Simple product, Configurable product) + - Create a new customer + - Create order as (Simple product, Configurable product) + - Place an order via "Check Out with Multiple Addresses" + - Create re-order from previously created order + - Add product to Wishlist + - Add product to Comparison list + - As store admin: Create Invoice, Shipping, Credit Memo + - As store admin: Create new order (re-order) + - As store admin: Create new product with images (Simple product, Configurable product) + - As store admin: Create new product category + +1. Works with each version of PHP that is supported by the Magento version that the extension claims to support in the extension product profile. +1. Has all functionality that is described in the extension documentation and vice versa. +1. Does not crash with unhandled errors. +1. Does not hang when invalid data is submitted. + +_See also:_ -_See also:_ [Configure and Use Varnish]({{ site.baseurl }}/guides/v2.3/config-guide/varnish/config-varnish.html) +- [Install an Extension via Composer](https://devdocs.magento.com/cloud/howtos/install-components.html#install-an-extension) +- [General CLI installation](https://devdocs.magento.com/extensions/install/) -### Quality Assurance (M2 only): Pass manual QA +#### Additional checks for Page Builder extensions -This check verifies that the extension installs without error, is configurable (as applicable), and operates as expected. To pass Manual QA, the extension must meet the following requirements: +Extensions that claim to support Magento Page Builder are subject to the following additional checks: -- Installs with Composer -- Compiles without errors using the following command: `deploy:mode:set production` -- Works with each version of Magento that is shown as supported in the extension product profile -- Works with each version of PHP that is supported by the Magento version that is shown as supported in the extension product profile -- Has all functionality that is described in the extension documentation -- Does not crash with unhandled errors -- Does not hang when invalid data is submitted +1. New and extended content types can be dragged to the stage, edited, duplicated, moved, hidden, saved and deleted from the stage without errors. +1. New and extended content types are rendered on the storefront without errors. +1. Extensions that use Page Builder must also support correct operation of all Page Builder content creation functions. This includes, but is not limited to, all the functions previously described for new and extended content types rendered in the Admin stage and the storefront. -### For Page Builder extensions +#### Exit criteria for testing -- New and extended content types can be dragged to the stage, edited, duplicated, moved, hidden, saved, and deleted from the stage without errors. -- New and extended content types are rendered on the storefront without errors. -- Extensions that use Page Builder should also ensure that all Page Builder content creation functions work correctly. This includes, but is not limited to, all the functions previously described for new and extended content types rendered in the Admin stage and the storefront. +1. At least one major issue found in Magento functionality which was affected by an installed extension. +1. Blocking issue found that affects entire extension functionality. +1. For big extensions, where functionality is not concentrated in one particular area we can switch to the unaffected area and continue to test it in order to provide more errors to the developer. At the same time, we can stop testing once we have found 2 blockers in separate areas of an extension. [3]: https://opensource.org/licenses/OSL-3.0 [4]: http://rosenlaw.com/OSL3.0-explained.htm From fb140129d71ebb8d11f192cb14d9efcbc86f04f5 Mon Sep 17 00:00:00 2001 From: Shrie Spangler Date: Tue, 27 Oct 2020 11:00:30 -0500 Subject: [PATCH 084/143] Fix spelling error --- src/guides/v2.3/extension-dev-guide/cli-cmds/cli-howto.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guides/v2.3/extension-dev-guide/cli-cmds/cli-howto.md b/src/guides/v2.3/extension-dev-guide/cli-cmds/cli-howto.md index f9d123c55bc..9bbd9cc373f 100644 --- a/src/guides/v2.3/extension-dev-guide/cli-cmds/cli-howto.md +++ b/src/guides/v2.3/extension-dev-guide/cli-cmds/cli-howto.md @@ -126,7 +126,7 @@ Following is a summary of the process: ``` {:.bs-callout-info} - Style the output text by using ``, ``, or `` tags. See [Symfony](https://symfony.com/doc/master/console/coloring.html){:target="_blank"} docummentation for more information about styling. + Style the output text by using ``, ``, or `` tags. See [Symfony](https://symfony.com/doc/master/console/coloring.html){:target="_blank"} documentation for more information about styling. 1. Declare your Command class in `Magento\Framework\Console\CommandListInterface` and configure the command name using dependency injection (`/etc/di.xml`): From 5ca4048b469cb32ac7102d8566956625b42480bf Mon Sep 17 00:00:00 2001 From: Margaret Eker Date: Tue, 27 Oct 2020 11:43:12 -0500 Subject: [PATCH 085/143] Fixed TOC entry for "Custom VCL for allowing requests" topic (#8131) * Fixed TOC entry for "Custom VCL for allowing requests" topic Replaced additional "whitelist" occurrences with "allowlist" * Fix broken link Co-authored-by: Barny Shergold Co-authored-by: Bruce Denham --- src/_data/toc/cloud-guide.yml | 2 +- src/cloud/architecture/pro-architecture.md | 2 +- src/cloud/cdn/fastly-vcl-allowlist.md | 6 ++---- src/cloud/env/environments-start.md | 2 +- src/cloud/live/live.md | 2 +- src/cloud/project/project-webint-basic.md | 2 +- src/cloud/project/sendgrid.md | 2 +- 7 files changed, 8 insertions(+), 10 deletions(-) diff --git a/src/_data/toc/cloud-guide.yml b/src/_data/toc/cloud-guide.yml index 5301ccbc623..7f65c8bbb9b 100644 --- a/src/_data/toc/cloud-guide.yml +++ b/src/_data/toc/cloud-guide.yml @@ -343,7 +343,7 @@ pages: versionless: true - label: IP allow list - url: /cloud/cdn/fastly-vcl-whitelist.html + url: /cloud/cdn/fastly-vcl-allowlist.html versionless: true - label: IP block list diff --git a/src/cloud/architecture/pro-architecture.md b/src/cloud/architecture/pro-architecture.md index 48840e2b590..3ab346baa22 100644 --- a/src/cloud/architecture/pro-architecture.md +++ b/src/cloud/architecture/pro-architecture.md @@ -148,7 +148,7 @@ You cannot create a branch from the Production environment branch. You must push Rather than running a traditional, active-passive master or a master-slave setup, {{site.data.var.ece}} runs a redundant architecture where all three instances accept reads and writes. This architecture offers zero downtime when scaling and provides guaranteed transactional integrity. -Because of our unique, redundant hardware, we can provide you with three gateway servers. Most external services enable you to [whitelist](https://glossary.magento.com/whitelist) multiple IP addresses, so having more than one fixed IP address is not a problem. +Because of our unique, redundant hardware, we can provide you with three gateway servers. Most external services enable you to add multiple IP addresses to an [allowlist](https://glossary.magento.com/whitelist), so having more than one fixed IP address is not a problem. The three gateways map to the three servers in your Production environment cluster and retain static IP addresses. It is fully redundant and highly available at every level: diff --git a/src/cloud/cdn/fastly-vcl-allowlist.md b/src/cloud/cdn/fastly-vcl-allowlist.md index fcca4541c17..750194aa8f2 100644 --- a/src/cloud/cdn/fastly-vcl-allowlist.md +++ b/src/cloud/cdn/fastly-vcl-allowlist.md @@ -1,8 +1,6 @@ --- group: cloud-guide title: Custom VCL for allowing requests -redirect_from: - - /cloud/configure/fastly-vcl-whitelist.html functional_areas: - Cloud - Setup @@ -89,11 +87,11 @@ In the code sample, the condition `!req.http.Fastly-FF` is important when using After reviewing and updating the code for your environment, use either of the following methods to add the custom VCL snippet to your Fastly service configuration: -- [Add the custom VCL snippet from the Magento Admin](#add-whitelist-vcl). This method is recommended if you can access the Magento Admin UI. (Requires [Fastly CDN module for Magento 2 version 1.2.58]({{site.baseurl}}/cloud/cdn/configure-fastly.html#upgrade) or later.) +- [Add the custom VCL snippet from the Magento Admin](#add-the-custom-vcl-snippet). This method is recommended if you can access the Magento Admin UI. (Requires [Fastly CDN module for Magento 2 version 1.2.58]({{site.baseurl}}/cloud/cdn/configure-fastly.html#upgrade) or later.) - Save the JSON code example to a file (for example, `allowlist.json`) and [upload it using the Fastly API]({{site.baseurl}}/cloud/cdn/cloud-vcl-custom-snippets.html#manage-custom-vcl-snippets-using-the-api). Use this method if you cannot access the Magento Admin UI. -## Add the custom VCL snippet {#add-whitelist-vcl} +## Add the custom VCL snippet {% include cloud/admin-ui-login-step.md %} diff --git a/src/cloud/env/environments-start.md b/src/cloud/env/environments-start.md index e271c9264c7..0adb9a1030b 100644 --- a/src/cloud/env/environments-start.md +++ b/src/cloud/env/environments-start.md @@ -112,7 +112,7 @@ To activate an inactive environment, use the `magento-cloud environment:activate The following table lists incoming and outgoing IP addresses used by {{site.data.var.ece}} [Integration environments]({{ site.baseurl }}/cloud/architecture/pro-architecture.html#cloud-arch-int). These IP addresses are stable, but might change. We always notify customers before making any IP address changes. -If you have a corporate firewall that blocks outgoing SSH connections, you can add the inbound IP addresses to your whitelist. +If you have a corporate firewall that blocks outgoing SSH connections, you can add the inbound IP addresses to your allowlist. ### AWS regions diff --git a/src/cloud/live/live.md b/src/cloud/live/live.md index 40433e9edb0..2402fb967a0 100644 --- a/src/cloud/live/live.md +++ b/src/cloud/live/live.md @@ -49,7 +49,7 @@ content='The security scan tool uses the following public IP addresses: 52.87.98.44 ``` -You must whitelist these IP addresses in your network firewall rules to allow the tool to scan your site. The tool posts requests to ports 80 and 443 only.' +You must add these IP addresses to an allowlist in your network firewall rules to allow the tool to scan your site. The tool posts requests to ports 80 and 443 only.' %} The Magento Security Scan Tool enables you to regularly monitor your store websites and receive updates for known security risks, malware, and out-of-date software. This is a free service available for all implementations and versions of {{site.data.var.ece}}. You access the tool through your [Magento Marketplace account](https://account.magento.com/customer/account/login). diff --git a/src/cloud/project/project-webint-basic.md b/src/cloud/project/project-webint-basic.md index b01e6e1e4e2..4f138fbd289 100644 --- a/src/cloud/project/project-webint-basic.md +++ b/src/cloud/project/project-webint-basic.md @@ -135,7 +135,7 @@ Routes allow you to set redirects or upstream settings for applications for your 1. Enter the **Upstream** route. 1. Use the toggle to enable or disable the **Cache** for the route. 1. Enter the cookies to list: No cookies, All cookies, or Specify a specific cookie. You can enter multiple specific cookies. - 1. For Headers to Whitelist, select Default Headers or Specify a header. You can enter multiple headers. + 1. To add Headers to an allowlist, select Default Headers or Specify a header. You can enter multiple headers. 1. Use the toggle to enable or disable the Server-Side Includes (**SSI**). 1. To configure a Redirect, enter a URL to **Redirect to**. You can use `{default}` in the URL, which is a placeholder for the default domain. diff --git a/src/cloud/project/sendgrid.md b/src/cloud/project/sendgrid.md index cd0e5149bdc..f1e9dfb7787 100644 --- a/src/cloud/project/sendgrid.md +++ b/src/cloud/project/sendgrid.md @@ -26,4 +26,4 @@ You can find Sendgrid details for your account in the Onboarding UI. Use the `ht The CNAME records resolve to the Domain Keys Identified Mail (DKIM) and Sender Policy Framework (SPF) records managed by SendGrid, so that spam filters are less likely to inhibit your messages. -Magento does not support whitelisting, but you can review the [Sender Policy Framework (SPF)](https://sendgrid.com/docs/Glossary/spf.html) guidelines to improve delivery. +Magento does not support allowlists, but you can review the [Sender Policy Framework (SPF)](https://sendgrid.com/docs/Glossary/spf.html) guidelines to improve delivery. From 3d5c3056d595502e64f1c3418f9ab16a03105378 Mon Sep 17 00:00:00 2001 From: zenfork <44647310+zenfork@users.noreply.github.com> Date: Wed, 28 Oct 2020 13:06:15 +0200 Subject: [PATCH 086/143] Removed extra trailing comma from composer.json --- src/cloud/project/project-upgrade.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cloud/project/project-upgrade.md b/src/cloud/project/project-upgrade.md index 5db4ea2266f..4c2a1a7b2d8 100644 --- a/src/cloud/project/project-upgrade.md +++ b/src/cloud/project/project-upgrade.md @@ -121,7 +121,7 @@ To check the `auto-load:psr-4` configuration: "Magento\\Framework\\": "lib/internal/Magento/Framework/", "Magento\\Setup\\": "setup/src/Magento/Setup/", "Magento\\": "app/code/Magento/", - "Zend\\Mvc\\Controller\\": "setup/src/Zend/Mvc/Controller/", + "Zend\\Mvc\\Controller\\": "setup/src/Zend/Mvc/Controller/" }, ``` {:.no-copy} From 53f1c4bfd338177048ca200bf8db2745fd8d5203 Mon Sep 17 00:00:00 2001 From: Margaret Eker Date: Wed, 28 Oct 2020 10:12:58 -0500 Subject: [PATCH 087/143] Remove extra slash (#8143) --- src/cloud/project/magento-app-php-ini.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cloud/project/magento-app-php-ini.md b/src/cloud/project/magento-app-php-ini.md index 46efe0a0946..cded7411dd7 100644 --- a/src/cloud/project/magento-app-php-ini.md +++ b/src/cloud/project/magento-app-php-ini.md @@ -54,4 +54,4 @@ cat /etc/php5/fpm/php.ini ``` {:.bs-callout-info} -If you use {{site.data.var.mcd-prod}} for local development, see [Docker service containers]({{site.baseurl}}//cloud/docker/docker-containers-service.html#fpm-container) for information about using a custom `php.ini` file in a Docker environment. +If you use {{site.data.var.mcd-prod}} for local development, see [Docker service containers]({{site.baseurl}}/cloud/docker/docker-containers-service.html#fpm-container) for information about using a custom `php.ini` file in a Docker environment. From ea3ab8001c8f37ef4fece1ce8546cdd473dbf01f Mon Sep 17 00:00:00 2001 From: Jeff Matthews Date: Wed, 28 Oct 2020 11:07:22 -0500 Subject: [PATCH 088/143] Specify supported version of Composer (latest 1.x) (#8142) * Added supported Compsoer version * Wordsmithing * Just doc what we don't support --- src/guides/v2.3/install-gde/system-requirements-tech.md | 4 +++- src/guides/v2.4/install-gde/system-requirements-tech.md | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/guides/v2.3/install-gde/system-requirements-tech.md b/src/guides/v2.3/install-gde/system-requirements-tech.md index dde2f596970..36652bcaad0 100644 --- a/src/guides/v2.3/install-gde/system-requirements-tech.md +++ b/src/guides/v2.3/install-gde/system-requirements-tech.md @@ -19,10 +19,12 @@ Magento is not supported on Microsoft Windows and macOS. Upgrading the Magento applications and extensions you obtain from Magento Marketplaces and other sources can require up to 2GB of RAM. If you are using a system with less than 2GB of RAM, we recommend you create a [swap file](https://support.magento.com/hc/en-us/articles/360032980432); otherwise, your upgrade might fail. -## Composer (latest stable version) +## Composer [Composer][] is required for developers who wish to contribute to the Magento 2 codebase or anyone who wishes to develop Magento extensions. +Magento does not support Composer 2.x. + ## Web servers * [Apache 2.4][] diff --git a/src/guides/v2.4/install-gde/system-requirements-tech.md b/src/guides/v2.4/install-gde/system-requirements-tech.md index bc6885abbfd..c06eace7ffd 100644 --- a/src/guides/v2.4/install-gde/system-requirements-tech.md +++ b/src/guides/v2.4/install-gde/system-requirements-tech.md @@ -19,10 +19,12 @@ Magento is not supported on Microsoft Windows and macOS. Upgrading the Magento applications and extensions you obtain from Magento Marketplaces and other sources can require up to 2GB of RAM. If you are using a system with less than 2GB of RAM, we recommend you create a [swap file](https://support.magento.com/hc/en-us/articles/360032980432); otherwise, your upgrade might fail. -## Composer (latest stable version) +## Composer [Composer][] is required for developers who wish to contribute to the Magento 2 codebase or anyone who wishes to develop Magento extensions. +Magento does not support Composer 2.x. + ## Web servers * [Apache 2.4][] From b48937b4a7ade90aa126c1e9b9ecb9d805e88d6a Mon Sep 17 00:00:00 2001 From: Barny Shergold Date: Wed, 28 Oct 2020 18:51:22 +0000 Subject: [PATCH 089/143] Updated MySQL to show setting is deprecated (#8137) * Updated MySQL to show setting is deprecated * Update src/guides/v2.4/install-gde/prereq/mysql.md Co-authored-by: Barny Shergold Co-authored-by: Margaret Eker --- src/guides/v2.3/install-gde/prereq/mysql.md | 6 ++++++ src/guides/v2.4/install-gde/prereq/mysql.md | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/src/guides/v2.3/install-gde/prereq/mysql.md b/src/guides/v2.3/install-gde/prereq/mysql.md index 3ccc2b76592..1b62f845309 100644 --- a/src/guides/v2.3/install-gde/prereq/mysql.md +++ b/src/guides/v2.3/install-gde/prereq/mysql.md @@ -414,6 +414,12 @@ To configure a MySQL database instance: If this setting is not enabled, `setup:db:status` will always report that `Declarative Schema is not up to date`. +{:.bs-callout-info} +The `explicit_defaults_for_timestamp` setting is deprecated. This setting controls deprecated TIMESTAMP behaviors that will be removed in a future MySQL release. When those behaviors are removed, the `explicit_defaults_for_timestamp` setting will be removed as well. + +{:.bs-callout-warning} +On Magento projects deployed on the Cloud platform, the `explicit_defaults_for_timestamp` setting for MySQL (MariaDB) defaults to *OFF* + {:.ref-header} Related topics diff --git a/src/guides/v2.4/install-gde/prereq/mysql.md b/src/guides/v2.4/install-gde/prereq/mysql.md index 73173bb7216..b6ece2c13f6 100644 --- a/src/guides/v2.4/install-gde/prereq/mysql.md +++ b/src/guides/v2.4/install-gde/prereq/mysql.md @@ -182,6 +182,12 @@ To configure a MySQL database instance: If this setting is not enabled, `setup:db:status` will always report that `Declarative Schema is not up to date`. +{:.bs-callout-info} +The `explicit_defaults_for_timestamp` setting is deprecated. This setting controls deprecated TIMESTAMP behaviors that will be removed in a future MySQL release. When those behaviors are removed, the `explicit_defaults_for_timestamp` setting will be removed as well. + +{:.bs-callout-warning} +On Magento projects deployed on the Cloud platform, the `explicit_defaults_for_timestamp` setting for MySQL (MariaDB) defaults to *OFF* + {:.ref-header} Related topics From b392fe4e15c0943f83d633a804d43bbeb2892905 Mon Sep 17 00:00:00 2001 From: Oleksandr Rykh Date: Wed, 28 Oct 2020 12:12:17 -0700 Subject: [PATCH 090/143] MQP Release 1.0.8 (#8140) * MQP Release 1.0.8 ## Purpose of this pull request Added RN for MQP v1.0.8 ## Affected DevDocs pages https://devdocs.magento.com/quality-patches/release-notes.html whatsnew Published [release notes](https://devdocs.magento.com/quality-patches/release-notes.html) for the 1.0.8 Magento Quality Patch (MQP) package release. * MQP Release 1.0.8 Fixed styles Co-authored-by: Jeff Matthews --- src/quality-patches/release-notes.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/quality-patches/release-notes.md b/src/quality-patches/release-notes.md index a3de00b0eaf..c387ef8d685 100644 --- a/src/quality-patches/release-notes.md +++ b/src/quality-patches/release-notes.md @@ -19,6 +19,16 @@ The [Magento Quality Patches](https://github.com/magento/quality-patches) packag See [Apply patches]({{ site.baseurl }}/guides/v2.4/comp-mgr/patching/mqp.html) for instructions on applying patches to your Magento projects. See [Patches available in MQP tool](https://support.magento.com/hc/en-us/sections/360010506631-Patches-available-in-MQP-tool-) for additional patch details. +## v1.0.8 + +- **MDVA-31242** _(for Magento `>=2.3.0 <2.4.1` with B2B extension)_—Fixes the issue where a wrong currency sign is displayed in Credit Memo grid. +- **MDVA-31295** _(for Magento `>=2.3.0 <2.4.2`)_—Fixes the issue where reward points are not calculated when a partial order is completed and items are taxed. +- **MDVA-30112** _(for Magento `>=2.3.4 <2.4.2`)_—Fixes the issue where if the number of orders exceeds the "bunch-size" value, Magento considers the orders with "pending" status as inconsistencies. +- **MDVA-31150** _(for Magento `>=2.3.0 <2.4.2`)_—Fixes the issue where the store credit and gift card balances are not returned by the GET Invoice Rest API call, when the invoice was posted by Rest API call and the order was partially paid by store credit and gift card accounts. +- **MDVA-30963** _(for Magento `>=2.3.2 <2.4.2`)_—Fixes the issue where products filtering results set to only contain values specified for "All store views" scope in Admin, include products with values overridden on the store view level. +- **MDVA-29954** _(for Magento `>=2.3.0 <2.3.6 || 2.4.0 || 2.4.2` with B2B extension)_—Fixes the issue where the "New Company Registration Request" and "You've been linked to a company" emails are sent from the wrong address. +- **MDVA-28357** _(for Magento `>=2.3.2 <2.3.6 || >=2.4.0 <2.4.1`)_—Replaces the standard analyzer with a custom analyzer with keyword tokenizer for the SKU field in the ElasticSearch index, to make wildcard search queries work with SKUs containing a hyphen ("-"). + ## v1.0.7 - **MDVA-30972** _(for Magento `>=2.3.0 <2.4.2`)_—Fixes the issue where custom order status was changed to Processing after partial shipment creation using WebApi. From c7e03697aaa36ed7363fefbbf303609dd31b8af8 Mon Sep 17 00:00:00 2001 From: jfrontain Date: Thu, 29 Oct 2020 08:06:29 -0500 Subject: [PATCH 091/143] added links to two hot fixes --- src/guides/v2.3/release-notes/commerce-2-3-6.md | 4 ++-- src/guides/v2.3/release-notes/open-source-2-3-6.md | 4 ++-- src/guides/v2.4/release-notes/commerce-2-4-1.md | 4 ++-- src/guides/v2.4/release-notes/open-source-2-4-1.md | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/guides/v2.3/release-notes/commerce-2-3-6.md b/src/guides/v2.3/release-notes/commerce-2-3-6.md index 77f543727b0..172f3b7687c 100644 --- a/src/guides/v2.3/release-notes/commerce-2-3-6.md +++ b/src/guides/v2.3/release-notes/commerce-2-3-6.md @@ -820,11 +820,11 @@ We have fixed hundreds of issues in the Magento 2.3.6 core code. ## Known issues -**Issue**: The new CAPTCHA feature for checkout does not work as expected on the Place Order page when using third-party payment providers. Merchants running Magento 2.3.6 or 2.4.1 who have enabled CAPTCHA protection on the Place Order storefront page will see this error when checking out using a third-party payment provider such as PayPal: `Please provide CAPTCHA code and try again`. A fix for this issue be available in the next few weeks, and will be included in our next quarterly patch (Q12021). Please contact Support for additional information. +**Issue**: The new CAPTCHA feature for checkout does not work as expected on the Place Order page when using third-party payment providers. Merchants running Magento 2.3.6 or 2.4.1 who have enabled CAPTCHA protection on the Place Order storefront page will see this error when checking out using a third-party payment provider such as PayPal: `Please provide CAPTCHA code and try again`. **Workaround**: A fix for this issue is now available. See the [Magento Commerce v2.3.6/2.4.1 CAPTCHA in checkout not working](https://support.magento.com/hc/en-us/articles/360051235772) Knowledge Base article. A fix will also be included in our next quarterly patch (Q12021). **Issue**: Merchants upgrading their stores from 2.3.5-p2 to 2.3.6 will note that two module versions downgrade. These messages reflect the incomplete delivery of two security fixes to the 2.3.x quarterly patches. These fixes for low severity issues are included in Magento 2.3.5-p2, 2.4.1, and 2.4.0-p1 but are missing from Magento 2.3.6. No hot fixes will be provided. These fixes will be merged along with the other security fixes in Magento 2.3.6-p1, which is scheduled for Q12021. -**Issue**: The **Submit** button on the Create New Account page remains disabled if a shopper has entered invalid data. This prevents shoppers from re-attempting to create an account after making an error. [GitHub-30513](https://github.com/magento/magento2/issues/30513) +**Issue**: The **Create an Account** button on the Create New Account page remains disabled if a shopper has entered invalid data. This prevents shoppers from re-attempting to create an account after making an error. **Workaround**: Apply patch `MC-38509`. A fix will also be included in our next quarterly releases (2.4.2, 2.4.1-p1 and 2.3.6-p1), which are scheduled for release in Q1 2021. See the [2.4.1 and 2.3.6 create an account button disabled hotfix](https://support.magento.com/hc/en-us/articles/360051130212) Knowledge Base article. [GitHub-30513](https://github.com/magento/magento2/issues/30513) **Issue**: Merchants cannot log in to dotdigital from the Admin when dotdigital is enabled. See the [It's impossible to login in the dotdigital via admin panel when dotdigital account is enabled](https://support.magento.com/hc/en-us/articles/360050092291) Knowledge Base article. diff --git a/src/guides/v2.3/release-notes/open-source-2-3-6.md b/src/guides/v2.3/release-notes/open-source-2-3-6.md index 3a7be56ce7e..e6748655f49 100644 --- a/src/guides/v2.3/release-notes/open-source-2-3-6.md +++ b/src/guides/v2.3/release-notes/open-source-2-3-6.md @@ -681,11 +681,11 @@ We have fixed hundreds of issues in the Magento 2.3.6 core code. ## Known issues -**Issue**: The new CAPTCHA feature for checkout does not work as expected on the Place Order page when using third-party payment providers. Merchants running Magento 2.3.6 or 2.4.1 who have enabled CAPTCHA protection on the Place Order storefront page will see this error when checking out using a third-party payment provider such as PayPal: `Please provide CAPTCHA code and try again`. A fix for this issue be available in the next few weeks, and will be included in our next quarterly patch (Q12021). Please contact Support for additional information. +**Issue**: The new CAPTCHA feature for checkout does not work as expected on the Place Order page when using third-party payment providers. Merchants running Magento 2.3.6 or 2.4.1 who have enabled CAPTCHA protection on the Place Order storefront page will see this error when checking out using a third-party payment provider such as PayPal: `Please provide CAPTCHA code and try again`. **Workaround**: A fix for this issue is now available. See the [Magento Commerce v2.3.6/2.4.1 CAPTCHA in checkout not working](https://support.magento.com/hc/en-us/articles/360051235772) Knowledge Base article. A fix will also be included in our next quarterly patch (Q12021). **Issue**: Merchants upgrading their stores from 2.3.5-p2 to 2.3.6 will note that two module versions downgrade. These messages reflect the incomplete delivery of two security fixes to the 2.3.x quarterly patches. These fixes for low severity issues are included in Magento 2.3.5-p2, 2.4.1, and 2.4.0-p1 but are missing from Magento 2.3.6. No hot fixes will be provided. These fixes will be merged along with the other security fixes in Magento 2.3.6-p1, which is scheduled for Q12021. -**Issue**: The **Submit** button on the Create New Account page remains disabled if a shopper has entered invalid data. This prevents shoppers from re-attempting to create an account after making an error. [GitHub-30513](https://github.com/magento/magento2/issues/30513) +**Issue**: The **Create an Account** button on the Create New Account page remains disabled if a shopper has entered invalid data. This prevents shoppers from re-attempting to create an account after making an error. **Workaround**: Apply patch `MC-38509`. A fix will also be included in our next quarterly releases (2.4.2, 2.4.1-p1 and 2.3.6-p1), which are scheduled for release in Q1 2021. See the [2.4.1 and 2.3.6 create an account button disabled hotfix](https://support.magento.com/hc/en-us/articles/360051130212) Knowledge Base article. [GitHub-30513](https://github.com/magento/magento2/issues/30513) **Issue**: Merchants cannot log in to dotdigital from the Admin when dotdigital is enabled. See the [It's impossible to login in the dotdigital via admin panel when dotdigital account is enabled](https://support.magento.com/hc/en-us/articles/360050092291) Knowledge Base article. diff --git a/src/guides/v2.4/release-notes/commerce-2-4-1.md b/src/guides/v2.4/release-notes/commerce-2-4-1.md index 5d9b5c3ad0b..0fa7bb9d6dc 100644 --- a/src/guides/v2.4/release-notes/commerce-2-4-1.md +++ b/src/guides/v2.4/release-notes/commerce-2-4-1.md @@ -1906,11 +1906,11 @@ We have fixed hundreds of issues in the Magento 2.4.1 core code. ## Known issues -**Issue**: The new CAPTCHA feature for checkout does not work as expected on the Place Order page when using third-party payment providers. Merchants running Magento 2.3.6 or 2.4.1 who have enabled CAPTCHA protection on the Place Order storefront page will see this error when checking out using a third-party payment provider such as PayPal: `Please provide CAPTCHA code and try again`. A fix for this issue be available in the next few weeks, and will be included in our next quarterly patch (Q12021). Please contact Support for additional information. +**Issue**: The new CAPTCHA feature for checkout does not work as expected on the Place Order page when using third-party payment providers. Merchants running Magento 2.3.6 or 2.4.1 who have enabled CAPTCHA protection on the Place Order storefront page will see this error when checking out using a third-party payment provider such as PayPal: `Please provide CAPTCHA code and try again`. **Workaround**: A fix for this issue is now available. See the [Magento Commerce v2.3.6/2.4.1 CAPTCHA in checkout not working](https://support.magento.com/hc/en-us/articles/360051235772) Knowledge Base article. A fix will also be included in our next quarterly patch (Q12021). **Issue**: Users without administrator privileges cannot currently set up their personal 2FA access. 2FA as implemented in Magento includes two ACL roles. One role affects global system configuration and it is needed only when configuring the system. The second ACL role affects individual user 2FA accounts. An admin user must configure this second type of 2FA ACL. **Workaround**: After the user has logged in and seen the Access denied screen, they can visit `https:////tfa/tfa/requestconfig/` to force configuration. Note: We do not recommend disabling security settings. However, this workaround is effective only when Admin URL secret keys are disabled. -**Issue**: The **Submit** button on the Create New Account page remains disabled if a shopper has entered invalid data. This prevents shoppers from re-attempting to create an account after making an error. [GitHub-30513](https://github.com/magento/magento2/issues/30513) +**Issue**: The **Create an Account** button on the Create New Account page remains disabled if a shopper has entered invalid data. This prevents shoppers from re-attempting to create an account after making an error. **Workaround**: Apply patch `MC-38509`. A fix will also be included in our next quarterly releases (2.4.2, 2.4.1-p1 and 2.3.6-p1), which are scheduled for release in Q1 2021. See the [2.4.1 and 2.3.6 create an account button disabled hotfix](https://support.magento.com/hc/en-us/articles/360051130212) Knowledge Base article. [GitHub-30513](https://github.com/magento/magento2/issues/30513) **Issue**: Merchants cannot log in to dotdigital from the Admin in Safari when dotdigital is enabled. See the [It's impossible to login in the dotdigital via admin panel when dotdigital account is enabled](https://support.magento.com/hc/en-us/articles/360050092291) Knowledge Base article. diff --git a/src/guides/v2.4/release-notes/open-source-2-4-1.md b/src/guides/v2.4/release-notes/open-source-2-4-1.md index 8e9675d625f..3c275236c4f 100644 --- a/src/guides/v2.4/release-notes/open-source-2-4-1.md +++ b/src/guides/v2.4/release-notes/open-source-2-4-1.md @@ -1648,11 +1648,11 @@ _Fix submitted by Michał Derlatka in pull request [29256](https://github.com/ma ## Known issues -**Issue**: The new CAPTCHA feature for checkout does not work as expected on the Place Order page when using third-party payment providers. Merchants running Magento 2.3.6 or 2.4.1 who have enabled CAPTCHA protection on the Place Order storefront page will see this error when checking out using a third-party payment provider such as PayPal: `Please provide CAPTCHA code and try again`. A fix for this issue be available in the next few weeks, and will be included in our next quarterly patch (Q12021). Please contact Support for additional information. +**Issue**: The new CAPTCHA feature for checkout does not work as expected on the Place Order page when using third-party payment providers. Merchants running Magento 2.3.6 or 2.4.1 who have enabled CAPTCHA protection on the Place Order storefront page will see this error when checking out using a third-party payment provider such as PayPal: `Please provide CAPTCHA code and try again`. **Workaround**: A fix for this issue is now available. See the [Magento Commerce v2.3.6/2.4.1 CAPTCHA in checkout not working](https://support.magento.com/hc/en-us/articles/360051235772) Knowledge Base article. A fix will also be included in our next quarterly patch (Q12021). **Issue**: Users without administrator privileges cannot currently set up their personal 2FA access. 2FA as implemented in Magento includes two ACL roles. One role affects global system configuration and it is needed only when configuring the system. The second ACL role affects individual user 2FA accounts. An admin user must configure this second type of 2FA ACL. **Workaround**: After the user has logged in and seen the Access denied screen, they can visit `https:////tfa/tfa/requestconfig/` to force configuration. Note: We do not recommend disabling security settings. However, this workaround is effective only when Admin URL secret keys are disabled. -**Issue**: The **Submit** button on the Create New Account page remains disabled if a shopper has entered invalid data. This prevents shoppers from re-attempting to create an account after making an error. [GitHub-30513](https://github.com/magento/magento2/issues/30513) +**Issue**: The **Create an Account** button on the Create New Account page remains disabled if a shopper has entered invalid data. This prevents shoppers from re-attempting to create an account after making an error. **Workaround**: Apply patch `MC-38509`. A fix will also be included in our next quarterly releases (2.4.2, 2.4.1-p1 and 2.3.6-p1), which are scheduled for release in Q1 2021. See the [2.4.1 and 2.3.6 create an account button disabled hotfix](https://support.magento.com/hc/en-us/articles/360051130212) Knowledge Base article. [GitHub-30513](https://github.com/magento/magento2/issues/30513) **Issue**: Merchants cannot log in to dotdigital from the Admin in Safari when dotdigital is enabled. See the [It's impossible to login in the dotdigital via admin panel when dotdigital account is enabled](https://support.magento.com/hc/en-us/articles/360050092291) Knowledge Base article. From 6dc186ac494a5e4ed7f948c7b4e341cc19f85095 Mon Sep 17 00:00:00 2001 From: Donald Booth Date: Thu, 29 Oct 2020 10:47:57 -0400 Subject: [PATCH 092/143] Cleaning up sys reqs --- src/guides/v2.4/install-gde/system-requirements_tls1-2.md | 1 - 1 file changed, 1 deletion(-) delete mode 120000 src/guides/v2.4/install-gde/system-requirements_tls1-2.md diff --git a/src/guides/v2.4/install-gde/system-requirements_tls1-2.md b/src/guides/v2.4/install-gde/system-requirements_tls1-2.md deleted file mode 120000 index cee4e09ff3c..00000000000 --- a/src/guides/v2.4/install-gde/system-requirements_tls1-2.md +++ /dev/null @@ -1 +0,0 @@ -../../v2.3/install-gde/system-requirements_tls1-2.md \ No newline at end of file From a8bbb891cde4f4d3e5caa55263e7da45fcba6698 Mon Sep 17 00:00:00 2001 From: Donald Booth Date: Thu, 29 Oct 2020 10:48:13 -0400 Subject: [PATCH 093/143] Clean sys reqs --- src/_data/toc/installation-guide.yml | 22 +-- src/_data/whats-new.yml | 22 +-- src/_includes/install/flow-diagram-24.md | 2 +- src/_includes/install/flow-diagram.md | 2 +- src/_includes/install/tls-repo_24.md | 19 -- src/guides/v2.3/architecture/extensibility.md | 2 +- src/guides/v2.3/architecture/tech-stack.md | 2 +- src/guides/v2.3/comp-mgr/cli/cli-upgrade.md | 2 +- src/guides/v2.3/install-gde/prereq/mysql.md | 2 +- src/guides/v2.3/install-gde/prereq/nginx.md | 2 +- .../install-gde/prereq/prereq-overview.md | 2 +- .../install-gde/system-requirements-tech.md | 163 ------------------ .../v2.3/install-gde/system-requirements.md | 161 ++++++++++++++++- .../system-requirements_browsers.md | 15 -- .../system-requirements_repo-tls1-2.md | 46 ----- .../install-gde/system-requirements_tls1-2.md | 16 -- .../trouble/tshoot_access-browser.md | 2 +- src/guides/v2.3/migration/migration-plan.md | 2 +- .../performance-best-practices/software.md | 4 +- .../ReleaseNotes2.3.0Commerce.md | 2 +- .../ReleaseNotes2.3.0OpenSource.md | 2 +- .../release-notes-2-3-3-commerce.md | 2 +- .../release-notes-2-3-3-open-source.md | 2 +- .../release-notes-2-3-4-commerce.md | 2 +- .../release-notes-2-3-4-open-source.md | 2 +- src/guides/v2.4/architecture/tech-stack.md | 2 +- src/guides/v2.4/comp-mgr/cli/cli-upgrade.md | 2 +- src/guides/v2.4/install-gde/prereq/mysql.md | 2 +- src/guides/v2.4/install-gde/prereq/nginx.md | 2 +- .../install-gde/prereq/prereq-overview.md | 2 +- .../install-gde/system-requirements-tech.md | 162 ----------------- .../v2.4/install-gde/system-requirements.md | 160 ++++++++++++++++- .../system-requirements_browsers.md | 13 -- .../system-requirements_repo-tls1-2.md | 46 ----- .../performance-best-practices/software.md | 4 +- .../release-notes-2-4-0-commerce.md | 4 +- .../release-notes-2-4-0-open-source.md | 4 +- 37 files changed, 350 insertions(+), 553 deletions(-) delete mode 100644 src/_includes/install/tls-repo_24.md delete mode 100644 src/guides/v2.3/install-gde/system-requirements-tech.md delete mode 100644 src/guides/v2.3/install-gde/system-requirements_browsers.md delete mode 100644 src/guides/v2.3/install-gde/system-requirements_repo-tls1-2.md delete mode 100644 src/guides/v2.3/install-gde/system-requirements_tls1-2.md delete mode 100644 src/guides/v2.4/install-gde/system-requirements-tech.md delete mode 100644 src/guides/v2.4/install-gde/system-requirements_browsers.md delete mode 100644 src/guides/v2.4/install-gde/system-requirements_repo-tls1-2.md diff --git a/src/_data/toc/installation-guide.yml b/src/_data/toc/installation-guide.yml index 04c99da6738..50f8069e6ac 100644 --- a/src/_data/toc/installation-guide.yml +++ b/src/_data/toc/installation-guide.yml @@ -6,6 +6,9 @@ pages: - label: Installation flow diagram url: /install-gde/install-flow-diagram.html + - label: Magento system requirements + url: /install-gde/system-requirements.html + - label: Just the basics children: @@ -42,25 +45,6 @@ pages: - label: Installation roadmap (reference) url: /install-gde/install-roadmap_part1.html - - label: Magento system requirements - url: /install-gde/system-requirements.html - children: - - - label: Magento technology stack requirements - url: /install-gde/system-requirements-tech.html - - - label: Supported browsers - url: /install-gde/system-requirements_browsers.html - - - label: Transport Layer Security (TLS) requirements - children: - - - label: TLS 1.2 requirement for PayPal - url: /install-gde/system-requirements_tls1-2.html - - - label: TLS requirement for repo.magento.com - url: /install-gde/system-requirements_repo-tls1-2.html - - label: Prerequisites url: /install-gde/prereq/prereq-overview.html children: diff --git a/src/_data/whats-new.yml b/src/_data/whats-new.yml index b079c4cd6fa..1aeb796889a 100644 --- a/src/_data/whats-new.yml +++ b/src/_data/whats-new.yml @@ -136,7 +136,7 @@ entries: link: https://github.com/magento/devdocs/pull/7714 contributor: keharper profile: https://github.com/keharper -- description: Added a [deprecation notice](https://devdocs.magento.com/guides/v2.3/install-gde/system-requirements-tech.html#technologies-magento-can-use) +- description: Added a [deprecation notice](https://devdocs.magento.com/guides/v2.3/install-gde/system-requirements.html#technologies-magento-can-use) for Elasticsearch 6.x. versions: 2.3.6 type: Technical @@ -574,7 +574,7 @@ entries: type: Major Update date: July 22, 2020 link: https://github.com/magento/devdocs/pull/7576 -- description: Updated Magento [system requirements](https://devdocs.magento.com/guides/v2.3/install-gde/system-requirements-tech.html) +- description: Updated Magento [system requirements](https://devdocs.magento.com/guides/v2.3/install-gde/system-requirements.html) for MySQL, PHP, and Redis. versions: 2.3.x type: Technical @@ -603,7 +603,7 @@ entries: type: Major Update date: July 17, 2020 link: https://github.com/magento/devdocs/pull/7533 -- description: Updated Magento [system requirements](https://devdocs.magento.com/guides/v2.4/install-gde/system-requirements-tech.html) +- description: Updated Magento [system requirements](https://devdocs.magento.com/guides/v2.4/install-gde/system-requirements.html) for MySQL, PHP, and Redis. versions: 2.4.0 type: Technical @@ -749,7 +749,7 @@ entries: type: New Topic date: June 23, 2020 link: https://github.com/magento/devdocs/pull/7425 -- description: Added Microsoft Edge to the list of [supported browsers](https://devdocs.magento.com/guides/v2.4/install-gde/system-requirements_browsers.html) +- description: Added Microsoft Edge to the list of [supported browsers](https://devdocs.magento.com/guides/v2.4/install-gde/system-requirement.html) for 2.4.0, which was mistakenly removed. versions: 2.4.0 type: Technical @@ -773,7 +773,7 @@ entries: type: Major Update date: June 17, 2020 link: https://github.com/magento/devdocs/pull/7331 -- description: Removed Internet Explorer 11 from the list of [supported web browsers](https://devdocs.magento.com/guides/v2.4/install-gde/system-requirements_browsers.html). +- description: Removed Internet Explorer 11 from the list of [supported web browsers](https://devdocs.magento.com/guides/v2.4/install-gde/system-requirements.html). versions: 2.4.0 type: Technical date: June 17, 2020 @@ -822,7 +822,7 @@ entries: type: New Topic date: June 12, 2020 link: https://github.com/magento/devdocs/pull/7383 -- description: Clarified that you must install and configure [Elasticsearch 7.6.x](https://devdocs.magento.com/guides/v2.4/install-gde/system-requirements-tech.html) +- description: Clarified that you must install and configure [Elasticsearch 7.6.x](https://devdocs.magento.com/guides/v2.4/install-gde/system-requirements.html) before upgrading to Magento 2.4.0. versions: 2.4.0 type: Major Update @@ -895,7 +895,7 @@ entries: type: Major Update date: May 28, 2020 link: https://github.com/magento/devdocs/pull/7236 -- description: Updated the [supported versions of PHP](https://devdocs.magento.com/guides/v2.4/install-gde/system-requirements-tech.html#php) +- description: Updated the [supported versions of PHP](https://devdocs.magento.com/guides/v2.4/install-gde/system-requirements.html#php) to 7.3 and 7.4. versions: 2.4.0 type: Major Update @@ -1074,7 +1074,7 @@ entries: type: Major Update date: April 29, 2020 link: https://github.com/magento/devdocs/pull/7120 -- description: Updated [PHP requirements](https://devdocs.magento.com/guides/v2.3/install-gde/system-requirements-tech.html#php) +- description: Updated [PHP requirements](https://devdocs.magento.com/guides/v2.3/install-gde/system-requirements.html#php) and [packages](https://devdocs.magento.com/guides/v2.3/release-notes/packages-open-source.html). versions: 2.3.5 type: Major Update @@ -1687,7 +1687,7 @@ entries: type: Technical changes date: January 28, 2020 link: https://github.com/magento/devdocs/pull/6468 -- description: Updated the Magento [system requirements](https://devdocs.magento.com/guides/v2.3/install-gde/system-requirements-tech.html) +- description: Updated the Magento [system requirements](https://devdocs.magento.com/guides/v2.3/install-gde/system-requirements.html) regarding end-of-life for PHP 7.1. versions: 2.3.4 type: Technical changes @@ -3503,7 +3503,7 @@ entries: - description: Added information about [Elasticsearch 6](https://devdocs.magento.com/guides/v2.3/config-guide/elasticsearch/es-overview.html#es-spt-versions) support.
    Added Elasticsearch 6 information to [Configure Magento to use Elasticsearch](https://devdocs.magento.com/guides/v2.3/config-guide/elasticsearch/configure-magento.html)
    Added [Change Elasticsearch Client](https://devdocs.magento.com/guides/v2.3/config-guide/elasticsearch/es-downgrade.html) - topic.
    Updated the [Technologies Magento can use](https://devdocs.magento.com/guides/v2.3/install-gde/system-requirements-tech.html#technologies-magento-can-use) + topic.
    Updated the [Technologies Magento can use](https://devdocs.magento.com/guides/v2.3/install-gde/system-requirements.html#technologies-magento-can-use) topic with new Elasticsearch 6 support. versions: 2.2.x, 2.3.x type: Major update @@ -3636,7 +3636,7 @@ entries: type: Technical changes date: March 5, 2019 link: https://github.com/magento/devdocs/pull/3865 -- description: Added a section about [Required System Dependencies](https://devdocs.magento.com/guides/v2.3/install-gde/system-requirements-tech.html#required-system-dependencies)
    Added +- description: Added a section about [Required System Dependencies](https://devdocs.magento.com/guides/v2.3/install-gde/system-requirements.html#required-system-dependencies)
    Added a section about Unsupported Operating Systems versions: 2.3.x type: Major update diff --git a/src/_includes/install/flow-diagram-24.md b/src/_includes/install/flow-diagram-24.md index 0590cf779b4..e89b69ea1bb 100644 --- a/src/_includes/install/flow-diagram-24.md +++ b/src/_includes/install/flow-diagram-24.md @@ -4,7 +4,7 @@ The diagram shows the following: 1. Set up your server environment. - Install the prerequisite software, including PHP, Apache, MySQL, and Elasticsearch. Consult the [system requirements]({{ page.baseurl }}/install-gde/system-requirements-tech.html) for specific information. + Install the prerequisite software, including PHP, Apache, MySQL, and Elasticsearch. Consult the [system requirements]({{ page.baseurl }}/install-gde/system-requirements.html) for specific information. 1. Get the Magento software. diff --git a/src/_includes/install/flow-diagram.md b/src/_includes/install/flow-diagram.md index 93a6c47ebe7..b05a239af53 100644 --- a/src/_includes/install/flow-diagram.md +++ b/src/_includes/install/flow-diagram.md @@ -4,7 +4,7 @@ The diagram shows the following: 1. Set up your server environment. - Install the prerequisite software, including PHP, Apache, and MySQL. Consult the [system requirements]({{ page.baseurl }}/install-gde/system-requirements-tech.html) for specific information. + Install the prerequisite software, including PHP, Apache, and MySQL. Consult the [system requirements]({{ page.baseurl }}/install-gde/system-requirements.html) for specific information. 1. Get the Magento software. diff --git a/src/_includes/install/tls-repo_24.md b/src/_includes/install/tls-repo_24.md deleted file mode 100644 index f265789e81b..00000000000 --- a/src/_includes/install/tls-repo_24.md +++ /dev/null @@ -1,19 +0,0 @@ -The Magento software and component repository, `repo.magento.com`, recently started requiring Transport Layer Security (TLS) 1.1 or later. - -The [PCI Security Standards Council](https://en.wikipedia.org/wiki/Payment_Card_Industry_Security_Standards_Council)} removed SSL/TLS 1.0 as an example of strong cryptography from the [PCI Data Security Standard (PCI DSS)](https://www.pcisecuritystandards.org/pci_security) version 3.1, stating that it can no longer be used as a security control after June 30, 2016. - -For details, see [Date Change for Migrating from SSL and Early TLS](http://blog.pcisecuritystandards.org/migrating-from-ssl-and-early-tls). - -### Symptoms - -If you have an earlier version of TLS, you'll see the errors discussed in this section. - -#### Downloading a Magento metapackage - -The following error displays if you attempt to run `composer create-project` to get a Magento metapackage: - -```terminal -[Composer\Downloader\TransportException] -The "https://repo.magento.com/packages.json" file could not be downloaded: Failed to enable crypto -failed to open stream: operation failed -``` diff --git a/src/guides/v2.3/architecture/extensibility.md b/src/guides/v2.3/architecture/extensibility.md index 7a20b2a87a8..5795e9f33a1 100644 --- a/src/guides/v2.3/architecture/extensibility.md +++ b/src/guides/v2.3/architecture/extensibility.md @@ -109,7 +109,7 @@ Related topics [PHP Developer Guide]: {{page.baseurl}}/extension-dev-guide/bk-extension-dev-guide.html [Magento Marketplace]: https://marketplace.magento.com/ -[Technology Stack]: {{page.baseurl}}/install-gde/system-requirements-tech.html +[Technology Stack]: {{page.baseurl}}/install-gde/system-requirements.html [Plug-ins]: {{page.baseurl}}/extension-dev-guide/plugins.html [Service layer]: {{page.baseurl}}/architecture/archi_perspectives/service_layer.html [Getting Started with Magento Web APIs]: {{page.baseurl}}/get-started/bk-get-started-api.html diff --git a/src/guides/v2.3/architecture/tech-stack.md b/src/guides/v2.3/architecture/tech-stack.md index ffe969edecf..a5de1080eab 100644 --- a/src/guides/v2.3/architecture/tech-stack.md +++ b/src/guides/v2.3/architecture/tech-stack.md @@ -5,7 +5,7 @@ title: Technology stack ## Overview -This page summarizes the technologies we use. For more detailed information, see the [System Requirements]({{page.baseurl}}/install-gde/system-requirements-tech.html). +This page summarizes the technologies we use. For more detailed information, see the [System Requirements]({{page.baseurl}}/install-gde/system-requirements.html). Magento's highly modular structure includes the following open-source technologies. diff --git a/src/guides/v2.3/comp-mgr/cli/cli-upgrade.md b/src/guides/v2.3/comp-mgr/cli/cli-upgrade.md index 92572b3461c..4ba50116e41 100644 --- a/src/guides/v2.3/comp-mgr/cli/cli-upgrade.md +++ b/src/guides/v2.3/comp-mgr/cli/cli-upgrade.md @@ -260,7 +260,7 @@ All scenarios require that you comply with the [Prerequisites]. [file system ownership and permissions]: {{ page.baseurl }}/install-gde/prereq/file-system-perms.html [metapackage]: https://glossary.magento.com/metapackage [Prerequisites]: #prerequisites -[system requirements]: {{ page.baseurl }}/install-gde/system-requirements-tech.html +[system requirements]: {{ page.baseurl }}/install-gde/system-requirements.html [System Upgrade utility]: {{ page.baseurl }}/comp-mgr/upgrader/upgrade-start.html [Update and upgrade checklist]: ../prereq/prereq_compman-checklist.html [Update the Magento application]: {{ page.baseurl }}/install-gde/install/cli/dev_update-magento.html diff --git a/src/guides/v2.3/install-gde/prereq/mysql.md b/src/guides/v2.3/install-gde/prereq/mysql.md index 1b62f845309..984427f42c3 100644 --- a/src/guides/v2.3/install-gde/prereq/mysql.md +++ b/src/guides/v2.3/install-gde/prereq/mysql.md @@ -17,7 +17,7 @@ If you are new to all this and need some help getting started, we suggest the fo ## General guidelines {#instgde-prereq-mysql-intro} {:.bs-callout-info} -See [Magento technology stack requirements]({{ page.baseurl }}/install-gde/system-requirements-tech.html#database) for supported versions of MySQL. +See [Magento technology stack requirements]({{ page.baseurl }}/install-gde/system-requirements.html#database) for supported versions of MySQL. Magento _strongly_ recommends you observe the following standard when you set up your Magento database: diff --git a/src/guides/v2.3/install-gde/prereq/nginx.md b/src/guides/v2.3/install-gde/prereq/nginx.md index d54bcd19cea..9b6ef9aa920 100644 --- a/src/guides/v2.3/install-gde/prereq/nginx.md +++ b/src/guides/v2.3/install-gde/prereq/nginx.md @@ -48,7 +48,7 @@ To install and configure `php-fpm`: ``` {:.bs-callout-info} - This command installs the latest available version of PHP 7.3.X. See [Magento technology stack requirements]({{ page.baseurl }}/install-gde/system-requirements-tech.html) for supported PHP versions. + This command installs the latest available version of PHP 7.3.X. See [Magento technology stack requirements]({{ page.baseurl }}/install-gde/system-requirements.html) for supported PHP versions. 1. Open the `php.ini` files in an editor: diff --git a/src/guides/v2.3/install-gde/prereq/prereq-overview.md b/src/guides/v2.3/install-gde/prereq/prereq-overview.md index 132c90a53ee..184d6351bde 100644 --- a/src/guides/v2.3/install-gde/prereq/prereq-overview.md +++ b/src/guides/v2.3/install-gde/prereq/prereq-overview.md @@ -83,7 +83,7 @@ For example: mysql -u magento -p ``` -Check you have the correct version of MySQL for the version of Magento you are installing, [Check Here For Supported Versions]({{ page.baseurl }}/install-gde/system-requirements-tech.html#database). The following result indicates the version you are running. +Check you have the correct version of MySQL for the version of Magento you are installing, [Check Here For Supported Versions]({{ page.baseurl }}/install-gde/system-requirements.html#database). The following result indicates the version you are running. ```terminal Welcome to the MySQL monitor. Commands end with ; or \g. diff --git a/src/guides/v2.3/install-gde/system-requirements-tech.md b/src/guides/v2.3/install-gde/system-requirements-tech.md deleted file mode 100644 index 36652bcaad0..00000000000 --- a/src/guides/v2.3/install-gde/system-requirements-tech.md +++ /dev/null @@ -1,163 +0,0 @@ ---- -group: installation-guide -title: Magento 2.3 technology stack requirements -functional_areas: - - Install - - System - - Setup ---- - -{:.bs-callout-info} -All of the requirements described here apply to the latest patch release of Magento 2.3. - -## Operating systems (Linux x86-64) - -Linux distributions, such as RedHat Enterprise Linux (RHEL), CentOS, Ubuntu, Debian, and similar. -Magento is not supported on Microsoft Windows and macOS. - -## Memory requirement - -Upgrading the Magento applications and extensions you obtain from Magento Marketplaces and other sources can require up to 2GB of RAM. If you are using a system with less than 2GB of RAM, we recommend you create a [swap file](https://support.magento.com/hc/en-us/articles/360032980432); otherwise, your upgrade might fail. - -## Composer - -[Composer][] is required for developers who wish to contribute to the Magento 2 codebase or anyone who wishes to develop Magento extensions. - -Magento does not support Composer 2.x. - -## Web servers - -* [Apache 2.4][] - - In addition, you must enable the Apache `mod_rewrite` and `mod_version` modules. The [`mod_rewrite`][] module enables the server to perform URL rewriting. The [`mod_version`][] module provides flexible version checking for different `httpd` versions. For more information, see [our Apache documentation][]. - -* [nginx 1.x][] - -## Database - -* MySQL 5.7 for on-premise installations -* MariaDB 10.2 for {{site.data.var.ece}} projects - -Magento is also compatible with, but has not been tested and is not recommended, with MySQL 5.6, MariaDB 10.1, and Percona 5.7. - -{:.bs-callout-info} -Magento only uses MySQL features compatible with MariaDB. MariaDB may not be compatible with all MySQL features, however, so be sure to research compatibility issues before using a feature in your Magento module. - -## PHP - -{% include install/php-versions-2.3.md %} - -### Required PHP extensions - -{:.bs-callout-info} -The [PHP installation instructions][] include a step for installing these extensions. - -{:.bs-callout-warning} -If you install Magento via cloning from the [GitHub](https://github.com/magento/magento2) repository then make sure you have the [ext-sockets](https://github.com/php-amqplib/php-amqplib/blob/master/CHANGELOG.md#281---2018-11-13) installed on your instance. - - -{% include install/php-extensions-template.md %} - -Refer to [official PHP documentation][] for installation details. - -### PHP OPcache - -We strongly recommend you verify that [PHP OPcache][] is enabled for performance reasons. The OPcache is enabled in many PHP distributions. To verify if it is installed, see our [PHP documentation][]. - -If you must install it separately, see the [PHP OPcache documentation][]. - -### PHP settings - -We recommend particular PHP configuration settings, such as `memory_limit`, that can avoid common problems when using Magento. - -For more information, see [Required PHP settings][]. - -## SSL - -* A valid [security certificate][] is required for HTTPS. -* Self-signed SSL certificates are not supported. -* Transport Layer Security (TLS) requirement - PayPal and `repo.magento.com` both require TLS 1.2 or later: - - * [More information about PayPal][] - -### Required system dependencies - -Magento requires the following system tools for some of its operations: - -* [bash][] -* [gzip][] -* [lsof][] -* [mysql][] -* [mysqldump][] -* [nice][] -* [php][] -* [sed][] -* [tar][] - -### Mail server - -Mail Transfer Agent (MTA) or an SMTP server - -## Technologies Magento can use - -* [Redis][] version 5.0 is recommended and used in testing for page caching and session storage. -* [Varnish]({{page.baseurl}}/config-guide/varnish/config-varnish.html) version 6.x (tested with 6.3.1) -* [Elasticsearch]({{page.baseurl}}/config-guide/elasticsearch/es-overview.html) - - {% include config/es-version-23.md %} - -* RabbitMQ 3.8.x (compatible with 2.0 and later) - - [RabbitMQ][]{:target="_blank"} can be used to publish messages to queue and to define the consumers that receive the messages asynchronously. - -### {{site.data.var.ee}} only - -* Three master databases - - These [master databases][] provide scalability advantages for different functional areas of the Magento application such as checkout, orders, and all remaining Magento2 application tables. - -### Optional but recommended - -* [php_xdebug 2.5.x][]{:target="_blank"} or later (development environments only; can have an adverse effect on performance) - -{:.bs-callout-info} -There is a known issue with `xdebug` that can affect Magento installations or access to the storefront or Magento Admin after installation. For details, see [Known issue with xdebug][]. - -* [`mcrypt`](http://php.net/manual/en/book.mcrypt.php){:target="_blank"} (for PHP < 7.2) -* PHPUnit (as a command-line tool) 6.2.0 - - -[`mcrypt`]: http://php.net/manual/en/book.mcrypt.php -[Known issue with xdebug]: https://support.magento.com/hc/en-us/articles/360034242212 -[php_xdebug 2.5.x]: http://xdebug.org/download.php -[master databases]: {{page.baseurl}}/config-guide/multi-master/multi-master.html -[bash]: https://www.gnu.org/software/bash/ -[gzip]: https://www.gzip.org/ -[lsof]: https://linux.die.net/man/8/lsof -[mysql]: https://www.mysql.com/ -[mysqldump]: https://dev.mysql.com/doc/refman/8.0/en/mysqldump.html -[nice]: https://linux.die.net/man/1/nice -[php]: http://www.php.net/ -[sed]: https://www.gnu.org/software/sed/manual/sed.html -[tar]: https://linux.die.net/man/1/tar -[Change Elasticsearch Module]: {{ page.baseurl }}/config-guide/elasticsearch/es-downgrade.html -[Composer]: https://glossary.magento.com/composer -[Apache 2.4]: http://httpd.apache.org/download.cgi -[`mod_rewrite`]: https://httpd.apache.org/docs/2.4/mod/mod_rewrite.html -[`mod_version`]: https://httpd.apache.org/docs/2.4/mod/mod_version.html -[our Apache documentation]: {{page.baseurl}}/install-gde/prereq/apache.html -[nginx 1.x]: https://nginx.org/en/download.html -[ZenHub board]: https://app.zenhub.com/workspace/o/magento-engcom/php-7.2-support/boards?repos=116423356,116426364,115111902 -[PHP installation instructions]: prereq/php-settings.html -[official PHP documentation]: http://php.net/manual/en/extensions.php -[PHP OPcache]: http://php.net/manual/en/intro.opcache.php -[PHP documentation]: prereq/php-settings.html -[PHP OPcache documentation]: http://php.net/manual/en/opcache.setup.php -[Required PHP settings]: {{ page.baseurl }}/install-gde/prereq/php-settings.html -[security certificate]: https://glossary.magento.com/security-certificate -[More information about PayPal]: {{page.baseurl}}/install-gde/system-requirements_tls1-2.html -[Redis]: {{page.baseurl}}/config-guide/redis/config-redis.html -[Varnish]: {{page.baseurl}}/config-guide/varnish/config-varnish.html -[Elasticsearch]: {{page.baseurl}}/config-guide/elasticsearch/es-overview.html -[Elasticsearch PHP client]: https://github.com/elastic/elasticsearch-php -[RabbitMQ]: {{page.baseurl}}/config-guide/mq/rabbitmq-overview.html diff --git a/src/guides/v2.3/install-gde/system-requirements.md b/src/guides/v2.3/install-gde/system-requirements.md index f3c10ac1316..d2c455acaaf 100644 --- a/src/guides/v2.3/install-gde/system-requirements.md +++ b/src/guides/v2.3/install-gde/system-requirements.md @@ -1,17 +1,164 @@ --- group: installation-guide -title: System 2.3.x requirements +title: Magento 2.3 technology stack requirements functional_areas: - Install - System - Setup --- -Our system requirements include required software to run the Magento application, supported web browsers, and also recent requirements to securely connect with our software repository and with PayPal. +{:.bs-callout-info} +All of the requirements described here apply to the latest patch release of Magento 2.3. -See the following for more detail: +## Operating systems (Linux x86-64) + +Linux distributions, such as RedHat Enterprise Linux (RHEL), CentOS, Ubuntu, Debian, and similar. +Magento is not supported on Microsoft Windows and macOS. + +## Memory requirement + +Upgrading the Magento applications and extensions you obtain from Magento Marketplaces and other sources can require up to 2GB of RAM. If you are using a system with less than 2GB of RAM, we recommend you create a [swap file](https://support.magento.com/hc/en-us/articles/360032980432); otherwise, your upgrade might fail. + +## Supported browsers +{% include browsers/supported-browsers.md %} + +## Composer + +[Composer][] is required for developers who wish to contribute to the Magento 2 codebase or anyone who wishes to develop Magento extensions. + +Magento does not support Composer 2.x. + +## Web servers + +* [Apache 2.4][] + + In addition, you must enable the Apache `mod_rewrite` and `mod_version` modules. The [`mod_rewrite`][] module enables the server to perform URL rewriting. The [`mod_version`][] module provides flexible version checking for different `httpd` versions. For more information, see [our Apache documentation][]. + +* [nginx 1.x][] + +## Database + +* MySQL 5.7 for on-premise installations +* MariaDB 10.2 for {{site.data.var.ece}} projects + +Magento is also compatible with, but has not been tested and is not recommended, with MySQL 5.6, MariaDB 10.1, and Percona 5.7. + +{:.bs-callout-info} +Magento only uses MySQL features compatible with MariaDB. MariaDB may not be compatible with all MySQL features, however, so be sure to research compatibility issues before using a feature in your Magento module. + +## PHP + +{% include install/php-versions-2.3.md %} + +### Required PHP extensions + +{:.bs-callout-info} +The [PHP installation instructions][] include a step for installing these extensions. + +{:.bs-callout-warning} +If you install Magento via cloning from the [GitHub](https://github.com/magento/magento2) repository then make sure you have the [ext-sockets](https://github.com/php-amqplib/php-amqplib/blob/master/CHANGELOG.md#281---2018-11-13) installed on your instance. + + +{% include install/php-extensions-template.md %} + +Refer to [official PHP documentation][] for installation details. + +### PHP OPcache + +We strongly recommend you verify that [PHP OPcache][] is enabled for performance reasons. The OPcache is enabled in many PHP distributions. To verify if it is installed, see our [PHP documentation][]. + +If you must install it separately, see the [PHP OPcache documentation][]. + +### PHP settings + +We recommend particular PHP configuration settings, such as `memory_limit`, that can avoid common problems when using Magento. + +For more information, see [Required PHP settings][]. + +## SSL + +* A valid [security certificate][] is required for HTTPS. +* Self-signed SSL certificates are not supported. +* Transport Layer Security (TLS) requirement - PayPal and `repo.magento.com` both require TLS 1.2 or later: + +### Required system dependencies + +Magento requires the following system tools for some of its operations: + +* [bash][] +* [gzip][] +* [lsof][] +* [mysql][] +* [mysqldump][] +* [nice][] +* [php][] +* [sed][] +* [tar][] + +### Mail server + +Mail Transfer Agent (MTA) or an SMTP server + +## Technologies Magento can use + +* [Redis][] version 5.0 is recommended and used in testing for page caching and session storage. +* [Varnish]({{page.baseurl}}/config-guide/varnish/config-varnish.html) version 6.x (tested with 6.3.1) +* [Elasticsearch]({{page.baseurl}}/config-guide/elasticsearch/es-overview.html) + + {% include config/es-version-23.md %} + +* RabbitMQ 3.8.x (compatible with 2.0 and later) + + [RabbitMQ][]{:target="_blank"} can be used to publish messages to queue and to define the consumers that receive the messages asynchronously. + +### {{site.data.var.ee}} only + +* Three master databases + + These [master databases][] provide scalability advantages for different functional areas of the Magento application such as checkout, orders, and all remaining Magento2 application tables. + +### Optional but recommended + +* [php_xdebug 2.5.x][]{:target="_blank"} or later (development environments only; can have an adverse effect on performance) + +{:.bs-callout-info} +There is a known issue with `xdebug` that can affect Magento installations or access to the storefront or Magento Admin after installation. For details, see [Known issue with xdebug][]. + +* [`mcrypt`](http://php.net/manual/en/book.mcrypt.php){:target="_blank"} (for PHP < 7.2) +* PHPUnit (as a command-line tool) 6.2.0 + + +[`mcrypt`]: http://php.net/manual/en/book.mcrypt.php +[Known issue with xdebug]: https://support.magento.com/hc/en-us/articles/360034242212 +[php_xdebug 2.5.x]: http://xdebug.org/download.php +[master databases]: {{page.baseurl}}/config-guide/multi-master/multi-master.html +[bash]: https://www.gnu.org/software/bash/ +[gzip]: https://www.gzip.org/ +[lsof]: https://linux.die.net/man/8/lsof +[mysql]: https://www.mysql.com/ +[mysqldump]: https://dev.mysql.com/doc/refman/8.0/en/mysqldump.html +[nice]: https://linux.die.net/man/1/nice +[php]: http://www.php.net/ +[sed]: https://www.gnu.org/software/sed/manual/sed.html +[tar]: https://linux.die.net/man/1/tar +[Change Elasticsearch Module]: {{ page.baseurl }}/config-guide/elasticsearch/es-downgrade.html +[Composer]: https://glossary.magento.com/composer +[Apache 2.4]: http://httpd.apache.org/download.cgi +[`mod_rewrite`]: https://httpd.apache.org/docs/2.4/mod/mod_rewrite.html +[`mod_version`]: https://httpd.apache.org/docs/2.4/mod/mod_version.html +[our Apache documentation]: {{page.baseurl}}/install-gde/prereq/apache.html +[nginx 1.x]: https://nginx.org/en/download.html +[ZenHub board]: https://app.zenhub.com/workspace/o/magento-engcom/php-7.2-support/boards?repos=116423356,116426364,115111902 +[PHP installation instructions]: prereq/php-settings.html +[official PHP documentation]: http://php.net/manual/en/extensions.php +[PHP OPcache]: http://php.net/manual/en/intro.opcache.php +[PHP documentation]: prereq/php-settings.html +[PHP OPcache documentation]: http://php.net/manual/en/opcache.setup.php +[Required PHP settings]: {{ page.baseurl }}/install-gde/prereq/php-settings.html +[security certificate]: https://glossary.magento.com/security-certificate +[Redis]: {{page.baseurl}}/config-guide/redis/config-redis.html +[Varnish]: {{page.baseurl}}/config-guide/varnish/config-varnish.html +[Elasticsearch]: {{page.baseurl}}/config-guide/elasticsearch/es-overview.html +[Elasticsearch PHP client]: https://github.com/elastic/elasticsearch-php +[RabbitMQ]: {{page.baseurl}}/config-guide/mq/rabbitmq-overview.html -* [Magento technology stack requirements]({{ page.baseurl }}/install-gde/system-requirements-tech.html) -* [Supported browsers]({{ page.baseurl }}/install-gde/system-requirements_browsers.html) -* [TLS requirement for repo.magento.com]({{ page.baseurl }}/install-gde/system-requirements_repo-tls1-2.html) -* [TLS 1.2 requirement for PayPal]({{ page.baseurl }}/install-gde/system-requirements_tls1-2.html) diff --git a/src/guides/v2.3/install-gde/system-requirements_browsers.md b/src/guides/v2.3/install-gde/system-requirements_browsers.md deleted file mode 100644 index 3a3b63fd499..00000000000 --- a/src/guides/v2.3/install-gde/system-requirements_browsers.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -group: installation-guide -subgroup: Getting Started -title: Supported browsers -menu_title: Supported browsers -menu_node: -menu_order: 3 -functional_areas: - - Install - - System - - Setup ---- - -## Supported browsers -{% include browsers/supported-browsers.md %} diff --git a/src/guides/v2.3/install-gde/system-requirements_repo-tls1-2.md b/src/guides/v2.3/install-gde/system-requirements_repo-tls1-2.md deleted file mode 100644 index 147b4e0efc4..00000000000 --- a/src/guides/v2.3/install-gde/system-requirements_repo-tls1-2.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -group: installation-guide -title: TLS requirement for repo.magento.com -functional_areas: - - Install - - System - - Setup ---- - -{% include install/tls-repo.md %} - -### Solution - -The solution to this issue depends on how your operating system packages TLS. See one of the following sections for more information: - -* [Ubuntu](#solution-ubuntu) -* [CentOS](#solution-centos) -* [Mac OS](#solution-macos) - -#### Ubuntu {#solution-ubuntu} - -Make sure you're using [`libcurl`](https://curl.haxx.se/libcurl/c/CURLOPT_SSLVERSION.html){:target="_blank"}. `libcurl` versions 7.34 or later; these versions use TLS 1.2 by default. - -To determine your `libcurl` version, enter the following command: - -```bash -curl --version -``` - -#### CentOS {#solution-centos} - -The source of the issue is that the [`libcurl`](https://curl.haxx.se/libcurl/c/CURLOPT_SSLVERSION.html){:target="_blank"} [library](https://glossary.magento.com/library) packaged with CentOS 6.6 and earlier use TLS 1.1 or earlier by default. - -To determine the version of CentOS your server runs, enter the following command: - -```bash -cat /etc/*release* -``` - -If you're already running CentOS 6.8 or later, no action is necessary. According to the [CentOS 6.8 changelog](https://wiki.centos.org/Manuals/ReleaseNotes/CentOS6.8){:target="_blank"}, "various applications now support TLS 1.2, i.e. OpenLDAP, yum, stunnel, vsftpd, git, postfix and others. Also TLS 1.2 has been enabled by default in various packages". - -(CentOS 7 has a newer version of `libcurl` that also defaults to TLS 1.2.) - -#### Mac OS {#solution-macos} - -Recent updates to the [OS X liip package](http://php-osx.liip.ch){:target="_blank"} should resolve the issue. diff --git a/src/guides/v2.3/install-gde/system-requirements_tls1-2.md b/src/guides/v2.3/install-gde/system-requirements_tls1-2.md deleted file mode 100644 index bcf73752344..00000000000 --- a/src/guides/v2.3/install-gde/system-requirements_tls1-2.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -group: installation-guide -subgroup: Getting Started -title: TLS 1.2 requirement for PayPal -menu_title: TLS 1.2 requirement for PayPal -menu_node: -menu_order: 101 -level3_menu_node: level3child -level3_subgroup: tls -functional_areas: - - Install - - System - - Setup ---- - -{% include install/paypal-tls1-2.md %} diff --git a/src/guides/v2.3/install-gde/trouble/tshoot_access-browser.md b/src/guides/v2.3/install-gde/trouble/tshoot_access-browser.md index 5d6b30f9c82..d15ec071ade 100644 --- a/src/guides/v2.3/install-gde/trouble/tshoot_access-browser.md +++ b/src/guides/v2.3/install-gde/trouble/tshoot_access-browser.md @@ -14,7 +14,7 @@ redirect_to: https://support.magento.com/hc/en-us/articles/360033117152 ### Symptom: The following message displays when you try to access the Magento storefront or Admin: -Magento supports PHP 7.3 or later. Please read [Magento System Requirements]({{ page.baseurl }}/install-gde/system-requirements-tech.html). +Magento supports PHP 7.3 or later. Please read [Magento System Requirements]({{ page.baseurl }}/install-gde/system-requirements.html). #### Solution diff --git a/src/guides/v2.3/migration/migration-plan.md b/src/guides/v2.3/migration/migration-plan.md index d5b490ae2f6..74073a1ea0f 100644 --- a/src/guides/v2.3/migration/migration-plan.md +++ b/src/guides/v2.3/migration/migration-plan.md @@ -109,7 +109,7 @@ Now that your Magento 2 site is up-to-date with Magento 1 and is functioning nor 1. Magento 2 store is now ready to use. You and your customers can resume all activities. -[Magento system requirements]: {{ page.baseurl }}/install-gde/system-requirements-tech.html +[Magento system requirements]: {{ page.baseurl }}/install-gde/system-requirements.html [Magento Marketplace]: https://marketplace.magento.com [Technical Specification]: {{ page.baseurl }}/migration/migration-tool-internal-spec.html [Configuration guide]: {{ page.baseurl }}/config-guide/cli/config-cli-subcommands-index.html diff --git a/src/guides/v2.3/performance-best-practices/software.md b/src/guides/v2.3/performance-best-practices/software.md index 01c41365c89..1a083d456fe 100644 --- a/src/guides/v2.3/performance-best-practices/software.md +++ b/src/guides/v2.3/performance-best-practices/software.md @@ -9,7 +9,7 @@ functional_areas: We recommend using the following software for production instances of Magento: -* [PHP]({{page.baseurl}}/install-gde/system-requirements-tech.html#php) +* [PHP]({{page.baseurl}}/install-gde/system-requirements.html#php) * Nginx and [PHP-FPM](https://php-fpm.org/) * [MySQL]({{page.baseurl}}/install-gde/prereq/mysql.html) * [Varnish cache]({{page.baseurl}}/config-guide/varnish/config-varnish.html) @@ -20,7 +20,7 @@ For multi-server deployments, or for merchants planning on scaling their busines * [Redis]({{page.baseurl}}/config-guide/redis/redis-session.html) for sessions (from 2.0.6+) * A separate Redis instance as your [default cache]({{page.baseurl}}/config-guide/redis/redis-pg-cache.html) (do not use this instance for page cache) -See [Magento 2.2.x technology stack requirements]({{page.baseurl}}/install-gde/system-requirements-tech.html) for information about supported versions of each type of software. +See [Magento 2.2.x technology stack requirements]({{page.baseurl}}/install-gde/system-requirements.html) for information about supported versions of each type of software. ## Operating system diff --git a/src/guides/v2.3/release-notes/ReleaseNotes2.3.0Commerce.md b/src/guides/v2.3/release-notes/ReleaseNotes2.3.0Commerce.md index 4e07b4a2c50..23527169d17 100644 --- a/src/guides/v2.3/release-notes/ReleaseNotes2.3.0Commerce.md +++ b/src/guides/v2.3/release-notes/ReleaseNotes2.3.0Commerce.md @@ -3692,7 +3692,7 @@ The following table identifies contributions from our community members. This ta ### System requirements -Our technology stack is built on PHP and MySQL. For details, see [Technology stack requirements]({{page.baseurl}}/install-gde/system-requirements-tech.html) +Our technology stack is built on PHP and MySQL. For details, see [Technology stack requirements]({{page.baseurl}}/install-gde/system-requirements.html) For more information, see [System Requirements]({{ page.baseurl }}/install-gde/system-requirements.html). diff --git a/src/guides/v2.3/release-notes/ReleaseNotes2.3.0OpenSource.md b/src/guides/v2.3/release-notes/ReleaseNotes2.3.0OpenSource.md index 8bbe4ee9fec..bbd46f78593 100644 --- a/src/guides/v2.3/release-notes/ReleaseNotes2.3.0OpenSource.md +++ b/src/guides/v2.3/release-notes/ReleaseNotes2.3.0OpenSource.md @@ -3541,7 +3541,7 @@ The following table identifies contributions from our community members. This ta ### System requirements -Our technology stack is built on PHP and MySQL. For details, see [Technology stack requirements]({{page.baseurl}}/install-gde/system-requirements-tech.html) +Our technology stack is built on PHP and MySQL. For details, see [Technology stack requirements]({{page.baseurl}}/install-gde/system-requirements.html) For more information, see [System Requirements]({{ page.baseurl }}/install-gde/system-requirements.html){:target="_blank"}. diff --git a/src/guides/v2.3/release-notes/release-notes-2-3-3-commerce.md b/src/guides/v2.3/release-notes/release-notes-2-3-3-commerce.md index d5e1a221844..af0fd071ad9 100644 --- a/src/guides/v2.3/release-notes/release-notes-2-3-3-commerce.md +++ b/src/guides/v2.3/release-notes/release-notes-2-3-3-commerce.md @@ -1819,7 +1819,7 @@ The following table identifies contributions from our community members. This ta ### System requirements -Our technology stack is built on PHP and MySQL. For more information, see [System Requirements]({{site.baseurl}}/guides/v2.3/install-gde/system-requirements-tech.html). +Our technology stack is built on PHP and MySQL. For more information, see [System Requirements]({{site.baseurl}}/guides/v2.3/install-gde/system-requirements.html). ### Installation and upgrade instructions diff --git a/src/guides/v2.3/release-notes/release-notes-2-3-3-open-source.md b/src/guides/v2.3/release-notes/release-notes-2-3-3-open-source.md index 3efdb82db3a..b4a0043e6cd 100644 --- a/src/guides/v2.3/release-notes/release-notes-2-3-3-open-source.md +++ b/src/guides/v2.3/release-notes/release-notes-2-3-3-open-source.md @@ -1525,7 +1525,7 @@ The following table identifies contributions from our community members. This ta ### System requirements -Our technology stack is built on PHP and MySQL. For more information, see [System Requirements]({{site.baseurl}}/guides/v2.3/install-gde/system-requirements-tech.html). +Our technology stack is built on PHP and MySQL. For more information, see [System Requirements]({{site.baseurl}}/guides/v2.3/install-gde/system-requirements.html). ### Installation and upgrade instructions diff --git a/src/guides/v2.3/release-notes/release-notes-2-3-4-commerce.md b/src/guides/v2.3/release-notes/release-notes-2-3-4-commerce.md index d1a3452f444..3fcca74fb06 100644 --- a/src/guides/v2.3/release-notes/release-notes-2-3-4-commerce.md +++ b/src/guides/v2.3/release-notes/release-notes-2-3-4-commerce.md @@ -61,7 +61,7 @@ The following platform upgrades help enhance website security and PCI compliance * The core integration of the Authorize.net payment method has been deprecated. Please use the official payment integration that is available on Marketplace. -**Note**: Magento 2.3.4 has not been tested with PHP 7.1. PHP 7.1 reached EOL (End of Life) on December 1, 2019. We recommend updating your deployment to a supported version of PHP. See [Magento 2.3 technology stack requirements](https://devdocs.magento.com/guides/v2.3/install-gde/system-requirements-tech.html) for information about supported versions. +**Note**: Magento 2.3.4 has not been tested with PHP 7.1. PHP 7.1 reached EOL (End of Life) on December 1, 2019. We recommend updating your deployment to a supported version of PHP. See [Magento 2.3 technology stack requirements](https://devdocs.magento.com/guides/v2.3/install-gde/system-requirements.html) for information about supported versions. ### Performance boosts diff --git a/src/guides/v2.3/release-notes/release-notes-2-3-4-open-source.md b/src/guides/v2.3/release-notes/release-notes-2-3-4-open-source.md index ba71adbfdb7..5de0f3bf28f 100644 --- a/src/guides/v2.3/release-notes/release-notes-2-3-4-open-source.md +++ b/src/guides/v2.3/release-notes/release-notes-2-3-4-open-source.md @@ -55,7 +55,7 @@ The following platform upgrades help enhance website security and PCI compliance * The core integration of the Authorize.net payment method has been deprecated. Please use the official payment integration that is available on Marketplace. -**Note**: Magento 2.3.4 has not been tested with PHP 7.1. PHP 7.1 reached EOL (End of Life) on December 1, 2019. We recommend updating your deployment to a supported version of PHP. See [Magento 2.3 technology stack requirements](https://devdocs.magento.com/guides/v2.3/install-gde/system-requirements-tech.html) for information about supported versions. +**Note**: Magento 2.3.4 has not been tested with PHP 7.1. PHP 7.1 reached EOL (End of Life) on December 1, 2019. We recommend updating your deployment to a supported version of PHP. See [Magento 2.3 technology stack requirements](https://devdocs.magento.com/guides/v2.3/install-gde/system-requirements.html) for information about supported versions. ### Performance boosts diff --git a/src/guides/v2.4/architecture/tech-stack.md b/src/guides/v2.4/architecture/tech-stack.md index a3763aa9930..26ad9607d8a 100644 --- a/src/guides/v2.4/architecture/tech-stack.md +++ b/src/guides/v2.4/architecture/tech-stack.md @@ -5,7 +5,7 @@ title: Technology stack ## Overview -This page summarizes the technologies we use. For more detailed information, see the [System Requirements]({{page.baseurl}}/install-gde/system-requirements-tech.html). +This page summarizes the technologies we use. For more detailed information, see the [System Requirements]({{page.baseurl}}/install-gde/system-requirements.html). Magento's highly modular structure includes the following open-source technologies. diff --git a/src/guides/v2.4/comp-mgr/cli/cli-upgrade.md b/src/guides/v2.4/comp-mgr/cli/cli-upgrade.md index 6faa476fca2..0231842308b 100644 --- a/src/guides/v2.4/comp-mgr/cli/cli-upgrade.md +++ b/src/guides/v2.4/comp-mgr/cli/cli-upgrade.md @@ -205,7 +205,7 @@ If the application fails with a `We're sorry, an error has occurred while gener [Enable or disable maintenance mode]: {{ page.baseurl }}/install-gde/install/cli/install-cli-subcommands-maint.html [file system ownership and permissions]: {{ page.baseurl }}/install-gde/prereq/file-system-perms.html [metapackage]: https://glossary.magento.com/metapackage -[system requirements]: {{ page.baseurl }}/install-gde/system-requirements-tech.html +[system requirements]: {{ page.baseurl }}/install-gde/system-requirements.html [Update and upgrade checklist]: ../prereq/prereq_compman-checklist.html [Update the Magento application]: {{ page.baseurl }}/install-gde/install/cli/dev_update-magento.html [Modify docroot to improve security]: {{ page.baseurl }}/install-gde/tutorials/change-docroot-to-pub.html diff --git a/src/guides/v2.4/install-gde/prereq/mysql.md b/src/guides/v2.4/install-gde/prereq/mysql.md index b6ece2c13f6..92e6c94c988 100644 --- a/src/guides/v2.4/install-gde/prereq/mysql.md +++ b/src/guides/v2.4/install-gde/prereq/mysql.md @@ -15,7 +15,7 @@ If you are new to all this and need some help getting started, we suggest the fo ## General guidelines {#instgde-prereq-mysql-intro} {:.bs-callout-info} -See [Magento technology stack requirements]({{ page.baseurl }}/install-gde/system-requirements-tech.html#database) for supported versions of MySQL. +See [Magento technology stack requirements]({{ page.baseurl }}/install-gde/system-requirements.html#database) for supported versions of MySQL. Magento _strongly_ recommends you observe the following standard when you set up your Magento database: diff --git a/src/guides/v2.4/install-gde/prereq/nginx.md b/src/guides/v2.4/install-gde/prereq/nginx.md index 34eef79e7c1..cab76b0abf3 100644 --- a/src/guides/v2.4/install-gde/prereq/nginx.md +++ b/src/guides/v2.4/install-gde/prereq/nginx.md @@ -48,7 +48,7 @@ To install and configure `php-fpm`: ``` {:.bs-callout-info} - This command installs the latest available version of PHP 7.2.X. See [Magento 2.3.x technology stack requirements]({{ page.baseurl }}/install-gde/system-requirements-tech.html) for supported PHP versions. + This command installs the latest available version of PHP 7.2.X. See [Magento 2.3.x technology stack requirements]({{ page.baseurl }}/install-gde/system-requirements.html) for supported PHP versions. 1. Open the `php.ini` files in an editor: diff --git a/src/guides/v2.4/install-gde/prereq/prereq-overview.md b/src/guides/v2.4/install-gde/prereq/prereq-overview.md index 88604c15c85..e8f38699644 100644 --- a/src/guides/v2.4/install-gde/prereq/prereq-overview.md +++ b/src/guides/v2.4/install-gde/prereq/prereq-overview.md @@ -79,7 +79,7 @@ For example: mysql -u magento -p ``` -Check you have the correct version of MySQL for the version of Magento you are installing, [Check Here For Supported Versions]({{ page.baseurl }}/install-gde/system-requirements-tech.html#database). The following result indicates the version you are running. +Check you have the correct version of MySQL for the version of Magento you are installing, [Check Here For Supported Versions]({{ page.baseurl }}/install-gde/system-requirements.html#database). The following result indicates the version you are running. ```terminal Welcome to the MySQL monitor. Commands end with ; or \g. diff --git a/src/guides/v2.4/install-gde/system-requirements-tech.md b/src/guides/v2.4/install-gde/system-requirements-tech.md deleted file mode 100644 index c06eace7ffd..00000000000 --- a/src/guides/v2.4/install-gde/system-requirements-tech.md +++ /dev/null @@ -1,162 +0,0 @@ ---- -group: installation-guide -title: Magento 2.4 technology stack requirements -functional_areas: - - Install - - System - - Setup ---- - -{:.bs-calloout-info} -If you are working on a {{site.data.var.ece}} project, see [Service versions]({{ site.baseurl }}/cloud/project/services.html#service-versions) in the _Cloud Guide_. - -## Operating systems (Linux x86-64) - -Linux distributions, such as RedHat Enterprise Linux (RHEL), CentOS, Ubuntu, Debian, and similar. -Magento is not supported on Microsoft Windows and macOS. - -## Memory requirement - -Upgrading the Magento applications and extensions you obtain from Magento Marketplaces and other sources can require up to 2GB of RAM. If you are using a system with less than 2GB of RAM, we recommend you create a [swap file](https://support.magento.com/hc/en-us/articles/360032980432); otherwise, your upgrade might fail. - -## Composer - -[Composer][] is required for developers who wish to contribute to the Magento 2 codebase or anyone who wishes to develop Magento extensions. - -Magento does not support Composer 2.x. - -## Web servers - -* [Apache 2.4][] - - In addition, you must enable the Apache `mod_rewrite` and `mod_version` modules. The [`mod_rewrite`][] module enables the server to perform URL rewriting. The [`mod_version`][] module provides flexible version checking for different `httpd` versions. For more information, see [our Apache documentation][]. - -* [nginx 1.x][] - -## Database - -* MySQL 8.0 for on-premise installations -* MariaDB 10.4 for {{site.data.var.ece}} projects - -Magento is also compatible, but has not been tested and is not recommended, with MySQL 5.7.9, MariaDB 10.2, and Percona 5.7. - -{:.bs-callout-info} -Magento only uses MySQL features compatible with MariaDB. MariaDB may not be compatible with all MySQL features, however; so be sure to research compatibility issues before using a feature in your Magento module. {% include install/maria-db.md %} - -## PHP - -{% include install/php-versions-2.4.md %} - -### Required PHP extensions - -{:.bs-callout-info} -The [PHP installation instructions][] include a step for installing these extensions. - - -{% include install/php-extensions-template.md %} - -Refer to [official PHP documentation][] for installation details. - -### PHP OPcache - -We strongly recommend you verify that [PHP OPcache][] is enabled for performance reasons. The OPcache is enabled in many PHP distributions. To verify if it is installed, see our [PHP documentation][]. - -If you must install it separately, see the [PHP OPcache documentation][]. - -### PHP settings - -We recommend particular PHP configuration settings, such as `memory_limit`, that can avoid common problems when using Magento. - -For more information, see [Required PHP settings][]. - -## Elasticsearch - -As of Magento 2.4.0, MySQL is no longer used for search. You must use [Elasticsearch]({{page.baseurl}}/install-gde/prereq/elasticsearch.html). Magento is tested with Elasticsearch 7.6.x. You can use other versions at your discretion, but we recommend using the tested version of Elasticsearch. - -{:.bs-callout-warning} -Magento no longer supports Elasticsearch [2.x, 5.x, and 6.x][]. - -## SSL - -* A valid [security certificate][] is required for HTTPS. -* Self-signed SSL certificates are not supported. -* Transport Layer Security (TLS) requirement - PayPal and `repo.magento.com` both require TLS 1.2 or later: - - * [More information about PayPal][] - -### Required system dependencies - -Magento requires the following system tools for some of its operations: - -* [bash][] -* [gzip][] -* [lsof][] -* [mysql][] -* [mysqldump][] -* [nice][] -* [php][] -* [sed][] -* [tar][] - -### Mail server - -Mail Transfer Agent (MTA) or an SMTP server - -## Technologies Magento can use - -* [Redis][] version 5.0 is recommended and used in testing for page caching and session storage -* [Varnish]({{page.baseurl}}/config-guide/varnish/config-varnish.html) version 6.x (tested with 6.3.1) - -* RabbitMQ 3.8.x - - [RabbitMQ][]{:target="_blank"} can be used to publish messages to queue and to define the consumers that receive the messages asynchronously. - -### {{site.data.var.ee}} only - -* Three master databases - - These [master databases][] provide scalability advantages for different functional areas of the Magento application such as checkout, orders, and all remaining Magento2 application tables. - -### Optional but recommended - -* [php_xdebug 2.5.x][]{:target="_blank"} or later (development environments only; can have an adverse effect on performance) - -{:.bs-callout-info} -There is a known issue with `xdebug` that can affect Magento installations or access to the storefront or Magento Admin after installation. For details, see [Known issue with xdebug][]. - -* PHPUnit (as a command-line tool) 9.0.0 - - -[`mcrypt`]: http://php.net/manual/en/book.mcrypt.php -[Known issue with xdebug]: https://support.magento.com/hc/en-us/articles/360034242212 -[php_xdebug 2.5.x]: http://xdebug.org/download.php -[master databases]: {{page.baseurl}}/config-guide/multi-master/multi-master.html -[bash]: https://www.gnu.org/software/bash/ -[gzip]: https://www.gzip.org/ -[lsof]: https://linux.die.net/man/8/lsof -[mysql]: https://www.mysql.com/ -[mysqldump]: https://dev.mysql.com/doc/refman/8.0/en/mysqldump.html -[nice]: https://linux.die.net/man/1/nice -[php]: http://www.php.net/ -[sed]: https://www.gnu.org/software/sed/manual/sed.html -[tar]: https://linux.die.net/man/1/tar -[Composer]: https://glossary.magento.com/composer -[Apache 2.4]: http://httpd.apache.org/download.cgi -[`mod_rewrite`]: https://httpd.apache.org/docs/2.4/mod/mod_rewrite.html -[`mod_version`]: https://httpd.apache.org/docs/2.4/mod/mod_version.html -[our Apache documentation]: {{page.baseurl}}/install-gde/prereq/apache.html -[nginx 1.x]: https://nginx.org/en/download.html -[ZenHub board]: https://app.zenhub.com/workspace/o/magento-engcom/php-7.2-support/boards?repos=116423356,116426364,115111902 -[PHP installation instructions]: prereq/php-settings.html -[official PHP documentation]: http://php.net/manual/en/extensions.php -[PHP OPcache]: http://php.net/manual/en/intro.opcache.php -[PHP documentation]: prereq/php-settings.html -[PHP OPcache documentation]: http://php.net/manual/en/opcache.setup.php -[Required PHP settings]: {{ page.baseurl }}/install-gde/prereq/php-settings.html -[security certificate]: https://glossary.magento.com/security-certificate -[More information about PayPal]: {{page.baseurl}}/install-gde/system-requirements_tls1-2.html -[Redis]: {{page.baseurl}}/config-guide/redis/config-redis.html -[Varnish]: {{page.baseurl}}/config-guide/varnish/config-varnish.html -[Elasticsearch]: {{page.baseurl}}/install-gde/prereq/elasticsearch.html -[2.x, 5.x, and 6.x]: https://www.elastic.co/support/eol -[RabbitMQ]: {{page.baseurl}}/config-guide/mq/rabbitmq-overview.html diff --git a/src/guides/v2.4/install-gde/system-requirements.md b/src/guides/v2.4/install-gde/system-requirements.md index e2cf8112e72..8742c12f561 100644 --- a/src/guides/v2.4/install-gde/system-requirements.md +++ b/src/guides/v2.4/install-gde/system-requirements.md @@ -1,17 +1,163 @@ --- group: installation-guide -title: System 2.4.x requirements +title: Magento 2.4 system requirements functional_areas: - Install - System - Setup --- -Our system requirements include required software to run the Magento application, supported web browsers, and also recent requirements to securely connect with our software repository and with PayPal. +{:.bs-calloout-info} +If you are working on a {{site.data.var.ece}} project, see [Service versions]({{ site.baseurl }}/cloud/project/services.html#service-versions) in the _Cloud Guide_. -See the following for more detail: +## Operating systems (Linux x86-64) -* [Magento technology stack requirements]({{ page.baseurl }}/install-gde/system-requirements-tech.html) -* [Supported browsers]({{ page.baseurl }}/install-gde/system-requirements_browsers.html) -* [TLS requirement for repo.magento.com]({{ page.baseurl }}/install-gde/system-requirements_repo-tls1-2.html) -* [TLS 1.2 requirement for PayPal]({{ page.baseurl }}/install-gde/system-requirements_tls1-2.html) +Linux distributions, such as RedHat Enterprise Linux (RHEL), CentOS, Ubuntu, Debian, and similar. +Magento is not supported on Microsoft Windows and macOS. + +## Memory requirement + +Upgrading the Magento applications and extensions you obtain from Magento Marketplaces and other sources can require up to 2GB of RAM. If you are using a system with less than 2GB of RAM, we recommend you create a [swap file](https://support.magento.com/hc/en-us/articles/360032980432); otherwise, your upgrade might fail. + +## Supported browsers + +{% include browsers/supported-browsers-24.md %} + +## Composer + +[Composer][] is required for developers who wish to contribute to the Magento 2 codebase or anyone who wishes to develop Magento extensions. + +Magento does not support Composer 2.x. + +## Web servers + +* [Apache 2.4][] + + In addition, you must enable the Apache `mod_rewrite` and `mod_version` modules. The [`mod_rewrite`][] module enables the server to perform URL rewriting. The [`mod_version`][] module provides flexible version checking for different `httpd` versions. For more information, see [our Apache documentation][]. + +* [nginx 1.x][] + +## Database + +* MySQL 8.0 for on-premise installations +* MariaDB 10.4 for {{site.data.var.ece}} projects + +Magento is also compatible, but has not been tested and is not recommended, with MySQL 5.7.9, MariaDB 10.2, and Percona 5.7. + +{:.bs-callout-info} +Magento only uses MySQL features compatible with MariaDB. MariaDB may not be compatible with all MySQL features, however; so be sure to research compatibility issues before using a feature in your Magento module. {% include install/maria-db.md %} + +## PHP + +{% include install/php-versions-2.4.md %} + +### Required PHP extensions + +{:.bs-callout-info} +The [PHP installation instructions][] include a step for installing these extensions. + + +{% include install/php-extensions-template.md %} + +Refer to [official PHP documentation][] for installation details. + +### PHP OPcache + +We strongly recommend you verify that [PHP OPcache][] is enabled for performance reasons. The OPcache is enabled in many PHP distributions. To verify if it is installed, see our [PHP documentation][]. + +If you must install it separately, see the [PHP OPcache documentation][]. + +### PHP settings + +We recommend particular PHP configuration settings, such as `memory_limit`, that can avoid common problems when using Magento. + +For more information, see [Required PHP settings][]. + +## Elasticsearch + +As of Magento 2.4.0, MySQL is no longer used for search. You must use [Elasticsearch]({{page.baseurl}}/install-gde/prereq/elasticsearch.html). Magento is tested with Elasticsearch 7.6.x. You can use other versions at your discretion, but we recommend using the tested version of Elasticsearch. + +{:.bs-callout-warning} +Magento no longer supports Elasticsearch [2.x, 5.x, and 6.x][]. + +## SSL + +* A valid [security certificate][] is required for HTTPS. +* Self-signed SSL certificates are not supported. +* Transport Layer Security (TLS) requirement - PayPal and `repo.magento.com` both require TLS 1.2 or later: + +### Required system dependencies + +Magento requires the following system tools for some of its operations: + +* [bash][] +* [gzip][] +* [lsof][] +* [mysql][] +* [mysqldump][] +* [nice][] +* [php][] +* [sed][] +* [tar][] + +### Mail server + +Mail Transfer Agent (MTA) or an SMTP server + +## Technologies Magento can use + +* [Redis][] version 5.0 is recommended and used in testing for page caching and session storage +* [Varnish]({{page.baseurl}}/config-guide/varnish/config-varnish.html) version 6.x (tested with 6.3.1) + +* RabbitMQ 3.8.x + + [RabbitMQ][]{:target="_blank"} can be used to publish messages to queue and to define the consumers that receive the messages asynchronously. + +### {{site.data.var.ee}} only + +* Three master databases + + These [master databases][] provide scalability advantages for different functional areas of the Magento application such as checkout, orders, and all remaining Magento2 application tables. + +### Optional but recommended + +* [php_xdebug 2.5.x][]{:target="_blank"} or later (development environments only; can have an adverse effect on performance) + +{:.bs-callout-info} +There is a known issue with `xdebug` that can affect Magento installations or access to the storefront or Magento Admin after installation. For details, see [Known issue with xdebug][]. + +* PHPUnit (as a command-line tool) 9.0.0 + + +[`mcrypt`]: http://php.net/manual/en/book.mcrypt.php +[Known issue with xdebug]: https://support.magento.com/hc/en-us/articles/360034242212 +[php_xdebug 2.5.x]: http://xdebug.org/download.php +[master databases]: {{page.baseurl}}/config-guide/multi-master/multi-master.html +[bash]: https://www.gnu.org/software/bash/ +[gzip]: https://www.gzip.org/ +[lsof]: https://linux.die.net/man/8/lsof +[mysql]: https://www.mysql.com/ +[mysqldump]: https://dev.mysql.com/doc/refman/8.0/en/mysqldump.html +[nice]: https://linux.die.net/man/1/nice +[php]: http://www.php.net/ +[sed]: https://www.gnu.org/software/sed/manual/sed.html +[tar]: https://linux.die.net/man/1/tar +[Composer]: https://glossary.magento.com/composer +[Apache 2.4]: http://httpd.apache.org/download.cgi +[`mod_rewrite`]: https://httpd.apache.org/docs/2.4/mod/mod_rewrite.html +[`mod_version`]: https://httpd.apache.org/docs/2.4/mod/mod_version.html +[our Apache documentation]: {{page.baseurl}}/install-gde/prereq/apache.html +[nginx 1.x]: https://nginx.org/en/download.html +[ZenHub board]: https://app.zenhub.com/workspace/o/magento-engcom/php-7.2-support/boards?repos=116423356,116426364,115111902 +[PHP installation instructions]: prereq/php-settings.html +[official PHP documentation]: http://php.net/manual/en/extensions.php +[PHP OPcache]: http://php.net/manual/en/intro.opcache.php +[PHP documentation]: prereq/php-settings.html +[PHP OPcache documentation]: http://php.net/manual/en/opcache.setup.php +[Required PHP settings]: {{ page.baseurl }}/install-gde/prereq/php-settings.html +[security certificate]: https://glossary.magento.com/security-certificate +[Redis]: {{page.baseurl}}/config-guide/redis/config-redis.html +[Varnish]: {{page.baseurl}}/config-guide/varnish/config-varnish.html +[Elasticsearch]: {{page.baseurl}}/install-gde/prereq/elasticsearch.html +[2.x, 5.x, and 6.x]: https://www.elastic.co/support/eol +[RabbitMQ]: {{page.baseurl}}/config-guide/mq/rabbitmq-overview.html diff --git a/src/guides/v2.4/install-gde/system-requirements_browsers.md b/src/guides/v2.4/install-gde/system-requirements_browsers.md deleted file mode 100644 index e72d1346dad..00000000000 --- a/src/guides/v2.4/install-gde/system-requirements_browsers.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -group: installation-guide -subgroup: Getting Started -title: Supported browsers -functional_areas: - - Install - - System - - Setup ---- - -## Supported browsers - -{% include browsers/supported-browsers-24.md %} diff --git a/src/guides/v2.4/install-gde/system-requirements_repo-tls1-2.md b/src/guides/v2.4/install-gde/system-requirements_repo-tls1-2.md deleted file mode 100644 index 142fb1c1b19..00000000000 --- a/src/guides/v2.4/install-gde/system-requirements_repo-tls1-2.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -group: installation-guide -title: TLS requirement for repo.magento.com -functional_areas: - - Install - - System - - Setup ---- - -{% include install/tls-repo_24.md %} - -### Solution - -The solution to this issue depends on how your operating system packages TLS. See one of the following sections for more information: - -* [Ubuntu](#solution-ubuntu) -* [CentOS](#solution-centos) -* [Mac OS](#solution-macos) - -#### Ubuntu {#solution-ubuntu} - -Make sure you're using [`libcurl`](https://curl.haxx.se/libcurl/c/CURLOPT_SSLVERSION.html){:target="_blank"}. `libcurl` versions 7.34 or later; these versions use TLS 1.2 by default. - -To determine your `libcurl` version, enter the following command: - -```bash -curl --version -``` - -#### CentOS {#solution-centos} - -The source of the issue is that the [`libcurl`](https://curl.haxx.se/libcurl/c/CURLOPT_SSLVERSION.html){:target="_blank"} [library](https://glossary.magento.com/library) packaged with CentOS 6.6 and earlier use TLS 1.1 or earlier by default. - -To determine the version of CentOS your server runs, enter the following command: - -```bash -cat /etc/*release* -``` - -If you're already running CentOS 6.8 or later, no action is necessary. According to the [CentOS 6.8 changelog](https://wiki.centos.org/Manuals/ReleaseNotes/CentOS6.8){:target="_blank"}, "various applications now support TLS 1.2, i.e. OpenLDAP, yum, stunnel, vsftpd, git, postfix and others. Also TLS 1.2 has been enabled by default in various packages". - -(CentOS 7 has a newer version of `libcurl` that also defaults to TLS 1.2.) - -#### Mac OS {#solution-macos} - -Recent updates to the [OS X liip package](http://php-osx.liip.ch){:target="_blank"} should resolve the issue. diff --git a/src/guides/v2.4/performance-best-practices/software.md b/src/guides/v2.4/performance-best-practices/software.md index 528314f52da..08bb6ad71a5 100644 --- a/src/guides/v2.4/performance-best-practices/software.md +++ b/src/guides/v2.4/performance-best-practices/software.md @@ -9,7 +9,7 @@ functional_areas: We require the following software for production instances of Magento: -* [PHP]({{page.baseurl}}/install-gde/system-requirements-tech.html#php) +* [PHP]({{page.baseurl}}/install-gde/system-requirements.html#php) * Nginx and [PHP-FPM](https://php-fpm.org/) * [MySQL]({{page.baseurl}}/install-gde/prereq/mysql.html) * [Elasticsearch]({{page.baseurl}}/install-gde/prereq/elasticsearch.html) @@ -20,7 +20,7 @@ For multi-server deployments, or for merchants planning on scaling their busines * [Redis]({{page.baseurl}}/config-guide/redis/redis-session.html) for sessions (from 2.0.6+) * A separate Redis instance as your [default cache]({{page.baseurl}}/config-guide/redis/redis-pg-cache.html) (do not use this instance for page cache) -See [Magento technology stack requirements]({{page.baseurl}}/install-gde/system-requirements-tech.html) for information about supported versions of each type of software. +See [Magento technology stack requirements]({{page.baseurl}}/install-gde/system-requirements.html) for information about supported versions of each type of software. ## Operating system diff --git a/src/guides/v2.4/release-notes/release-notes-2-4-0-commerce.md b/src/guides/v2.4/release-notes/release-notes-2-4-0-commerce.md index 8b7c38dc112..7364500653a 100644 --- a/src/guides/v2.4/release-notes/release-notes-2-4-0-commerce.md +++ b/src/guides/v2.4/release-notes/release-notes-2-4-0-commerce.md @@ -15,7 +15,7 @@ This release includes all the improvements to core quality that were included in {:.bs-callout-info} -Minor releases bring substantial code enhancements. Before upgrading to Magento 2.4.0, confirm that your environment meets the minimal [technical stack requirements](https://devdocs.magento.com/guides/v2.4/install-gde/system-requirements-tech.html). +Minor releases bring substantial code enhancements. Before upgrading to Magento 2.4.0, confirm that your environment meets the minimal [technical stack requirements](https://devdocs.magento.com/guides/v2.4/install-gde/system-requirements.html). {:.bs-callout-info} @@ -70,7 +70,7 @@ Starting with the release of Magento Commerce 2.3.2, Magento will assign and pub ### Platform upgrades -The following platform upgrades help enhance website security and performance. Supported versions of PHP and PHPUnit, Elasticsearch, MySQL, and other dependencies are listed in [Magento 2.4 technology stack requirements]({{page.baseurl}}/install-gde/system-requirements-tech.html). +The following platform upgrades help enhance website security and performance. Supported versions of PHP and PHPUnit, Elasticsearch, MySQL, and other dependencies are listed in [Magento 2.4 technology stack requirements]({{page.baseurl}}/install-gde/system-requirements.html). * **PHP 7.4 support introduced and PHP 7.1 and 7.2 deprecated**. Magento 2.4.0 introduces support for PHP 7.4. diff --git a/src/guides/v2.4/release-notes/release-notes-2-4-0-open-source.md b/src/guides/v2.4/release-notes/release-notes-2-4-0-open-source.md index 0d3cfc09afb..e01eb63dba8 100644 --- a/src/guides/v2.4/release-notes/release-notes-2-4-0-open-source.md +++ b/src/guides/v2.4/release-notes/release-notes-2-4-0-open-source.md @@ -15,7 +15,7 @@ This release includes all the improvements to core quality that were included in {:.bs-callout-info} -Minor releases bring substantial code enhancements. Before upgrading to Magento 2.4.0, confirm that your environment meets the minimal [technical stack requirements](https://devdocs.magento.com/guides/v2.4/install-gde/system-requirements-tech.html). +Minor releases bring substantial code enhancements. Before upgrading to Magento 2.4.0, confirm that your environment meets the minimal [technical stack requirements](https://devdocs.magento.com/guides/v2.4/install-gde/system-requirements.html). {:.bs-callout-info} @@ -70,7 +70,7 @@ Starting with the release of Magento Commerce 2.3.2, Magento will assign and pub ### Platform upgrades -The following platform upgrades help enhance website security and performance. Supported versions of PHP and PHPUnit, Elasticsearch, MySQL, and other dependencies are listed in [Magento 2.4 technology stack requirements]({{page.baseurl}}/install-gde/system-requirements-tech.html). +The following platform upgrades help enhance website security and performance. Supported versions of PHP and PHPUnit, Elasticsearch, MySQL, and other dependencies are listed in [Magento 2.4 technology stack requirements]({{page.baseurl}}/install-gde/system-requirements.html). * **PHP 7.4 support introduced and PHP 7.1 and 7.2 deprecated**. Magento 2.4.0 introduces support for PHP 7.4. From 8986d6377d4ce9d0d3c9f62d8a5f376eceb1f155 Mon Sep 17 00:00:00 2001 From: Andrii Shevtsov Date: Thu, 29 Oct 2020 11:25:05 -0500 Subject: [PATCH 094/143] Update services-mysql.md (#8144) Co-authored-by: Margaret Eker --- src/cloud/project/services-mysql.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cloud/project/services-mysql.md b/src/cloud/project/services-mysql.md index 2fe294eef5b..5f910fae7f2 100644 --- a/src/cloud/project/services-mysql.md +++ b/src/cloud/project/services-mysql.md @@ -8,7 +8,7 @@ redirect_from: - /cloud/project/project-conf-files_services-mysql.html --- -The `mysql` service provides persistent data storage based on [MariaDB](https://mariadb.com/) versions 10.0-10.1, supporting the [XtraDB](https://www.percona.com/software/mysql-database/percona-server/xtradb) storage engine and reimplemented features from MySQL 5.6 and 5.7. +The `mysql` service provides persistent data storage based on [MariaDB](https://mariadb.com/) versions 10.2-10.4, supporting the [XtraDB](https://www.percona.com/software/mysql-database/percona-server/xtradb) storage engine and reimplemented features from MySQL 5.6 and 5.7. {% include install/maria-db.md %} From 7812e7dcdcf5fbe421389eab74f83a694c8f9621 Mon Sep 17 00:00:00 2001 From: Jennifer Lindner Date: Thu, 29 Oct 2020 14:02:59 -0500 Subject: [PATCH 095/143] edited widget_gallery_mg: enabled setting in view.xml must be true to activate magnifier --- .../widgets/widget_gallery_mg.md | 31 ++++++++++++++----- 1 file changed, 24 insertions(+), 7 deletions(-) diff --git a/src/guides/v2.3/javascript-dev-guide/widgets/widget_gallery_mg.md b/src/guides/v2.3/javascript-dev-guide/widgets/widget_gallery_mg.md index a05e556c431..b3f951d86d0 100644 --- a/src/guides/v2.3/javascript-dev-guide/widgets/widget_gallery_mg.md +++ b/src/guides/v2.3/javascript-dev-guide/widgets/widget_gallery_mg.md @@ -2,10 +2,12 @@ group: javascript-developer-guide subgroup: 3_Widgets title: Magnifier widget +contributor_name: Jennifer Lindner +contributor_link: https://github.com/jenlindner --- -Magnifier is a [widget](https://glossary.magento.com/widget) that allows displaying images in 100% scaled size in separate dedicated layer. -In Magento it is used by the [gallery]({{ page.baseurl }}/javascript-dev-guide/widgets/widget_gallery.html) widget for zooming the product images on product pages. +Magnifier is a [widget](https://glossary.magento.com/widget) that allows displaying images in 100% scaled size in a separate dedicated layer. +In Magento it is used by the [gallery]({{ page.baseurl }}/javascript-dev-guide/widgets/widget_gallery.html) widget for zooming the product images on product pages. It must be enabled with a local edit in the theme configuration file `view.xml`. ## Initialize magnifier {#magnifier_init} @@ -96,16 +98,31 @@ Possible values: * `outside` * `inside` -## Configure magnifier options in `view.xml` +## Enable Magnifier and configure options in `view.xml` -Magnifier options can be set in the `view.xml` configuration file of a theme. The file is conventionally located in the `/etc/` directory. + `view.xml` is a theme configuration file that enables the Magnifier widget. The file is conventionally located in the `/etc/` directory. -The general magnifier options are set as follows: +The enabling boolean option looks like this: ```xml - %option1_value% - %option2_value% + true + +... +``` + +Several other Magnifier options can also be set in `view.xml`. + +The options settings look like this: + +```xml + + 20 + + + + + hover ... ``` From 6d907c674c3cbe59445520297b28482042113610 Mon Sep 17 00:00:00 2001 From: Donald Booth Date: Thu, 29 Oct 2020 15:03:30 -0400 Subject: [PATCH 096/143] Fixed link --- src/_data/whats-new.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_data/whats-new.yml b/src/_data/whats-new.yml index 1aeb796889a..da9ed46e4d7 100644 --- a/src/_data/whats-new.yml +++ b/src/_data/whats-new.yml @@ -749,7 +749,7 @@ entries: type: New Topic date: June 23, 2020 link: https://github.com/magento/devdocs/pull/7425 -- description: Added Microsoft Edge to the list of [supported browsers](https://devdocs.magento.com/guides/v2.4/install-gde/system-requirement.html) +- description: Added Microsoft Edge to the list of [supported browsers](https://devdocs.magento.com/guides/v2.4/install-gde/system-requirements.html) for 2.4.0, which was mistakenly removed. versions: 2.4.0 type: Technical From a1b5cae1ccf98f1088ece030b874ba6dfd3a274c Mon Sep 17 00:00:00 2001 From: Donald Booth Date: Thu, 29 Oct 2020 17:24:22 -0400 Subject: [PATCH 097/143] Added redirect --- src/guides/v2.3/install-gde/system-requirements.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/guides/v2.3/install-gde/system-requirements.md b/src/guides/v2.3/install-gde/system-requirements.md index d2c455acaaf..a532b936133 100644 --- a/src/guides/v2.3/install-gde/system-requirements.md +++ b/src/guides/v2.3/install-gde/system-requirements.md @@ -5,6 +5,8 @@ functional_areas: - Install - System - Setup +redirect_from: + - /guides/v2.3/install-gde/system-requirements-tech.html --- {:.bs-callout-info} From 751c3f1de8d1fc9d2b991f1c667a9de18323b854 Mon Sep 17 00:00:00 2001 From: Margaret Eker Date: Thu, 29 Oct 2020 17:14:22 -0500 Subject: [PATCH 098/143] Update Magento Cloud Docker instructions for adding custom PHP extensions (#8145) * [Doc] Adding new PHP extensions #155 (#7929) * Clean up instructions for adding PHP extensions - Move extension configuration attribute descriptions and examples to a separate section * Fixed markdown syntax * Fix link definitions * Fix link syntax * Apply suggestions from code review Co-authored-by: Yevhen Miroshnychenko Co-authored-by: Barny Shergold Co-authored-by: hguthrie --- src/cloud/docker/docker-extend.md | 200 +++++++++++++++++++++++++----- 1 file changed, 168 insertions(+), 32 deletions(-) diff --git a/src/cloud/docker/docker-extend.md b/src/cloud/docker/docker-extend.md index 67dd31aa8e7..39e41948a0c 100644 --- a/src/cloud/docker/docker-extend.md +++ b/src/cloud/docker/docker-extend.md @@ -15,8 +15,8 @@ You can use the built-in extension mechanism of Docker to specify [multiple comp version: '2' services: deploy: - environment: - - ENABLE_SENDMAIL=false + environment: + - ENABLE_SENDMAIL=false ``` 1. Pass both configuration files while executing your commands. For example: @@ -27,17 +27,16 @@ You can use the built-in extension mechanism of Docker to specify [multiple comp ## Specify Docker build sources -To test changes to images or make more extensive changes to the containers, you must build them from source. You can do this by -by adding the `build:context` configuration to the `docker-compose.override.yml` file. +To test changes to images or make more extensive changes to the containers, you must build them from source. You can do this by adding the `build:context` configuration to the `docker-compose.override.yml` file. The following example defines the build context for the Web container. You can use the same technique to build from any of the images in the `vendor/magento/magento-cloud-docker` directory or any other Docker image, including local images that are resourced outside the project. ```yaml version: '2.1' services: - web: + web: build: - context: ./vendor/magento/magento-cloud-docker/images/nginx/1.9/ + context: ./vendor/magento/magento-cloud-docker/images/nginx/1.9/ ``` To update the container configuration and test iteratively, use the `--force-recreate` option to refresh the container build: @@ -48,64 +47,111 @@ docker-compose up -d --force-recreate --build ## Add a new version of existing service -In {{site.data.var.mcd}} package the available [service versions] are determined by the Docker service images configured in the {{site.data.var.mcd}} `images` directory. You can add a new service version by creating a directory for the version and adding a `Dockerfile` and other files to configure the new version. +In the `{{site.data.var.mcd-package}}` package, the available [service versions] are determined by the Docker service images configured in the `images` directory. You add a new service version by creating a directory for the version and adding a `Dockerfile` and other files to configure the new version. {:.procedure} To add a new service version using a `Dockerfile`: -1. Clone the `{{site.data.var.mcd}}` project to your local environment if necessary. +1. Clone the `{{site.data.var.mcd-package}}` project to your local environment if necessary. 1. On the command line, change to the directory that contains the existing service version configurations. ```bash - cd magento-cloud-docker/images/ + cd magento-cloud-docker/images/ ``` 1. Create a directory for the new version. -1. In the new directory, add the `Dockerfile` that contains the image configuration details for the new version. Use the `Dockerfile` for an existing version as a template and add any other required configuration such as supported plugins. +1. Change to the new directory. + +1. Create a `Dockerfile` with any additional configuration details for the new version, such as supported plugins. You can use the `Dockerfile` from the previous version as a template. 1. Add the `docker-entrypoint.sh` and `healthcheck` files if needed. 1. Add any necessary `.conf` and `.ini` files for the service to the `etc` directory. -1. Run the following command to build the image. +1. Build the image. - `docker build -t test/:` + ```bash + docker build -t test/: + ``` -1. Once the build succeeds, test the changes by specifying the [Docker build sources]. +1. After the build succeeds, test the changes by specifying the [Docker build sources]. ## Add a new PHP extension -In addition to built-in extensions, you can add PHP extensions to the PHP container. +You can add PHP extensions to the PHP container by adding the extension configuration to the [ExtensionResolver.php] configuration file for {{ site.data.var.mcd-prod }}. {:.procedure} To add a new PHP extension: -1. Clone the `{{site.data.var.mcd}}` project to your local environment if necessary. +1. Clone the `{{site.data.var.mcd-package}}` project to your local environment. 1. On the command line, navigate to the PHP directory. ```bash cd magento-cloud-docker/src/Compose/Php + ``` -1. Open the `ExtensionResolver.php` file, define the required extension inside the `getConfig` method by specifying the extension type and dependency. +1. Add one or more extensions to the `ExtensionResolver.php` file: - For instance the following block adds the GNUPG extension: + - Open the `ExtensionResolver.php` file for editing. - ```php?start_inline=1 - 'gnupg' => [ - '>=7.0' => [ - self::EXTENSION_TYPE => self::EXTENSION_TYPE_PECL, - self::EXTENSION_OS_DEPENDENCIES => ['libgpgme11-dev'], - ],], - ``` + - Specify the required extension in the `getConfig` method by specifying the extension type and dependency. + + For example, the following block adds the `bcmath` extension: - The extension type can be either CORE or PECL, which are defined as `EXTENSION_TYPE_PECL` or `EXTENSION_TYPE_CORE` respectively. + ```php?start_inline=1 + public static function getConfig(): array + ... + + 'bcmath' => [ + '>=7.0' => [self::EXTENSION_TYPE => self::EXTENSION_TYPE_CORE], + ], + ... + ``` + {:.no-copy} + + In this case, the `bcmath` PHP core extension installs from `docker-php-source` images. + + {:.bs-callout-info} + The configuration you specify depends on the location of the extension source files and method of installation. You can add PHP core extensions from the official Docker PHP images, from the PECL repository, or using an installation script. For details on the configuration attributes and format for the `getConfig` method, see [PHP extension configuration reference](#php-extension-configuration-reference). + +1. Enable the extension by default, or by adding it to the `.magento.app.yaml` file: + + - To enable an extension by default, add it to the `DEFAULT_PHP_EXTENSIONS` array in the `ExtensionResolver.php` file. + + ```php?start_inline=1 + + /** + * Extensions which should be installed by default + */ + public const DEFAULT_PHP_EXTENSIONS = [ + 'bcmath', + 'bz2', + 'calendar', + 'exif', + 'gd', + 'gettext', + 'intl', + 'mysqli', + 'pcntl', + 'pdo_mysql', + 'soap', + 'sockets', + 'sysvmsg', + 'sysvsem', + 'sysvshm', + 'opcache', + 'zip', + ]; + ``` + + - If you add the extension to the `.magento.app.yaml` for your Cloud project, you must regenerate the Docker compose configuration file and restart the Docker container. 1. Add any required `.ini` files to the PHP FPM container configuration. - - On the command line, navigate to FPM image directory `magento-cloud-docker/images/php/fpm`: + - On the command line, navigate to the FPM image directory `magento-cloud-docker/images/php/fpm`: ```bash cd ../../../images/php/fpm @@ -131,9 +177,9 @@ To add a new PHP extension: - For each `.ini` file that you add, you must add the following line to the `Dockerfile` (`magento-cloud-docker/images/php/cli/Dockerfile`): - ```conf - ADD etc/.ini /usr/local/etc/php/conf.d/.ini - ``` + ```conf + ADD etc/.ini /usr/local/etc/php/conf.d/.ini + ``` 1. Generate an updated `Dockerfile` for all PHP image versions included in the {{site.data.var.mcd}} package. @@ -143,9 +189,99 @@ To add a new PHP extension: 1. Test the extension by specifying the [Docker build sources]. -[multiple compose files]: https://docs.docker.com/compose/reference/overview/#specifying-multiple-compose-files -[service versions]: https://devdocs.magento.com/cloud/docker/docker-containers.html#service-containers +### PHP extension configuration reference + +Use the following attributes to specify the PHP extension configuration in the `getConfig` method located in the [ExtensionResolver.php] file. The configuration you specify depends on method of installation: from the official Docker PHP images, from the PECL repository, or using an installation script. + +| Configuration option | Description +| -------------------- | ------------ +| PHP version constraint | Specifies the extension versions to install. If different versions have different installation requirements, you must add the configuration for each version. +| `EXTENSION_TYPE_CORE` | Extension that can be installed from a `docker-php-source` images. +| `EXTENSION_TYPE_PECL` | Extensions that can be installed from the [PECL] repository. +| `EXTENSION_TYPE_INSTALLATION_SCRIPT` | For extensions that install using a command sequence. +| `EXTENSION_TYPE` | Specifies whether the extension installed from the Docker PHP images, the PECL repository, or using an installation script. Valid values: `EXTENSION_TYPE_CORE`, `EXTENSION_TYPE_PECL`, or `EXTENSION_TYPE_INSTALLATION_SCRIPT`
    +`EXTENSION_OS_DEPENDENCIES` | For PHP core or PECL extensions, specifies Linux package dependencies. These packages install in the order listed before installing the extension. +`EXTENSION_CONFIGURE_OPTIONS` | For PHP core extensions, specifies any configuration options to apply when Docker configures the PHP extension using the `docker-php-ext-configure` command. +`EXTENSION_PACKAGE_NAME` | Specifies the extension package name. This value is used to generate the installation command. +`EXTENSION_INSTALLATION_SCRIPT` | For extension type `EXTENSION_TYPE_INSTALLATION_SCRIPT`, specifies the Bash script to install the extension. + +{:.bs-callout-info} +For more information about extension types and extension installation, see _How to install more PHP extensions_ section of the [PHP, Docker Official Images] page in Docker Hub. + +#### Example: Core extension configuration + +The following example shows the configuration for adding the PHP core extension `gd` in the `ExtensionResolver.php` file. + +```php?start_inline=1 +public static function getConfig(): array +... + 'gd' => [ + '>=7.0 <=7.3' => [ + self::EXTENSION_TYPE => self::EXTENSION_TYPE_CORE, + self::EXTENSION_OS_DEPENDENCIES => ['libjpeg62-turbo-dev', 'libpng-dev', 'libfreetype6-dev'], + self::EXTENSION_CONFIGURE_OPTIONS => [ + '--with-freetype-dir=/usr/include/', + '--with-jpeg-dir=/usr/include/' + ], + ], + '>=7.4' => [ + self::EXTENSION_TYPE => self::EXTENSION_TYPE_CORE, + self::EXTENSION_OS_DEPENDENCIES => ['libjpeg62-turbo-dev', 'libpng-dev', 'libfreetype6-dev'], + self::EXTENSION_CONFIGURE_OPTIONS => [ + '--with-freetype=/usr/include/', + '--with-jpeg=/usr/include/' + ], + ], + + ], +... +``` + +#### Example: PECL extension configuration + +The following example shows the configuration for adding the `gnupg` extension from the PECL repository. + +```php?start_inline=1 +public static function getConfig(): array +... + 'gnupg' => [ + '>=7.0' => [ + self::EXTENSION_TYPE => self::EXTENSION_TYPE_PECL, + self::EXTENSION_OS_DEPENDENCIES => ['libgpgme11-dev'], + ], + ], +... +``` + +#### Example: Configuration for extension installed using a script + +The following example shows the configuration for installing the `ioncube` extension using an installation script. + +```php?start_inline=1 +public static function getConfig(): array +... + + 'ioncube' => [ + '>=7.0 <=7.3' => [ + self::EXTENSION_TYPE => self::EXTENSION_TYPE_INSTALLATION_SCRIPT, + self::EXTENSION_INSTALLATION_SCRIPT => <<< BASH +cd /tmp +curl -O https://downloads.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz +tar zxvf ioncube_loaders_lin_x86-64.tar.gz +export PHP_VERSION=$(php -r "echo PHP_MAJOR_VERSION.'.'.PHP_MINOR_VERSION;") +export PHP_EXT_DIR=$(php-config --extension-dir) +cp "./ioncube/ioncube_loader_lin_\${PHP_VERSION}.so" "\${PHP_EXT_DIR}/ioncube.so" +rm -rf ./ioncube +rm ioncube_loaders_lin_x86-64.tar.gz +BASH + ], + ], +... +``` + [Docker build sources]: https://devdocs.magento.com/cloud/docker/docker-extend.html#specify-docker-build-sources +[ExtensionResolver.php]: https://github.com/magento/magento-cloud-docker/tree/develop/src/Compose/Php +[PECL]: https://pecl.php.net/ +[PHP, Docker Official Images]: https://hub.docker.com/_/php [multiple compose files]: https://docs.docker.com/compose/reference/overview/#specifying-multiple-compose-files [service versions]: https://devdocs.magento.com/cloud/docker/docker-containers.html#service-containers -[Docker build sources]: https://devdocs.magento.com/cloud/docker/docker-extend.html#specify-docker-build-sources From 18c32cd484a67ac8053bac84f918fcf84d48e822 Mon Sep 17 00:00:00 2001 From: Barny Shergold Date: Fri, 30 Oct 2020 12:05:48 +0000 Subject: [PATCH 099/143] Changed Hardcoded text for Magento Commerce Cloud to Variable --- src/_includes/cloud/error-codes.md | 4 ++-- src/cloud/integrations/gitlab-integration.md | 2 +- src/cloud/project/services-mysql.md | 2 +- src/cloud/project/user-admin.md | 4 ++-- src/cloud/release-notes/ece-release-notes.md | 2 +- src/cloud/requirements/cloud-requirements.md | 4 ++-- src/community/resources/best-practices.md | 4 ++-- src/guides/v2.3/comp-mgr/patching/mqp.md | 2 +- .../v2.3/config-guide/prod/config-reference-var-name.md | 2 +- src/guides/v2.3/release-notes/release-notes-2-3-5-commerce.md | 2 +- .../v2.3/release-notes/release-notes-2-3-5-open-source.md | 2 +- src/guides/v2.4/release-notes/commerce-2-4-1.md | 2 +- src/guides/v2.4/release-notes/release-notes-2-4-0-commerce.md | 2 +- .../v2.4/release-notes/release-notes-2-4-0-open-source.md | 2 +- 14 files changed, 18 insertions(+), 18 deletions(-) diff --git a/src/_includes/cloud/error-codes.md b/src/_includes/cloud/error-codes.md index 1ebeeb541b0..c374fa07842 100644 --- a/src/_includes/cloud/error-codes.md +++ b/src/_includes/cloud/error-codes.md @@ -2,7 +2,7 @@ ## Critical Errors -Critical errors indicate a problem with the Magento Commerce Cloud project configuration that causes deployment failure, for example incorrect, unsupported, or missing configuration for required settings. Before you can deploy, you must update the configuration to resolve these errors. +Critical errors indicate a problem with the {{ site.data.var.ece }} project configuration that causes deployment failure, for example incorrect, unsupported, or missing configuration for required settings. Before you can deploy, you must update the configuration to resolve these errors. ### Build stage @@ -102,7 +102,7 @@ Critical errors indicate a problem with the Magento Commerce Cloud project confi ## Warning Errors -Warning errors indicate a problem with the Magento Commerce Cloud project configuration such as incorrect, deprecated, unsupported, or missing configuration settings for optional features that can affect site operation. Although a warning does not cause deployment failure, you should review warning messages and update the configuration to resolve them. +Warning errors indicate a problem with the {{ site.data.var.ece }} project configuration such as incorrect, deprecated, unsupported, or missing configuration settings for optional features that can affect site operation. Although a warning does not cause deployment failure, you should review warning messages and update the configuration to resolve them. ### Build stage diff --git a/src/cloud/integrations/gitlab-integration.md b/src/cloud/integrations/gitlab-integration.md index c8a6d9d9e01..b83af57f42a 100644 --- a/src/cloud/integrations/gitlab-integration.md +++ b/src/cloud/integrations/gitlab-integration.md @@ -6,7 +6,7 @@ functional_areas: - Setup --- -You can configure a GitLab repository to automatically build and deploy an environment when you push code changes. This integration synchronizes your GitLab repository with your Magento Commerce Cloud account. +You can configure a GitLab repository to automatically build and deploy an environment when you push code changes. This integration synchronizes your GitLab repository with your {{ site.data.var.ece }} account. {% include cloud/note-private-repo.md %} diff --git a/src/cloud/project/services-mysql.md b/src/cloud/project/services-mysql.md index 2fe294eef5b..d7e0b10ae20 100644 --- a/src/cloud/project/services-mysql.md +++ b/src/cloud/project/services-mysql.md @@ -163,4 +163,4 @@ Accessing the MariaDB database directly requires you to use a SSH to log in to t ## Connect to secondary database -In some cases, you might need to connect to the secondary database, for example to improve database performance or resolve database locking issues. If this configuration is required, use `"port" : 3304` to establish the connection. See the [Magento Commerce Cloud database best practice](https://support.magento.com/hc/en-us/articles/360049045351) article in the _Magento Help Center_. +In some cases, you might need to connect to the secondary database, for example to improve database performance or resolve database locking issues. If this configuration is required, use `"port" : 3304` to establish the connection. See the [{{ site.data.var.ece }} database best practice](https://support.magento.com/hc/en-us/articles/360049045351) article in the _Magento Help Center_. diff --git a/src/cloud/project/user-admin.md b/src/cloud/project/user-admin.md index 37c681c68e4..c7ca922e432 100644 --- a/src/cloud/project/user-admin.md +++ b/src/cloud/project/user-admin.md @@ -18,7 +18,7 @@ You can manage access to {{site.data.var.ece}} projects by adding users and assi | **Role** | **Scope** | **Access** | |-|-|-| -| **Account owner** | Project | Perform any task in any project or environment, including deleting it.
    Magento assigns this role to the License Owner associated with the email address,
    name, and information of the person who registered the Magento Commerce Cloud account.

    You must submit a Magento Support ticket to modify settings or change the Account owner. | +| **Account owner** | Project | Perform any task in any project or environment, including deleting it.
    Magento assigns this role to the License Owner associated with the email address,
    name, and information of the person who registered the {{ site.data.var.ece }} account.

    You must submit a Magento Support ticket to modify settings or change the Account owner. | | **Super user** | Project | Administrator access to all project settings and Cloud environments. Super users can change settings and perform tasks on any environment, including creating and restoring [snapshots][]. | | **Project reader** | Project | View access to all project environments. Users with this role cannot perform tasks on any environment. However, you can configure environment-level permissions for users with this role to permit write access to a specific environment. | | **Admin** | Environment | Change settings and perform tasks on an environment, including merging with the parent environment | @@ -265,7 +265,7 @@ To enable TFA on your {{site.data.var.ece}} user account: You can manage the TFA configuration for a {{site.data.var.ece}} account from the _Security_ section on the _Account settings_ page. -1. Log in to the Magento Commerce Cloud user account. +1. Log in to the {{ site.data.var.ece }} user account. 1. On the Cloud projects page, click the **Account Settings** tab. diff --git a/src/cloud/release-notes/ece-release-notes.md b/src/cloud/release-notes/ece-release-notes.md index 6203646421a..a7a85382f6f 100644 --- a/src/cloud/release-notes/ece-release-notes.md +++ b/src/cloud/release-notes/ece-release-notes.md @@ -161,7 +161,7 @@ See [Upgrades and patches]({{ site.baseurl }}/cloud/project/project-upgrade-pare - {:.new}**CLI command updates**– - - {:.new}**New cron command**–You can now manually manage cron processing in your Magento Commerce Cloud environment using the `cron:disable` and `cron:enable` commands. Use the disable command to stop all active cron processes and disable all Magento cron jobs. Use the enable command to re-enable cron jobs when you are ready. See [Disable cron jobs]({{site.baseurl}}/cloud/configure/setup-cron-jobs.html#disable-cron-jobs). + - {:.new}**New cron command**–You can now manually manage cron processing in your {{ site.data.var.ece }} environment using the `cron:disable` and `cron:enable` commands. Use the disable command to stop all active cron processes and disable all Magento cron jobs. Use the enable command to re-enable cron jobs when you are ready. See [Disable cron jobs]({{site.baseurl}}/cloud/configure/setup-cron-jobs.html#disable-cron-jobs). - {:.new}**Improved error reporting**–Added better logging for Magento CLI command failures that occur during {{site.data.var.ct}} processing. diff --git a/src/cloud/requirements/cloud-requirements.md b/src/cloud/requirements/cloud-requirements.md index b73f6dd8dca..ab97fe5cf84 100644 --- a/src/cloud/requirements/cloud-requirements.md +++ b/src/cloud/requirements/cloud-requirements.md @@ -81,7 +81,7 @@ To get started as a developer in a {{site.data.var.ece}} project, you need to se * Set up a [local Docker development environment]({{ site.baseurl }}/cloud/docker/docker-development.html). - Magento Commerce Cloud environments are **Read Only**, including all Starter environments and all Pro Integration, Staging, and Production environments. In a local development environment, you can write and test code prior to pushing it to an Integration environment for further testing, followed by deployment to Staging and Production. + {{ site.data.var.ece }} environments are **Read Only**, including all Starter environments and all Pro Integration, Staging, and Production environments. In a local development environment, you can write and test code prior to pushing it to an Integration environment for further testing, followed by deployment to Staging and Production. In the local development environment, you develop in branches to add modules, extensions, third-party integrations, and configurations. We recommend reading over develop and deploy process for your [Starter]({{ site.baseurl }}/cloud/architecture/starter-develop-deploy-workflow.html) or [Pro]({{ site.baseurl }}/cloud/architecture/pro-develop-deploy-workflow.html) plan. @@ -89,7 +89,7 @@ To get started as a developer in a {{site.data.var.ece}} project, you need to se {:.bs-callout-info} {{ site.data.var.ece }} deploys Magento in [Production mode]({{ site.baseurl }}/guides/v2.4/config-guide/bootstrap/magento-modes.html#production-mode) by default. -Magento Commence Cloud does not support `Developer` mode. +{{ site.data.var.ece }} does not support `Developer` mode. Before you test any custom code in your local {{site.data.var.ee}} environment, you must do all of the following: diff --git a/src/community/resources/best-practices.md b/src/community/resources/best-practices.md index 5ee0a03cac6..b13249b1ddf 100644 --- a/src/community/resources/best-practices.md +++ b/src/community/resources/best-practices.md @@ -30,8 +30,8 @@ The DevDocs and Magento teams verified and provide the following best practices * [Observers Best Practices]({{ site.baseurl }}/guides/v2.3/ext-best-practices/extension-coding/observers-bp.html) * [Theme Development Best Practices]({{ site.baseurl }}/guides/v2.3/frontend-dev-guide/theme-best-practice.html) * [Performance Best Practices]({{ site.baseurl }}/guides/v2.3/performance-best-practices/) -* [Best Practices for Store Configuration]({{ site.baseurl }}/cloud/configure/configure-best-practices.html) for Commerce Cloud -* [Deployment Process]({{ site.baseurl }}/cloud/reference/discover-deploy.html) for Commerce Cloud +* [Best Practices for Store Configuration]({{ site.baseurl }}/cloud/configure/configure-best-practices.html) for {{ site.data.var.ece }} +* [Deployment Process]({{ site.baseurl }}/cloud/reference/discover-deploy.html) for {{ site.data.var.ece }} ## Want to contribute? diff --git a/src/guides/v2.3/comp-mgr/patching/mqp.md b/src/guides/v2.3/comp-mgr/patching/mqp.md index 8c78dd7c597..07c98d5bbac 100644 --- a/src/guides/v2.3/comp-mgr/patching/mqp.md +++ b/src/guides/v2.3/comp-mgr/patching/mqp.md @@ -5,7 +5,7 @@ functional_areas: - Upgrade --- -The [Magento Quality Package (MQP) package][] delivers individual patches developed by Magento and allows you to apply, revert, and view general information about all individual patches that are available for the installed version of {{ site.data.var.ee }} or {{ site.data.var.ce }}. See the [Apply Patches]({{ site.baseurl }}/cloud/project/project-patch.html) topic in the _Cloud Guide_ for details on installing and using MQP for Magento Commerce Cloud. +The [Magento Quality Package (MQP) package][] delivers individual patches developed by Magento and allows you to apply, revert, and view general information about all individual patches that are available for the installed version of {{ site.data.var.ee }} or {{ site.data.var.ce }}. See the [Apply Patches]({{ site.baseurl }}/cloud/project/project-patch.html) topic in the _Cloud Guide_ for details on installing and using MQP for {{ site.data.var.ece }}. {:.bs-callout-warning} We do not recommend using the MQP package to apply large numbers of patches because it increases the complexity of your code, which makes upgrading to a new version of Magento more difficult. diff --git a/src/guides/v2.3/config-guide/prod/config-reference-var-name.md b/src/guides/v2.3/config-guide/prod/config-reference-var-name.md index b2ed97e2a20..1a18cb28b56 100644 --- a/src/guides/v2.3/config-guide/prod/config-reference-var-name.md +++ b/src/guides/v2.3/config-guide/prod/config-reference-var-name.md @@ -242,7 +242,7 @@ content=' * To use values you set in the `$_ENV` array, you must set `variables_order = "EGPCS"` in your `php.ini` file. For details, see [PHP documentation](http://us.php.net/manual/en/ini.core.php#ini.variables-order). -* For Magento Commerce Cloud, if you are attempting to override Magento configuration settings using the [Project Web Interface](https://devdocs.magento.com/cloud/project/project-webint-basic.html#project-conf-env-var), you must prepend the variable name with `env:`. For example: +* For {{ site.data.var.ece }}, if you are attempting to override Magento configuration settings using the [Project Web Interface](https://devdocs.magento.com/cloud/project/project-webint-basic.html#project-conf-env-var), you must prepend the variable name with `env:`. For example: ![Environment variable example](https://devdocs.magento.com/common/images/cloud/cloud_env_var_example.png)' diff --git a/src/guides/v2.3/release-notes/release-notes-2-3-5-commerce.md b/src/guides/v2.3/release-notes/release-notes-2-3-5-commerce.md index 7edc92b0aad..efc1cb5f88e 100644 --- a/src/guides/v2.3/release-notes/release-notes-2-3-5-commerce.md +++ b/src/guides/v2.3/release-notes/release-notes-2-3-5-commerce.md @@ -1219,7 +1219,7 @@ We have fixed hundreds of issues in the Magento 2.3.5 core code. * **Issue**: Magento throws an error on the Order Summary section of the checkout workflow when a customer removes store credit after first selecting it as a payment method for the entire order. **Workaround**: Customers can refresh the Order page. A fix will be available in Magento 2.3.6, which is scheduled for release in Q4 2020. -* **Issue**: The storefront checkout workflow will display only the Klarna and Amazon Pay payment methods for some countries, although other payment methods have been enabled. **Workaround**: Download and apply [Patch for specific country payment method issue](https://magento.com/tech-resources/download#download2369). A fix will be available in Magento 2.3.6, which is scheduled for release in Q4 2020. See [Country payment method issue in Magento Commerce Cloud and Magento Commerce 2.3.5 and 2.3.5-p1](https://support.magento.com/hc/en-us/articles/360043955991). +* **Issue**: The storefront checkout workflow will display only the Klarna and Amazon Pay payment methods for some countries, although other payment methods have been enabled. **Workaround**: Download and apply [Patch for specific country payment method issue](https://magento.com/tech-resources/download#download2369). A fix will be available in Magento 2.3.6, which is scheduled for release in Q4 2020. See [Country payment method issue in {{ site.data.var.ece }} and Magento Commerce 2.3.5 and 2.3.5-p1](https://support.magento.com/hc/en-us/articles/360043955991). * **Issue**: An error message appears when a shopper attempts to change their credit card from the payments widget while checking out with Amazon Pay. The shopper cannot successfully complete checkout by ignoring the error and proceeding to checkout. To resolve this issue and remove the error, see [Amazon Pay credit card change error](https://support.magento.com/hc/en-us/articles/360042646332) to apply the fix. diff --git a/src/guides/v2.3/release-notes/release-notes-2-3-5-open-source.md b/src/guides/v2.3/release-notes/release-notes-2-3-5-open-source.md index d2c2ed5ed77..e5a9fc92031 100644 --- a/src/guides/v2.3/release-notes/release-notes-2-3-5-open-source.md +++ b/src/guides/v2.3/release-notes/release-notes-2-3-5-open-source.md @@ -1043,7 +1043,7 @@ We have fixed hundreds of issues in the Magento 2.3.5 core code. * **Issue**: The Compare Products feature does not work as expected in deployments with multiple store views. When a user tries to compare products from multiple store views and one product has an empty value for a comparable attribute, Magento displays a corrupted Compare Products page. **Workaround**: Comparable attribute values cannot be empty. Merchants should specify non-empty values for comparable product attributes or use the default storeview value for the attribute. A fix will be available in Magento 2.3.6, which is scheduled for release in Q4 2020. -* **Issue**: The storefront checkout workflow will display only the Klarna and Amazon Pay payment methods for some countries, although other payment methods have been enabled. **Workaround**: Download and apply [Patch for specific country payment method issue](https://magento.com/tech-resources/download#download2369). A fix will be available in Magento 2.3.6, which is scheduled for release in Q4 2020. See [Country payment method issue in Magento Commerce Cloud and Magento Commerce 2.3.5 and 2.3.5-p1](https://support.magento.com/hc/en-us/articles/360043955991). +* **Issue**: The storefront checkout workflow will display only the Klarna and Amazon Pay payment methods for some countries, although other payment methods have been enabled. **Workaround**: Download and apply [Patch for specific country payment method issue](https://magento.com/tech-resources/download#download2369). A fix will be available in Magento 2.3.6, which is scheduled for release in Q4 2020. See [Country payment method issue in {{ site.data.var.ece }} and Magento Commerce 2.3.5 and 2.3.5-p1](https://support.magento.com/hc/en-us/articles/360043955991). * **Issue**: An error message appears when a shopper attempts to change their credit card from the payments widget while checking out with Amazon Pay. The shopper cannot successfully complete checkout by ignoring the error and proceeding to checkout. To resolve this issue and remove the error, see [Amazon Pay credit card change error](https://support.magento.com/hc/en-us/articles/360042646332) to apply the fix. diff --git a/src/guides/v2.4/release-notes/commerce-2-4-1.md b/src/guides/v2.4/release-notes/commerce-2-4-1.md index e6e24f73bcc..ca4d140042f 100644 --- a/src/guides/v2.4/release-notes/commerce-2-4-1.md +++ b/src/guides/v2.4/release-notes/commerce-2-4-1.md @@ -57,7 +57,7 @@ Starting with the release of Magento Commerce 2.3.2, Magento will assign and pub This release contains enhancements to core quality, which improve the quality of the Framework and these functional areas: Customer Account, Catalog, CMS, OMS, Import/Export, Promotions and Targeting, Cart and Checkout, B2B, and Staging and Preview. -* **Site-Wide Analysis Tool (SWAT) integration with Magento Admin**. (SWAT) provides system insights and instrumentation for Commerce Cloud installations of Magento with 24/7 real-time performance monitoring, reports, and self-service recommendations. Merchants can use the new SWAT Admin role to securely access their SWAT Customer Detail pages through the Magento Admin. See [SWAT FAQ](https://support.magento.com/hc/en-us/articles/360048646671) for an overview. For usage information, see [SWAT](https://docs.magento.com/user-guide/reports/site-wide-analysis-tool.html). +* **Site-Wide Analysis Tool (SWAT) integration with Magento Admin**. (SWAT) provides system insights and instrumentation for {{ site.data.var.ece }} installations of Magento with 24/7 real-time performance monitoring, reports, and self-service recommendations. Merchants can use the new SWAT Admin role to securely access their SWAT Customer Detail pages through the Magento Admin. See [SWAT FAQ](https://support.magento.com/hc/en-us/articles/360048646671) for an overview. For usage information, see [SWAT](https://docs.magento.com/user-guide/reports/site-wide-analysis-tool.html). ### Performance improvements diff --git a/src/guides/v2.4/release-notes/release-notes-2-4-0-commerce.md b/src/guides/v2.4/release-notes/release-notes-2-4-0-commerce.md index 8b7c38dc112..b66bcc51562 100644 --- a/src/guides/v2.4/release-notes/release-notes-2-4-0-commerce.md +++ b/src/guides/v2.4/release-notes/release-notes-2-4-0-commerce.md @@ -55,7 +55,7 @@ No confirmed attacks related to these issues have occurred to date. However, cer * **Securing your Magento account**. Two-factor Authentication (2FA) provides an added, optional layer of security to better protect your Magento.com account from unauthorized users who might want to use your account in ways you do not want. See [Securing Your Account](https://docs.magento.com/user-guide/magento/magento-account-secure.html). - * **Securing Cloud SSH access**. Magento Commerce Cloud provides multi-factor authentication (MFA) enforcement to manage authentication requirements for SSH access to Cloud environments. Multi-factor authentication for 2FA is not enabled by default on a project. Magento highly recommends enabling this feature. Contact Support for assistance. See [Enable multi-factor authentication for SSH access](https://devdocs.magento.com/cloud/project/project-enable-mfa-enforcement.html). + * **Securing Cloud SSH access**. {{ site.data.var.ece }} provides multi-factor authentication (MFA) enforcement to manage authentication requirements for SSH access to Cloud environments. Multi-factor authentication for 2FA is not enabled by default on a project. Magento highly recommends enabling this feature. Contact Support for assistance. See [Enable multi-factor authentication for SSH access](https://devdocs.magento.com/cloud/project/project-enable-mfa-enforcement.html). * **Template filter strict mode is now enabled by default**. Magento components (including CMS pages and blocks) that use the template filter in legacy mode can be vulnerable to remote code execution (RCE). Enabling strict mode by default ensures that RCE attacks cannot be deliberately enabled.  diff --git a/src/guides/v2.4/release-notes/release-notes-2-4-0-open-source.md b/src/guides/v2.4/release-notes/release-notes-2-4-0-open-source.md index 0d3cfc09afb..b8b3a2e29c0 100644 --- a/src/guides/v2.4/release-notes/release-notes-2-4-0-open-source.md +++ b/src/guides/v2.4/release-notes/release-notes-2-4-0-open-source.md @@ -55,7 +55,7 @@ No confirmed attacks related to these issues have occurred to date. However, cer * **Securing your Magento account**. Two-factor Authentication (2FA) provides an added, optional layer of security to better protect your Magento.com account from unauthorized users who might want to use your account in ways you do not want. See [Securing Your Account](https://docs.magento.com/user-guide/magento/magento-account-secure.html). -* **Securing Cloud SSH access**. Magento Commerce Cloud provides multi-factor authentication (MFA) enforcement to manage authentication requirements for SSH access to Cloud environments. Multi-factor authentication for 2FA is not enabled by default on a project. Magento highly recommends enabling this feature. Contact Support for assistance. See [Enable multi-factor authentication for SSH access](https://devdocs.magento.com/cloud/project/project-enable-mfa-enforcement.html). +* **Securing Cloud SSH access**. {{ site.data.var.ece }} provides multi-factor authentication (MFA) enforcement to manage authentication requirements for SSH access to Cloud environments. Multi-factor authentication for 2FA is not enabled by default on a project. Magento highly recommends enabling this feature. Contact Support for assistance. See [Enable multi-factor authentication for SSH access](https://devdocs.magento.com/cloud/project/project-enable-mfa-enforcement.html). * **Template filter strict mode is now enabled by default**. Magento components (including CMS pages and blocks) that use the template filter in legacy mode can be vulnerable to remote code execution (RCE). Enabling strict mode by default ensures that RCE attacks cannot be deliberately enabled.  From 5100df3f4167e4c21610e9371d09b46165b4a57f Mon Sep 17 00:00:00 2001 From: Egor Rudkov Date: Fri, 30 Oct 2020 16:26:19 +0300 Subject: [PATCH 100/143] Layout overview small typo fix --- src/guides/v2.3/frontend-dev-guide/layouts/layout-overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guides/v2.3/frontend-dev-guide/layouts/layout-overview.md b/src/guides/v2.3/frontend-dev-guide/layouts/layout-overview.md index f6108bba20f..045f8d14fdb 100644 --- a/src/guides/v2.3/frontend-dev-guide/layouts/layout-overview.md +++ b/src/guides/v2.3/frontend-dev-guide/layouts/layout-overview.md @@ -12,7 +12,7 @@ This article describes the basic concepts you need to know to create layouts for In Magento, the basic components of page design are layouts, containers, and blocks. A *layout* represents the structure of a web page (1). *Containers* represent the placeholders within that web page structure (2). And *blocks* represent the UI controls or components within the container placeholders (3). These terms are illustrated and defined below. -The objective is to create a structured, common set of layout instructions to render pages. Most pages on a website can be categorized as a 1 column, 2 column, or 3 column layout. These page layouts can applied to a page from within the admin panel. +The objective is to create a structured, common set of layout instructions to render pages. Most pages on a website can be categorized as a 1 column, 2 column, or 3 column layout. These page layouts can be applied to a page from within the admin panel. ![web page sample layout][layout] From 9b8100656f571d861f8061b70fdfe9dd283dbe48 Mon Sep 17 00:00:00 2001 From: Egor Rudkov Date: Fri, 30 Oct 2020 19:48:59 +0300 Subject: [PATCH 101/143] Update src/guides/v2.3/frontend-dev-guide/layouts/layout-overview.md Co-authored-by: Barny Shergold --- src/guides/v2.3/frontend-dev-guide/layouts/layout-overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guides/v2.3/frontend-dev-guide/layouts/layout-overview.md b/src/guides/v2.3/frontend-dev-guide/layouts/layout-overview.md index 045f8d14fdb..7153dc4b873 100644 --- a/src/guides/v2.3/frontend-dev-guide/layouts/layout-overview.md +++ b/src/guides/v2.3/frontend-dev-guide/layouts/layout-overview.md @@ -12,7 +12,7 @@ This article describes the basic concepts you need to know to create layouts for In Magento, the basic components of page design are layouts, containers, and blocks. A *layout* represents the structure of a web page (1). *Containers* represent the placeholders within that web page structure (2). And *blocks* represent the UI controls or components within the container placeholders (3). These terms are illustrated and defined below. -The objective is to create a structured, common set of layout instructions to render pages. Most pages on a website can be categorized as a 1 column, 2 column, or 3 column layout. These page layouts can be applied to a page from within the admin panel. +The objective is to create a structured, common set of layout instructions to render pages. Most pages on a website can be categorized as a 1 column, 2 column or 3 column layout. These page layouts can be applied to a page from within the admin panel. ![web page sample layout][layout] From 33d4d09bd6d47e671b529216fd1d939c746614cd Mon Sep 17 00:00:00 2001 From: Misha Date: Fri, 30 Oct 2020 11:49:30 -0500 Subject: [PATCH 102/143] remove XHR instructions (#8153) Recs requests in the browser are of type 'text/plain' Co-authored-by: Kevin Harper --- src/recommendations/verify.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/recommendations/verify.md b/src/recommendations/verify.md index 5ef7b287381..02987147a50 100644 --- a/src/recommendations/verify.md +++ b/src/recommendations/verify.md @@ -24,8 +24,7 @@ To ensure events are firing on pages across your site (home, product, checkout, 1. Make sure you disable any ad blockers on your browser and accept cookies on the site. 1. In Chrome, choose **Customize and control Google Chrome** (the three vertical dots in the upper right corner of the browser) then select **More Tools** > **Developer Tools**. -1. Choose the **Network** tab then select the **XHR** type. -1. Filter for `tp2`. +1. Choose the **Network** tab and filter for `tp2`. 1. Reload the page. 1. You should see calls under `tp2` in the **Name** column. From 486c85f6bde06a7a098fd7f38e93fcc35b28f2fa Mon Sep 17 00:00:00 2001 From: Barny Shergold Date: Fri, 30 Oct 2020 17:23:12 +0000 Subject: [PATCH 103/143] Added Missing Links On 2FA Page (#8159) * Added Missing Links On 2FA Page * Corrected Link Co-authored-by: Barny Shergold Co-authored-by: Kevin Harper --- src/guides/v2.4/security/two-factor-authentication.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/guides/v2.4/security/two-factor-authentication.md b/src/guides/v2.4/security/two-factor-authentication.md index 5798ad5b37f..914a2dc0717 100644 --- a/src/guides/v2.4/security/two-factor-authentication.md +++ b/src/guides/v2.4/security/two-factor-authentication.md @@ -68,7 +68,7 @@ Two-Factor Authentication is implemented for Magento Web APIs with the following ## Magento Functional Testing Framework -MFTF uses Google Authenticator to execute tests with 2FA enabled. The following steps summarize how to configure MFTF with an encoded shared secret. For more information, see [Configuring MFTF for Two-Factor Authentication (2FA)][12]. +MFTF uses Google Authenticator to execute tests with 2FA enabled. The following steps summarize how to configure MFTF with an encoded shared secret. For more information, see [Configuring MFTF for Two-Factor Authentication (2FA)](({{ page.baseurl }}/security/two-factor-authentication.html#magento-functional-testing-framework). 1. Select Google Authenticator as the 2FA provider: @@ -82,7 +82,7 @@ MFTF uses Google Authenticator to execute tests with 2FA enabled. The following bin/magento config:set twofactorauth/google/otp_window 60 ``` -1. Generate a Base32-encoded string for the shared secret value. For example, encoding the string `abcd` with the online [Base32 Encode][13] tool returns the value `MFRGGZDF`. Use the following key to add the encoded value to the MFTF `.credentials` file: +1. Generate a Base32-encoded string for the shared secret value. For example, encoding the string `abcd` with the online [Base32 Encode](https://emn178.github.io/online-tools/base32_encode.html) tool returns the value `MFRGGZDF`. Use the following key to add the encoded value to the MFTF `.credentials` file: ```bash magento/tfa/OTP_SHARED_SECRET=MFRGGZDF From 941cacbe364680bfdfa95c6e700ed46426b23182 Mon Sep 17 00:00:00 2001 From: Alexander Taranovsky Date: Sat, 31 Oct 2020 22:39:36 +0200 Subject: [PATCH 104/143] magento/devdocs#: Update "Copying fieldsets" documentation (#8122) * magento/devdocs#: Update "Copying fieldsets" documentation https://devdocs.magento.com/guides/v2.4/ext-best-practices/tutorials/copy-fieldsets.html * Update copy-fieldsets.md Co-authored-by: Alex Taranovskyi Co-authored-by: Kevin Harper --- .../tutorials/copy-fieldsets.md | 39 ++++++++++++++++++- 1 file changed, 38 insertions(+), 1 deletion(-) diff --git a/src/guides/v2.3/ext-best-practices/tutorials/copy-fieldsets.md b/src/guides/v2.3/ext-best-practices/tutorials/copy-fieldsets.md index 1254a188afe..fe843e78823 100644 --- a/src/guides/v2.3/ext-best-practices/tutorials/copy-fieldsets.md +++ b/src/guides/v2.3/ext-best-practices/tutorials/copy-fieldsets.md @@ -36,6 +36,8 @@ The code snippet in the next step uses the name of the fieldset and aspect to sp **etc/fieldset.xml:** +The following example shows how to copy `sales_convert_quote`.`demo` to `sales_order`.`demo`. + ```xml @@ -49,6 +51,42 @@ The code snippet in the next step uses the name of the fieldset and aspect to sp ``` +Use the `targetField` attribute to specify the destination field. The following example shows how to copy `sales_convert_quote`.`demo` to `sales_order`.`order_demo`. + +```xml + + +
    + + + +
    +
    +
    +``` + +Define a new `aspect` if you need to copy a field of a source table into multiple fields in a destination table. + +The following example shows how to copy `sales_convert_quote`.`demo` into + +- `sales_order`.`demo` +- `sales_order`.`order_demo` + +```xml + + +
    + + + + +
    +
    +
    +``` + ## Step 3: Copy the fieldset {#step-3} For copying the fieldset, we'll observe the `sales_model_service_quote_submit_before` event by using the following code in our `etc/events.xml`: @@ -108,7 +146,6 @@ class SaveOrderBeforeSalesModelQuoteObserver implements ObserverInterface return $this; } } - ``` In the code, an instance of the `Copy` class is obtained from the constructor using [dependency injection][2]. From 7bb4e9c29ea090acca8c8703086ec5ca0a2fc527 Mon Sep 17 00:00:00 2001 From: Igor Date: Sat, 31 Oct 2020 20:52:08 -0500 Subject: [PATCH 105/143] Deleted M1 references from a bunch of places in Marketplace docs (#8127) * Removed M1 references from Extension review guidelines also fixed links from 2.3 to 2.4 * Removed M1 packaging article * Fixed links to point to 2.4 release line * Update src/marketplace/sellers/technical-review-guidelines.md Co-authored-by: Barny Shergold Co-authored-by: Kevin Harper Co-authored-by: Barny Shergold --- .../sellers/technical-reference.md | 40 +++++++++---------- .../sellers/technical-review-guidelines.md | 4 +- 2 files changed, 23 insertions(+), 21 deletions(-) diff --git a/src/marketplace/sellers/technical-reference.md b/src/marketplace/sellers/technical-reference.md index ec69b3b1143..b9cfcb50807 100644 --- a/src/marketplace/sellers/technical-reference.md +++ b/src/marketplace/sellers/technical-reference.md @@ -5,27 +5,27 @@ title: Technical Reference ## Guides -- [PHP Developer Guide]({{ site.baseurl }}/guides/v2.3/extension-dev-guide/bk-extension-dev-guide.html) -- [Magento Architecture]({{ site.baseurl }}/guides/v2.3/architecture/bk-architecture.html) -- [PHP Developers]({{ site.baseurl }}/guides/v2.3/extension-dev-guide/bk-extension-dev-guide.html) (includes code and packaging components for Marketplace) -- [Composer]({{ site.baseurl }}/guides/v2.3/extension-dev-guide/intro/intro-composer.html) -- [File Structure]({{ site.baseurl }}/guides/v2.3/extension-dev-guide/prepare/prepare_file-str.html) -- [Register]({{ site.baseurl }}/guides/v2.3/extension-dev-guide/build/component-registration.html) -- [Create]({{ site.baseurl }}/guides/v2.3/extension-dev-guide/build/build.html) -- [Enable]({{ site.baseurl }}/guides/v2.3/extension-dev-guide/build/enable-module.html) -- [Test]({{ site.baseurl }}/guides/v2.3/extension-dev-guide/validate/test-module.html) -- [Package]({{ site.baseurl }}/guides/v2.3/extension-dev-guide/package/package_module.html) -- [Coding Standards]({{ site.baseurl }}/guides/v2.3/coding-standards/bk-coding-standards.html) -- [Frontend Developers]({{ site.baseurl }}/guides/v2.3/frontend-dev-guide/bk-frontend-dev-guide.html) -- [Admin Pattern Library]({{ site.baseurl }}/guides/v2.3/pattern-library/bk-pattern.html) -- [JavaScript Developers]({{ site.baseurl }}/guides/v2.3/javascript-dev-guide/bk-javascript-dev-guide.html) -- [Magento Web APIs]({{ site.baseurl }}/guides/v2.3/get-started/bk-get-started-api.html) -- [REST]({{ site.baseurl }}/guides/v2.3/get-started/rest_front.html) -- [SOAP]({{ site.baseurl }}/guides/v2.3/get-started/soap/soap-web-api-calls.html) +- [PHP Developer Guide]({{ site.baseurl }}/guides/v2.4/extension-dev-guide/bk-extension-dev-guide.html) +- [Magento Architecture]({{ site.baseurl }}/guides/v2.4/architecture/bk-architecture.html) +- [PHP Developers]({{ site.baseurl }}/guides/v2.4/extension-dev-guide/bk-extension-dev-guide.html) (includes code and packaging components for Marketplace) +- [Composer]({{ site.baseurl }}/guides/v2.4/extension-dev-guide/intro/intro-composer.html) +- [File Structure]({{ site.baseurl }}/guides/v2.4/extension-dev-guide/prepare/prepare_file-str.html) +- [Register]({{ site.baseurl }}/guides/v2.4/extension-dev-guide/build/component-registration.html) +- [Create]({{ site.baseurl }}/guides/v2.4/extension-dev-guide/build/build.html) +- [Enable]({{ site.baseurl }}/guides/v2.4/extension-dev-guide/build/enable-module.html) +- [Test]({{ site.baseurl }}/guides/v2.4/extension-dev-guide/validate/test-module.html) +- [Package]({{ site.baseurl }}/guides/v2.4/extension-dev-guide/package/package_module.html) +- [Coding Standards]({{ site.baseurl }}/guides/v2.4/coding-standards/bk-coding-standards.html) +- [Frontend Developers]({{ site.baseurl }}/guides/v2.4/frontend-dev-guide/bk-frontend-dev-guide.html) +- [Admin Pattern Library]({{ site.baseurl }}/guides/v2.4/pattern-library/bk-pattern.html) +- [JavaScript Developers]({{ site.baseurl }}/guides/v2.4/javascript-dev-guide/bk-javascript-dev-guide.html) +- [Magento Web APIs]({{ site.baseurl }}/guides/v2.4/get-started/bk-get-started-api.html) +- [REST]({{ site.baseurl }}/guides/v2.4/get-started/rest_front.html) +- [SOAP]({{ site.baseurl }}/guides/v2.4/get-started/soap/soap-web-api-calls.html) - [Marketplace EQP API]({{ site.baseurl }}/marketplace/eqp/v1/api.html) ## System -- [Installation]({{ site.baseurl }}/guides/v2.3/install-gde/bk-install-guide.html) -- [Configuration]({{ site.baseurl }}/guides/v2.3/config-guide/bk-config-guide.html) -- [Component Manager]({{ site.baseurl }}/guides/v2.3/comp-mgr/bk-compman-upgrade-guide.html) (used by merchants to manage components) +- [Installation]({{ site.baseurl }}/guides/v2.4/install-gde/bk-install-guide.html) +- [Configuration]({{ site.baseurl }}/guides/v2.4/config-guide/bk-config-guide.html) +- [Component Manager]({{ site.baseurl }}/guides/v2.4/comp-mgr/bk-compman-upgrade-guide.html) (used by merchants to manage components) diff --git a/src/marketplace/sellers/technical-review-guidelines.md b/src/marketplace/sellers/technical-review-guidelines.md index f53d1fc1357..e885c7c065a 100644 --- a/src/marketplace/sellers/technical-review-guidelines.md +++ b/src/marketplace/sellers/technical-review-guidelines.md @@ -37,7 +37,9 @@ Package submissions must contain a Magento module, theme, language pack, or meta - `magento/product-community-edition` - `magento/magento2-ee-base` - `magento/product-enterprise-edition` + 1. The package does not use `*` as a version restriction for Magento packages (packages with `magento` vendor). You must specify version restriction according to the [recommendations]({{ site.baseurl }}/guides/v2.4/extension-dev-guide/versioning/dependencies.html#determine-module-dependency) in the _Magento PHP Developer Guide_. + 1. [Require inline aliases](https://getcomposer.org/doc/articles/aliases.md#require-inline-alias) are not used in the `composer.json` file. Additional requirements for package declarations are applied based on the package type: @@ -68,7 +70,7 @@ _See also:_ [Coding Standards]({{ site.baseurl }}/guides/v2.4/coding-standards/b All code and marketing content that is submitted to Magento Marketplace is checked for plagiarism to ensure that it has not been copied from existing Marketplace extensions or from the Magento codebase. -If the extension contains source code from the Community Edition of Magento, the extension must be licensed under [Open Source License v. 3.0][3] and properly credit Adobe, Inc. +If the extension contains source code from the Open Source Edition, the extension must be licensed under [Open Source License v. 3.0][3] and properly credit Adobe, Inc. _More details:_ [Copy Paste Detector]({{ site.baseurl }}/marketplace/sellers/copy-paste-detector.html) From 14b06db3462259ebd96721faec10de39ba93770b Mon Sep 17 00:00:00 2001 From: Donald Booth Date: Mon, 2 Nov 2020 06:58:42 -0500 Subject: [PATCH 106/143] Added comma --- src/guides/v2.3/frontend-dev-guide/layouts/layout-overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guides/v2.3/frontend-dev-guide/layouts/layout-overview.md b/src/guides/v2.3/frontend-dev-guide/layouts/layout-overview.md index 7153dc4b873..045f8d14fdb 100644 --- a/src/guides/v2.3/frontend-dev-guide/layouts/layout-overview.md +++ b/src/guides/v2.3/frontend-dev-guide/layouts/layout-overview.md @@ -12,7 +12,7 @@ This article describes the basic concepts you need to know to create layouts for In Magento, the basic components of page design are layouts, containers, and blocks. A *layout* represents the structure of a web page (1). *Containers* represent the placeholders within that web page structure (2). And *blocks* represent the UI controls or components within the container placeholders (3). These terms are illustrated and defined below. -The objective is to create a structured, common set of layout instructions to render pages. Most pages on a website can be categorized as a 1 column, 2 column or 3 column layout. These page layouts can be applied to a page from within the admin panel. +The objective is to create a structured, common set of layout instructions to render pages. Most pages on a website can be categorized as a 1 column, 2 column, or 3 column layout. These page layouts can be applied to a page from within the admin panel. ![web page sample layout][layout] From 645138f6b714e1a83107b7c04a0fba6175485a16 Mon Sep 17 00:00:00 2001 From: Donald Booth Date: Mon, 2 Nov 2020 07:39:28 -0500 Subject: [PATCH 107/143] Small edits --- .../javascript-dev-guide/widgets/widget_gallery_mg.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/guides/v2.3/javascript-dev-guide/widgets/widget_gallery_mg.md b/src/guides/v2.3/javascript-dev-guide/widgets/widget_gallery_mg.md index b3f951d86d0..41d25c3f9fe 100644 --- a/src/guides/v2.3/javascript-dev-guide/widgets/widget_gallery_mg.md +++ b/src/guides/v2.3/javascript-dev-guide/widgets/widget_gallery_mg.md @@ -12,8 +12,7 @@ In Magento it is used by the [gallery]({{ page.baseurl }}/javascript-dev-guide/w ## Initialize magnifier {#magnifier_init} The magnifier widget is initialized as described in [JavaScript initialization]({{ page.baseurl }}/javascript-dev-guide/javascript/js_init.html#init_phtml). - -When initializing the gallery Widget on an HTML element, magnifier initialization is also available. Following is the example of gallery initialization with magnifier: +The following is the example of gallery initialization with the magnifier: ```javascript
    What changed