diff --git a/CHANGELOG.md b/CHANGELOG.md index 9435aa2bf842dea9e510714a24cc652be8017241..8ed6dc411d4a1e92ad59c6d64257a4fbc3fea6f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,53 @@ +2.0.0-rc2 +============= +* Fixed bugs: + * Fixed an issue where video didn’t play on iPad and iPhone + * Fixed an issue where Admin panel was not accessible if port was used in URL + * Fixed an issue where database name could not be changed after fail during installation process + * Fixed an issue where bundle items quantities could not be saved when editing a bundle product in a wishlist on the storefront + * Fixed PHP issue which appeared during Text Swatch product attribute creation + * Fixed Mini Shopping Cart re-sizing after removing the product + * Fixed an issue with negative subtotal during PayPal checkout + * Fixed inconsistent credit card validation + * Fixed an issue where the Product Gallery did not completely overlay the bottom layer in the full-screen view + * Fixed an issue where the Product Gallery could not be easily opened in the full-screen view + * Fixed an issue where the “+†icon was displayed on video preview hover + * Fixed an issue where video preview was visible under video player + * Fixed an issue where 'Admin' was not a required field for the new Swatch + * Fixed an issue where shipping and billing country information was not transmitted to PayPal + * Fixed an issue with the attribute in configurable products + * Fixed a category page load time + * Removed space outside the visible area in Admin + * Fixed an issue where Magento was stuck in the maintenance mode, if a backup was created when disabling modules via Web Setup Wizard + * Fixed session response to be in JSON + * Fixed an issue where an out of stock product was displayed on the storefront + * Fixed an error which appeared during product import with replace behavior + * Fixed an issue were URL rewrites in catalog categories were wrong after URL key for a store view was changed or a category was moved + * Fixed an issue where JSON was received instead of normal page when trying to delete a category after reset + * Fixed an issue where product API with "all" store code did not work + * Fixed the misleading system message about invalid indexers + * Fixed an issue where a bundle product created using Web API was not visible on the storefront + * Fixed an issue where it was impossible to save more than one configuration for a configurable product with the text swatch attribute + * Fixed an issue with the absence of a proper indication about why an image could not be deleted not deleted when it was used in one of the store views + * Fixed an issue with data modification in export result file + * Fixed an issue with the incorrect behavior of the required check box custom + * Fixed an issue where an exception was thrown when trying to install Magento having previously installed and uninstalled it + * Fixed an issue where changing the layout of a CMS page caused its design theme to change to Magento Blank + * Fixed an issue where CMS pages API did not work with store code + * Fixed an issue where CMS blocks API did not work for multiple websites + * Fixed an issue where XSS Payload could been saved into Admin Panel + * Fixed an issue where an error caused by adding a new swatch attribute persisted after deleting the attribute + * Fixed PHP notice which appeared during text swatch product attribute creation + * Fixed JS error on credit memo view grid during export to CSV + * Fixed an issue where a user was redirected to a blank page when canceling checkout with PayPal Express in Website Payments Pro Hosted Solution + * Fixed an issue where it was impossible to checkout if Persistent Shopping Cart is enabled + * Fixed an issue where it was impossible to complete the Braintree PayPal Checkout if Street line 2 is empty + * Fixed an issue with XSS Payload in website's translation table + * Fixed an issue where payment functionality matrix section was suitable only for AbstractMethod specializations, leaving other payment methods without valuable information +* GitHub issues and requests: + * [#2276](https://github.com/magento/magento2/issues/2276) -- Notice: getimagesize(): Read error! in app/code/Magento/Catalog/Model/Product/Image.php on line 949 + * [#2128](https://github.com/magento/magento2/issues/2128) -- wrong filename on products list + 2.0.0-rc ============= * Performance improvements: diff --git a/app/code/Magento/AdminNotification/composer.json b/app/code/Magento/AdminNotification/composer.json index ebe0f3d320a707765f199ebf87f52e2f8aa0fd61..dba1bd6642e0c0413c9ad9e804a8210dab03c193 100644 --- a/app/code/Magento/AdminNotification/composer.json +++ b/app/code/Magento/AdminNotification/composer.json @@ -3,20 +3,22 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-media-storage": "100.0.0", - "magento/framework": "100.0.0", + "magento/module-store": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-media-storage": "100.0.*", + "magento/framework": "100.0.*", "lib-libxml": "*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\AdminNotification\\": "" } diff --git a/app/code/Magento/AdvancedPricingImportExport/composer.json b/app/code/Magento/AdvancedPricingImportExport/composer.json index abc9dd3e78a88b55e11a642595fa1ec162e1f0e9..41e26f1ba4fd9fa3f2de488f2ac44bab5f68bf44 100644 --- a/app/code/Magento/AdvancedPricingImportExport/composer.json +++ b/app/code/Magento/AdvancedPricingImportExport/composer.json @@ -1,27 +1,29 @@ { - "name": "magento/module-advanced-pricing-import-export", - "description": "N/A", - "require": { - "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-catalog-inventory": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-import-export": "100.0.0", - "magento/module-catalog-import-export": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-store": "100.0.0", - "magento/framework": "100.0.0" - }, - "type": "magento2-module", - "version": "100.0.0", - "license": [ - "OSL-3.0", - "AFL-3.0" - ], - "autoload": { - "files": [ "registration.php" ], - "psr-4": { - "Magento\\AdvancedPricingImportExport\\": "" + "name": "magento/module-advanced-pricing-import-export", + "description": "N/A", + "require": { + "php": "~5.5.0|~5.6.0|~7.0.0", + "magento/module-catalog": "100.0.*", + "magento/module-catalog-inventory": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-import-export": "100.0.*", + "magento/module-catalog-import-export": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-store": "100.0.*", + "magento/framework": "100.0.*" + }, + "type": "magento2-module", + "version": "100.0.1", + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\AdvancedPricingImportExport\\": "" + } } - } } diff --git a/app/code/Magento/Authorization/composer.json b/app/code/Magento/Authorization/composer.json index 63ecd8fe7f475cefd44df80b4112757af255d1cd..ed69db58c212c7c035f6dfb435f5d04d48aeef26 100644 --- a/app/code/Magento/Authorization/composer.json +++ b/app/code/Magento/Authorization/composer.json @@ -3,17 +3,19 @@ "description": "Authorization module provides access to Magento ACL functionality.", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-backend": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-backend": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Authorization\\": "" } diff --git a/app/code/Magento/Authorizenet/composer.json b/app/code/Magento/Authorizenet/composer.json index 15a7fc2cad6471d28f0ef2b6cb1594e030595c01..85f6323ba1d3b64d5f8986c1f9699818cca34bb6 100644 --- a/app/code/Magento/Authorizenet/composer.json +++ b/app/code/Magento/Authorizenet/composer.json @@ -3,22 +3,24 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-sales": "100.0.0", - "magento/module-store": "100.0.0", - "magento/module-quote": "100.0.0", - "magento/module-checkout": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-payment": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-sales": "100.0.*", + "magento/module-store": "100.0.*", + "magento/module-quote": "100.0.*", + "magento/module-checkout": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-payment": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "proprietary" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Authorizenet\\": "" } diff --git a/app/code/Magento/Backend/composer.json b/app/code/Magento/Backend/composer.json index ea7e834e11096eff86697a6622b2720f7abf9c09..08b6d3beeee32d5acecbe851375ae3d291a3756e 100644 --- a/app/code/Magento/Backend/composer.json +++ b/app/code/Magento/Backend/composer.json @@ -3,31 +3,33 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-directory": "100.0.0", - "magento/module-developer": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-theme": "100.0.0", - "magento/module-reports": "100.0.0", - "magento/module-sales": "100.0.0", - "magento/module-quote": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-user": "100.0.0", - "magento/module-backup": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-translation": "100.0.0", - "magento/module-require-js": "100.0.0", - "magento/module-config": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-directory": "100.0.*", + "magento/module-developer": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-theme": "100.0.*", + "magento/module-reports": "100.0.*", + "magento/module-sales": "100.0.*", + "magento/module-quote": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-user": "100.0.*", + "magento/module-backup": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-translation": "100.0.*", + "magento/module-require-js": "100.0.*", + "magento/module-config": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Backend\\": "" } diff --git a/app/code/Magento/Backup/composer.json b/app/code/Magento/Backup/composer.json index 2d52fcda77977e8f1a35bae447cdb42724346bcf..17eec2c8d3a1de59b9f9b5b96898176ce19375f6 100644 --- a/app/code/Magento/Backup/composer.json +++ b/app/code/Magento/Backup/composer.json @@ -3,19 +3,21 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-cron": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-cron": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Backup\\": "" } diff --git a/app/code/Magento/Braintree/composer.json b/app/code/Magento/Braintree/composer.json index faf69aa659dc38386c5c66e7c179db99808bb54c..222c117e21c2ccf7397ebbb84f2351f7424ae31c 100644 --- a/app/code/Magento/Braintree/composer.json +++ b/app/code/Magento/Braintree/composer.json @@ -1,35 +1,37 @@ { - "name": "magento/module-braintree", - "description": "N/A", - "require": { - "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-config": "100.0.0", - "magento/module-store": "100.0.0", - "magento/module-checkout": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-sales": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-payment": "100.0.0", - "magento/module-paypal": "100.0.0", - "magento/module-quote": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-directory": "100.0.0", - "magento/module-theme": "100.0.0", - "magento/framework": "100.0.0", - "braintree/braintree_php": "2.39.0" - }, - "suggest": { - "magento/module-checkout-agreements": "100.0.0" - }, - "type": "magento2-module", - "version": "100.0.0", - "license": [ - "proprietary" - ], - "autoload": { - "files": [ "registration.php" ], - "psr-4": { - "Magento\\Braintree\\": "" + "name": "magento/module-braintree", + "description": "N/A", + "require": { + "php": "~5.5.0|~5.6.0|~7.0.0", + "magento/module-config": "100.0.*", + "magento/module-store": "100.0.*", + "magento/module-checkout": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-sales": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-payment": "100.0.*", + "magento/module-paypal": "100.0.*", + "magento/module-quote": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-directory": "100.0.*", + "magento/module-theme": "100.0.*", + "magento/framework": "100.0.*", + "braintree/braintree_php": "2.39.0" + }, + "suggest": { + "magento/module-checkout-agreements": "100.0.*" + }, + "type": "magento2-module", + "version": "100.0.1", + "license": [ + "proprietary" + ], + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\Braintree\\": "" + } } - } } diff --git a/app/code/Magento/Bundle/composer.json b/app/code/Magento/Bundle/composer.json index 7a09f621a425bc66c1331cbf94b24c573ab16980..689f18d425836743cc952aaee8d35ccd2de46dc1 100644 --- a/app/code/Magento/Bundle/composer.json +++ b/app/code/Magento/Bundle/composer.json @@ -3,34 +3,36 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-tax": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-sales": "100.0.0", - "magento/module-checkout": "100.0.0", - "magento/module-catalog-inventory": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-catalog-rule": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-config": "100.0.0", - "magento/module-gift-message": "100.0.0", - "magento/framework": "100.0.0", - "magento/module-quote": "100.0.0", - "magento/module-media-storage": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-tax": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-sales": "100.0.*", + "magento/module-checkout": "100.0.*", + "magento/module-catalog-inventory": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-catalog-rule": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-config": "100.0.*", + "magento/module-gift-message": "100.0.*", + "magento/framework": "100.0.*", + "magento/module-quote": "100.0.*", + "magento/module-media-storage": "100.0.*" }, "suggest": { - "magento/module-webapi": "100.0.0", - "magento/module-bundle-sample-data": "Sample Data version:100.0.0" + "magento/module-webapi": "100.0.*", + "magento/module-bundle-sample-data": "Sample Data version:100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Bundle\\": "" } diff --git a/app/code/Magento/BundleImportExport/composer.json b/app/code/Magento/BundleImportExport/composer.json index 791c7cd9863ec2aba405cc0bc2ac4e9802b6698e..0df07bd6db3f21aab6858d5ab4d2813921f1277f 100644 --- a/app/code/Magento/BundleImportExport/composer.json +++ b/app/code/Magento/BundleImportExport/composer.json @@ -3,21 +3,23 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-import-export": "100.0.0", - "magento/module-catalog-import-export": "100.0.0", - "magento/module-bundle": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-catalog": "100.0.*", + "magento/module-import-export": "100.0.*", + "magento/module-catalog-import-export": "100.0.*", + "magento/module-bundle": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\BundleImportExport\\": "" } diff --git a/app/code/Magento/CacheInvalidate/composer.json b/app/code/Magento/CacheInvalidate/composer.json index b9ad879ca1986a45f985f757f2ddbcc709749aeb..bace094c8a395380a53616be47c1b99c4b1459e2 100644 --- a/app/code/Magento/CacheInvalidate/composer.json +++ b/app/code/Magento/CacheInvalidate/composer.json @@ -3,17 +3,19 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-page-cache": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-page-cache": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\CacheInvalidate\\": "" } diff --git a/app/code/Magento/Captcha/composer.json b/app/code/Magento/Captcha/composer.json index 8686af0d4751762b8dfa693c81bc20d9a07e4f25..c673b85602df8034302be685233d584ee963c4d1 100644 --- a/app/code/Magento/Captcha/composer.json +++ b/app/code/Magento/Captcha/composer.json @@ -3,20 +3,22 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-checkout": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-checkout": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Captcha\\": "" } diff --git a/app/code/Magento/Catalog/composer.json b/app/code/Magento/Catalog/composer.json index 52a3ceb1745564333205595e02a35c45d5b0885b..3a5941b40da795e769d1d02cd6d7c03b6fe47e12 100644 --- a/app/code/Magento/Catalog/composer.json +++ b/app/code/Magento/Catalog/composer.json @@ -3,44 +3,46 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-cms": "100.0.0", - "magento/module-indexer": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-theme": "100.0.0", - "magento/module-checkout": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-widget": "100.0.0", - "magento/module-wishlist": "100.0.0", - "magento/module-tax": "100.0.0", - "magento/module-msrp": "100.0.0", - "magento/module-catalog-inventory": "100.0.0", - "magento/module-directory": "100.0.0", - "magento/module-catalog-rule": "100.0.0", - "magento/module-product-alert": "100.0.0", - "magento/module-url-rewrite": "100.0.0", - "magento/module-catalog-url-rewrite": "100.0.0", - "magento/module-page-cache": "100.0.0", - "magento/module-quote": "100.0.0", - "magento/module-config": "100.0.0", - "magento/module-media-storage": "100.0.0", - "magento/framework": "100.0.0", - "magento/module-configurable-product": "100.0.0", - "magento/module-ui": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-cms": "100.0.*", + "magento/module-indexer": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-theme": "100.0.*", + "magento/module-checkout": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-widget": "100.0.*", + "magento/module-wishlist": "100.0.*", + "magento/module-tax": "100.0.*", + "magento/module-msrp": "100.0.*", + "magento/module-catalog-inventory": "100.0.*", + "magento/module-directory": "100.0.*", + "magento/module-catalog-rule": "100.0.*", + "magento/module-product-alert": "100.0.*", + "magento/module-url-rewrite": "100.0.*", + "magento/module-catalog-url-rewrite": "100.0.*", + "magento/module-page-cache": "100.0.*", + "magento/module-quote": "100.0.*", + "magento/module-config": "100.0.*", + "magento/module-media-storage": "100.0.*", + "magento/framework": "100.0.*", + "magento/module-configurable-product": "100.0.*", + "magento/module-ui": "100.0.*" }, "suggest": { - "magento/module-cookie": "100.0.0", - "magento/module-catalog-sample-data": "Sample Data version:100.0.0" + "magento/module-cookie": "100.0.*", + "magento/module-catalog-sample-data": "Sample Data version:100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Catalog\\": "" } diff --git a/app/code/Magento/CatalogImportExport/composer.json b/app/code/Magento/CatalogImportExport/composer.json index 76a3b046df6b19b10026d30447c14db7a767476d..01f839ce6303bebcab99e93923fe9dc93f540575 100644 --- a/app/code/Magento/CatalogImportExport/composer.json +++ b/app/code/Magento/CatalogImportExport/composer.json @@ -3,25 +3,27 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-import-export": "100.0.0", - "magento/module-store": "100.0.0", - "magento/module-tax": "100.0.0", - "magento/module-catalog-inventory": "100.0.0", - "magento/module-media-storage": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/framework": "100.0.0", + "magento/module-catalog": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-import-export": "100.0.*", + "magento/module-store": "100.0.*", + "magento/module-tax": "100.0.*", + "magento/module-catalog-inventory": "100.0.*", + "magento/module-media-storage": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/framework": "100.0.*", "ext-ctype": "*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\CatalogImportExport\\": "" } diff --git a/app/code/Magento/CatalogInventory/composer.json b/app/code/Magento/CatalogInventory/composer.json index 403a0be3109a4c8767126b1674e3028adf56ad0d..dd2c8811c8fd32433bc19dba524db596642a7718 100644 --- a/app/code/Magento/CatalogInventory/composer.json +++ b/app/code/Magento/CatalogInventory/composer.json @@ -3,23 +3,25 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-config": "100.0.0", - "magento/module-store": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-quote": "100.0.0", - "magento/framework": "100.0.0", - "magento/module-ui": "100.0.0" + "magento/module-config": "100.0.*", + "magento/module-store": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-quote": "100.0.*", + "magento/framework": "100.0.*", + "magento/module-ui": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\CatalogInventory\\": "" } diff --git a/app/code/Magento/CatalogRule/composer.json b/app/code/Magento/CatalogRule/composer.json index a4a6ce64c2a95e74ccf000d822a9e000c43f4f79..8a4449f379eedca2f94909d3c2c78642226ee518 100644 --- a/app/code/Magento/CatalogRule/composer.json +++ b/app/code/Magento/CatalogRule/composer.json @@ -3,26 +3,28 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-rule": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-rule": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/framework": "100.0.*" }, "suggest": { - "magento/module-import-export": "100.0.0", - "magento/module-catalog-rule-sample-data": "Sample Data version:100.0.0" + "magento/module-import-export": "100.0.*", + "magento/module-catalog-rule-sample-data": "Sample Data version:100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\CatalogRule\\": "" } diff --git a/app/code/Magento/CatalogRuleConfigurable/composer.json b/app/code/Magento/CatalogRuleConfigurable/composer.json index 2e08199d8a907876135d918d78babf2fd487f7ef..db9ef96f808acd82906976d5c312046e48030346 100644 --- a/app/code/Magento/CatalogRuleConfigurable/composer.json +++ b/app/code/Magento/CatalogRuleConfigurable/composer.json @@ -3,24 +3,25 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-configurable-product": "100.0.0", - "magento/framework": "100.0.0", + "magento/module-configurable-product": "100.0.*", + "magento/framework": "100.0.*", "magento/magento-composer-installer": "*" }, "suggest": { - "magento/module-catalog-rule": "100.0.0" + "magento/module-catalog-rule": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\CatalogRuleConfigurable\\": "" } } - } diff --git a/app/code/Magento/CatalogSearch/composer.json b/app/code/Magento/CatalogSearch/composer.json index 93123625db1f41bd944d05433961a9941998e399..b6a40b1931ff884347ebebd1b54ec849ebfcb04a 100644 --- a/app/code/Magento/CatalogSearch/composer.json +++ b/app/code/Magento/CatalogSearch/composer.json @@ -3,24 +3,26 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-search": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-directory": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-theme": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-search": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-directory": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-theme": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\CatalogSearch\\": "" } diff --git a/app/code/Magento/CatalogUrlRewrite/composer.json b/app/code/Magento/CatalogUrlRewrite/composer.json index 7d9e5d41ce24c88f8d32d41886df20d0d280b173..d2b40ff43869218f331da95abcb157494632a4e9 100644 --- a/app/code/Magento/CatalogUrlRewrite/composer.json +++ b/app/code/Magento/CatalogUrlRewrite/composer.json @@ -3,23 +3,25 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-backend": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-catalog-import-export": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-import-export": "100.0.0", - "magento/module-store": "100.0.0", - "magento/module-url-rewrite": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-backend": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-catalog-import-export": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-import-export": "100.0.*", + "magento/module-store": "100.0.*", + "magento/module-url-rewrite": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\CatalogUrlRewrite\\": "" } diff --git a/app/code/Magento/CatalogWidget/composer.json b/app/code/Magento/CatalogWidget/composer.json index e2a0f98f56a99a4c1013ecd89106f6daf4041a2a..7c5389b4683a07626cedb74850a9100dabbea13e 100644 --- a/app/code/Magento/CatalogWidget/composer.json +++ b/app/code/Magento/CatalogWidget/composer.json @@ -3,24 +3,26 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-widget": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-rule": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-store": "100.0.0", - "magento/module-wishlist": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-catalog": "100.0.*", + "magento/module-widget": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-rule": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-store": "100.0.*", + "magento/module-wishlist": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\CatalogWidget\\": "" } diff --git a/app/code/Magento/Checkout/composer.json b/app/code/Magento/Checkout/composer.json index a9ae3d15ad404614c66015f4cfd71eee37eabbe0..3c1f3fb50e468137bb509a2b452972e0d0f0b681 100644 --- a/app/code/Magento/Checkout/composer.json +++ b/app/code/Magento/Checkout/composer.json @@ -3,37 +3,39 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-sales": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-catalog-inventory": "100.0.0", - "magento/module-config": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-payment": "100.0.0", - "magento/module-shipping": "100.0.0", - "magento/module-tax": "100.0.0", - "magento/module-directory": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-page-cache": "100.0.0", - "magento/module-sales-rule": "100.0.0", - "magento/module-theme": "100.0.0", - "magento/module-msrp": "100.0.0", - "magento/framework": "100.0.0", - "magento/module-ui": "100.0.0", - "magento/module-quote": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-sales": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-catalog-inventory": "100.0.*", + "magento/module-config": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-payment": "100.0.*", + "magento/module-shipping": "100.0.*", + "magento/module-tax": "100.0.*", + "magento/module-directory": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-page-cache": "100.0.*", + "magento/module-sales-rule": "100.0.*", + "magento/module-theme": "100.0.*", + "magento/module-msrp": "100.0.*", + "magento/framework": "100.0.*", + "magento/module-ui": "100.0.*", + "magento/module-quote": "100.0.*" }, "suggest": { - "magento/module-cookie": "100.0.0" + "magento/module-cookie": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Checkout\\": "" } diff --git a/app/code/Magento/CheckoutAgreements/composer.json b/app/code/Magento/CheckoutAgreements/composer.json index 03cef4865ff4aa2e30eead006719cc864ef58293..d02e172bece703357afa6a7be301fe789bf20bff 100644 --- a/app/code/Magento/CheckoutAgreements/composer.json +++ b/app/code/Magento/CheckoutAgreements/composer.json @@ -3,20 +3,22 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-checkout": "100.0.0", - "magento/module-quote": "100.0.0", - "magento/module-store": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-checkout": "100.0.*", + "magento/module-quote": "100.0.*", + "magento/module-store": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\CheckoutAgreements\\": "" } diff --git a/app/code/Magento/Cms/composer.json b/app/code/Magento/Cms/composer.json index 678a9f5b6519b69f6fdfc91b930d026222eb027e..8d29394d7c68b69455f2c4c800ab56a3e8891b74 100644 --- a/app/code/Magento/Cms/composer.json +++ b/app/code/Magento/Cms/composer.json @@ -3,28 +3,30 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-theme": "100.0.0", - "magento/module-widget": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-email": "100.0.0", - "magento/module-ui": "100.0.0", - "magento/module-variable": "100.0.0", - "magento/module-media-storage": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-theme": "100.0.*", + "magento/module-widget": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-email": "100.0.*", + "magento/module-ui": "100.0.*", + "magento/module-variable": "100.0.*", + "magento/module-media-storage": "100.0.*", + "magento/framework": "100.0.*" }, "suggest": { - "magento/module-cms-sample-data": "Sample Data version:100.0.0" + "magento/module-cms-sample-data": "Sample Data version:100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Cms\\": "" } diff --git a/app/code/Magento/CmsUrlRewrite/composer.json b/app/code/Magento/CmsUrlRewrite/composer.json index 81bfdaa999ae77bd8ef799e1ca319dad25dd1549..0074281e99b5990b42d26334619b83b78802a4c0 100644 --- a/app/code/Magento/CmsUrlRewrite/composer.json +++ b/app/code/Magento/CmsUrlRewrite/composer.json @@ -3,19 +3,21 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-cms": "100.0.0", - "magento/module-url-rewrite": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-cms": "100.0.*", + "magento/module-url-rewrite": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\CmsUrlRewrite\\": "" } diff --git a/app/code/Magento/Config/composer.json b/app/code/Magento/Config/composer.json index 069879cd4cb730cf87c3fce5f6580530037ab5d2..96d9d39dd57f172912679b2e901b0c33e9defb0d 100644 --- a/app/code/Magento/Config/composer.json +++ b/app/code/Magento/Config/composer.json @@ -3,22 +3,24 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/framework": "100.0.0", - "magento/module-store": "100.0.0", - "magento/module-cron": "100.0.0", - "magento/module-email": "100.0.0", - "magento/module-directory": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-media-storage": "100.0.0" + "magento/framework": "100.0.*", + "magento/module-store": "100.0.*", + "magento/module-cron": "100.0.*", + "magento/module-email": "100.0.*", + "magento/module-directory": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-media-storage": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Config\\": "" } diff --git a/app/code/Magento/ConfigurableImportExport/composer.json b/app/code/Magento/ConfigurableImportExport/composer.json index b17d41df521c9f4e38afe21881e816b20bd779b1..7b63a402cf053faa1c8da4575af595c67a24835e 100644 --- a/app/code/Magento/ConfigurableImportExport/composer.json +++ b/app/code/Magento/ConfigurableImportExport/composer.json @@ -3,21 +3,23 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-catalog-import-export": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-import-export": "100.0.0", - "magento/module-configurable-product": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-catalog": "100.0.*", + "magento/module-catalog-import-export": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-import-export": "100.0.*", + "magento/module-configurable-product": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\ConfigurableImportExport\\": "" } diff --git a/app/code/Magento/ConfigurableProduct/composer.json b/app/code/Magento/ConfigurableProduct/composer.json index 8e28947119ee936266e9b1cc85cc265ca3fec81d..601a43114b444d1c1a0647e9aa8f2aa6d4fd9f6a 100644 --- a/app/code/Magento/ConfigurableProduct/composer.json +++ b/app/code/Magento/ConfigurableProduct/composer.json @@ -3,33 +3,35 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-catalog-inventory": "100.0.0", - "magento/module-checkout": "100.0.0", - "magento/module-msrp": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/framework": "100.0.0", - "magento/module-media-storage": "100.0.0", - "magento/module-quote": "100.0.0", - "magento/module-ui": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-catalog-inventory": "100.0.*", + "magento/module-checkout": "100.0.*", + "magento/module-msrp": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/framework": "100.0.*", + "magento/module-media-storage": "100.0.*", + "magento/module-quote": "100.0.*", + "magento/module-ui": "100.0.*" }, "suggest": { - "magento/module-webapi": "100.0.0", - "magento/module-sales": "100.0.0", - "magento/module-configurable-sample-data": "Sample Data version:100.0.0", - "magento/module-product-links-sample-data": "Sample Data version:100.0.0" + "magento/module-webapi": "100.0.*", + "magento/module-sales": "100.0.*", + "magento/module-configurable-sample-data": "Sample Data version:100.0.*", + "magento/module-product-links-sample-data": "Sample Data version:100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\ConfigurableProduct\\": "" } diff --git a/app/code/Magento/Contact/composer.json b/app/code/Magento/Contact/composer.json index c2a0a13e67c8b76aba8785ee67fe3b89086e022d..472803c1de8dd475d6e8f15fcc5eb1f8a580c8c5 100644 --- a/app/code/Magento/Contact/composer.json +++ b/app/code/Magento/Contact/composer.json @@ -3,21 +3,23 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-config": "100.0.0", - "magento/module-store": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-cms": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-config": "100.0.*", + "magento/module-store": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-cms": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Contact\\": "" } diff --git a/app/code/Magento/Cookie/composer.json b/app/code/Magento/Cookie/composer.json index 7f2636aae262160bb051b58ac00d85454b5303da..26cbfed8916ad230bef90cba98bc9531ecd44332 100644 --- a/app/code/Magento/Cookie/composer.json +++ b/app/code/Magento/Cookie/composer.json @@ -3,20 +3,22 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-store": "100.0.*", + "magento/framework": "100.0.*" }, "suggest": { - "magento/module-backend": "100.0.0" + "magento/module-backend": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Cookie\\": "" } diff --git a/app/code/Magento/Cron/composer.json b/app/code/Magento/Cron/composer.json index baec28ea123655a2a89a46729ffffba1697da843..d7e04d927a24734d0c6563d5cfcb79987ed9b999 100644 --- a/app/code/Magento/Cron/composer.json +++ b/app/code/Magento/Cron/composer.json @@ -3,20 +3,22 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-store": "100.0.*", + "magento/framework": "100.0.*" }, "suggest": { - "magento/module-config": "100.0.0" + "magento/module-config": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Cron\\": "" } diff --git a/app/code/Magento/CurrencySymbol/composer.json b/app/code/Magento/CurrencySymbol/composer.json index c65a229fe958733857c69f906009b714fd3af53a..0b5cacca5c399e1370f1f67d1a8cd252ea61b903 100644 --- a/app/code/Magento/CurrencySymbol/composer.json +++ b/app/code/Magento/CurrencySymbol/composer.json @@ -3,21 +3,23 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-config": "100.0.0", - "magento/module-store": "100.0.0", - "magento/module-page-cache": "100.0.0", - "magento/module-directory": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-config": "100.0.*", + "magento/module-store": "100.0.*", + "magento/module-page-cache": "100.0.*", + "magento/module-directory": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\CurrencySymbol\\": "" } diff --git a/app/code/Magento/Customer/composer.json b/app/code/Magento/Customer/composer.json index 07e44d80c9952528d4575b10b6ddd46b3f3c11a3..bc6a1fa59ed381a06ebab8ae5336549541221917 100644 --- a/app/code/Magento/Customer/composer.json +++ b/app/code/Magento/Customer/composer.json @@ -3,39 +3,41 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-directory": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-newsletter": "100.0.0", - "magento/module-sales": "100.0.0", - "magento/module-checkout": "100.0.0", - "magento/module-wishlist": "100.0.0", - "magento/module-theme": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-review": "100.0.0", - "magento/module-tax": "100.0.0", - "magento/module-page-cache": "100.0.0", - "magento/framework": "100.0.0", - "magento/module-authorization": "100.0.0", - "magento/module-integration": "100.0.0", - "magento/module-media-storage": "100.0.0", - "magento/module-ui": "100.0.0", - "magento/module-config": "100.0.0", - "magento/module-quote": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-directory": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-newsletter": "100.0.*", + "magento/module-sales": "100.0.*", + "magento/module-checkout": "100.0.*", + "magento/module-wishlist": "100.0.*", + "magento/module-theme": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-review": "100.0.*", + "magento/module-tax": "100.0.*", + "magento/module-page-cache": "100.0.*", + "magento/framework": "100.0.*", + "magento/module-authorization": "100.0.*", + "magento/module-integration": "100.0.*", + "magento/module-media-storage": "100.0.*", + "magento/module-ui": "100.0.*", + "magento/module-config": "100.0.*", + "magento/module-quote": "100.0.*" }, "suggest": { - "magento/module-cookie": "100.0.0", - "magento/module-customer-sample-data": "Sample Data version:100.0.0" + "magento/module-cookie": "100.0.*", + "magento/module-customer-sample-data": "Sample Data version:100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Customer\\": "" } diff --git a/app/code/Magento/CustomerImportExport/composer.json b/app/code/Magento/CustomerImportExport/composer.json index 52772b4838befe764974e03c6574a1790046585c..90c4b312e3bcd4ea320624b9ba3eeba011f07ecc 100644 --- a/app/code/Magento/CustomerImportExport/composer.json +++ b/app/code/Magento/CustomerImportExport/composer.json @@ -3,22 +3,24 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-import-export": "100.0.0", - "magento/module-directory": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-import-export": "100.0.*", + "magento/module-directory": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\CustomerImportExport\\": "" } diff --git a/app/code/Magento/Deploy/composer.json b/app/code/Magento/Deploy/composer.json index 08db8ba03a2857fb9b21be67c1bc3feb45884bdc..5e93cb47256ef5bad6e2b6932a765676f7c6d711 100644 --- a/app/code/Magento/Deploy/composer.json +++ b/app/code/Magento/Deploy/composer.json @@ -3,19 +3,21 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/framework": "100.0.0", - "magento/module-store": "100.0.0", - "magento/module-theme": "100.0.0", - "magento/module-require-js": "100.0.0" + "magento/framework": "100.0.*", + "magento/module-store": "100.0.*", + "magento/module-theme": "100.0.*", + "magento/module-require-js": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Deploy\\": "" } diff --git a/app/code/Magento/Developer/composer.json b/app/code/Magento/Developer/composer.json index 78b68d7e240e1b46f258b6d9c5163b83e9d93868..433266512970f77fc488bfb324026ad22c56cdac 100644 --- a/app/code/Magento/Developer/composer.json +++ b/app/code/Magento/Developer/composer.json @@ -3,17 +3,19 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-store": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Developer\\": "" } diff --git a/app/code/Magento/Dhl/composer.json b/app/code/Magento/Dhl/composer.json index 1d9913c01584ad4a69e686d4b411b644d02f67da..a5133e7c39f1deedbe46914ffbc0b585d6a23d69 100644 --- a/app/code/Magento/Dhl/composer.json +++ b/app/code/Magento/Dhl/composer.json @@ -3,29 +3,31 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-config": "100.0.0", - "magento/module-store": "100.0.0", - "magento/module-shipping": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-directory": "100.0.0", - "magento/module-sales": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-catalog-inventory": "100.0.0", - "magento/module-quote": "100.0.0", - "magento/framework": "100.0.0", + "magento/module-config": "100.0.*", + "magento/module-store": "100.0.*", + "magento/module-shipping": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-directory": "100.0.*", + "magento/module-sales": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-catalog-inventory": "100.0.*", + "magento/module-quote": "100.0.*", + "magento/framework": "100.0.*", "lib-libxml": "*" }, "suggest": { - "magento/module-checkout": "100.0.0" + "magento/module-checkout": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Dhl\\": "" } diff --git a/app/code/Magento/Directory/composer.json b/app/code/Magento/Directory/composer.json index 9833994c007c71b6fc6b6f261c9e3ed906af6ebc..cbab8da5003932b4959aa21a1d95c7d18cbc000f 100644 --- a/app/code/Magento/Directory/composer.json +++ b/app/code/Magento/Directory/composer.json @@ -3,20 +3,22 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-config": "100.0.0", - "magento/module-store": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/framework": "100.0.0", + "magento/module-config": "100.0.*", + "magento/module-store": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/framework": "100.0.*", "lib-libxml": "*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Directory\\": "" } diff --git a/app/code/Magento/Downloadable/composer.json b/app/code/Magento/Downloadable/composer.json index cebb10b601d7690ffb4213fad065fbb968fb3f73..6cda3df3d96e343485d9fa15c9ebbfa9be5e7fbb 100644 --- a/app/code/Magento/Downloadable/composer.json +++ b/app/code/Magento/Downloadable/composer.json @@ -3,34 +3,36 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-tax": "100.0.0", - "magento/module-theme": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-sales": "100.0.0", - "magento/module-checkout": "100.0.0", - "magento/module-directory": "100.0.0", - "magento/module-gift-message": "100.0.0", - "magento/module-catalog-inventory": "100.0.0", - "magento/module-config": "100.0.0", - "magento/module-media-storage": "100.0.0", - "magento/module-quote": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-tax": "100.0.*", + "magento/module-theme": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-sales": "100.0.*", + "magento/module-checkout": "100.0.*", + "magento/module-directory": "100.0.*", + "magento/module-gift-message": "100.0.*", + "magento/module-catalog-inventory": "100.0.*", + "magento/module-config": "100.0.*", + "magento/module-media-storage": "100.0.*", + "magento/module-quote": "100.0.*", + "magento/framework": "100.0.*" }, "suggest": { - "magento/module-downloadable-sample-data": "Sample Data version:100.0.0" + "magento/module-downloadable-sample-data": "Sample Data version:100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Downloadable\\": "" } diff --git a/app/code/Magento/DownloadableImportExport/composer.json b/app/code/Magento/DownloadableImportExport/composer.json index 89de865c72ff0d5e0f1ef988e46317cdabd18240..186de1b6dece7b83cad188d68ec897f4d81a3035 100644 --- a/app/code/Magento/DownloadableImportExport/composer.json +++ b/app/code/Magento/DownloadableImportExport/composer.json @@ -3,22 +3,24 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-import-export": "100.0.0", - "magento/module-catalog-import-export": "100.0.0", - "magento/module-downloadable": "100.0.0", - "magento/module-store": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-catalog": "100.0.*", + "magento/module-import-export": "100.0.*", + "magento/module-catalog-import-export": "100.0.*", + "magento/module-downloadable": "100.0.*", + "magento/module-store": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\DownloadableImportExport\\": "" } diff --git a/app/code/Magento/Eav/composer.json b/app/code/Magento/Eav/composer.json index 52eb3456386f293a3d88d07ca75235360a3f1f5d..432819d53254205b784cc3c39250fabbd1895ade 100644 --- a/app/code/Magento/Eav/composer.json +++ b/app/code/Magento/Eav/composer.json @@ -3,21 +3,23 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-config": "100.0.0", - "magento/module-media-storage": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-config": "100.0.*", + "magento/module-media-storage": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Eav\\": "" } diff --git a/app/code/Magento/Email/composer.json b/app/code/Magento/Email/composer.json index 0b7843aea8c186a2c6b706219a3180351edd4348..f4248761e17c36bb6c17d58644ebb90a8cd3c864 100644 --- a/app/code/Magento/Email/composer.json +++ b/app/code/Magento/Email/composer.json @@ -3,21 +3,23 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-config": "100.0.0", - "magento/module-store": "100.0.0", - "magento/module-cms": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-variable": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-config": "100.0.*", + "magento/module-store": "100.0.*", + "magento/module-cms": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-variable": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Email\\": "" } diff --git a/app/code/Magento/EncryptionKey/composer.json b/app/code/Magento/EncryptionKey/composer.json index b43fe763ae0346fb99205eea55cb1ffefe8f9442..322dc9bafed284c18d793b31e0b7abd221173cb8 100644 --- a/app/code/Magento/EncryptionKey/composer.json +++ b/app/code/Magento/EncryptionKey/composer.json @@ -3,17 +3,19 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-config": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-config": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "proprietary" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\EncryptionKey\\": "" } diff --git a/app/code/Magento/Fedex/composer.json b/app/code/Magento/Fedex/composer.json index 3b7735cae4b65864ff06601992828fb6fbafe9f5..51ff9988265c17b5b9426da61d2ee7c8108acb4f 100644 --- a/app/code/Magento/Fedex/composer.json +++ b/app/code/Magento/Fedex/composer.json @@ -3,25 +3,27 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-shipping": "100.0.0", - "magento/module-directory": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-sales": "100.0.0", - "magento/module-catalog-inventory": "100.0.0", - "magento/module-quote": "100.0.0", - "magento/module-config": "100.0.0", - "magento/framework": "100.0.0", + "magento/module-store": "100.0.*", + "magento/module-shipping": "100.0.*", + "magento/module-directory": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-sales": "100.0.*", + "magento/module-catalog-inventory": "100.0.*", + "magento/module-quote": "100.0.*", + "magento/module-config": "100.0.*", + "magento/framework": "100.0.*", "lib-libxml": "*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Fedex\\": "" } diff --git a/app/code/Magento/GiftMessage/composer.json b/app/code/Magento/GiftMessage/composer.json index 3dea5c049cba802070de293c83cdcd3f7ea7a9e5..c17cd9b92834e54e92bd9305484589cc42839dd0 100644 --- a/app/code/Magento/GiftMessage/composer.json +++ b/app/code/Magento/GiftMessage/composer.json @@ -3,27 +3,29 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-checkout": "100.0.0", - "magento/module-sales": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-quote": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-checkout": "100.0.*", + "magento/module-sales": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-quote": "100.0.*", + "magento/framework": "100.0.*" }, "suggest": { - "magento/module-multishipping": "100.0.0" + "magento/module-multishipping": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\GiftMessage\\": "" } diff --git a/app/code/Magento/GoogleAdwords/composer.json b/app/code/Magento/GoogleAdwords/composer.json index f0046c3b87021e8fb48eb24cc568485409b695e9..5ba60663c1c041546e1f0fc13b06849e3accf80a 100644 --- a/app/code/Magento/GoogleAdwords/composer.json +++ b/app/code/Magento/GoogleAdwords/composer.json @@ -3,18 +3,20 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-sales": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-sales": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\GoogleAdwords\\": "" } diff --git a/app/code/Magento/GoogleAnalytics/composer.json b/app/code/Magento/GoogleAnalytics/composer.json index 4d9fe0bf34ab8151a83f425fa28d6307993e00d3..414328780284e825233cbf7e8826b4a02f284a5d 100644 --- a/app/code/Magento/GoogleAnalytics/composer.json +++ b/app/code/Magento/GoogleAnalytics/composer.json @@ -3,19 +3,21 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-sales": "100.0.0", - "magento/framework": "100.0.0", - "magento/module-cookie": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-sales": "100.0.*", + "magento/framework": "100.0.*", + "magento/module-cookie": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\GoogleAnalytics\\": "" } diff --git a/app/code/Magento/GoogleOptimizer/composer.json b/app/code/Magento/GoogleOptimizer/composer.json index a8dc21d3de3bffef5f427f73458ee67d59b0fca6..74822f69f5b9f25440c1735b2d52a8a56318e669 100644 --- a/app/code/Magento/GoogleOptimizer/composer.json +++ b/app/code/Magento/GoogleOptimizer/composer.json @@ -3,21 +3,23 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-google-analytics": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-cms": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-google-analytics": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-cms": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\GoogleOptimizer\\": "" } diff --git a/app/code/Magento/GroupedImportExport/composer.json b/app/code/Magento/GroupedImportExport/composer.json index b182808a542fb85b8bd2aabaee75516641b2d872..afd3e6f23cdc5ceed6bf8df9f85ee49b46b351aa 100644 --- a/app/code/Magento/GroupedImportExport/composer.json +++ b/app/code/Magento/GroupedImportExport/composer.json @@ -3,21 +3,23 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-import-export": "100.0.0", - "magento/module-catalog-import-export": "100.0.0", - "magento/module-grouped-product": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-catalog": "100.0.*", + "magento/module-import-export": "100.0.*", + "magento/module-catalog-import-export": "100.0.*", + "magento/module-grouped-product": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\GroupedImportExport\\": "" } diff --git a/app/code/Magento/GroupedProduct/composer.json b/app/code/Magento/GroupedProduct/composer.json index 75b063c06c2197ace2df6078765e6d5f17dc8fdc..0685deb17527d6df50206bbcc40f2aa87a484ff8 100644 --- a/app/code/Magento/GroupedProduct/composer.json +++ b/app/code/Magento/GroupedProduct/composer.json @@ -3,30 +3,32 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-catalog-inventory": "100.0.0", - "magento/module-sales": "100.0.0", - "magento/module-checkout": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-media-storage": "100.0.0", - "magento/module-msrp": "100.0.0", - "magento/module-quote": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-catalog-inventory": "100.0.*", + "magento/module-sales": "100.0.*", + "magento/module-checkout": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-media-storage": "100.0.*", + "magento/module-msrp": "100.0.*", + "magento/module-quote": "100.0.*", + "magento/framework": "100.0.*" }, "suggest": { - "magento/module-grouped-product-sample-data": "Sample Data version:100.0.0" + "magento/module-grouped-product-sample-data": "Sample Data version:100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\GroupedProduct\\": "" } diff --git a/app/code/Magento/ImportExport/composer.json b/app/code/Magento/ImportExport/composer.json index 02b0af49a13bb71f7b16b2221139335b92f0e4e8..4a300ceb429a0337fcaf906f39e95b5325a84996 100644 --- a/app/code/Magento/ImportExport/composer.json +++ b/app/code/Magento/ImportExport/composer.json @@ -3,21 +3,23 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-media-storage": "100.0.0", - "magento/framework": "100.0.0", + "magento/module-store": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-media-storage": "100.0.*", + "magento/framework": "100.0.*", "ext-ctype": "*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\ImportExport\\": "" } diff --git a/app/code/Magento/Indexer/composer.json b/app/code/Magento/Indexer/composer.json index 1278cf3f65d53de51109603b8ae5b7a2df1246cb..c81472c303f235b7767a7b5fab927f961d9151c9 100644 --- a/app/code/Magento/Indexer/composer.json +++ b/app/code/Magento/Indexer/composer.json @@ -3,18 +3,20 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-backend": "100.0.0", - "magento/module-page-cache": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-backend": "100.0.*", + "magento/module-page-cache": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Indexer\\": "" } diff --git a/app/code/Magento/Integration/composer.json b/app/code/Magento/Integration/composer.json index 1235f04253b5e1d71cdbe2b3f08f202a137ff8cf..f4d6290f5025ab240914c98453d3a06818f72db3 100644 --- a/app/code/Magento/Integration/composer.json +++ b/app/code/Magento/Integration/composer.json @@ -3,21 +3,23 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-user": "100.0.0", - "magento/framework": "100.0.0", - "magento/module-authorization": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-user": "100.0.*", + "magento/framework": "100.0.*", + "magento/module-authorization": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Integration\\": "" } diff --git a/app/code/Magento/LayeredNavigation/composer.json b/app/code/Magento/LayeredNavigation/composer.json index 56015c733c33bdf46816907b89b2cff3ccb8d679..a55f25ca8721d1b58c8285d3c0d1aa2e88a5cf31 100644 --- a/app/code/Magento/LayeredNavigation/composer.json +++ b/app/code/Magento/LayeredNavigation/composer.json @@ -3,18 +3,20 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-config": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-config": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\LayeredNavigation\\": "" } diff --git a/app/code/Magento/Marketplace/composer.json b/app/code/Magento/Marketplace/composer.json index 9819c2ff4e63f5270f328508058e5f05dc4341ad..c26caf4fc980162dfd6fd82c1410f7e207e08932 100644 --- a/app/code/Magento/Marketplace/composer.json +++ b/app/code/Magento/Marketplace/composer.json @@ -3,17 +3,19 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/framework": "100.0.0", - "magento/module-backend": "100.0.0" + "magento/framework": "100.0.*", + "magento/module-backend": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Marketplace\\": "" } diff --git a/app/code/Magento/MediaStorage/composer.json b/app/code/Magento/MediaStorage/composer.json index 0a4c692a8afdfc1c0ab5cd1a4d2204df7ebea8f6..3fefb0aadfbc2baccc45bb1bcc4b494e1445a4f7 100644 --- a/app/code/Magento/MediaStorage/composer.json +++ b/app/code/Magento/MediaStorage/composer.json @@ -3,19 +3,21 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-config": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-config": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\MediaStorage\\": "" } diff --git a/app/code/Magento/Msrp/composer.json b/app/code/Magento/Msrp/composer.json index 1662856992545ff8ce029d89c6872c93de2f4d12..3a58cb71adf805557e443a0312399dfbc3787fcc 100644 --- a/app/code/Magento/Msrp/composer.json +++ b/app/code/Magento/Msrp/composer.json @@ -3,26 +3,28 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-downloadable": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-grouped-product": "100.0.0", - "magento/module-tax": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-downloadable": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-grouped-product": "100.0.*", + "magento/module-tax": "100.0.*", + "magento/framework": "100.0.*" }, "suggest": { - "magento/module-bundle": "100.0.0", - "magento/module-msrp-sample-data": "Sample Data version:100.0.0" + "magento/module-bundle": "100.0.*", + "magento/module-msrp-sample-data": "Sample Data version:100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Msrp\\": "" } diff --git a/app/code/Magento/Multishipping/composer.json b/app/code/Magento/Multishipping/composer.json index 756118de1bab7e4d9d356371adc61fd58709e79c..89dc6b658108fb309bd5f1b8d3cb016eb10ce370 100644 --- a/app/code/Magento/Multishipping/composer.json +++ b/app/code/Magento/Multishipping/composer.json @@ -3,24 +3,26 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-checkout": "100.0.0", - "magento/module-sales": "100.0.0", - "magento/module-payment": "100.0.0", - "magento/module-tax": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-theme": "100.0.0", - "magento/module-quote": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-checkout": "100.0.*", + "magento/module-sales": "100.0.*", + "magento/module-payment": "100.0.*", + "magento/module-tax": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-theme": "100.0.*", + "magento/module-quote": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Multishipping\\": "" } diff --git a/app/code/Magento/NewRelicReporting/composer.json b/app/code/Magento/NewRelicReporting/composer.json index dfdb3155c336749a075c039bf87f5f77a3445944..fb122455f861e7ae3f7b13fbd5a2624158984abc 100644 --- a/app/code/Magento/NewRelicReporting/composer.json +++ b/app/code/Magento/NewRelicReporting/composer.json @@ -3,23 +3,25 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-configurable-product": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-config": "100.0.0", - "magento/framework": "100.0.0", + "magento/module-store": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-configurable-product": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-config": "100.0.*", + "magento/framework": "100.0.*", "magento/magento-composer-installer": "*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\NewRelicReporting\\": "" } diff --git a/app/code/Magento/Newsletter/composer.json b/app/code/Magento/Newsletter/composer.json index f0167d3bbc417c7be3d6cce68abb8ec7177b9694..f9afe1adad27019edf981ac3b3bda59250ed464a 100644 --- a/app/code/Magento/Newsletter/composer.json +++ b/app/code/Magento/Newsletter/composer.json @@ -3,25 +3,27 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-widget": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-cms": "100.0.0", - "magento/module-email": "100.0.0", - "magento/module-cron": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-require-js": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-widget": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-cms": "100.0.*", + "magento/module-email": "100.0.*", + "magento/module-cron": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-require-js": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Newsletter\\": "" } diff --git a/app/code/Magento/OfflinePayments/composer.json b/app/code/Magento/OfflinePayments/composer.json index 04ddd131bc06edce057e3499e42e2e85dec96dbd..4a3756d5e1db45c0ef2df1b93c48bc043f39109f 100644 --- a/app/code/Magento/OfflinePayments/composer.json +++ b/app/code/Magento/OfflinePayments/composer.json @@ -3,18 +3,20 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-checkout": "100.0.0", - "magento/module-payment": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-checkout": "100.0.*", + "magento/module-payment": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\OfflinePayments\\": "" } diff --git a/app/code/Magento/OfflineShipping/composer.json b/app/code/Magento/OfflineShipping/composer.json index 8fbea9149da752a7caf19bfd625c5ab20bb36054..48b911e8f7da5648703cb61b31983073330c1cfc 100644 --- a/app/code/Magento/OfflineShipping/composer.json +++ b/app/code/Magento/OfflineShipping/composer.json @@ -3,29 +3,31 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-config": "100.0.0", - "magento/module-store": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-shipping": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-sales": "100.0.0", - "magento/module-sales-rule": "100.0.0", - "magento/module-directory": "100.0.0", - "magento/module-quote": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-config": "100.0.*", + "magento/module-store": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-shipping": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-sales": "100.0.*", + "magento/module-sales-rule": "100.0.*", + "magento/module-directory": "100.0.*", + "magento/module-quote": "100.0.*", + "magento/framework": "100.0.*" }, "suggest": { - "magento/module-checkout": "100.0.0", - "magento/module-offline-shipping-sample-data": "Sample Data version:100.0.0" + "magento/module-checkout": "100.0.*", + "magento/module-offline-shipping-sample-data": "Sample Data version:100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\OfflineShipping\\": "" } diff --git a/app/code/Magento/PageCache/composer.json b/app/code/Magento/PageCache/composer.json index c53617911385a725e029ea1eedf5945c97b1d0fe..080431c86a1eca1f5dd142507be24f4ab124a3e0 100644 --- a/app/code/Magento/PageCache/composer.json +++ b/app/code/Magento/PageCache/composer.json @@ -3,19 +3,21 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-config": "100.0.0", - "magento/module-store": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-config": "100.0.*", + "magento/module-store": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\PageCache\\": "" } diff --git a/app/code/Magento/Payment/composer.json b/app/code/Magento/Payment/composer.json index 4a287809f01af56d93db45c1c65f755a2eaffed3..e8f37c4f89f540991728b8805a042dece5f12eea 100644 --- a/app/code/Magento/Payment/composer.json +++ b/app/code/Magento/Payment/composer.json @@ -3,22 +3,24 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-config": "100.0.0", - "magento/module-store": "100.0.0", - "magento/module-sales": "100.0.0", - "magento/module-checkout": "100.0.0", - "magento/module-quote": "100.0.0", - "magento/module-directory": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-config": "100.0.*", + "magento/module-store": "100.0.*", + "magento/module-sales": "100.0.*", + "magento/module-checkout": "100.0.*", + "magento/module-quote": "100.0.*", + "magento/module-directory": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Payment\\": "" } diff --git a/app/code/Magento/Paypal/composer.json b/app/code/Magento/Paypal/composer.json index 038fff2e9413dd31c71c1e607b883ef424c510f7..8dea68175a3d95130851abb62d0b4362ed917fd8 100644 --- a/app/code/Magento/Paypal/composer.json +++ b/app/code/Magento/Paypal/composer.json @@ -3,33 +3,35 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-config": "100.0.0", - "magento/module-store": "100.0.0", - "magento/module-checkout": "100.0.0", - "magento/module-sales": "100.0.0", - "magento/module-quote": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-payment": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-tax": "100.0.0", - "magento/module-directory": "100.0.0", - "magento/module-theme": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/framework": "100.0.0", - "magento/module-ui": "100.0.0", + "magento/module-config": "100.0.*", + "magento/module-store": "100.0.*", + "magento/module-checkout": "100.0.*", + "magento/module-sales": "100.0.*", + "magento/module-quote": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-payment": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-tax": "100.0.*", + "magento/module-directory": "100.0.*", + "magento/module-theme": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/framework": "100.0.*", + "magento/module-ui": "100.0.*", "lib-libxml": "*" }, "suggest": { - "magento/module-checkout-agreements": "100.0.0" + "magento/module-checkout-agreements": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "proprietary" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Paypal\\": "" } diff --git a/app/code/Magento/Persistent/composer.json b/app/code/Magento/Persistent/composer.json index 1262a8019a5f64519c03e4bd56deed05416b2aa9..cee535d51fbd01091167dbf043a820b70201b1e7 100644 --- a/app/code/Magento/Persistent/composer.json +++ b/app/code/Magento/Persistent/composer.json @@ -3,22 +3,24 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-checkout": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-cron": "100.0.0", - "magento/module-page-cache": "100.0.0", - "magento/module-quote": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-checkout": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-cron": "100.0.*", + "magento/module-page-cache": "100.0.*", + "magento/module-quote": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Persistent\\": "" } diff --git a/app/code/Magento/ProductAlert/composer.json b/app/code/Magento/ProductAlert/composer.json index 98bb8cd5aa1286541dae26df7a3357f13ad76382..1a95da1171c91aba2c6febbd31dfb8e9b6dec0e0 100644 --- a/app/code/Magento/ProductAlert/composer.json +++ b/app/code/Magento/ProductAlert/composer.json @@ -3,20 +3,22 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-backend": "100.0.0", - "magento/module-store": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-backend": "100.0.*", + "magento/module-store": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\ProductAlert\\": "" } diff --git a/app/code/Magento/ProductVideo/composer.json b/app/code/Magento/ProductVideo/composer.json index 4ed717d3cb4a0b5811b23ab5e255c3be644da235..d1c7e483b5b3b5b10c5b77240bb99494de1eae6c 100644 --- a/app/code/Magento/ProductVideo/composer.json +++ b/app/code/Magento/ProductVideo/composer.json @@ -3,22 +3,24 @@ "description": "Add Video to Products", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-media-storage": "100.0.0", - "magento/module-store": "100.0.0", - "magento/framework": "100.0.0", + "magento/module-catalog": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-media-storage": "100.0.*", + "magento/module-store": "100.0.*", + "magento/framework": "100.0.*", "magento/magento-composer-installer": "*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "proprietary" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\ProductVideo\\": "" } diff --git a/app/code/Magento/Quote/composer.json b/app/code/Magento/Quote/composer.json index 67807c3b73cd0bd835f25652485248ea660171a9..ac64d08a46e65d5ea504fcea7450742179a95e41 100644 --- a/app/code/Magento/Quote/composer.json +++ b/app/code/Magento/Quote/composer.json @@ -3,30 +3,32 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-checkout": "100.0.0", - "magento/module-authorization": "100.0.0", - "magento/module-payment": "100.0.0", - "magento/module-sales": "100.0.0", - "magento/module-shipping": "100.0.0", - "magento/module-sales-sequence": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-directory": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-tax": "100.0.0", - "magento/module-catalog-inventory": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-checkout": "100.0.*", + "magento/module-authorization": "100.0.*", + "magento/module-payment": "100.0.*", + "magento/module-sales": "100.0.*", + "magento/module-shipping": "100.0.*", + "magento/module-sales-sequence": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-directory": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-tax": "100.0.*", + "magento/module-catalog-inventory": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Quote\\": "" } diff --git a/app/code/Magento/Reports/composer.json b/app/code/Magento/Reports/composer.json index bc1388b250a6599c160e619fcfef3c617dbbb5db..2fe1a44cef3572be95e2ad0ffb2b2d9ce13414cd 100644 --- a/app/code/Magento/Reports/composer.json +++ b/app/code/Magento/Reports/composer.json @@ -3,32 +3,34 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-config": "100.0.0", - "magento/module-store": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-sales": "100.0.0", - "magento/module-cms": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-widget": "100.0.0", - "magento/module-wishlist": "100.0.0", - "magento/module-review": "100.0.0", - "magento/module-catalog-inventory": "100.0.0", - "magento/module-tax": "100.0.0", - "magento/module-downloadable": "100.0.0", - "magento/module-sales-rule": "100.0.0", - "magento/module-quote": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-config": "100.0.*", + "magento/module-store": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-sales": "100.0.*", + "magento/module-cms": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-widget": "100.0.*", + "magento/module-wishlist": "100.0.*", + "magento/module-review": "100.0.*", + "magento/module-catalog-inventory": "100.0.*", + "magento/module-tax": "100.0.*", + "magento/module-downloadable": "100.0.*", + "magento/module-sales-rule": "100.0.*", + "magento/module-quote": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Reports\\": "" } diff --git a/app/code/Magento/RequireJs/composer.json b/app/code/Magento/RequireJs/composer.json index f79c412508bab91a03d0afa416e9dec89ea2b417..c84e7ce077f9a3b94b6df8dd70205c6e709e292e 100644 --- a/app/code/Magento/RequireJs/composer.json +++ b/app/code/Magento/RequireJs/composer.json @@ -3,16 +3,18 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/framework": "100.0.0" + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\RequireJs\\": "" } diff --git a/app/code/Magento/Review/composer.json b/app/code/Magento/Review/composer.json index 944d2ff2733800a4b092350502469152126ae6e4..f11e9407516ea3e1bb30edc5b878b4445a5126d0 100644 --- a/app/code/Magento/Review/composer.json +++ b/app/code/Magento/Review/composer.json @@ -3,28 +3,30 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-theme": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-newsletter": "100.0.0", - "magento/framework": "100.0.0", - "magento/module-ui": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-theme": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-newsletter": "100.0.*", + "magento/framework": "100.0.*", + "magento/module-ui": "100.0.*" }, "suggest": { - "magento/module-cookie": "100.0.0", - "magento/module-review-sample-data": "Sample Data version:100.0.0" + "magento/module-cookie": "100.0.*", + "magento/module-review-sample-data": "Sample Data version:100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Review\\": "" } diff --git a/app/code/Magento/Rss/composer.json b/app/code/Magento/Rss/composer.json index a2d9cc8344247662477e7e23afe595d99410bba6..a2fde5c4352f168f8a56b2664e2074e5f9da6f1b 100644 --- a/app/code/Magento/Rss/composer.json +++ b/app/code/Magento/Rss/composer.json @@ -3,19 +3,21 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/framework": "100.0.0", - "magento/module-customer": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/framework": "100.0.*", + "magento/module-customer": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Rss\\": "" } diff --git a/app/code/Magento/Rule/composer.json b/app/code/Magento/Rule/composer.json index e2b69575b470e149c8ba0702840c83edd520ea66..aedbd0bb2cf26e1fc4f4f827026b68d3368d83bc 100644 --- a/app/code/Magento/Rule/composer.json +++ b/app/code/Magento/Rule/composer.json @@ -3,21 +3,23 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/framework": "100.0.0", + "magento/module-store": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/framework": "100.0.*", "lib-libxml": "*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Rule\\": "" } diff --git a/app/code/Magento/Sales/composer.json b/app/code/Magento/Sales/composer.json index 136c335a049fc20ed158183c7ce4f60fe8dee752..8c97dc1fb69c02dca86e58edc1823f823b83110b 100644 --- a/app/code/Magento/Sales/composer.json +++ b/app/code/Magento/Sales/composer.json @@ -3,42 +3,44 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-authorization": "100.0.0", - "magento/module-payment": "100.0.0", - "magento/module-checkout": "100.0.0", - "magento/module-theme": "100.0.0", - "magento/module-sales-rule": "100.0.0", - "magento/module-sales-sequence": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-widget": "100.0.0", - "magento/module-directory": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-tax": "100.0.0", - "magento/module-gift-message": "100.0.0", - "magento/module-reports": "100.0.0", - "magento/module-catalog-inventory": "100.0.0", - "magento/module-wishlist": "100.0.0", - "magento/module-shipping": "100.0.0", - "magento/module-config": "100.0.0", - "magento/module-media-storage": "100.0.0", - "magento/framework": "100.0.0", - "magento/module-ui": "100.0.0", - "magento/module-quote": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-authorization": "100.0.*", + "magento/module-payment": "100.0.*", + "magento/module-checkout": "100.0.*", + "magento/module-theme": "100.0.*", + "magento/module-sales-rule": "100.0.*", + "magento/module-sales-sequence": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-widget": "100.0.*", + "magento/module-directory": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-tax": "100.0.*", + "magento/module-gift-message": "100.0.*", + "magento/module-reports": "100.0.*", + "magento/module-catalog-inventory": "100.0.*", + "magento/module-wishlist": "100.0.*", + "magento/module-shipping": "100.0.*", + "magento/module-config": "100.0.*", + "magento/module-media-storage": "100.0.*", + "magento/framework": "100.0.*", + "magento/module-ui": "100.0.*", + "magento/module-quote": "100.0.*" }, "suggest": { - "magento/module-sales-sample-data": "Sample Data version:100.0.0" + "magento/module-sales-sample-data": "Sample Data version:100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Sales\\": "" } diff --git a/app/code/Magento/SalesRule/composer.json b/app/code/Magento/SalesRule/composer.json index e475f1fa5596cfbbb0222e9e5c3402497e3d5263..9ad1d1118e5ff0f71d2f4ab5d0a04e666339a8e5 100644 --- a/app/code/Magento/SalesRule/composer.json +++ b/app/code/Magento/SalesRule/composer.json @@ -3,34 +3,36 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-config": "100.0.0", - "magento/module-store": "100.0.0", - "magento/module-rule": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-sales": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-directory": "100.0.0", - "magento/module-shipping": "100.0.0", - "magento/module-payment": "100.0.0", - "magento/module-reports": "100.0.0", - "magento/module-catalog-rule": "100.0.0", - "magento/module-widget": "100.0.0", - "magento/module-quote": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-config": "100.0.*", + "magento/module-store": "100.0.*", + "magento/module-rule": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-sales": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-directory": "100.0.*", + "magento/module-shipping": "100.0.*", + "magento/module-payment": "100.0.*", + "magento/module-reports": "100.0.*", + "magento/module-catalog-rule": "100.0.*", + "magento/module-widget": "100.0.*", + "magento/module-quote": "100.0.*", + "magento/framework": "100.0.*" }, "suggest": { - "magento/module-sales-rule-sample-data": "Sample Data version:100.0.0" + "magento/module-sales-rule-sample-data": "Sample Data version:100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\SalesRule\\": "" } diff --git a/app/code/Magento/SalesSequence/composer.json b/app/code/Magento/SalesSequence/composer.json index 80ccbbc215842c684df63a6fd75fb742de7cdc1b..bcf91bf3083133a8dcd96f3ceca341dd5aef9442 100644 --- a/app/code/Magento/SalesSequence/composer.json +++ b/app/code/Magento/SalesSequence/composer.json @@ -1,20 +1,22 @@ { - "name": "magento/module-sales-sequence", - "description": "N/A", - "require": { - "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/framework": "100.0.0" - }, - "type": "magento2-module", - "version": "100.0.0", - "license": [ - "OSL-3.0", - "AFL-3.0" - ], - "autoload": { - "files": [ "registration.php" ], - "psr-4": { - "Magento\\SalesSequence\\": "" + "name": "magento/module-sales-sequence", + "description": "N/A", + "require": { + "php": "~5.5.0|~5.6.0|~7.0.0", + "magento/framework": "100.0.*" + }, + "type": "magento2-module", + "version": "100.0.1", + "license": [ + "OSL-3.0", + "AFL-3.0" + ], + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Magento\\SalesSequence\\": "" + } } - } } diff --git a/app/code/Magento/SampleData/composer.json b/app/code/Magento/SampleData/composer.json index b943ec5ad217a7093c25bbd8695d5e3f2e6a396a..8e1df37de160bb74d58712727b6042149b9a81ab 100644 --- a/app/code/Magento/SampleData/composer.json +++ b/app/code/Magento/SampleData/composer.json @@ -3,13 +3,13 @@ "description": "Sample Data fixtures", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/framework": "~100.0.0" + "magento/framework": "100.0.*" }, "suggest": { - "magento/sample-data-media": "Sample Data version:~100.0.0" + "magento/sample-data-media": "Sample Data version:100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" diff --git a/app/code/Magento/Search/composer.json b/app/code/Magento/Search/composer.json index 472dcaa1a17dd8c79ffb143e1cc651c08c6ad52a..a48dcaabe82edd8e16784ef207b096cfb492e9cc 100644 --- a/app/code/Magento/Search/composer.json +++ b/app/code/Magento/Search/composer.json @@ -3,20 +3,22 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/framework": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-catalog-search": "100.0.0", - "magento/module-store": "100.0.0", - "magento/module-reports": "100.0.0" + "magento/framework": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-catalog-search": "100.0.*", + "magento/module-store": "100.0.*", + "magento/module-reports": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Search\\": "" } diff --git a/app/code/Magento/SendFriend/composer.json b/app/code/Magento/SendFriend/composer.json index 489e82d8667fab52bbe74441e16405e8f4ddf288..917a62883a2b138c37f0e8258f2c5c139cdd5465 100644 --- a/app/code/Magento/SendFriend/composer.json +++ b/app/code/Magento/SendFriend/composer.json @@ -3,20 +3,22 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-theme": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-theme": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\SendFriend\\": "" } diff --git a/app/code/Magento/Shipping/composer.json b/app/code/Magento/Shipping/composer.json index 84c227bf69e18dc97428dad6f31326b14d8a9ee7..c727aec30b5ffff0a985d307840725b2c9f1ab49 100644 --- a/app/code/Magento/Shipping/composer.json +++ b/app/code/Magento/Shipping/composer.json @@ -3,34 +3,36 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-sales": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-directory": "100.0.0", - "magento/module-contact": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-payment": "100.0.0", - "magento/module-tax": "100.0.0", - "magento/module-catalog-inventory": "100.0.0", - "magento/module-quote": "100.0.0", - "magento/module-ui": "100.0.0", - "magento/framework": "100.0.0", - "magento/module-user": "100.0.0", + "magento/module-store": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-sales": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-directory": "100.0.*", + "magento/module-contact": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-payment": "100.0.*", + "magento/module-tax": "100.0.*", + "magento/module-catalog-inventory": "100.0.*", + "magento/module-quote": "100.0.*", + "magento/module-ui": "100.0.*", + "magento/framework": "100.0.*", + "magento/module-user": "100.0.*", "ext-gd": "*" }, "suggest": { - "magento/module-fedex": "100.0.0", - "magento/module-ups": "100.0.0" + "magento/module-fedex": "100.0.*", + "magento/module-ups": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Shipping\\": "" } diff --git a/app/code/Magento/Sitemap/composer.json b/app/code/Magento/Sitemap/composer.json index 27b5c459a3d79154e7a369b66d6c660fd65efd1e..9fbef2e275d98cb83702e425519b1086d705e5bf 100644 --- a/app/code/Magento/Sitemap/composer.json +++ b/app/code/Magento/Sitemap/composer.json @@ -3,23 +3,25 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-cms": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-catalog-url-rewrite": "100.0.0", - "magento/module-media-storage": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-cms": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-catalog-url-rewrite": "100.0.*", + "magento/module-media-storage": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Sitemap\\": "" } diff --git a/app/code/Magento/Store/composer.json b/app/code/Magento/Store/composer.json index 0888498f71fa27344f2f71d51e6f2026bd3e9491..71fa51c4471bc8440c88f0fca519eb1d50d2954d 100644 --- a/app/code/Magento/Store/composer.json +++ b/app/code/Magento/Store/composer.json @@ -3,21 +3,23 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-directory": "100.0.0", - "magento/module-ui": "100.0.0", - "magento/module-config": "100.0.0", - "magento/module-media-storage": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-catalog": "100.0.*", + "magento/module-directory": "100.0.*", + "magento/module-ui": "100.0.*", + "magento/module-config": "100.0.*", + "magento/module-media-storage": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Store\\": "" } diff --git a/app/code/Magento/Swagger/composer.json b/app/code/Magento/Swagger/composer.json index e920fc5b36c7cbd02c0053f3a70d8a22df67d1b5..db7736c4355fd82d6d0403ea7f31411f4ecd8229 100644 --- a/app/code/Magento/Swagger/composer.json +++ b/app/code/Magento/Swagger/composer.json @@ -3,16 +3,18 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/framework": "100.0.0" + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Swagger\\": "" } diff --git a/app/code/Magento/Swatches/composer.json b/app/code/Magento/Swatches/composer.json index 0d03a3b4df7520f072693d1eb3216c831104f405..c5f3614c794801d6335bb57052add5e87bcfe5cc 100644 --- a/app/code/Magento/Swatches/composer.json +++ b/app/code/Magento/Swatches/composer.json @@ -3,28 +3,30 @@ "description": "Add Swatches to Products", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-configurable-product": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-store": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-media-storage": "100.0.0", - "magento/module-config": "100.0.0", - "magento/module-theme": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-catalog": "100.0.*", + "magento/module-configurable-product": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-store": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-media-storage": "100.0.*", + "magento/module-config": "100.0.*", + "magento/module-theme": "100.0.*", + "magento/framework": "100.0.*" }, "suggest": { - "magento/module-layered-navigation": "100.0.0", - "magento/module-swatches-sample-data": "Sample Data version:100.0.0" + "magento/module-layered-navigation": "100.0.*", + "magento/module-swatches-sample-data": "Sample Data version:100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "proprietary" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Swatches\\": "" } diff --git a/app/code/Magento/Tax/composer.json b/app/code/Magento/Tax/composer.json index 922786bdd35d0e78b7fb0d6fae512be7aa09d7d5..42fac032f969b455041eb902e46eada9dd5e2d33 100644 --- a/app/code/Magento/Tax/composer.json +++ b/app/code/Magento/Tax/composer.json @@ -3,32 +3,34 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-config": "100.0.0", - "magento/module-store": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-directory": "100.0.0", - "magento/module-checkout": "100.0.0", - "magento/module-shipping": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-sales": "100.0.0", - "magento/module-reports": "100.0.0", - "magento/module-page-cache": "100.0.0", - "magento/module-quote": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-config": "100.0.*", + "magento/module-store": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-directory": "100.0.*", + "magento/module-checkout": "100.0.*", + "magento/module-shipping": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-sales": "100.0.*", + "magento/module-reports": "100.0.*", + "magento/module-page-cache": "100.0.*", + "magento/module-quote": "100.0.*", + "magento/framework": "100.0.*" }, "suggest": { - "magento/module-tax-sample-data": "Sample Data version:100.0.0" + "magento/module-tax-sample-data": "Sample Data version:100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Tax\\": "" } diff --git a/app/code/Magento/TaxImportExport/composer.json b/app/code/Magento/TaxImportExport/composer.json index 68d332a9e6158b834160495238bc441a5130cdc9..5e3e725d2786b886277a96f275984acd9e6dfe51 100644 --- a/app/code/Magento/TaxImportExport/composer.json +++ b/app/code/Magento/TaxImportExport/composer.json @@ -3,20 +3,22 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-tax": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-directory": "100.0.0", - "magento/module-store": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-tax": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-directory": "100.0.*", + "magento/module-store": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\TaxImportExport\\": "" } diff --git a/app/code/Magento/Theme/composer.json b/app/code/Magento/Theme/composer.json index 697f803a0ce3afbd1ec520e8f0aac57be7eabae0..96c65f745276e06b4ec2c993c81d49ad7618db8f 100644 --- a/app/code/Magento/Theme/composer.json +++ b/app/code/Magento/Theme/composer.json @@ -3,29 +3,31 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-cms": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-widget": "100.0.0", - "magento/module-config": "100.0.0", - "magento/module-media-storage": "100.0.0", - "magento/framework": "100.0.0", - "magento/module-require-js": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-cms": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-widget": "100.0.*", + "magento/module-config": "100.0.*", + "magento/module-media-storage": "100.0.*", + "magento/framework": "100.0.*", + "magento/module-require-js": "100.0.*" }, "suggest": { - "magento/module-translation": "100.0.0", - "magento/module-theme-sample-data": "Sample Data version:100.0.0" + "magento/module-translation": "100.0.*", + "magento/module-theme-sample-data": "Sample Data version:100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Theme\\": "" } diff --git a/app/code/Magento/Translation/composer.json b/app/code/Magento/Translation/composer.json index 31e5001f92e685ece3422b34ec35c5000bf1fcd7..5c1f9fd45e79fe985ad91d05f0883eaecbe6c189 100644 --- a/app/code/Magento/Translation/composer.json +++ b/app/code/Magento/Translation/composer.json @@ -3,20 +3,22 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-backend": "100.0.0", - "magento/module-developer": "100.0.0", - "magento/module-store": "100.0.0", - "magento/module-theme": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-backend": "100.0.*", + "magento/module-developer": "100.0.*", + "magento/module-store": "100.0.*", + "magento/module-theme": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Translation\\": "" } diff --git a/app/code/Magento/Ui/composer.json b/app/code/Magento/Ui/composer.json index b07a00b0fa9fe6df8d16904a9f44572f2185605c..22380080d521e63db31deba2254c9cc47b078a9f 100644 --- a/app/code/Magento/Ui/composer.json +++ b/app/code/Magento/Ui/composer.json @@ -3,19 +3,21 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-backend": "100.0.0", - "magento/framework": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-authorization": "100.0.0" + "magento/module-backend": "100.0.*", + "magento/framework": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-authorization": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Ui\\": "" } diff --git a/app/code/Magento/Ups/composer.json b/app/code/Magento/Ups/composer.json index 22551a8fd05d623e098583e8a073b73e662ca843..5e847d4f038909762e56d0fff38677539fc5a5d3 100644 --- a/app/code/Magento/Ups/composer.json +++ b/app/code/Magento/Ups/composer.json @@ -3,23 +3,25 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-sales": "100.0.0", - "magento/module-shipping": "100.0.0", - "magento/module-directory": "100.0.0", - "magento/module-catalog-inventory": "100.0.0", - "magento/module-quote": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-sales": "100.0.*", + "magento/module-shipping": "100.0.*", + "magento/module-directory": "100.0.*", + "magento/module-catalog-inventory": "100.0.*", + "magento/module-quote": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Ups\\": "" } diff --git a/app/code/Magento/UrlRewrite/composer.json b/app/code/Magento/UrlRewrite/composer.json index 545112d24a39e2550421cc4843c3a9bb54d76b57..9b029d7842de1823b3f3e7417d1d82a7b7b322ff 100644 --- a/app/code/Magento/UrlRewrite/composer.json +++ b/app/code/Magento/UrlRewrite/composer.json @@ -3,22 +3,24 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-store": "100.0.0", - "magento/framework": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-catalog-url-rewrite": "100.0.0", - "magento/module-cms": "100.0.0", - "magento/module-cms-url-rewrite": "100.0.0" + "magento/module-catalog": "100.0.*", + "magento/module-store": "100.0.*", + "magento/framework": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-catalog-url-rewrite": "100.0.*", + "magento/module-cms": "100.0.*", + "magento/module-cms-url-rewrite": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\UrlRewrite\\": "" } diff --git a/app/code/Magento/User/composer.json b/app/code/Magento/User/composer.json index 044f9b285ce87922e83d923776d7866c460afa06..6f9af7e60d54e86e742c20f7cc42f53dc990eeb7 100644 --- a/app/code/Magento/User/composer.json +++ b/app/code/Magento/User/composer.json @@ -3,21 +3,23 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-authorization": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-integration": "100.0.0", - "magento/module-email": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-authorization": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-integration": "100.0.*", + "magento/module-email": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\User\\": "" } diff --git a/app/code/Magento/Usps/composer.json b/app/code/Magento/Usps/composer.json index 38a2fcd4f21913e685b9570af259733adcc586b8..290fdcb31e264c1b7ee2ddbd8dda3a7c4e777b95 100644 --- a/app/code/Magento/Usps/composer.json +++ b/app/code/Magento/Usps/composer.json @@ -3,25 +3,27 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-shipping": "100.0.0", - "magento/module-directory": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-sales": "100.0.0", - "magento/module-catalog-inventory": "100.0.0", - "magento/module-quote": "100.0.0", - "magento/module-config": "100.0.0", - "magento/framework": "100.0.0", + "magento/module-store": "100.0.*", + "magento/module-shipping": "100.0.*", + "magento/module-directory": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-sales": "100.0.*", + "magento/module-catalog-inventory": "100.0.*", + "magento/module-quote": "100.0.*", + "magento/module-config": "100.0.*", + "magento/framework": "100.0.*", "lib-libxml": "*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Usps\\": "" } diff --git a/app/code/Magento/Variable/composer.json b/app/code/Magento/Variable/composer.json index d2269b00b67012c1e702d3ab665607b63b75dca5..69d5b211ee149b5314405196dfce978aa034e8d2 100644 --- a/app/code/Magento/Variable/composer.json +++ b/app/code/Magento/Variable/composer.json @@ -3,19 +3,21 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-backend": "100.0.0", - "magento/module-email": "100.0.0", - "magento/module-store": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-backend": "100.0.*", + "magento/module-email": "100.0.*", + "magento/module-store": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Variable\\": "" } diff --git a/app/code/Magento/Version/composer.json b/app/code/Magento/Version/composer.json index a7d9cee354d70d75b7fbace73c72a5bb2f2abc7c..e6c7db0e9039f9a02db4cc45968e81cdc961a078 100644 --- a/app/code/Magento/Version/composer.json +++ b/app/code/Magento/Version/composer.json @@ -3,16 +3,18 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/framework": "100.0.0" + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Version\\": "" } diff --git a/app/code/Magento/Webapi/composer.json b/app/code/Magento/Webapi/composer.json index 1fe96bc6eba91b9052cace3506cb46d0dd1b6f56..2787565c556a4f7ba164c4119488a1c06c8c707b 100644 --- a/app/code/Magento/Webapi/composer.json +++ b/app/code/Magento/Webapi/composer.json @@ -3,23 +3,25 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-authorization": "100.0.0", - "magento/module-integration": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-authorization": "100.0.*", + "magento/module-integration": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/framework": "100.0.*" }, "suggest": { - "magento/module-user": "100.0.0" + "magento/module-user": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Webapi\\": "" } diff --git a/app/code/Magento/Weee/composer.json b/app/code/Magento/Weee/composer.json index 3458717ae03cde9b649363b95023a8131ace95a4..f642988443aa7767366a7ee0153add38c252cdc8 100644 --- a/app/code/Magento/Weee/composer.json +++ b/app/code/Magento/Weee/composer.json @@ -3,27 +3,29 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-tax": "100.0.0", - "magento/module-sales": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-directory": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-page-cache": "100.0.0", - "magento/module-quote": "100.0.0", - "magento/module-checkout": "100.0.0", - "magento/framework": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-tax": "100.0.*", + "magento/module-sales": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-directory": "100.0.*", + "magento/module-eav": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-page-cache": "100.0.*", + "magento/module-quote": "100.0.*", + "magento/module-checkout": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Weee\\": "" } diff --git a/app/code/Magento/Widget/composer.json b/app/code/Magento/Widget/composer.json index 282e40a9fa491caa1644ba10fe6b6065d3f8949b..753d1a750a1dc30390c6ba4bdabc5860728e0c51 100644 --- a/app/code/Magento/Widget/composer.json +++ b/app/code/Magento/Widget/composer.json @@ -3,26 +3,28 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-cms": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-email": "100.0.0", - "magento/module-theme": "100.0.0", - "magento/framework": "100.0.0", - "magento/module-variable": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-cms": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-email": "100.0.*", + "magento/module-theme": "100.0.*", + "magento/framework": "100.0.*", + "magento/module-variable": "100.0.*" }, "suggest": { - "magento/module-widget-sample-data": "Sample Data version:100.0.0" + "magento/module-widget-sample-data": "Sample Data version:100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Widget\\": "" } diff --git a/app/code/Magento/Wishlist/composer.json b/app/code/Magento/Wishlist/composer.json index dd018224a0f729e173741232097e4c19b02f7f9c..f225d2c3156523b60c51f159605dadd769472caa 100644 --- a/app/code/Magento/Wishlist/composer.json +++ b/app/code/Magento/Wishlist/composer.json @@ -3,34 +3,36 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/module-store": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-checkout": "100.0.0", - "magento/module-theme": "100.0.0", - "magento/module-catalog-inventory": "100.0.0", - "magento/module-rss": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-sales": "100.0.0", - "magento/module-grouped-product": "100.0.0", - "magento/framework": "100.0.0", - "magento/module-ui": "100.0.0" + "magento/module-store": "100.0.*", + "magento/module-customer": "100.0.*", + "magento/module-catalog": "100.0.*", + "magento/module-checkout": "100.0.*", + "magento/module-theme": "100.0.*", + "magento/module-catalog-inventory": "100.0.*", + "magento/module-rss": "100.0.*", + "magento/module-backend": "100.0.*", + "magento/module-sales": "100.0.*", + "magento/module-grouped-product": "100.0.*", + "magento/framework": "100.0.*", + "magento/module-ui": "100.0.*" }, "suggest": { - "magento/module-configurable-product": "100.0.0", - "magento/module-downloadable": "100.0.0", - "magento/module-bundle": "100.0.0", - "magento/module-cookie": "100.0.0", - "magento/module-wishlist-sample-data": "Sample Data version:100.0.0" + "magento/module-configurable-product": "100.0.*", + "magento/module-downloadable": "100.0.*", + "magento/module-bundle": "100.0.*", + "magento/module-cookie": "100.0.*", + "magento/module-wishlist-sample-data": "Sample Data version:100.0.*" }, "type": "magento2-module", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ], + "files": [ + "registration.php" + ], "psr-4": { "Magento\\Wishlist\\": "" } diff --git a/app/design/adminhtml/Magento/backend/composer.json b/app/design/adminhtml/Magento/backend/composer.json index 2cba2a2442779469c23406a921cb0651d4b9a397..5f8d4c1e10c47272fe321cf0f00a088caa9581f9 100644 --- a/app/design/adminhtml/Magento/backend/composer.json +++ b/app/design/adminhtml/Magento/backend/composer.json @@ -3,15 +3,17 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/framework": "100.0.0" + "magento/framework": "100.0.*" }, "type": "magento2-theme", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ] + "files": [ + "registration.php" + ] } } diff --git a/app/design/frontend/Magento/blank/composer.json b/app/design/frontend/Magento/blank/composer.json index bf594750ff11db6f4ecbac76f2b5bac027d0d5e9..60dd1e2e164ed20755ffa8bc0eab3aae5d0c8d04 100644 --- a/app/design/frontend/Magento/blank/composer.json +++ b/app/design/frontend/Magento/blank/composer.json @@ -3,15 +3,17 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/framework": "100.0.0" + "magento/framework": "100.0.*" }, "type": "magento2-theme", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ] + "files": [ + "registration.php" + ] } } diff --git a/app/design/frontend/Magento/luma/composer.json b/app/design/frontend/Magento/luma/composer.json index b2c6c498849952e0ef309f330954a3e3fddcd80d..6784773fca6e36f31502bc94ba3d3baf4c0aa056 100644 --- a/app/design/frontend/Magento/luma/composer.json +++ b/app/design/frontend/Magento/luma/composer.json @@ -3,16 +3,18 @@ "description": "N/A", "require": { "php": "~5.5.0|~5.6.0|~7.0.0", - "magento/theme-frontend-blank": "100.0.0", - "magento/framework": "100.0.0" + "magento/theme-frontend-blank": "100.0.*", + "magento/framework": "100.0.*" }, "type": "magento2-theme", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "autoload": { - "files": [ "registration.php" ] + "files": [ + "registration.php" + ] } } diff --git a/app/i18n/magento/de_de/composer.json b/app/i18n/magento/de_de/composer.json index 6db7f00d78f21f4635ac5a1c38a4d9a973525f00..6eb6dd559ac53b058b760c50f025aa902248c497 100644 --- a/app/i18n/magento/de_de/composer.json +++ b/app/i18n/magento/de_de/composer.json @@ -1,16 +1,18 @@ { "name": "magento/language-de_de", "description": "German (Germany) language", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "require": { - "magento/framework": "100.0.0" + "magento/framework": "100.0.*" }, "type": "magento2-language", "autoload": { - "files": [ "registration.php" ] + "files": [ + "registration.php" + ] } } diff --git a/app/i18n/magento/en_us/composer.json b/app/i18n/magento/en_us/composer.json index ff47ba7956f55222d8698db55c441ee9e3d3befa..97ecb5cf328a5880618784ccb2dc2214fcba3987 100644 --- a/app/i18n/magento/en_us/composer.json +++ b/app/i18n/magento/en_us/composer.json @@ -1,16 +1,18 @@ { "name": "magento/language-en_us", "description": "English (United States) language", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "require": { - "magento/framework": "100.0.0" + "magento/framework": "100.0.*" }, "type": "magento2-language", "autoload": { - "files": [ "registration.php" ] + "files": [ + "registration.php" + ] } } diff --git a/app/i18n/magento/es_es/composer.json b/app/i18n/magento/es_es/composer.json index dc0a50a80bec06add180df4373c88069cb4dc889..309bd4bb5836c013e8bd4cf3326dcd63279f7dbf 100644 --- a/app/i18n/magento/es_es/composer.json +++ b/app/i18n/magento/es_es/composer.json @@ -1,16 +1,18 @@ { "name": "magento/language-es_es", "description": "Spanish (Spain) language", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "require": { - "magento/framework": "100.0.0" + "magento/framework": "100.0.*" }, "type": "magento2-language", "autoload": { - "files": [ "registration.php" ] + "files": [ + "registration.php" + ] } } diff --git a/app/i18n/magento/fr_fr/composer.json b/app/i18n/magento/fr_fr/composer.json index 155fd3a8c58da6a733f3acc39a094d517a9ce18f..9ac99b230ff1b84def99d682362c400599d13c5a 100644 --- a/app/i18n/magento/fr_fr/composer.json +++ b/app/i18n/magento/fr_fr/composer.json @@ -1,16 +1,18 @@ { "name": "magento/language-fr_fr", "description": "French (France) language", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "require": { - "magento/framework": "100.0.0" + "magento/framework": "100.0.*" }, "type": "magento2-language", "autoload": { - "files": [ "registration.php" ] + "files": [ + "registration.php" + ] } } diff --git a/app/i18n/magento/nl_nl/composer.json b/app/i18n/magento/nl_nl/composer.json index 9bb0745073be37b0e372e572ef2b2ed5c2fe7cb0..03a5fd264b1739fa259c3854dba82ba5b6c5b4c9 100644 --- a/app/i18n/magento/nl_nl/composer.json +++ b/app/i18n/magento/nl_nl/composer.json @@ -1,16 +1,18 @@ { "name": "magento/language-nl_nl", "description": "Dutch (Netherlands) language", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "require": { - "magento/framework": "100.0.0" + "magento/framework": "100.0.*" }, "type": "magento2-language", "autoload": { - "files": [ "registration.php" ] + "files": [ + "registration.php" + ] } } diff --git a/app/i18n/magento/pt_br/composer.json b/app/i18n/magento/pt_br/composer.json index e5f346771f5980928b4b10f200c618457cf04ff2..29234cfe2d482f0b33f03dc83f38c132e3b79ff6 100644 --- a/app/i18n/magento/pt_br/composer.json +++ b/app/i18n/magento/pt_br/composer.json @@ -1,16 +1,18 @@ { "name": "magento/language-pt_br", "description": "Portuguese (Brazil) language", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "require": { - "magento/framework": "100.0.0" + "magento/framework": "100.0.*" }, "type": "magento2-language", "autoload": { - "files": [ "registration.php" ] + "files": [ + "registration.php" + ] } } diff --git a/app/i18n/magento/zh_hans_cn/composer.json b/app/i18n/magento/zh_hans_cn/composer.json index 05a9d6c8bec8baa9a0f51345d213555017459a8e..1e79993b2023c846369b8179a6a510faeee8d245 100644 --- a/app/i18n/magento/zh_hans_cn/composer.json +++ b/app/i18n/magento/zh_hans_cn/composer.json @@ -1,16 +1,18 @@ { "name": "magento/language-zh_hans_cn", "description": "Chinese (China) language", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" ], "require": { - "magento/framework": "100.0.0" + "magento/framework": "100.0.*" }, "type": "magento2-language", "autoload": { - "files": [ "registration.php" ] + "files": [ + "registration.php" + ] } } diff --git a/composer.json b/composer.json index 7542ecebd643e98a6e641672e795606e7fcdb2b4..d4e2105bdb0ace4255b3a7e1bc5435781b2fa3e3 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "magento/magento2ce", "description": "Magento 2 (Community Edition)", "type": "project", - "version": "2.0.0-rc", + "version": "2.0.0-rc2", "license": [ "OSL-3.0", "AFL-3.0" @@ -75,115 +75,115 @@ "lusitanian/oauth": "~0.3 <=0.7.0" }, "replace": { - "magento/module-marketplace": "100.0.0", - "magento/module-admin-notification": "100.0.0", - "magento/module-advanced-pricing-import-export": "100.0.0", - "magento/module-authorization": "100.0.0", - "magento/module-authorizenet": "100.0.0", - "magento/module-backend": "100.0.0", - "magento/module-backup": "100.0.0", - "magento/module-braintree": "100.0.0", - "magento/module-bundle": "100.0.0", - "magento/module-bundle-import-export": "100.0.0", - "magento/module-cache-invalidate": "100.0.0", - "magento/module-captcha": "100.0.0", - "magento/module-catalog": "100.0.0", - "magento/module-catalog-import-export": "100.0.0", - "magento/module-catalog-inventory": "100.0.0", - "magento/module-catalog-rule": "100.0.0", - "magento/module-catalog-rule-configurable": "100.0.0", - "magento/module-catalog-search": "100.0.0", - "magento/module-catalog-url-rewrite": "100.0.0", - "magento/module-catalog-widget": "100.0.0", - "magento/module-checkout": "100.0.0", - "magento/module-checkout-agreements": "100.0.0", - "magento/module-cms": "100.0.0", - "magento/module-cms-url-rewrite": "100.0.0", - "magento/module-config": "100.0.0", - "magento/module-configurable-import-export": "100.0.0", - "magento/module-configurable-product": "100.0.0", - "magento/module-contact": "100.0.0", - "magento/module-cookie": "100.0.0", - "magento/module-cron": "100.0.0", - "magento/module-currency-symbol": "100.0.0", - "magento/module-customer": "100.0.0", - "magento/module-customer-import-export": "100.0.0", - "magento/module-deploy": "100.0.0", - "magento/module-developer": "100.0.0", - "magento/module-dhl": "100.0.0", - "magento/module-directory": "100.0.0", - "magento/module-downloadable": "100.0.0", - "magento/module-downloadable-import-export": "100.0.0", - "magento/module-eav": "100.0.0", - "magento/module-email": "100.0.0", - "magento/module-encryption-key": "100.0.0", - "magento/module-fedex": "100.0.0", - "magento/module-gift-message": "100.0.0", - "magento/module-google-adwords": "100.0.0", - "magento/module-google-analytics": "100.0.0", - "magento/module-google-optimizer": "100.0.0", - "magento/module-grouped-import-export": "100.0.0", - "magento/module-grouped-product": "100.0.0", - "magento/module-import-export": "100.0.0", - "magento/module-indexer": "100.0.0", - "magento/module-integration": "100.0.0", - "magento/module-layered-navigation": "100.0.0", - "magento/module-media-storage": "100.0.0", - "magento/module-msrp": "100.0.0", - "magento/module-multishipping": "100.0.0", - "magento/module-new-relic-reporting": "100.0.0", - "magento/module-newsletter": "100.0.0", - "magento/module-offline-payments": "100.0.0", - "magento/module-offline-shipping": "100.0.0", - "magento/module-page-cache": "100.0.0", - "magento/module-payment": "100.0.0", - "magento/module-paypal": "100.0.0", - "magento/module-persistent": "100.0.0", - "magento/module-product-alert": "100.0.0", - "magento/module-product-video": "100.0.0", - "magento/module-quote": "100.0.0", - "magento/module-reports": "100.0.0", - "magento/module-require-js": "100.0.0", - "magento/module-review": "100.0.0", - "magento/module-rss": "100.0.0", - "magento/module-rule": "100.0.0", - "magento/module-sales": "100.0.0", - "magento/module-sales-rule": "100.0.0", - "magento/module-sales-sequence": "100.0.0", - "magento/module-sample-data": "100.0.0", - "magento/module-search": "100.0.0", - "magento/module-send-friend": "100.0.0", - "magento/module-shipping": "100.0.0", - "magento/module-sitemap": "100.0.0", - "magento/module-store": "100.0.0", - "magento/module-swagger": "100.0.0", - "magento/module-swatches": "100.0.0", - "magento/module-tax": "100.0.0", - "magento/module-tax-import-export": "100.0.0", - "magento/module-theme": "100.0.0", - "magento/module-translation": "100.0.0", - "magento/module-ui": "100.0.0", - "magento/module-ups": "100.0.0", - "magento/module-url-rewrite": "100.0.0", - "magento/module-user": "100.0.0", - "magento/module-usps": "100.0.0", - "magento/module-variable": "100.0.0", - "magento/module-version": "100.0.0", - "magento/module-webapi": "100.0.0", - "magento/module-weee": "100.0.0", - "magento/module-widget": "100.0.0", - "magento/module-wishlist": "100.0.0", - "magento/theme-adminhtml-backend": "100.0.0", - "magento/theme-frontend-blank": "100.0.0", - "magento/theme-frontend-luma": "100.0.0", - "magento/language-de_de": "100.0.0", - "magento/language-en_us": "100.0.0", - "magento/language-es_es": "100.0.0", - "magento/language-fr_fr": "100.0.0", - "magento/language-nl_nl": "100.0.0", - "magento/language-pt_br": "100.0.0", - "magento/language-zh_hans_cn": "100.0.0", - "magento/framework": "100.0.0", + "magento/module-marketplace": "100.0.1", + "magento/module-admin-notification": "100.0.1", + "magento/module-advanced-pricing-import-export": "100.0.1", + "magento/module-authorization": "100.0.1", + "magento/module-authorizenet": "100.0.1", + "magento/module-backend": "100.0.1", + "magento/module-backup": "100.0.1", + "magento/module-braintree": "100.0.1", + "magento/module-bundle": "100.0.1", + "magento/module-bundle-import-export": "100.0.1", + "magento/module-cache-invalidate": "100.0.1", + "magento/module-captcha": "100.0.1", + "magento/module-catalog": "100.0.1", + "magento/module-catalog-import-export": "100.0.1", + "magento/module-catalog-inventory": "100.0.1", + "magento/module-catalog-rule": "100.0.1", + "magento/module-catalog-rule-configurable": "100.0.1", + "magento/module-catalog-search": "100.0.1", + "magento/module-catalog-url-rewrite": "100.0.1", + "magento/module-catalog-widget": "100.0.1", + "magento/module-checkout": "100.0.1", + "magento/module-checkout-agreements": "100.0.1", + "magento/module-cms": "100.0.1", + "magento/module-cms-url-rewrite": "100.0.1", + "magento/module-config": "100.0.1", + "magento/module-configurable-import-export": "100.0.1", + "magento/module-configurable-product": "100.0.1", + "magento/module-contact": "100.0.1", + "magento/module-cookie": "100.0.1", + "magento/module-cron": "100.0.1", + "magento/module-currency-symbol": "100.0.1", + "magento/module-customer": "100.0.1", + "magento/module-customer-import-export": "100.0.1", + "magento/module-deploy": "100.0.1", + "magento/module-developer": "100.0.1", + "magento/module-dhl": "100.0.1", + "magento/module-directory": "100.0.1", + "magento/module-downloadable": "100.0.1", + "magento/module-downloadable-import-export": "100.0.1", + "magento/module-eav": "100.0.1", + "magento/module-email": "100.0.1", + "magento/module-encryption-key": "100.0.1", + "magento/module-fedex": "100.0.1", + "magento/module-gift-message": "100.0.1", + "magento/module-google-adwords": "100.0.1", + "magento/module-google-analytics": "100.0.1", + "magento/module-google-optimizer": "100.0.1", + "magento/module-grouped-import-export": "100.0.1", + "magento/module-grouped-product": "100.0.1", + "magento/module-import-export": "100.0.1", + "magento/module-indexer": "100.0.1", + "magento/module-integration": "100.0.1", + "magento/module-layered-navigation": "100.0.1", + "magento/module-media-storage": "100.0.1", + "magento/module-msrp": "100.0.1", + "magento/module-multishipping": "100.0.1", + "magento/module-new-relic-reporting": "100.0.1", + "magento/module-newsletter": "100.0.1", + "magento/module-offline-payments": "100.0.1", + "magento/module-offline-shipping": "100.0.1", + "magento/module-page-cache": "100.0.1", + "magento/module-payment": "100.0.1", + "magento/module-paypal": "100.0.1", + "magento/module-persistent": "100.0.1", + "magento/module-product-alert": "100.0.1", + "magento/module-product-video": "100.0.1", + "magento/module-quote": "100.0.1", + "magento/module-reports": "100.0.1", + "magento/module-require-js": "100.0.1", + "magento/module-review": "100.0.1", + "magento/module-rss": "100.0.1", + "magento/module-rule": "100.0.1", + "magento/module-sales": "100.0.1", + "magento/module-sales-rule": "100.0.1", + "magento/module-sales-sequence": "100.0.1", + "magento/module-sample-data": "100.0.1", + "magento/module-search": "100.0.1", + "magento/module-send-friend": "100.0.1", + "magento/module-shipping": "100.0.1", + "magento/module-sitemap": "100.0.1", + "magento/module-store": "100.0.1", + "magento/module-swagger": "100.0.1", + "magento/module-swatches": "100.0.1", + "magento/module-tax": "100.0.1", + "magento/module-tax-import-export": "100.0.1", + "magento/module-theme": "100.0.1", + "magento/module-translation": "100.0.1", + "magento/module-ui": "100.0.1", + "magento/module-ups": "100.0.1", + "magento/module-url-rewrite": "100.0.1", + "magento/module-user": "100.0.1", + "magento/module-usps": "100.0.1", + "magento/module-variable": "100.0.1", + "magento/module-version": "100.0.1", + "magento/module-webapi": "100.0.1", + "magento/module-weee": "100.0.1", + "magento/module-widget": "100.0.1", + "magento/module-wishlist": "100.0.1", + "magento/theme-adminhtml-backend": "100.0.1", + "magento/theme-frontend-blank": "100.0.1", + "magento/theme-frontend-luma": "100.0.1", + "magento/language-de_de": "100.0.1", + "magento/language-en_us": "100.0.1", + "magento/language-es_es": "100.0.1", + "magento/language-fr_fr": "100.0.1", + "magento/language-nl_nl": "100.0.1", + "magento/language-pt_br": "100.0.1", + "magento/language-zh_hans_cn": "100.0.1", + "magento/framework": "100.0.1", "trentrichardson/jquery-timepicker-addon": "1.4.3", "colinmollenhour/cache-backend-redis": "1.8", "colinmollenhour/credis": "1.5", @@ -223,7 +223,7 @@ "Magento\\": "app/code/Magento/" }, "psr-0": { - "": "app/code/" + "_empty_": "app/code/" }, "files": [ "app/etc/NonComposerComponentRegistration.php" diff --git a/composer.lock b/composer.lock index 737d85e64ce24e6c1552dcd9538867622445f6d8..e90b78212f5c16c3249cf30a9dcadcb0361016df 100644 --- a/composer.lock +++ b/composer.lock @@ -4,8 +4,8 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "This file is @generated automatically" ], - "hash": "7fd48d753c524721e985f6745966a867", - "content-hash": "b890040cbea00ee768e01f1044601b58", + "hash": "0de43e87de11efe10f0b506997c4bb06", + "content-hash": "fa5292993d9c94f5d6831eaf5a670bf2", "packages": [ { "name": "braintree/braintree_php", diff --git a/lib/internal/Magento/Framework/AppInterface.php b/lib/internal/Magento/Framework/AppInterface.php index 01780ba108b107f47e1eb0bd663e1b98ff3d9aa9..c6e570c56430bbb496080fff89d2499b9273ef93 100644 --- a/lib/internal/Magento/Framework/AppInterface.php +++ b/lib/internal/Magento/Framework/AppInterface.php @@ -17,7 +17,7 @@ interface AppInterface /** * Magento version */ - const VERSION = '2.0.0-rc'; + const VERSION = '2.0.0-rc2'; /** * Launch application diff --git a/lib/internal/Magento/Framework/composer.json b/lib/internal/Magento/Framework/composer.json index 8a53e7d9585c4d79faf906c62a4145261f123b63..7a9532ad21266a0db77161e3bfbd16c563b625a8 100644 --- a/lib/internal/Magento/Framework/composer.json +++ b/lib/internal/Magento/Framework/composer.json @@ -2,7 +2,7 @@ "name": "magento/framework", "description": "N/A", "type": "magento2-library", - "version": "100.0.0", + "version": "100.0.1", "license": [ "OSL-3.0", "AFL-3.0" @@ -28,6 +28,8 @@ "psr-4": { "Magento\\Framework\\": "" }, - "files": [ "registration.php" ] + "files": [ + "registration.php" + ] } } diff --git a/package.json b/package.json index 4585e9941f80d62af69a0d9115f041b8d263a620..727073599df61173259a9d2999b635847377feb1 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { "name": "Magento2", - "author": "Magento, an eBay Inc. company", + "author": "Magento Inc.", "description": "Magento2 node modules dependencies for local development", - "version": "2.0.0-rc", + "version": "2.0.0-rc2", "license": "(OSL-3.0 OR AFL-3.0)", "repository": { "type": "git",