Skip to content

Commit

Permalink
Merge pull request #32 from OnTap/master
Browse files Browse the repository at this point in the history
Version 3.1.1
  • Loading branch information
ellenchristine authored Jan 6, 2022
2 parents 1daecf0 + 4deda79 commit 09ed766
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 17 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog
All notable changes to this project will be documented in this file.

## [3.1.1] - 2022-01-04
### Fixed
- Installation instructions in the README.md file were updated


## [3.1.0] - 2021-10-19
### Changed
Expand Down
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,38 +46,38 @@ Log on to your Magento 2 server and navigate to Magento installation folder. The
Run the following commands to download and install the module:

composer config repositories.mastercard-module-simplifycommerce git https://github.com/simplifycom/simplify-magento-module.git
composer require mastercard/module-simplifycommerce:~3.0.0 --prefer-dist
composer require mastercard/module-simplifycommerce
./bin/magento module:enable MasterCard_SimplifyCommerce
./bin/magento setup:upgrade
./bin/magento cache:clean

When asked by Composer for user name and password for Magento repository at [https://repo.magento.com](https://repo.magento.com), enter the Magento Marketplace public key as user name, and private key as password.

Verify whether the module has been succesfully installed. Log in to Magento Admin dashboard and go to *System* > *Web Setup Wizard* > *Component Manager*. Simplify Commerce module should be there at the end of the list. Please make sure that it's enabled. The status icon should be green. If it's red, you need to enable the module, by selecting *Enable* action in the actions drop-down at the right, then following the provided instructions.
Verify whether the module has been successfully installed. Log in to Magento Admin dashboard and go to *Stores* > *Configuration* > *Sales* > *Payment Methods*. Settings of the Simplify Commerce module should be there under the name "Mastercard Payment Gateway Services - Simplify".

#### Deinstallation
If you want to uninstall the previously installed Simplify Commerce Payment Gateway module, please run the following commands:

./bin/magento module:uninstall MasterCard_SimplifyCommerce
./bin/magento setup:upgrade
./bin/magento cache:clean

### Manual installation
If you prefer to deploy and install the module without Composer, proceed with the following steps:

Download module from [https://github.com/simplifycom/simplify-magento-module/releases](https://github.com/simplifycom/simplify-magento-module/releases)
Download module from [https://github.com/simplifycom/simplify-magento-module/releases](https://github.com/simplifycom/simplify-magento-module/releases).

Create folder structure inside the the Magento main folder:
Create folder structure inside the Magento main folder:

./vendor/mastercard/module-simplifycommerce
./app/code/MasterCard/SimplifyCommerce

Extract module files into that folder and execute the following commands:

./bin/magento setup:upgrade
./bin/magento cache:clean

Verify whether the module has been succesfully installed. Log in to Magento Admin dashboard and go to *System* > *Web Setup Wizard* > *Component Manager*. Simplify Commerce module should be there at the end of the list. Please make sure that it's enabled. The status icon should be green. If it's red, you need to enable the module, by selecting *Enable* action in the actions drop-down at the right, then following the provided instructions.


### Deinstallation
If you want to uninstall the previously installed Simplify Commerce Payment Gateway module, please run the following commands:

./bin/magento module:uninstall MasterCard_SimplifyCommerce
./bin/magento module:enable MasterCard_SimplifyCommerce
./bin/magento setup:upgrade
./bin/magento cache:clean

Verify whether the module has been successfully installed. Log in to Magento Admin dashboard and go to *Stores* > *Configuration* > *Sales* > *Payment Methods*. Settings of the Simplify Commerce module should be there under the name "Mastercard Payment Gateway Services - Simplify".

## Configuration

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mastercard/module-simplifycommerce",
"version": "3.1.0",
"version": "3.1.1",
"description": "Mastercard Simplify Commerce",
"license": "proprietary",
"authors": [
Expand Down
2 changes: 1 addition & 1 deletion lib/SimplifyAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function __construct($publicKey, $privateKey)

Simplify::$publicKey = $publicKey;
Simplify::$privateKey = $privateKey;
Simplify::$userAgent = 'Magento-3.1.0';
Simplify::$userAgent = 'Magento-3.1.1';
}

/**
Expand Down

0 comments on commit 09ed766

Please sign in to comment.