This repository has been archived by the owner on Feb 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7c5faeb
commit 8c2dd14
Showing
1 changed file
with
22 additions
and
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,53 @@ | ||
![Logo](https://dev.heidelpay.de/devHeidelpay_400_180.jpg) | ||
|
||
# Heidelpay payment extension for magento2 | ||
# Heidelpay payment extension for Magento2 | ||
|
||
This extension for Magento 2 provides a direct integration of the Heidelpay payment methods to your Magento 2 shop. | ||
|
||
Currently supported payment methods are: | ||
* credit card | ||
* debit card | ||
* Credit Card | ||
* Debit Card | ||
* Sofortüberweisung | ||
* PayPal | ||
* prepayment | ||
* Prepayment | ||
|
||
For more information please visit - https://dev.heidelpay.de/shopmodule/magento/magento-2-x/ | ||
For more information please visit -https://dev.heidelpay.de/magento2/ | ||
|
||
### SYSTEM REQUIREMENTS | ||
## SYSTEM REQUIREMENTS | ||
|
||
This extension requires PHP 5.6 or PHP7.0. | ||
It also depends on the Heidelpay php-api library. | ||
This extension requires PHP 5.6 or PHP 7.0. | ||
It also depends on the Heidelpay php-api library, which will be installed along with the plugin. | ||
|
||
### LICENSE | ||
## LICENSE | ||
|
||
You can find a copy of this license in [LICENSE.md](LICENSE.md). | ||
|
||
### Release notes | ||
## Release notes | ||
|
||
All versions greater than 16.10.17 are based on the heidelpay php-api. (https://github.com/heidelpay/php-api). Please visit https://dev.heidelpay.de/PhpApi/ for the developer documentation. | ||
|
||
### Installation | ||
## Installation | ||
|
||
add composer repository | ||
### Add the heidelpay composer repository | ||
|
||
composer config repositories.heidelpay composer https://dev.heidelpay.de/packages | ||
```composer config repositories.heidelpay composer https://dev.heidelpay.de/packages``` | ||
|
||
install packages | ||
### Install the heidelpay Magento 2 composer package | ||
|
||
composer require "heidelpay/php-api:16.10.27" | ||
composer require "heidelpay/magento2:16.10.27" | ||
```composer require "heidelpay/magento2:17.1.20"``` | ||
|
||
enable extension in Magento | ||
### Enable the extension in Magento 2 | ||
|
||
php -f bin/magento module:enable --clear-static-content Heidelpay_Gateway | ||
```php -f bin/magento module:enable --clear-static-content Heidelpay_Gateway``` | ||
|
||
### Setup the extension and refresh cache | ||
|
||
setup and refresh cache | ||
```php -f bin/magento setup:upgrade``` | ||
|
||
php -f bin/magento setup:upgrade | ||
```php -f bin/magento cache:flush``` | ||
|
||
php -f bin/magento cache:flush | ||
```php -f bin/magento setup:di:compile``` | ||
|
||
php -f bin/magento setup:di:compile | ||
|
||
php -f bin/magento setup:static-content:deploy | ||
```php -f bin/magento setup:static-content:deploy``` | ||
|
||
and you are ready to go. | ||
|