<!-- TITLE: CSV Cart - Magento 2 module documentation --> <!-- SUBTITLE: Author: Konrad Ptak --> # CSV Cart Module ## Module overview This module let your customer to easily import products to cart from simple CSV file. ## Module compatibility This module is compatibile with Magento Community versions: 2.4. ## How it works After installing the module head to Cart Overview, where you can choose file to upload. CSV should be in the following format: `SKU, Quantity` SKU and quantity separated by comma. ![Csvimport](/uploads/csv-cart/csvimport.png "Csvimport"){.align-center} If file format was right, and products are available, you should see a confirmation message. ![Csvcart 3](/uploads/csv-cart/csvcart-3.png "Csvcart 3"){.align-center} ## Installation ### Composer * Add repo to composer.json: ```text "repositories": [ ... { "type": "vcs", "url": "git@git.auroracreation.com:aurora-modules/csvcart.git" } ... ], ``` * Add package to composer.json: ```text "require": { ... "aurora/module-csv-cart": "*" ... }, ``` * In Magento root folder run commands: ```text composer update aurora/module-csv-cart php bin/magento module:enable Aurora_CsvCart php bin/magento setup:upgrade ``` ### Instalacja manualna * Unzip archive. * Upload extension files on your server to: ```text {Magento root} └── app/ └── code ``` * In Magento root folder run commands: ```text php bin/magento module:enable Aurora_CsvCart php bin/magento setup:upgrade ``` ### Thank you for your interest in our products!