Installation Methods
Installing the Bread Extension via Plugin or Composer
The two options below outline installing the Bread Pay app in Magento 2.
Option 1: Zip File Installation Steps
In order to install the Bread extension using a zip file:
- Make sure you download the most recent version
- Unzip contents into
app/code/Bread/BreadCheckout
folder - Copy file
app/code/Bread/BreadCheckout/etc/adminhtml/system.xml
toapp/code/Bread/BreadCheckout/etc/adminhtml/system.xml
- Copy file
app/code/Bread/BreadCheckout/view/adminhtml/web/js/validation.js
toapp/code/Bread/BreadCheckout/view/adminhtml/web/js/validation.js
- Enable module
bin/magento module:enable Bread_BreadCheckout
bin/magento setup:upgrade
bin/magento setup:di:compile
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 5 months ago