-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #155 from getbread/OSD-4249
Osd 4249
- Loading branch information
Showing
7 changed files
with
93 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,55 @@ | ||
# Bread Checkout for Magento 2 | ||
Bread Checkout for Magento 2 | ||
============================ | ||
|
||
Bread is a full-funnel, white label financing solution that helps retailers acquire | ||
and convert more customers. Retailers who use Bread have seen an increase of 5-15% in sales, | ||
up to 120% higher AOV, and an 84% increase in email click-through-rates. | ||
|
||
Bread’s Features | ||
---------------- | ||
|
||
* Full Funnel. Your shoppers can discover, pre-qualify, and check out from anywhere - your homepage, | ||
category page, product page, cart, or checkout. | ||
* Real-Time Decision. Pre-qualification is quick and easy. Let your customers learn | ||
about their purchase power in seconds without ever leaving your site. | ||
|
||
Installation | ||
------------ | ||
|
||
### Install using Composer | ||
|
||
1. Navigate to your Magento 2 root folder | ||
|
||
2. Install the Bread Checkout module | ||
|
||
```bash | ||
composer require breadfinance/module-breadcheckout | ||
``` | ||
3. Enable module | ||
```bash | ||
bin/magento module:enable Bread/BreadCheckout | ||
bin/magento setup:upgrade | ||
bin/magento setup:di:compile | ||
bin/magento setup:static-content:deploy | ||
``` | ||
|
||
### Install using Zip archive | ||
|
||
1. Download Bread checkout module from Magento marketplace | ||
https://marketplace.magento.com/bread-module-breadcheckout.html | ||
|
||
2. Unzip contents into `app/code/Bread/BreadCheckout` folder | ||
|
||
3. Enable module | ||
```bash | ||
bin/magento module:enable Bread/BreadCheckout | ||
bin/magento setup:upgrade | ||
bin/magento setup:di:compile | ||
bin/magento setup:static-content:deploy | ||
``` | ||
|
||
## Installation instructions: | ||
1. Download repository as zip file | ||
2. Unzip contents into `app/code` folder | ||
3. Run `magento module:enable Bread_BreadCheckout` | ||
4. Run `magento module:update` | ||
|
||
## Usage instructions: | ||
|
||
See documentation at https://docs.getbread.com | ||
Contact your Bread representative for login credentials. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,14 +3,14 @@ | |
"description": "Offers the Bread financing and checkout tools for your Magento store", | ||
"license": "MIT", | ||
"minimum-stability": "stable", | ||
"version": "1.1.17", | ||
"version": "1.1.18", | ||
"require": { | ||
"php": "~7.0.13||~7.1.0||~7.1.3||~7.2.0||~7.3.0||~7.4.0" | ||
}, | ||
"type": "magento2-module", | ||
"repositories": [{ | ||
"type": "vcs", | ||
"url": "[email protected]:breadfinance/magento-v2-bread.git" | ||
"url": "[email protected]:getbread/magento-v2-bread.git" | ||
}], | ||
"autoload": { | ||
"files": ["registration.php"], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters