Magento 2 Bread Pay Installation Options

Installing the Bread Extension via Plugin or Composer

The two options below outline installing the Bread Pay app in Magento 2. These steps apply to both Bread Classic and Bread 2.0.

Option 1: Zip File Installation Steps

In order to install the Bread extension using a zip file:

  1. Download the Bread extension as a zip file from here. Make sure you download the most recent version.
  2. Create a new directory Bread in the app/code directory of your root Magento folder
  3. Unzip contents into app/code/Bread folder, and rename the contents to BreadCheckout. So the path to the Block subdirectory would look like app/code/Bread/BreadCheckout/Block, the Helper would be app/code/Bread/BreadCheckout/Helper, etc.
  4. From the server terminal, navigate to the root Magento directory and run bin/magento module:enable Bread_BreadCheckout
  5. Run bin/magento setup:upgrade
  6. Run bin/magento setup:static-content:deploy

Option 2: Composer Installation Steps

In order to install the Bread extension using composer:

  1. Make sure you’ve downloaded composer on your machine, if you haven’t you can download it here
  2. From the server terminal, navigate to your root Magento directory and run ./composer.phar require breadfinance/module-breadcheckout. You might need to change the path to the composer.phar executable depending on where you have it downloaded.
  3. Run bin/magento module:enable Bread_BreadCheckout
  4. Run bin/magento setup:upgrade
  5. Run bin/magento setup:static-content:deploy