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:
- Download the Bread extension as a zip file from here. Make sure you download the most recent version.
- Create a new directory
Bread
in theapp/code
directory of your root Magento folder - Unzip contents into
app/code/Bread
folder, and rename the contents toBreadCheckout
. So the path to the Block subdirectory would look likeapp/code/Bread/BreadCheckout/Block
, the Helper would beapp/code/Bread/BreadCheckout/Helper
, etc. - From the server terminal, navigate to the root Magento directory and run
bin/magento module:enable Bread_BreadCheckout
- Run
bin/magento setup:upgrade
- Run
bin/magento setup:static-content:deploy
Option 2: Composer Installation Steps
In order to install the Bread extension using composer:
- Make sure you’ve downloaded composer on your machine, if you haven’t you can download it here
- 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. - Run
bin/magento module:enable Bread_BreadCheckout
- Run
bin/magento setup:upgrade
- Run
bin/magento setup:static-content:deploy
Updated 11 months ago